* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  line-height: 1.6;
  color: #000000;
}

/* Header Styles */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  background: white;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid #e5e7eb;
  backdrop-filter: blur(10px);
  z-index: 1000;
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 64px;
}

/* Logo Styles */
.logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: #000;
}

.logo a {
  text-decoration: none;
  color: inherit;
}

.logo-subtitle {
  color: #000000;
  font-size: 1.125rem;
  margin-left: 0.25rem;
  font-weight: bold;
  color: #000;
}

/* Navigation Styles */
.nav {
  display: flex;
  gap: 3rem;
  align-items: center;
}

.nav-link {
  text-decoration: none;
  color: #000000;
  font-weight: 500;
  transition: color 0.2s;
  cursor: pointer;
  position: relative;
  background: none;
  border: none;
  font-size: 1.125rem;
  font-family: inherit;
  padding: 0.5rem 0;
}

.nav-link:hover {
  color: #1f2937;
}

.nav-link.active {
  color: #ef4444;
  font-weight: 600;
}

.nav-link.active::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #ef4444;
}
.plus-btn {
  background: #ef4444;
  color: white;
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 0.5rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.plus-btn:hover {
  background: #dc2626;
  transform: translateY(-1px);
}
.plus-btn i.fa-crown {
  color: #fbbf24;
}
.plus-link {
  text-decoration: none;
  color: inherit;
}
/* Mobile Navigation */
.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 0.5rem;
}
.mobile-nav .plus-link {
  padding: 0.75rem 1rem;
  color: #000000;
  text-decoration: none;
  transition: all 0.2s ease;
  font-weight: 500;
  font-size: 1.125rem;
}

/* Dropdown Styles */
.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  padding: 0.5rem 0;
  border: none;
  background: none;
  font-family: inherit;
  font-size: 1.125rem;
  color: #000000;
  font-weight: 500;
  transition: color 0.2s;
}

.dropdown-trigger:hover {
  color: #1f2937;
}

.dropdown-trigger i {
  transition: transform 0.2s ease;
  font-size: 0.875rem;
}

.dropdown.show .dropdown-trigger i {
  transform: rotate(180deg);
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  min-width: 200px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  border-radius: 0.5rem;
  padding: 0.5rem 0;
  z-index: 1000;
  border: 1px solid #e5e7eb;
}

.dropdown.show .dropdown-content {
  display: block;
  animation: fadeIn 0.2s ease;
}

.dropdown-item {
  display: block;
  padding: 0.75rem 1rem;
  color: #000000;
  text-decoration: none;
  transition: all 0.2s ease;
  font-weight: 500;
  font-size: 1.125rem;
}

.dropdown-item:hover {
  background: #f3f4f6;
  color: #ef4444;
}

.dropdown-item.active {
  background-color: #fef2f2;
  color: #ef4444 !important;
  font-weight: 600;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Search Styles */
.search-container {
  position: relative;
  display: flex;
}

.search-input {
  padding: 0.5rem 0.75rem 0.5rem 2.5rem;
  border: 1px solid #d1d5db;
  border-radius: 0.5rem;
  width: 200px;
  height: 30px;
  outline: none;
  transition: all 0.2s;
  font-size: 0.875rem;
}

.search-input:focus {
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
  width: 250px;
  height: 35px;
}

.search-input::placeholder {
  color: #9ca3af;
}

.search-icon {
  position: absolute;
  left: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  color: #9ca3af;
  font-size: 0.875rem;
}

.search-results {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  max-height: 300px;
  overflow-y: auto;
  z-index: 1000;
  display: none;
}

/* Button Styles */
.btn-primary {
  background: #ef4444;
  color: white;
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 0.5rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  font-size: 0.875rem;
}

.btn-primary:hover {
  background: #dc2626;
  transform: translateY(-1px);
}

.btn-primary i.fa-crown {
  color: #fbbf24;
}

.btn-secondary {
  background: transparent;
  color: #374151;
  padding: 0.5rem 1rem;
  border: 1px solid #d1d5db;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
}

.btn-secondary:hover {
  background: #f9fafb;
  border-color: #9ca3af;
}

.no-underline {
  text-decoration: none;
}

/* Mobile Menu Button */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  padding: 0.5rem;
  cursor: pointer;
  border-radius: 0.375rem;
  transition: background-color 0.2s;
}

.mobile-menu-btn:hover {
  background: #f3f4f6;
}

.mobile-menu-btn i {
  font-size: 1.25rem;
  color: #374151;
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  background: white;
  border-top: 1px solid #e5e7eb;
  padding: 1rem;
}

.mobile-menu.active {
  display: block;
  animation: slideDown 0.3s ease;
}

.mobile-menu .search-container {
  margin-bottom: 1rem;
}

.mobile-menu .search-input {
  width: 100%;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 1rem;
}

.mobile-nav .nav-link {
  padding: 0.75rem 0;
  border-bottom: 1px solid #f3f4f6;
  color: #374151;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
  display: block;
}

.mobile-nav .nav-link:hover {
  color: #ef4444;
}

.mobile-nav .nav-link.active {
  color: #ef4444;
  background-color: #fef2f2;
  border-radius: 0.375rem;
  padding-left: 0.5rem;
}

.mobile-dropdown-trigger {
  width: 100%;
  text-align: left;
  padding: 0.75rem 0;
  background: none;
  border: none;
  border-bottom: 1px solid #f3f4f6;
  font-family: inherit;
  font-size: inherit;
  color: #374151;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: color 0.2s;
}

.mobile-dropdown-trigger:hover {
  color: #ef4444;
}

.mobile-dropdown-trigger i {
  transition: transform 0.2s ease;
}

.mobile-dropdown-trigger.show i {
  transform: rotate(180deg);
}

.mobile-dropdown-content {
  display: none;
  background: #f9fafb;
  padding-left: 1rem;
  margin-top: 0.5rem;
  border-radius: 0.375rem;
}

.mobile-dropdown-content.active {
  display: block;
  animation: slideDown 0.2s ease;
}

.mobile-dropdown-content .dropdown-item {
  border-bottom: none;
  padding: 0.5rem 0;
  font-weight: normal;
  color: #6b7280;
  display: block;
}

.mobile-dropdown-content .dropdown-item:hover {
  color: #ef4444;
}

.mobile-dropdown-content .dropdown-item.active {
  color: #ef4444 !important;
  background-color: #fef2f2;
  font-weight: 600;
}

.mobile-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  border-top: 1px solid #e5e7eb;
  padding-top: 1rem;
}

.mobile-actions .btn-primary,
.mobile-actions .btn-secondary {
  width: 100%;
  justify-content: center;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Media Queries */
@media (max-width: 768px) {

  .nav,
  .header-actions {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }

  .search-input {
    width: 100%;
  }

  .header-container {
    padding: 0 1rem;
  }
}

@media (max-width: 480px) {
  .header-container {
    padding: 0 0.5rem;
  }

  .logo {
    font-size: 1.25rem;
  }

  .logo-subtitle {
    font-size: 1rem;
  }
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {

  .nav,
  .header-actions {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }

  .search-input {
    width: 100%;
  }
}

.nav a.active,
.mobile-nav a.active {
  color: #ef4444;
  font-weight: 600;
}

.nav a.active::after,
.mobile-nav a.active::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #ef4444;
}

.dropdown-content a.active {
  background-color: #fef2f2;
  color: #ef4444 !important;
  font-weight: 600;
}

.mobile-nav a.active {
  background-color: #fef2f2;
  border-radius: 0.375rem;
  padding-left: 0.5rem;
}

.mobile-dropdown-content a.active {
  color: #ef4444 !important;
  background-color: #fef2f2;
  font-weight: 600;
}

/* Hero Styles */
.hero {
  background: #111827;
  color: white;
  padding: 5rem 1rem;
  text-align: center;
  margin-top: 70px;
}

.hero-container {
  max-width: 1000px;
  margin: 0 auto;
}

.hero h1 {
  font-size: 2.5rem;
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 2rem;
}

.hero p {
  font-size: 1.125rem;
  color: #d1d5db;
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 768px;
  margin-left: auto;
  margin-right: auto;
}

.hero-btn {
  background: #ef4444;
  color: white;
  padding: 0.75rem 2rem;
  border: none;
  border-radius: 0.5rem;
  font-size: 1.125rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.hero-btn:hover {
  background: #dc2626;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  transform: translateY(-1px);
}

.footer {
  background: #111827;
  color: white;
  padding: 3rem 1rem 1.5rem;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: white;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section ul li a {
  color: #d1d5db;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-section ul li a:hover {
  color: #ef4444;
}

.footer-section p {
  color: #d1d5db;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #374151;
  border-radius: 50%;
  color: white;
  text-decoration: none;
  transition: background-color 0.2s;
}

.social-link:hover {
  background: #ef4444;
}

.newsletter-form {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
}

.newsletter-input {
  flex: 1;
  padding: 0.5rem;
  border: 1px solid #374151;
  border-radius: 0.25rem;
  background: #374151;
  color: white;
  outline: none;
}

.newsletter-input::placeholder {
  color: #9ca3af;
}

.newsletter-input:focus {
  border-color: #ef4444;
}

.newsletter-btn {
  background: #ef4444;
  color: white;
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 0.25rem;
  cursor: pointer;
  transition: background-color 0.2s;
}

.newsletter-btn:hover {
  background: #dc2626;
}

.footer-bottom {
  border-top: 1px solid #374151;
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  z-index: 1000;
}

.footer-bottom p {
  color: #9ca3af;
  margin: 0;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
}

.footer-links a {
  color: #9ca3af;
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: #ef4444;
}

@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
  }
}
 .mobile-warning-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.8);
            backdrop-filter: blur(4px);
            z-index: 10000;
            display: none;
            justify-content: center;
            align-items: center;
            padding: 20px;
            box-sizing: border-box;
            overflow-y: scroll; /* Always allow scrolling on the overlay */
        }

        .mobile-warning-popup {
            background: linear-gradient(135deg, #111827 0%, #1f2937 100%);
            border: 1px solid #374151;
            border-radius: 12px;
            padding: 30px;
            max-width: 400px;
            width: 100%;
            color: white;
            text-align: center;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
            position: relative;
            animation: popupSlideIn 0.4s ease-out;
        }

        @keyframes popupSlideIn {
            from {
                opacity: 0;
                transform: translateY(-30px) scale(0.9);
            }
            to {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }

/* Help Request Section */
.help-request-section {
    background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
    padding: 4rem 2rem;
    margin-top: 4rem;
    text-align: center;
}

.help-request-container {
    max-width: 800px;
    margin: 0 auto;
}

.help-request-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1.5rem;
    line-height: 1.4;
}
.help-request p{
    font-size: 1.125rem;
    color: #374151;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.help-request-btn {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 50px;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(239, 68, 68, 0.3);
    text-decoration: none;
    display: inline-block;
}

.help-request-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(239, 68, 68, 0.4);
}

        .warning-icon {
            font-size: 3rem;
            margin-bottom: 20px;
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.1); }
        }

        .warning-title {
            font-size: 1.5rem;
            font-weight: bold;
            margin-bottom: 15px;
            color: #fff;
        }

        .warning-message {
            font-size: 1rem;
            line-height: 1.5;
            margin-bottom: 25px;
            opacity: 0.9;
        }

        .warning-suggestions {
            background: rgba(55, 65, 81, 0.5);
            border: 1px solid #374151;
            border-radius: 8px;
            padding: 20px;
            margin-bottom: 25px;
            text-align: left;
        }

        .suggestion-item {
            display: flex;
            align-items: center;
            margin-bottom: 12px;
            font-size: 0.9rem;
        }

        .suggestion-item:last-child {
            margin-bottom: 0;
        }

        .suggestion-icon {
            font-size: 1.2rem;
            margin-right: 12px;
            min-width: 25px;
        }

        .warning-buttons {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
        }

        .warning-btn {
            flex: 1;
            min-width: 120px;
            padding: 12px 20px;
            border: none;
            border-radius: 25px;
            font-size: 0.9rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            text-align: center;
        }
         /* Hide warning on desktop by default */
        @media (min-width: 769px) {
            .mobile-warning-overlay {
                display: none !important;
            }
        }

        /* Responsive adjustments for very small screens */
        @media (max-width: 480px) {
            .mobile-warning-popup {
                padding: 20px;
                margin: 10px;
            }
            
            .warning-title {
                font-size: 1.3rem;
            }
            
            .warning-buttons {
                flex-direction: column;
            }
        }
        /* Special Highlights Section */
        .highlights-section {
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
            border-radius: 25px;
            padding: 3rem 2rem;
            margin: 2rem auto;
            max-width: 1400px;
            position: relative;
            overflow: hidden;
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
        }

        /* Animated Background Pattern */
        .highlights-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="rgba(239,68,68,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
            animation: patternMove 20s linear infinite;
            opacity: 0.3;
        }

        @keyframes patternMove {
            0% { transform: translateX(0) translateY(0); }
            100% { transform: translateX(20px) translateY(20px); }
        }

        /* Floating Orbs */
        .highlights-section::after {
            content: '';
            position: absolute;
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, rgba(239, 68, 68, 0.15) 0%, transparent 70%);
            border-radius: 50%;
            top: -150px;
            right: -150px;
            animation: float 6s ease-in-out infinite;
        }

        .highlights-orb {
            position: absolute;
            width: 200px;
            height: 200px;
            background: radial-gradient(circle, rgba(251, 191, 36, 0.1) 0%, transparent 70%);
            border-radius: 50%;
            bottom: -100px;
            left: -100px;
            animation: float 8s ease-in-out infinite reverse;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px) scale(1); }
            50% { transform: translateY(-20px) scale(1.05); }
        }

        .highlights-container {
            position: relative;
            z-index: 2;
        }

        /* Header */
        .highlights-header {
            text-align: center;
            margin-bottom: 3rem;
        }

        .highlights-badge {
            display: inline-block;
            background: linear-gradient(135deg, #ef4444, #fbbf24);
            color: white;
            padding: 0.5rem 1.5rem;
            border-radius: 50px;
            font-size: 0.875rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 1rem;
            animation: pulse 2s infinite;
            box-shadow: 0 0 20px rgba(239, 68, 68, 0.4);
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); box-shadow: 0 0 20px rgba(239, 68, 68, 0.4); }
            50% { transform: scale(1.05); box-shadow: 0 0 30px rgba(239, 68, 68, 0.6); }
        }

        .highlights-title {
            font-size: 3rem;
            font-weight: 900;
            color: white;
            margin-bottom: 1rem;
            background: linear-gradient(135deg, #ffffff 0%, #fbbf24 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 0 30px rgba(255, 255, 255, 0.1);
        }

        .highlights-subtitle {
            color: rgba(255, 255, 255, 0.8);
            font-size: 1.25rem;
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.6;
        }

        /* Tab Navigation */
        .highlights-tabs {
            display: flex;
            justify-content: center;
            gap: 1rem;
            margin-bottom: 3rem;
            flex-wrap: wrap;
        }

        .tab-button {
            background: rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.7);
            border: 2px solid rgba(255, 255, 255, 0.2);
            padding: 0.875rem 2rem;
            border-radius: 50px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
            position: relative;
            overflow: hidden;
        }

        .tab-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
            transition: left 0.6s;
        }

        .tab-button:hover::before {
            left: 100%;
        }

        .tab-button:hover {
            background: rgba(255, 255, 255, 0.15);
            color: white;
            border-color: rgba(239, 68, 68, 0.5);
            transform: translateY(-2px);
        }

        .tab-button.active {
            background: linear-gradient(135deg, #ef4444, #dc2626);
            color: white;
            border-color: #ef4444;
            box-shadow: 0 10px 25px rgba(239, 68, 68, 0.3);
        }

        /* Content Grid */
        .highlights-content {
            display: none;
        }

        .highlights-content.active {
            display: block;
            animation: fadeInUp 0.5s ease-out;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .content-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }

        /* Card Styles */
        .highlight-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 20px;
            padding: 2rem;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            cursor: pointer;
        }

        .highlight-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(239, 68, 68, 0.1) 0%, rgba(251, 191, 36, 0.1) 100%);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .highlight-card:hover::before {
            opacity: 1;
        }

        .highlight-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
            border-color: rgba(239, 68, 68, 0.3);
        }

        .card-header {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1.5rem;
            position: relative;
            z-index: 2;
        }

        .card-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #ef4444, #fbbf24);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
        }

        .card-meta {
            flex: 1;
        }

        .card-badge {
            background: rgba(239, 68, 68, 0.2);
            color: #ef4444;
            padding: 0.25rem 0.75rem;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 600;
            text-transform: uppercase;
            margin-bottom: 0.5rem;
            display: inline-block;
        }

        .card-title {
            color: white;
            font-size: 1.25rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            position: relative;
            z-index: 2;
        }

        .card-description {
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.6;
            margin-bottom: 1.5rem;
            position: relative;
            z-index: 2;
        }

        .card-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: relative;
            z-index: 2;
        }

        .card-cta {
            background: linear-gradient(135deg, #ef4444, #dc2626);
            color: white;
            padding: 0.5rem 1.5rem;
            border: none;
            border-radius: 25px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }

        .card-cta:hover {
            transform: translateX(5px);
            box-shadow: 0 5px 15px rgba(239, 68, 68, 0.4);
        }

        .card-date {
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.875rem;
        }

        /* Featured Card (Larger) */
        .highlight-card.featured {
            grid-column: 1 / -1;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
            align-items: center;
            min-height: 300px;
        }

        .featured-content {
            position: relative;
            z-index: 2;
        }

        .featured-image {
            background: linear-gradient(135deg, rgba(239, 68, 68, 0.2), rgba(251, 191, 36, 0.2));
            border-radius: 15px;
            height: 250px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 4rem;
            color: rgba(255, 255, 255, 0.3);
            position: relative;
            overflow: hidden;
        }

        .featured-image::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><text y=".9em" font-size="90" fill="white" opacity="0.1">📚</text></svg>');
            background-size: 100px 100px;
            animation: bookFloat 15s infinite linear;
        }

        @keyframes bookFloat {
            0% { background-position: 0 0; }
            100% { background-position: 100px 100px; }
        }

        /* Bestseller Section */
        .bestsellers-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
        }

        .book-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 15px;
            padding: 1.5rem;
            text-align: center;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .book-card:hover {
            transform: translateY(-5px) rotateY(5deg);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
        }

        .book-cover {
            width: 80px;
            height: 100px;
            background: linear-gradient(135deg, #ef4444, #fbbf24);
            border-radius: 8px;
            margin: 0 auto 1rem;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 2rem;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
        }

        .book-title {
            color: white;
            font-weight: 700;
            margin-bottom: 0.5rem;
        }

        .book-author {
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.875rem;
            margin-bottom: 0.5rem;
        }

        .book-rating {
            color: #fbbf24;
            margin-bottom: 1rem;
        }

        .book-price {
            background: rgba(239, 68, 68, 0.2);
            color: #ef4444;
            padding: 0.5rem 1rem;
            border-radius: 20px;
            font-weight: 700;
            display: inline-block;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .highlights-section {
                padding: 2rem 1rem;
                margin: 1rem;
                border-radius: 15px;
            }

            .highlights-title {
                font-size: 2rem;
            }

            .highlights-tabs {
                flex-direction: column;
                align-items: center;
            }

            .tab-button {
                width: 200px;
                text-align: center;
            }

            .content-grid {
                grid-template-columns: 1fr;
                gap: 1rem;
            }

            .highlight-card.featured {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .bestsellers-grid {
                grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            }
        }
        .card-cta {
    display: inline-block;
    width: calc(100% - 2rem);
    margin: 0 1rem 1.5rem;
    padding: 0.75rem 1rem;
    background: #ef4444;
    color: white !important;
    text-decoration: none !important;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    box-sizing: border-box;
}

.card-cta:hover {
    background: #dc2626;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
    color: white !important;
    text-decoration: none !important;
}