* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    color: #ffffff;
    overflow-x: hidden;
}

/* Animated Background */
.bg-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.1;
}

.bg-animation::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, #00d4aa 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, #ffd700 0%, transparent 50%),
                radial-gradient(circle at 40% 80%, #00d4aa 0%, transparent 50%);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(1deg); }
}

/* Header */
header {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 15px 50px;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
}

.logo-image {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #00d4aa, #ffd700);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px rgba(0, 212, 170, 0.5);
    transition: all 0.3s ease;
}

.logo-image:hover {
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(0, 212, 170, 0.7);
}

.logo-image img {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    object-fit: cover;
}

.logo-text {
    font-size: 24px;
    font-weight: bold;
    color: #00d4aa;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a:hover {
    color: #00d4aa;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: #00d4aa;
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.mobile-menu {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    padding: 0 50px;
    gap: 50px;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5)), 
                url('https://images.unsplash.com/photo-1501386761578-eac5c94b800a?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80') center/cover no-repeat;
    background-attachment: fixed;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hero-content,
.hero-video {
    position: relative;
    z-index: 2;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #00d4aa, #ffd700, #00d4aa);
    background-size: 200% auto;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradient 3s ease infinite;
}

@keyframes gradient {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-stats {
    display: flex;
    gap: 30px;
    margin: 40px 0;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: #ffd700;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    color: #00d4aa;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.cta-button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 30px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    text-align: center;
    min-width: 160px;
}

.cta-button.primary {
    background: linear-gradient(45deg, #00d4aa, #ffd700);
    color: #000;
    box-shadow: 0 10px 30px rgba(0, 212, 170, 0.3);
}

.cta-button.primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 212, 170, 0.5);
}

.cta-button.secondary {
    background: transparent;
    color: #00d4aa;
    border: 2px solid #00d4aa;
}

.cta-button.secondary:hover {
    background: #00d4aa;
    color: #000;
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 212, 170, 0.3);
}

.hero-video {
    flex: 1;
    max-width: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-placeholder {
    width: 100%;
    height: 300px;
    background: linear-gradient(145deg, rgba(0, 212, 170, 0.1), rgba(255, 215, 0, 0.1));
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0, 212, 170, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.video-placeholder:hover {
    background: linear-gradient(145deg, rgba(0, 212, 170, 0.2), rgba(255, 215, 0, 0.2));
    border-color: #00d4aa;
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 212, 170, 0.3);
}

.video-placeholder i {
    font-size: 4rem;
    color: #ffd700;
    margin-bottom: 15px;
}

.video-placeholder span {
    color: #00d4aa;
    font-weight: bold;
    font-size: 1.1rem;
}

/* About Section */
.about {
    padding: 100px 50px;
    text-align: center;
}

.about h2 {
    font-size: 3rem;
    margin-bottom: 30px;
    color: #00d4aa;
}

.about p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
    opacity: 0.9;
}

/* Events Section */
.events {
    padding: 100px 50px;
}

.events h2 {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 50px;
    color: #00d4aa;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.event-card {
    background: linear-gradient(145deg, rgba(0, 212, 170, 0.1), rgba(255, 215, 0, 0.1));
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 212, 170, 0.3);
}

.event-card::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.5s ease;
    z-index: 1;
}

.event-card:hover::before {
    left: 100%;
}

.event-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 212, 170, 0.3);
    border-color: #00d4aa;
}

.event-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(45deg, #00d4aa, #ffd700);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.event-image-placeholder {
    color: #000;
    font-size: 3rem;
    opacity: 0.7;
}

.event-content {
    padding: 30px;
    position: relative;
    z-index: 2;
}

.event-date {
    background: #00d4aa;
    color: #000;
    padding: 10px 20px;
    border-radius: 20px;
    font-weight: bold;
    display: inline-block;
    margin-bottom: 20px;
}

.event-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #ffd700;
}

.event-description {
    margin-bottom: 20px;
    opacity: 0.9;
    line-height: 1.6;
}

.event-location {
    margin-bottom: 20px;
    color: #00d4aa;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 8px;
}

.ticket-button {
    background: linear-gradient(45deg, #ffd700, #00d4aa);
    color: #000;
    padding: 12px 25px;
    border: none;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.ticket-button:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.4);
}

/* Services Section */
.services {
    padding: 100px 50px;
    background: rgba(0, 212, 170, 0.05);
}

.services h2 {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 50px;
    color: #00d4aa;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.service-item {
    text-align: center;
    padding: 30px;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.service-item:hover {
    background: rgba(0, 212, 170, 0.1);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #ffd700;
}

.service-item h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #00d4aa;
}

/* Contact Section */
.contact {
    padding: 100px 50px;
    text-align: center;
}

.contact h2 {
    font-size: 3rem;
    margin-bottom: 30px;
    color: #00d4aa;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.2rem;
}

.contact-item i {
    color: #ffd700;
    width: 20px;
}

/* Footer */
footer {
    padding: 30px 50px 20px;
    text-align: center;
    border-top: 1px solid rgba(0, 212, 170, 0.3);
    background: rgba(0, 0, 0, 0.5);
}

.developer-credit {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.developer-credit p {
    font-size: 0.9rem;
    opacity: 0.8;
}

.stackwave-link {
    color: #32CD32;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    text-shadow: 0 0 10px rgba(50, 205, 50, 0.5);
}

.stackwave-link:hover {
    color: #98FB98;
    text-shadow: 0 0 15px rgba(50, 205, 50, 0.8);
    transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 768px) {
    header {
        padding: 15px 20px;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(0, 0, 0, 0.95);
        flex-direction: column;
        padding: 20px;
        gap: 20px;
    }

    .nav-links.active {
        display: flex;
    }

    .mobile-menu {
        display: block;
    }

    .hero {
        flex-direction: column;
        text-align: center;
        padding: 50px 20px;
        gap: 30px;
        background-attachment: scroll;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1.2rem;
    }

    .hero-stats {
        justify-content: center;
        gap: 20px;
    }

    .stat-number {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .cta-button {
        width: 100%;
        max-width: 250px;
    }

    .hero-video {
        max-width: 100%;
    }

    .video-placeholder {
        height: 200px;
    }

    .video-placeholder i {
        font-size: 3rem;
    }

    .about, .events, .services, .contact {
        padding: 50px 20px;
    }

    .events-grid {
        grid-template-columns: 1fr;
    }

    .contact-info {
        flex-direction: column;
        gap: 20px;
    }

    footer {
        padding: 20px;
    }
}

/* Scroll animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Dynamic CSS for ripple animation */
@keyframes ripple {
    to {
        transform: scale(4);
        opacity: 0;
    }
}