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

        body {
            font-family: 'Inter', 'Space Grotesk', sans-serif;
            background: #000000;
            color: #ffffff;
            overflow-x: hidden;
        }

        /* Animated Background */
        .network-bg {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 30% 40%, rgba(57, 255, 20, 0.06) 0%, transparent 50%),
                        radial-gradient(circle at 70% 70%, rgba(57, 255, 20, 0.04) 0%, transparent 50%);
            pointer-events: none;
            z-index: 0;
        }

        .grid-bg {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                linear-gradient(rgba(57, 255, 20, 0.04) 1px, transparent 1px),
                linear-gradient(90deg, rgba(57, 255, 20, 0.04) 1px, transparent 1px);
            background-size: 50px 50px;
            animation: gridMove 30s linear infinite;
            pointer-events: none;
            z-index: 0;
        }

        @keyframes gridMove {
            0% { transform: translate(0, 0); }
            100% { transform: translate(50px, 50px); }
        }



        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
            position: relative;
            z-index: 1;
        }

        /* Hero Section */
     .hero {
  min-height: 85vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 120px 20px 80px;
  position: relative;
}

.hero h1 {
  font-size: 4.5rem;
  font-weight: 900;
  margin-bottom: 25px;
  background: linear-gradient(135deg, #ffffff 0%, #39FF14 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: fadeInUp 0.8s ease;
  letter-spacing: -2px;
}

.hero .subtext {
  font-size: 1.4rem;
  color: #b0b0b0;
  max-width: 750px;
  margin: 0 auto 45px; 
  line-height: 1.7;
  text-align: center;  
  animation: fadeInUp 1s ease;
}


        .hero-buttons {
            display: flex;
            gap: 25px;
            flex-wrap: wrap;
            justify-content: center;
            animation: fadeInUp 1.2s ease;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .btn {
            padding: 18px 45px;
            font-size: 1.1rem;
            font-weight: 700;
            border: none;
            border-radius: 10px;
            cursor: pointer;
            transition: all 0.4s ease;
            text-decoration: none;
            display: inline-block;
        }

        .btn-primary {
            background: #39FF14;
            color: #000000;
            box-shadow: 0 0 30px rgba(57, 255, 20, 0.5);
        }

        .btn-primary:hover {
            box-shadow: 0 0 50px rgba(57, 255, 20, 0.8);
            transform: translateY(-3px);
        }

        .btn-outline {
            background: transparent;
            color: #ffffff;
            border: 2px solid #ffffff;
        }

        .btn-outline:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: #39FF14;
            color: #39FF14;
            box-shadow: 0 0 25px rgba(57, 255, 20, 0.3);
        }

        .btn-small {
            padding: 12px 28px;
            font-size: 0.95rem;
        }

        /* Section Styling */
        section {
            padding: 100px 20px;
            position: relative;
        }

        .section-title {
            font-size: 3rem;
            font-weight: 800;
            margin-bottom: 20px;
            text-align: center;
            color: #39FF14;
            text-shadow: 0 0 20px rgba(57, 255, 20, 0.3);
        }

        /* Events Grid */
        .events-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
            gap: 35px;
            margin-top: 60px;
        }

        .event-card {
            background: rgba(26, 26, 26, 0.8);
            border: 2px solid rgba(57, 255, 20, 0.2);
            border-radius: 18px;
            overflow: hidden;
            transition: all 0.4s ease;
            cursor: pointer;
        }

        .event-card:hover {
            border-color: #39FF14;
            box-shadow: 0 0 40px rgba(57, 255, 20, 0.3);
            transform: translateY(-8px);
        }

        .event-image {
            width: 100%;
            height: 220px;
            background: linear-gradient(135deg, #39FF14 0%, #2dd10d 100%);
            position: relative;
            overflow: hidden;
        }

        .event-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0.85;
        }

        .event-badge {
            position: absolute;
            top: 15px;
            right: 15px;
            background: #39FF14;
            color: #000000;
            padding: 6px 16px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .event-content {
            padding: 30px;
        }

        .event-title {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 12px;
            color: #ffffff;
        }

        .event-meta {
            display: flex;
            flex-direction: column;
            gap: 10px;
            margin-bottom: 15px;
            color: #b0b0b0;
            font-size: 0.95rem;
        }

        .event-meta-item {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .event-tagline {
            color: #b0b0b0;
            line-height: 1.6;
            margin-bottom: 15px;
        }

        .event-tags {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
            margin-bottom: 20px;
        }

        .tag {
            padding: 5px 12px;
            background: rgba(57, 255, 20, 0.15);
            border: 1px solid rgba(57, 255, 20, 0.3);
            border-radius: 15px;
            font-size: 0.85rem;
            color: #39FF14;
        }

        .event-capacity {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 20px;
            padding: 12px;
            background: rgba(57, 255, 20, 0.1);
            border-radius: 8px;
        }

        .capacity-bar {
            flex: 1;
            height: 6px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            overflow: hidden;
        }

        .capacity-fill {
            height: 100%;
            background: #39FF14;
            border-radius: 10px;
            transition: width 0.5s ease;
        }

        .event-actions {
            display: flex;
            gap: 12px;
        }

        .event-actions .btn {
            flex: 1;
        }

        /* Modal Styles */
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.9);
            z-index: 1000;
            align-items: center;
            justify-content: center;
            backdrop-filter: blur(10px);
            animation: fadeIn 0.3s ease;
        }

        .modal.active {
            display: flex;
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        .modal-content {
            background: rgba(26, 26, 26, 0.95);
            border: 2px solid rgba(57, 255, 20, 0.3);
            border-radius: 20px;
            max-width: 900px;
            width: 90%;
            max-height: 90vh;
            overflow-y: auto;
            position: relative;
            animation: slideUp 0.4s ease;
        }

        @keyframes slideUp {
            from { transform: translateY(50px); opacity: 0; }
            to { transform: translateY(0); opacity: 1; }
        }

        .modal-close {
            position: absolute;
            top: 20px;
            right: 20px;
            background: rgba(255, 255, 255, 0.1);
            border: none;
            color: #ffffff;
            font-size: 1.8rem;
            width: 45px;
            height: 45px;
            border-radius: 50%;
            cursor: pointer;
            transition: all 0.3s ease;
            z-index: 10;
        }

        .modal-close:hover {
            background: #39FF14;
            color: #000000;
            transform: rotate(90deg);
        }

        .modal-header {
            position: relative;
        }

        .modal-hero-image {
            width: 100%;
            height: 350px;
            object-fit: cover;
            border-radius: 20px 20px 0 0;
        }

        .modal-body {
            padding: 40px;
        }

        .modal-title {
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 20px;
            color: #39FF14;
        }

        .modal-section {
            margin-bottom: 35px;
        }

        .modal-section h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: #39FF14;
        }

        .modal-section p, .modal-section ul {
            color: #b0b0b0;
            line-height: 1.7;
        }

        .modal-section ul {
            list-style: none;
            padding-left: 0;
        }

        .modal-section ul li {
            padding: 10px 0;
            padding-left: 25px;
            position: relative;
        }

        .modal-section ul li::before {
            content: '▸';
            position: absolute;
            left: 0;
            color: #39FF14;
        }

        .ticket-types {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin-top: 20px;
        }

        .ticket-type {
            background: rgba(57, 255, 20, 0.1);
            border: 2px solid rgba(57, 255, 20, 0.3);
            border-radius: 12px;
            padding: 25px;
            text-align: center;
        }

        .ticket-type h4 {
            color: #39FF14;
            margin-bottom: 10px;
            font-size: 1.2rem;
        }

        .ticket-type p {
            font-size: 0.9rem;
            color: #b0b0b0;
        }

        /* Auth Modal */
        .auth-modal-content {
            max-width: 500px;
            padding: 50px 40px;
            text-align: center;
        }

        .auth-title {
            font-size: 1.8rem;
            font-weight: 700;
            color: #39FF14;
            margin-bottom: 15px;
        }

        .auth-subtitle {
            color: #b0b0b0;
            margin-bottom: 35px;
            line-height: 1.6;
        }

        .auth-options {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .auth-btn {
            padding: 18px;
            background: rgba(57, 255, 20, 0.1);
            border: 2px solid rgba(57, 255, 20, 0.3);
            border-radius: 10px;
            color: #39FF14;
            font-size: 1.05rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
        }

        .auth-btn:hover {
            background: #39FF14;
            color: #000000;
            box-shadow: 0 0 25px rgba(57, 255, 20, 0.4);
        }

        /* Past Events Gallery */
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 25px;
            margin-top: 60px;
        }

        .gallery-item {
            position: relative;
            border-radius: 15px;
            overflow: hidden;
            cursor: pointer;
            transition: all 0.3s ease;
            aspect-ratio: 4/3;
        }

        .gallery-item:hover {
            transform: scale(1.05);
            box-shadow: 0 0 30px rgba(57, 255, 20, 0.4);
        }

        .gallery-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            background: linear-gradient(135deg, #39FF14 20%, #2dd10d 80%);
        }

        .gallery-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
            padding: 30px 20px 20px;
            transform: translateY(100%);
            transition: transform 0.3s ease;
        }

        .gallery-item:hover .gallery-overlay {
            transform: translateY(0);
        }

        .gallery-title {
            font-weight: 700;
            margin-bottom: 5px;
            color: #39FF14;
        }

        .gallery-stat {
            font-size: 0.9rem;
            color: #b0b0b0;
        }

        /* Host Event Form */
        .host-form {
            max-width: 800px;
            margin: 60px auto;
            background: rgba(26, 26, 26, 0.8);
            border: 2px solid rgba(57, 255, 20, 0.25);
            border-radius: 20px;
            padding: 50px 40px;
        }

        .form-group {
            margin-bottom: 30px;
        }

        .form-group label {
            display: block;
            margin-bottom: 10px;
            color: #39FF14;
            font-weight: 600;
        }

        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 15px;
            background: rgba(0, 0, 0, 0.6);
            border: 2px solid rgba(57, 255, 20, 0.3);
            border-radius: 8px;
            color: #ffffff;
            font-size: 1rem;
            transition: all 0.3s ease;
            font-family: inherit;
        }

        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: #39FF14;
            box-shadow: 0 0 15px rgba(57, 255, 20, 0.2);
        }

        textarea {
            resize: vertical;
            min-height: 120px;
        }

        .benefit-list {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin-bottom: 30px;
        }

        .benefit-item {
            display: flex;
            align-items: center;
            gap: 12px;
            color: #b0b0b0;
        }

        .benefit-item::before {
            content: '✓';
            color: #39FF14;
            font-size: 1.3rem;
            font-weight: 800;
        }

        /* Waitlist Section */
        .waitlist-container {
            max-width: 700px;
            margin: 0 auto;
            background: rgba(26, 26, 26, 0.6);
            border: 2px solid rgba(57, 255, 20, 0.2);
            border-radius: 20px;
            padding: 50px 40px;
            text-align: center;
        }

        /* Footer */
        footer {
            background: rgba(0, 0, 0, 0.9);
            border-top: 2px solid rgba(57, 255, 20, 0.2);
            padding: 60px 20px 35px;
            text-align: center;
        }

        .footer-cta {
            font-size: 1.6rem;
            font-weight: 700;
            margin-bottom: 25px;
            color: #ffffff;
        }

        .footer-buttons {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-bottom: 40px;
            flex-wrap: wrap;
        }

        .footer-links {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin-bottom: 25px;
            flex-wrap: wrap;
        }

        .footer-links a {
            color: #b0b0b0;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .footer-links a:hover {
            color: #39FF14;
            text-shadow: 0 0 10px rgba(57, 255, 20, 0.5);
        }

        .socials {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin: 25px 0;
        }

        .social-icon {
            width: 45px;
            height: 45px;
            border-radius: 50%;
            background: rgba(57, 255, 20, 0.1);
            border: 2px solid rgba(57, 255, 20, 0.3);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #39FF14;
            text-decoration: none;
            font-size: 1.2rem;
            transition: all 0.3s ease;
        }

        .social-icon:hover {
            background: #39FF14;
            color: #000000;
            box-shadow: 0 0 20px rgba(57, 255, 20, 0.5);
            transform: translateY(-3px);
        }

        .copyright {
            color: #666;
            font-size: 0.9rem;
            margin-top: 25px;
        }

        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.8rem;
            }

            .section-title {
                font-size: 2.2rem;
            }

            .events-grid {
                grid-template-columns: 1fr;
            }

            .modal-body {
                padding: 30px 25px;
            }

            .modal-title {
                font-size: 2rem;
            }

            .ticket-types {
                grid-template-columns: 1fr;
            }
        }