        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html, body {
            height: 100%;
            width: 100%;
            background: #000000;
            color: #000000;
            overflow-x: hidden;
        }

        body {
            font-family: 'Crimson Text', serif;
            line-height: 1.8;
        }

        .main-wrapper {
            width: 100%;
            min-height: 100%;
            display: flex;
            flex-direction: column;
        }

        /* Typography */
        .font-display {
            font-family: 'Playfair Display', serif;
            font-weight: 900;
            letter-spacing: -0.8px;
        }

        .font-heading {
            font-family: 'Playfair Display', serif;
            font-weight: 700;
        }

        .font-mono {
            font-family: 'DM Mono', monospace;
            font-weight: 400;
        }

        /* Colors */
        .neon-green { color: #B6F500; }
        .neon-yellow { color: #FFFF00; }
        .bg-neon-green { background: #B6F500; }
        .bg-neon-yellow { background: #FFFF00; }
        .text-white { color: #FFFFFF; }
        .text-black { color: #000000; }
        .bg-white { background: #FFFFFF; }
        .bg-black { background: #000000; }

        /* Effects */
        .neon-glow {
            text-shadow: 0 0 10px rgba(182, 245, 0, 0.7),
                         0 0 20px rgba(182, 245, 0, 0.4),
                         0 0 30px rgba(182, 245, 0, 0.2);
        }

        .glow-border {
            border: 2px solid #B6F500;
            box-shadow: 0 0 15px rgba(182, 245, 0, 0.3),
                        inset 0 0 15px rgba(182, 245, 0, 0.1);
        }

        .card-glow:hover {
            box-shadow: 0 10px 40px rgba(182, 245, 0, 0.25),
                        0 0 20px rgba(182, 245, 0, 0.15);
        }

        /* Animations */
        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-100px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes slideInRight {
            from {
                opacity: 0;
                transform: translateX(100px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes slideInUp {
            from {
                opacity: 0;
                transform: translateY(60px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        @keyframes pulse-glow {
            0%, 100% { box-shadow: 0 0 10px rgba(182, 245, 0, 0.2); }
            50% { box-shadow: 0 0 30px rgba(182, 245, 0, 0.6); }
        }

        @keyframes marquee {
            0% { transform: translateX(100%); }
            100% { transform: translateX(-100%); }
        }

        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-15px); }
        }

        @keyframes cardLift {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-8px); }
        }

        @keyframes shimmer {
            0% { background-position: -1000px 0; }
            100% { background-position: 1000px 0; }
        }

        .animate-slide-left { animation: slideInLeft 0.8s cubic-bezier(0.34, 1.56, 0.64, 1); }
        .animate-slide-right { animation: slideInRight 0.8s cubic-bezier(0.34, 1.56, 0.64, 1); }
        .animate-slide-up { animation: slideInUp 0.7s cubic-bezier(0.34, 1.56, 0.64, 1); }
        .animate-fade { animation: fadeIn 1s ease-out; }
        .animate-pulse-glow { animation: pulse-glow 2s infinite; }
        .animate-marquee { animation: marquee 25s linear infinite; }
        .animate-float { animation: float 4s ease-in-out infinite; }

        /* Page system */
        .page {
            display: none;
            width: 100%;
            animation: fadeIn 0.4s ease-out;
        }

        .page.active {
            display: block;
        }

        /* Header */
        .header {
            background: #000000;
            border-top: 3px solid #B6F500;
            position: sticky;
            top: 0;
            z-index: 100;
            width: 100%;
        }

        .header-top {
            border-bottom: 1px solid #222;
            padding: 12px 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .header-main {
            padding: 16px 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 28px;
            font-weight: 900;
            letter-spacing: -1px;
            color: #B6F500;
        }

        .nav-links {
            display: flex;
            gap: 24px;
            align-items: center;
        }

        .nav-link {
            color: #FFFFFF;
            text-decoration: none;
            font-weight: 600;
            font-size: 14px;
            transition: all 0.3s ease;
            position: relative;
            cursor: pointer;
        }

        .nav-link:hover {
            color: #B6F500;
            text-shadow: 0 0 15px rgba(182, 245, 0, 0.5);
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 2px;
            background: #B6F500;
            transition: width 0.3s ease;
        }

        .nav-link:hover::after {
            width: 100%;
        }

        /* Hero Section */
        .hero {
            width: 100%;
            height: 600px;
            background: linear-gradient(135deg, #1a1a1a 0%, #000000 50%, #1a1a1a 100%);
            position: relative;
            overflow: hidden;
            border-bottom: 3px solid #B6F500;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: url('https://images.unsplash.com/photo-1491841573634-28276674aaab?w=1600&h=600&fit=crop');
            background-size: cover;
            background-position: center;
            opacity: 0.4;
            z-index: 0;
        }

        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(90deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.5) 50%, rgba(0,0,0,0) 100%);
            z-index: 1;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 40px;
            max-width: 800px;
        }

        .hero-label {
            font-size: 12px;
            letter-spacing: 3px;
            color: #B6F500;
            margin-bottom: 16px;
            text-transform: uppercase;
            animation: slideInLeft 0.8s ease-out;
        }

        .hero-title {
            font-size: clamp(32px, 8vw, 72px);
            font-weight: 900;
            color: #B6F500;
            line-height: 1.1;
            margin-bottom: 20px;
            text-shadow: 0 0 30px rgba(182, 245, 0, 0.3);
            animation: slideInLeft 0.8s ease-out 0.1s both;
        }

        .hero-subtitle {
            font-size: 18px;
            color: #FFFFFF;
            margin-bottom: 32px;
            max-width: 600px;
            animation: slideInLeft 0.8s ease-out 0.2s both;
        }

        .hero-cta {
            display: flex;
            gap: 16px;
            animation: slideInLeft 0.8s ease-out 0.3s both;
        }

        .btn {
            padding: 14px 32px;
            font-family: 'Playfair Display', serif;
            font-weight: 700;
            font-size: 14px;
            letter-spacing: 1px;
            border: 2px solid transparent;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
            text-transform: uppercase;
            text-decoration: none;
            display: inline-block;
        }

        .btn-primary {
            background: #B6F500;
            color: #000000;
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(182, 245, 0, 0.4);
        }

        .btn-secondary {
            background: transparent;
            color: #B6F500;
            border-color: #B6F500;
        }

        .btn-secondary:hover {
            background: #B6F500;
            color: #000000;
            box-shadow: 0 0 20px rgba(182, 245, 0, 0.5);
        }

        .btn-yellow {
            background: #FFFF00;
            color: #000000;
        }

        .btn-yellow:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(255, 255, 0, 0.4);
        }

        /* Ticker */
        .ticker {
            background: #000000;
            border-bottom: 1px solid #222;
            padding: 12px 0;
            overflow: hidden;
        }

        .ticker-content {
            display: flex;
            align-items: center;
            gap: 40px;
            animation: marquee 30s linear infinite;
        }

        .ticker-item {
            display: flex;
            align-items: center;
            gap: 8px;
            white-space: nowrap;
            color: #FFFFFF;
            font-size: 14px;
        }

        .ticker-dot {
            width: 6px;
            height: 6px;
            background: #B6F500;
            border-radius: 50%;
        }

        /* Magazine Cards */
        .magazine-card {
            background: #FFFFFF;
            border: 1px solid #000000;
            transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
            overflow: hidden;
            cursor: pointer;
        }

        .magazine-card:hover {
            transform: translateY(-8px) rotate(0.5deg);
            box-shadow: 0 20px 50px rgba(182, 245, 0, 0.25);
            border-color: #B6F500;
        }

        .magazine-card img {
            width: 100%;
            height: 280px;
            object-fit: cover;
            transition: transform 0.4s ease;
        }

        .magazine-card:hover img {
            transform: scale(1.05);
        }

        .magazine-card-content {
            padding: 24px;
        }

        .card-category {
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 2px;
            color: #B6F500;
            text-transform: uppercase;
            margin-bottom: 12px;
        }

        .card-title {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 12px;
            color: #000000;
        }

        .card-excerpt {
            font-size: 15px;
            color: #666;
            margin-bottom: 16px;
            line-height: 1.6;
        }

        .card-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 12px;
            color: #999;
        }

        .read-more {
            color: #B6F500;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .read-more:hover {
            text-shadow: 0 0 15px rgba(182, 245, 0, 0.5);
        }

        /* Grid */
        .staggered-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 32px;
            align-items: start;
        }

        .staggered-grid > :nth-child(2n) {
            margin-top: 40px;
        }

        .staggered-grid > :nth-child(3n) {
            margin-top: 20px;
        }

        /* Sections */
        .content-section {
            width: 100%;
            padding: 60px 20px;
            max-width: 1400px;
            margin: 0 auto;
        }

        .section-title {
            font-size: clamp(36px, 6vw, 64px);
            font-weight: 900;
            margin-bottom: 48px;
            position: relative;
            padding-bottom: 20px;
            color: #000000;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 80px;
            height: 4px;
            background: #B6F500;
        }

        .section-subtitle {
            font-size: 18px;
            color: #666;
            margin-bottom: 40px;
            max-width: 800px;
        }

        /* Modal */
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.95);
            z-index: 1000;
            align-items: center;
            justify-content: center;
            backdrop-filter: blur(4px);
            overflow-y: auto;
            padding: 20px;
        }

        .modal.active {
            display: flex;
            animation: fadeIn 0.3s ease-out;
        }

        .modal-content {
            background: #FFFFFF;
            width: 90%;
            max-width: 800px;
            padding: 48px;
            border: 2px solid #B6F500;
            position: relative;
            box-shadow: 0 0 50px rgba(182, 245, 0, 0.2);
            max-height: 85vh;
            overflow-y: auto;
        }

        .modal-close {
            position: absolute;
            top: 16px;
            right: 16px;
            width: 32px;
            height: 32px;
            background: none;
            border: none;
            cursor: pointer;
            color: #000000;
            font-size: 24px;
            transition: color 0.3s ease;
        }

        .modal-close:hover {
            color: #B6F500;
        }

        /* Forms */
        .form-group {
            margin-bottom: 24px;
        }

        .form-label {
            display: block;
            font-weight: 700;
            margin-bottom: 8px;
            color: #000000;
            font-size: 14px;
        }

        .form-input {
            width: 100%;
            padding: 14px 16px;
            border: 2px solid #000000;
            background: #FFFFFF;
            font-family: 'Crimson Text', serif;
            font-size: 16px;
            transition: all 0.3s ease;
        }

        .form-input:focus {
            outline: none;
            border-color: #B6F500;
            box-shadow: 0 0 20px rgba(182, 245, 0, 0.2);
        }

        /* Footer */
        .footer {
            background: #000000;
            border-top: 3px solid #B6F500;
            padding: 60px 20px 20px;
            margin-top: auto;
            width: 100%;
        }

        .footer-grid {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
            padding-bottom: 40px;
            border-bottom: 1px solid #222;
        }

        .footer-col h4 {
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: #B6F500;
            margin-bottom: 20px;
        }

        .footer-col ul {
            list-style: none;
        }

        .footer-col ul li {
            margin-bottom: 12px;
        }

        .footer-col ul li a {
            color: #FFFFFF;
            text-decoration: none;
            font-size: 14px;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .footer-col ul li a:hover {
            color: #B6F500;
            margin-left: 8px;
        }

        .social-icons {
            display: flex;
            gap: 16px;
            margin-top: 20px;
        }

        .social-icon {
            width: 40px;
            height: 40px;
            border: 2px solid #B6F500;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #B6F500;
            cursor: pointer;
            transition: all 0.3s ease;
            border-radius: 50%;
        }

        .social-icon:hover {
            background: #B6F500;
            color: #000000;
            transform: scale(1.1);
        }

        .footer-bottom {
            max-width: 1400px;
            margin: 0 auto;
            text-align: center;
            color: #999;
            font-size: 13px;
        }

        /* Filter Pills */
        .filter-pills {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin-bottom: 32px;
        }

        .filter-pill {
            padding: 10px 20px;
            border: 2px solid #000000;
            background: #FFFFFF;
            color: #000000;
            cursor: pointer;
            font-weight: 700;
            transition: all 0.3s ease;
            font-size: 13px;
            text-transform: uppercase;
        }

        .filter-pill:hover,
        .filter-pill.active {
            background: #B6F500;
            border-color: #B6F500;
            box-shadow: 0 0 20px rgba(182, 245, 0, 0.3);
        }

        /* Toast */
        .toast {
            position: fixed;
            bottom: 20px;
            left: 20px;
            background: #B6F500;
            color: #000000;
            padding: 16px 24px;
            border: 2px solid #000000;
            font-weight: 700;
            z-index: 10000;
            animation: slideInUp 0.3s ease-out;
            font-size: 14px;
        }

          /* Responsive Adjustments */
  @media screen and (max-width: 768px) {
    .nav-links {
      display: none; /* Hide links by default on mobile */
      flex-direction: column;
      gap: 12px;
      background: #000;
      position: absolute;
      top: 60px;
      right: 0;
      padding: 20px;
      width: 200px;
      border-left: 2px solid #B6F500;
    }

    #menu-toggle {
      display: block; /* Show hamburger on mobile */
    }
  }

        /* Responsive */
        @media (max-width: 768px) {
            .hide-mobile { display: none; }
            .header-top { display: none; }
            .nav-links { gap: 12px; }
            .staggered-grid { grid-template-columns: 1fr; }
            .staggered-grid > :nth-child(2n),
            .staggered-grid > :nth-child(3n) { margin-top: 0; }
            .content-section { padding: 40px 16px; }
            .hero-content { padding: 24px; }
        }
