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

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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.5;
  color: #333;
}

img, svg {
  max-width: 100%;
  display: block;
}

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

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

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: bold;
  line-height: 1.2;
}

/* Header styles */
/* Base Styles & Variables */
  :root {
    --primary: #ff4b33;
    --secondary: #2b3990;
    --accent: #00ccff;
    --dark: #1a1a2e;
    --darker: #0f0f1a;
    --light: #e6e6ff;
    --gray: #4a4a68;
    --transition: 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    --header-height: 80px;
    --border-radius: 4px;
    --glow: 0 0 15px rgba(0, 204, 255, 0.5);
  }

  /* Header Base */
  .header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: linear-gradient(135deg, var(--darker) 0%, var(--dark) 100%);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
    border-bottom: 1px solid rgba(255, 75, 51, 0.3);
  }

  .header-container {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    height: var(--header-height);
  }

  /* Logo Styles */
  .logo-container {
    display: flex;
    align-items: center;
  }

  .logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--light);
    transition: var(--transition);
  }

  .logo:hover {
    transform: translateY(-2px);
  }

  .logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: var(--primary);
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    color: var(--darker);
    box-shadow: 0 0 10px rgba(255, 75, 51, 0.5);
    transform: rotate(-5deg);
    margin-right: 12px;
  }

  .logo-text {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.5px;
    background: linear-gradient(to right, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  }

  /* Navigation Styles */
  .desktop-nav {
    margin-left: 40px;
  }

  .nav-list {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 5px;
  }

  .nav-item {
    position: relative;
  }

  .nav-link {
    display: block;
    padding: 10px 15px;
    color: var(--light);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: var(--transition);
    border-radius: var(--border-radius);
    position: relative;
    z-index: 1;
  }

  .nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
    transform: translateX(-50%);
    z-index: -1;
    opacity: 0;
  }

  .nav-link:hover {
    color: var(--accent);
  }

  .nav-link:hover::before {
    width: 70%;
    opacity: 1;
  }

  .nav-link.active {
    color: var(--primary);
    font-weight: 600;
  }

  .nav-link.active::before {
    width: 70%;
    opacity: 1;
    background: var(--primary);
    height: 3px;
  }

  /* Action Button */
  .header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
  }

  .action-button {
    display: inline-block;
    padding: 10px 24px;
    background: linear-gradient(135deg, var(--primary) 0%, #ff7766 100%);
    color: var(--darker);
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    border-radius: 30px;
    transition: var(--transition);
    border: 2px solid transparent;
    box-shadow: 0 4px 15px rgba(255, 75, 51, 0.3);
    position: relative;
    overflow: hidden;
  }

  .action-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transform: skewX(-20deg);
    transition: var(--transition);
  }

  .action-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 75, 51, 0.5);
  }

  .action-button:hover::before {
    left: 100%;
  }

  /* Mobile Toggle */
  .mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 22px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10;
  }

  .toggle-line {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--primary);
    border-radius: 3px;
    transition: var(--transition);
  }

  /* Mobile Menu */
  .mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--darker);
    z-index: 1000;
    transform: translateX(-100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    padding: 20px;
    overflow-y: auto;
    box-shadow: 5px 0 25px rgba(0, 0, 0, 0.5);
    border-right: 2px solid rgba(255, 75, 51, 0.3);
  }

  .mobile-menu.active {
    transform: translateX(0);
  }

  .mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 30px;
  }

  .mobile-logo {
    display: flex;
    align-items: center;
  }

  .close-menu {
    background: transparent;
    border: none;
    width: 40px;
    height: 40px;
    position: relative;
    cursor: pointer;
  }

  .close-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 22px;
    height: 22px;
  }

  .close-icon::before,
  .close-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--primary);
    border-radius: 3px;
  }

  .close-icon::before {
    transform: rotate(45deg);
  }

  .close-icon::after {
    transform: rotate(-45deg);
  }

  .mobile-nav {
    margin-bottom: 30px;
    flex-grow: 1;
  }

  .mobile-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .mobile-nav-item {
    margin-bottom: 15px;
  }

  .mobile-nav-link {
    display: block;
    padding: 15px;
    color: var(--light);
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    border-radius: var(--border-radius);
    transition: var(--transition);
    background-color: rgba(255, 255, 255, 0.05);
    border-left: 3px solid transparent;
  }

  .mobile-nav-link:hover,
  .mobile-nav-link.active {
    background-color: rgba(255, 75, 51, 0.15);
    border-left-color: var(--primary);
    color: var(--primary);
  }

  .mobile-actions {
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .mobile-action-button {
    display: block;
    width: 100%;
    padding: 16px;
    background: var(--primary);
    color: var(--darker);
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 4px 10px rgba(255, 75, 51, 0.3);
  }

  .mobile-action-button:hover {
    background: #ff5c47;
    box-shadow: 0 6px 15px rgba(255, 75, 51, 0.5);
  }

  /* Responsive Styles */
  @media (max-width: 1024px) {
    .desktop-nav {
      margin-left: 20px;
    }
    
    .nav-link {
      padding: 10px 12px;
      font-size: 14px;
    }
    
    .action-button {
      padding: 8px 20px;
      font-size: 14px;
    }
  }

  @media (max-width: 768px) {
    .header-container {
      grid-template-columns: 1fr auto;
    }
    
    .desktop-nav {
      display: none;
    }
    
    .mobile-toggle {
      display: flex;
    }
    
    .action-button {
      display: none;
    }
  }

  @media (min-width: 769px) {
    .mobile-menu {
      display: none;
    }
  }

/* Footer styles */
/* Base Footer Styles */
  .footer-container {
    width: 100%;
    background: linear-gradient(135deg, #0f1923 0%, #1a2f40 100%);
    color: #a9b7c6;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    padding: 4rem 2rem 2rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.3);
    border-top: 1px solid rgba(120, 178, 219, 0.15);
  }

  .footer-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ff6b6b, #4ecdc4, #45b7d8);
    opacity: 0.8;
  }

  /* Main Content Layout */
  .footer-main {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
    position: relative;
  }

  /* Section Styling */
  .footer-section {
    position: relative;
  }

  .footer-section::after {
    content: '';
    position: absolute;
    bottom: -1.5rem;
    left: 0;
    width: 30px;
    height: 2px;
    background: rgba(120, 178, 219, 0.3);
    transition: width 0.3s ease;
  }

  .footer-section:hover::after {
    width: 50px;
    background: #4ecdc4;
  }

  /* Headings */
  .footer-heading {
    color: #e4f1fe;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
    position: relative;
    display: inline-block;
  }

  .footer-heading::before {
    content: '';
    position: absolute;
    left: -10px;
    top: 50%;
    width: 5px;
    height: 5px;
    background: #ff6b6b;
    border-radius: 50%;
    transform: translateY(-50%);
  }

  /* Text Content */
  .footer-text {
    line-height: 1.6;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    max-width: 90%;
  }

  /* Contact Information */
  .footer-contact {
    margin-top: 1.5rem;
  }

  .footer-contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
  }

  .footer-contact-item i {
    margin-right: 10px;
    color: #4ecdc4;
    font-size: 1rem;
  }

  /* Navigation Lists */
  .footer-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .footer-nav-item {
    margin-bottom: 0.75rem;
  }

  .footer-link {
    color: #a9b7c6;
    text-decoration: none;
    font-size: 0.95rem;
    position: relative;
    transition: all 0.25s ease;
    padding-left: 0;
  }

  .footer-link:hover {
    color: #e4f1fe;
    padding-left: 5px;
  }

  .footer-link::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: #4ecdc4;
    transition: width 0.3s ease;
  }

  .footer-link:hover::before {
    width: 100%;
  }

  /* Social Icons */
  .footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
  }

  .footer-social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    color: #a9b7c6;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
  }

  .footer-social-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ff6b6b, #4ecdc4);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
  }

  .footer-social-icon:hover {
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  }

  .footer-social-icon:hover::before {
    opacity: 1;
  }

  /* Bottom Section */
  .footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(120, 178, 219, 0.1);
    text-align: center;
    font-size: 0.85rem;
  }

  /* Legal Links */
  .footer-legal {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .footer-legal-link {
    color: #a9b7c6;
    text-decoration: none;
    transition: color 0.3s ease;
    position: relative;
  }

  .footer-legal-link:hover {
    color: #e4f1fe;
  }

  .footer-legal-link::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 1px;
    background: #4ecdc4;
    transition: width 0.3s ease;
  }

  .footer-legal-link:hover::after {
    width: 100%;
  }

  /* Copyright and Disclaimer */
  .footer-copyright, .footer-disclaimer {
    color: #6d7f8f;
    margin: 0.75rem 0;
    line-height: 1.6;
  }

  .footer-disclaimer {
    max-width: 600px;
    margin: 0.75rem auto;
  }

  /* Responsive Styles */
  @media (max-width: 768px) {
    .footer-container {
      padding: 3rem 1.5rem 1.5rem;
    }
    
    .footer-main {
      grid-template-columns: 1fr;
      gap: 2.5rem;
    }
    
    .footer-section {
      padding-bottom: 1rem;
    }
    
    .footer-legal {
      flex-direction: column;
      gap: 1rem;
    }
    
    .footer-text {
      max-width: 100%;
    }
  }

  @media (min-width: 769px) and (max-width: 1024px) {
    .footer-main {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  /* Focus States for Accessibility */
  .footer-link:focus, .footer-legal-link:focus, .footer-social-icon:focus {
    outline: 2px solid #4ecdc4;
    outline-offset: 3px;
  }

/* Cookie Banner styles */
#dota-cookie-consent {
    position: fixed !important;
    bottom: 0 !important;
    left: 0 !important;
    width: 100% !important;
    background-color: #1e2229 !important;
    color: #e5e5e5;
    z-index: 9999 !important;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.35) !important;
    font-family: 'Arial', sans-serif;
  }

  .skd2-cookie-container {
    max-width: 1200px !important;
    margin: 0 auto;
    padding: 20px !important;
    display: flex !important;
    flex-direction: column;
  }

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

  .skd2-privacy-link {
    color: #ff6b4a;
    text-decoration: underline;
  }

  .skd2-privacy-link:hover {
    color: #ff8d73;
  }

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

  .skd2-btn {
    padding: 12px 24px !important;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
  }

  .skd2-btn-reject {
    background-color: #3a3f47 !important;
    color: #ffffff;
  }

  .skd2-btn-reject:hover {
    background-color: #4b5159 !important;
  }

  .skd2-btn-accept {
    background-color: #ff6b4a !important;
    color: #ffffff;
  }

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

  @media (min-width: 768px) {
    .skd2-cookie-container {
      flex-direction: row !important;
      align-items: center;
    }

    .skd2-cookie-message {
      margin-bottom: 0 !important;
      margin-right: 20px;
    }

    .skd2-cookie-buttons {
      flex-shrink: 0;
    }
  }

  @media (max-width: 767px) {
    .skd2-cookie-buttons {
      justify-content: center !important;
    }
  }