*, *::before, *::after {
  box-sizing: border-box;
}

html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
}

a {
  text-decoration: none;
  color: inherit;
}

img, svg {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

button, input, select, textarea {
  font: inherit;
  margin: 0;
}

button {
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}

ul, ol {
  padding-left: 2rem;
  margin-top: 0;
  margin-bottom: 1rem;
}

/* Header styles */
/* Base Styles */
    @import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;700&family=Raleway:wght@300;400;600&display=swap');
    
    :root {
        --primary: #2E2E36;
        --secondary: #1A1A20;
        --accent: #D4AF37;
        --accent-dark: #A48A2A;
        --text: #E6E6E6;
        --text-muted: #AAAAAA;
        --border: #3A3A45;
        --shadow: rgba(0, 0, 0, 0.6);
    }
    
    /* Header Base */
    .skyrim-header {
        position: sticky;
        top: 0;
        width: 100%;
        background: linear-gradient(to bottom, var(--secondary), rgba(26, 26, 32, 0.95));
        box-shadow: 0 4px 20px var(--shadow);
        z-index: 100;
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        font-family: 'Raleway', sans-serif;
        border-bottom: 1px solid var(--border);
    }
    
    .header-container {
        display: grid;
        grid-template-columns: auto 1fr auto;
        align-items: center;
        max-width: 1400px;
        margin: 0 auto;
        padding: 0.75rem 1.5rem;
        gap: 2rem;
    }
    
    /* Logo Styles */
    .logo-container {
        display: flex;
        align-items: center;
    }
    
    .logo-link {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        text-decoration: none;
        color: var(--text);
        transition: transform 0.3s ease;
    }
    
    .logo-link:hover {
        transform: scale(1.05);
    }
    
    .logo-icon {
        display: block;
    }
    
    .logo-text {
        font-family: 'Cinzel', serif;
        font-weight: 700;
        font-size: 1.25rem;
        letter-spacing: 1px;
        color: var(--text);
    }
    
    .logo-accent {
        color: var(--accent);
    }
    
    /* Desktop Navigation */
    .desktop-nav {
        justify-self: center;
        width: 100%;
    }
    
    .nav-list {
        display: flex;
        justify-content: center;
        list-style: none;
        margin: 0;
        padding: 0;
        gap: 0.25rem;
    }
    
    .nav-item {
        position: relative;
    }
    
    .nav-link {
        display: block;
        padding: 0.5rem 1rem;
        color: var(--text-muted);
        text-decoration: none;
        font-size: 0.95rem;
        font-weight: 600;
        letter-spacing: 0.5px;
        transition: color 0.3s ease;
        border-radius: 4px;
    }
    
    .nav-link:hover {
        color: var(--accent);
        background-color: rgba(212, 175, 55, 0.1);
    }
    
    .nav-link.active {
        color: var(--accent);
        position: relative;
    }
    
    .nav-link.active::after {
        content: '';
        position: absolute;
        bottom: -2px;
        left: 50%;
        transform: translateX(-50%);
        width: 40%;
        height: 2px;
        background-color: var(--accent);
        border-radius: 2px;
    }
    
    /* Header Actions */
    .header-actions {
        display: flex;
        align-items: center;
        gap: 1rem;
    }
    
    /* Search */
    .search-container {
        display: flex;
        align-items: center;
        background-color: rgba(255, 255, 255, 0.05);
        border: 1px solid var(--border);
        border-radius: 20px;
        overflow: hidden;
        transition: all 0.3s ease;
    }
    
    .search-container:focus-within {
        border-color: var(--accent);
        box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.2);
    }
    
    .search-input {
        background: transparent;
        border: none;
        color: var(--text);
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
        font-family: 'Raleway', sans-serif;
        width: 180px;
        outline: none;
    }
    
    .search-input::placeholder {
        color: var(--text-muted);
    }
    
    .search-button {
        background: transparent;
        border: none;
        padding: 0.5rem 0.75rem;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    /* Mobile Toggle */
    .mobile-toggle {
        display: none;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 24px;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
    }
    
    .toggle-line {
        width: 100%;
        height: 2px;
        background-color: var(--accent);
        transition: all 0.3s ease;
        border-radius: 2px;
    }
    
    /* Mobile Menu */
    .mobile-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: var(--secondary);
        z-index: 1000;
        transform: translateX(-100%);
        transition: transform 0.4s ease;
        overflow-y: auto;
    }
    
    .mobile-menu.active {
        transform: translateX(0);
    }
    
    .mobile-menu-container {
        display: flex;
        flex-direction: column;
        padding: 2rem 1.5rem;
        height: 100%;
        position: relative;
    }
    
    .close-menu {
        position: absolute;
        top: 1.5rem;
        right: 1.5rem;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0.5rem;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .mobile-logo {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        margin-bottom: 3rem;
    }
    
    .mobile-nav-list {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }
    
    .mobile-nav-link {
        display: block;
        padding: 1rem;
        color: var(--text);
        text-decoration: none;
        font-size: 1.25rem;
        font-weight: 600;
        letter-spacing: 0.5px;
        border-left: 3px solid transparent;
        transition: all 0.3s ease;
    }
    
    .mobile-nav-link:hover {
        color: var(--accent);
        background-color: rgba(212, 175, 55, 0.1);
        border-left-color: var(--accent);
    }
    
    .mobile-nav-link.active {
        color: var(--accent);
        border-left-color: var(--accent);
        background-color: rgba(212, 175, 55, 0.1);
    }
    
    .mobile-search {
        margin-top: 2rem;
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }
    
    .mobile-search-input {
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid var(--border);
        border-radius: 4px;
        color: var(--text);
        padding: 0.75rem 1rem;
        font-size: 1rem;
        font-family: 'Raleway', sans-serif;
        width: 100%;
        outline: none;
    }
    
    .mobile-search-button {
        background-color: var(--accent);
        color: var(--secondary);
        border: none;
        border-radius: 4px;
        padding: 0.75rem;
        font-size: 1rem;
        font-weight: 600;
        cursor: pointer;
        transition: background-color 0.3s ease;
    }
    
    .mobile-search-button:hover {
        background-color: var(--accent-dark);
    }
    
    /* Responsive */
    @media (max-width: 1024px) {
        .header-container {
            grid-template-columns: auto 1fr auto;
        }
        
        .nav-link {
            padding: 0.5rem 0.75rem;
            font-size: 0.9rem;
        }
        
        .search-input {
            width: 150px;
        }
    }
    
    @media (max-width: 768px) {
        .header-container {
            grid-template-columns: auto auto;
            gap: 1rem;
        }
        
        .desktop-nav {
            display: none;
        }
        
        .search-container {
            display: none;
        }
        
        .mobile-toggle {
            display: flex;
        }
    }
    
    /* Animations */
    @keyframes fadeIn {
        from { opacity: 0; }
        to { opacity: 1; }
    }
    
    @keyframes slideInRight {
        from { transform: translateX(-20px); opacity: 0; }
        to { transform: translateX(0); opacity: 1; }
    }
    
    .logo-link, .nav-item, .search-container {
        animation: fadeIn 0.5s ease forwards;
    }
    
    .nav-item:nth-child(1) { animation-delay: 0.1s; }
    .nav-item:nth-child(2) { animation-delay: 0.15s; }
    .nav-item:nth-child(3) { animation-delay: 0.2s; }
    .nav-item:nth-child(4) { animation-delay: 0.25s; }
    .nav-item:nth-child(5) { animation-delay: 0.3s; }
    .nav-item:nth-child(6) { animation-delay: 0.35s; }
    .nav-item:nth-child(7) { animation-delay: 0.4s; }
    .nav-item:nth-child(8) { animation-delay: 0.45s; }

/* Footer styles */
/* Base Footer Styles */
  .footer-container {
    width: 100%;
    background: linear-gradient(135deg, #1a1c2e 0%, #2c2f47 50%, #1a1c2e 100%);
    color: #d8c9a7;
    font-family: 'Cinzel', 'Times New Roman', serif;
    position: relative;
    overflow: hidden;
    border-top: 3px solid #a67c52;
  }
  
  .footer-container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(166, 124, 82, 0.1) 0%, transparent 60%);
    pointer-events: none;
  }
  
  /* Main Footer Content */
  .footer-main {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    padding: 4rem 5% 3rem;
    position: relative;
  }
  
  /* Section Styles */
  .footer-section {
    position: relative;
  }
  
  .footer-section h3 {
    color: #e2c888;
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    position: relative;
    padding-bottom: 0.8rem;
  }
  
  .footer-section h3::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: #a67c52;
  }
  
  /* About Section */
  .footer-about p {
    line-height: 1.7;
    font-size: 1rem;
    color: #b8b0a1;
  }
  
  /* Navigation Lists */
  .footer-nav-list,
  .footer-features-list {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .footer-nav-list li,
  .footer-features-list li {
    margin-bottom: 0.8rem;
    position: relative;
  }
  
  .footer-link {
    color: #b8b0a1;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    padding-left: 1.2rem;
    position: relative;
  }
  
  .footer-link::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #a67c52;
    transition: transform 0.3s ease;
  }
  
  .footer-link:hover {
    color: #e2c888;
    transform: translateX(5px);
  }
  
  .footer-link:hover::before {
    transform: scale(1.3);
    color: #e2c888;
  }
  
  /* Contact Section */
  .footer-contact-item {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    font-size: 0.95rem;
  }
  
  .footer-contact-item i {
    color: #a67c52;
    margin-right: 10px;
    font-size: 1rem;
  }
  
  /* Social Media */
  .footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
  }
  
  .footer-social-item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(166, 124, 82, 0.2);
    color: #e2c888;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
  }
  
  .footer-social-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(166, 124, 82, 0.5);
    transform: scale(0);
    border-radius: 50%;
    transition: transform 0.3s ease;
  }
  
  .footer-social-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  }
  
  .footer-social-item:hover::before {
    transform: scale(1);
  }
  
  .footer-social-item i {
    font-size: 1.2rem;
    position: relative;
    z-index: 2;
  }
  
  /* Newsletter */
  .footer-newsletter {
    background: rgba(44, 47, 71, 0.6);
    padding: 3rem 5%;
    border-top: 1px solid rgba(166, 124, 82, 0.3);
    border-bottom: 1px solid rgba(166, 124, 82, 0.3);
    text-align: center;
    position: relative;
  }
  
  .footer-newsletter::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23a67c52' fill-opacity='0.05' fill-rule='evenodd'%3E%3Ccircle cx='3' cy='3' r='3'/%3E%3Ccircle cx='13' cy='13' r='3'/%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
  }
  
  .footer-newsletter-content {
    max-width: 700px;
    margin: 0 auto;
  }
  
  .footer-newsletter h3 {
    color: #e2c888;
    font-size: 1.6rem;
    margin-bottom: 1rem;
  }
  
  .footer-newsletter p {
    color: #b8b0a1;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    line-height: 1.6;
  }
  
  .footer-newsletter-form {
    display: flex;
    gap: 0.5rem;
    max-width: 500px;
    margin: 0 auto;
  }
  
  .footer-newsletter-input {
    flex: 1;
    padding: 0.8rem 1.2rem;
    border: 1px solid rgba(166, 124, 82, 0.5);
    background: rgba(26, 28, 46, 0.7);
    color: #d8c9a7;
    border-radius: 4px;
    font-family: inherit;
  }
  
  .footer-newsletter-input:focus {
    outline: none;
    border-color: #e2c888;
    box-shadow: 0 0 0 2px rgba(226, 200, 136, 0.3);
  }
  
  .footer-newsletter-button {
    padding: 0.8rem 1.5rem;
    background: #a67c52;
    color: #1a1c2e;
    font-weight: bold;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
  }
  
  .footer-newsletter-button::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.7s ease;
  }
  
  .footer-newsletter-button:hover {
    background: #b78a5d;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  }
  
  .footer-newsletter-button:hover::before {
    left: 100%;
  }
  
  /* Footer Bottom */
  .footer-bottom {
    padding: 2rem 5%;
    text-align: center;
  }
  
  .footer-legal-links {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  
  .footer-legal-link {
    color: #b8b0a1;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    position: relative;
  }
  
  .footer-legal-link:not(:last-child)::after {
    content: "•";
    position: absolute;
    right: -1rem;
    color: #a67c52;
  }
  
  .footer-legal-link:hover {
    color: #e2c888;
    text-decoration: underline;
  }
  
  .footer-copyright {
    color: #8a8475;
    font-size: 0.85rem;
  }
  
  /* Responsive Styles */
  @media (max-width: 768px) {
    .footer-main {
      grid-template-columns: 1fr;
      gap: 2rem;
      padding: 3rem 5% 2rem;
    }
    
    .footer-newsletter-form {
      flex-direction: column;
    }
    
    .footer-newsletter-input {
      width: 100%;
    }
    
    .footer-newsletter h3 {
      font-size: 1.4rem;
    }
    
    .footer-legal-links {
      flex-direction: column;
      gap: 1rem;
    }
    
    .footer-legal-link:not(:last-child)::after {
      display: none;
    }
  }
  
  @media (min-width: 769px) and (max-width: 1024px) {
    .footer-main {
      grid-template-columns: repeat(2, 1fr);
      gap: 2rem;
    }
  }

/* Cookie Banner styles */
#tes-cookie-consent {
    position: fixed !important;
    bottom: 0 !important;
    left: 0 !important;
    width: 100% !important;
    background-color: #1a1a1a !important;
    color: #e0d8c0;
    z-index: 9999 !important;
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.5) !important;
    font-family: 'Roboto', 'Open Sans', sans-serif;
  }

  .banner-container {
    max-width: 1200px !important;
    margin: 0 auto;
    padding: 20px !important;
  }

  .consent-message {
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 20px !important;
  }

  .consent-message a {
    color: #c5a96b;
    text-decoration: underline;
  }

  .consent-message a:hover {
    color: #d8c090;
  }

  .cookie-buttons-wrapper {
    display: flex !important;
    justify-content: flex-end;
    gap: 15px;
  }

  .cookie-btn {
    padding: 10px 20px !important;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
  }

  .reject-btn {
    background-color: #4a4a4a !important;
    color: #ffffff;
  }

  .reject-btn:hover {
    background-color: #5a5a5a !important;
  }

  .accept-btn {
    background-color: #8e6f31 !important;
    color: #ffffff;
  }

  .accept-btn:hover {
    background-color: #a68343 !important;
  }

  @media (max-width: 768px) {
    .banner-container {
      padding: 15px !important;
    }

    .cookie-buttons-wrapper {
      flex-direction: column;
    }

    .cookie-btn {
      width: 100% !important;
      margin-bottom: 10px !important;
    }
  }