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

:root {
    --primary-green: #00ff88;
    --dark-green: #00cc6a;
    --neon-green: #39ff14;
    --forest-green: #0a4d2e;
    --deep-green: #051810;
    --light-green: #8affce;
    --accent-color: #ff00ff;
    --primary-pink: #ff69b4;
    --neon-pink: #ff1493;
    --light-pink: #ffb3d9;
    --text-light: #622424;
    --text-dark: #0a0a0a;
}

body {
    font-family: 'Courier New', monospace;
    background: linear-gradient(135deg, var(--deep-green) 0%, #000000 100%);
    color: var(--text-light);
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
}

/* Background Animation */
.background-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(0, 255, 136, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(57, 255, 20, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(0, 204, 106, 0.05) 0%, transparent 50%);
    z-index: -1;
    animation: backgroundPulse 15s ease-in-out infinite;
}

@keyframes backgroundPulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

/* Navigation */
header {
    padding: 2rem 4rem;
    position: relative;
    z-index: 100;
    backdrop-filter: blur(10px);
    border-bottom: 2px solid var(--primary-green);
    box-shadow: 0 4px 30px rgba(0, 255, 136, 0.2);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.logo-image {
    height: 80px;
    width: auto;
    display: block;
    filter: drop-shadow(0 0 20px var(--neon-green)) drop-shadow(0 0 10px var(--neon-pink));
    transition: all 0.3s ease;
    animation: logoFloat 3s ease-in-out infinite;
}

.logo-image:hover {
    filter: drop-shadow(0 0 30px var(--neon-green)) drop-shadow(0 0 20px var(--neon-pink));
    transform: scale(1.05);
}

@keyframes logoFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

.menu {
    display: flex;
    list-style: none;
    gap: 3rem;
}

.menu-item {
    color: var(--light-green);
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: bold;
    text-transform: uppercase;
    padding: 0.5rem 1.5rem;
    border: 2px solid transparent;
    background: linear-gradient(var(--deep-green), var(--deep-green)) padding-box,
                linear-gradient(135deg, var(--primary-green), var(--neon-pink)) border-box;
    border-radius: 5px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.menu-item::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: var(--primary-green);
    transform: translate(-50%, -50%);
    transition: width 0.5s, height 0.5s;
    z-index: -1;
}

.menu-item:hover {
    color: var(--text-light);
    box-shadow: 0 0 4px var(--neon-green), 0 0 7px var(--neon-pink);
    transform: translateY(-3px);
}

.menu-item:hover::before {
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, var(--primary-green), var(--neon-pink));
}

/* Hero Section */
.hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 4rem 2rem;
    overflow: hidden;
    background-image: url('images/header.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    /* border: 5px solid; */
    border-image: linear-gradient(90deg, 
        #ff1493,    /* neon pink */
        #ff0000,    /* red */
        #ffff00,    /* yellow */
        #00ff88,    /* green */
        #ff1493     /* back to pink */
    ) 1;
    box-shadow: 
        0 0 20px rgba(255, 20, 147, 0.6),
        0 0 40px rgba(255, 0, 0, 0.4),
        0 0 60px rgba(255, 255, 0, 0.4),
        0 0 80px rgba(0, 255, 136, 0.6),
        inset 0 0 100px rgba(0, 0, 0, 0.7);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(5, 24, 16, 0.85) 0%, 
        rgba(0, 0, 0, 0.75) 50%,
        rgba(5, 24, 16, 0.85) 100%
    );
    z-index: 1;
}

.hero-content {
    text-align: center;
    z-index: 10;
    position: relative;
    background: rgba(0, 0, 0, 0.3);
    padding: 3rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.main-title {
    font-size: 4rem;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.main-title .line {
    display: block;
    color: var(--light-green);
    animation: fadeInUp 1s ease-out forwards;
    opacity: 0;
}

.main-title .line:nth-child(1) {
    animation-delay: 0.2s;
}

.main-title .line:nth-child(2) {
    animation-delay: 0.4s;
}

.main-title .line:nth-child(3) {
    animation-delay: 0.6s;
}

.highlight {
    background: linear-gradient(135deg, var(--primary-green), var(--neon-pink), var(--primary-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 5rem;
    filter: drop-shadow(0 0 20px var(--neon-green)) drop-shadow(0 0 30px var(--neon-pink));
}

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

.hero-description {
    font-size: 1.5rem;
    color: var(--light-green);
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease-out 0.8s forwards;
    opacity: 0;
    width: 70%;
    margin: 0 auto;
}

.cta-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    animation: fadeInUp 1s ease-out 1s forwards;
    opacity: 0;
}

.btn {
    padding: 1rem 3rem;
    font-size: 1.2rem;
    font-weight: bold;
    text-transform: uppercase;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Courier New', monospace;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-green), var(--neon-pink));
    color: var(--text-dark);
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.3), 0 10px 30px rgba(255, 105, 180, 0.2);
}

.btn-primary:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 255, 136, 0.5), 0 15px 40px rgba(255, 105, 180, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--light-pink);
    border: 3px solid transparent;
    background: linear-gradient(var(--deep-green), var(--deep-green)) padding-box,
                linear-gradient(135deg, var(--primary-green), var(--neon-pink)) border-box;
}

.btn-secondary:hover {
    background: linear-gradient(135deg, var(--primary-green), var(--neon-pink));
    color: var(--text-dark);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 255, 136, 0.3), 0 15px 40px rgba(255, 105, 180, 0.3);
}

/* Floating Shapes */
.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: var(--primary-green);
    opacity: 0.1;
    filter: blur(2px);
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    left: 10%;
    animation: float 20s ease-in-out infinite;
}

.shape-2 {
    width: 200px;
    height: 200px;
    top: 60%;
    right: 15%;
    animation: float 15s ease-in-out infinite reverse;
}

.shape-3 {
    width: 150px;
    height: 150px;
    bottom: 20%;
    left: 20%;
    animation: float 18s ease-in-out infinite;
    background: var(--neon-green);
}

.shape-4 {
    width: 250px;
    height: 250px;
    top: 30%;
    right: 25%;
    animation: float 22s ease-in-out infinite;
}

.shape-5 {
    width: 180px;
    height: 180px;
    bottom: 10%;
    right: 40%;
    animation: float 16s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(30px, -30px) rotate(120deg);
    }
    66% {
        transform: translate(-20px, 20px) rotate(240deg);
    }
}

/* Content Sections */
.content-section {
    padding: 6rem 2rem;
    position: relative;
}

.content-section.alt {
    background: rgba(0, 255, 136, 0.02);
    border-top: 1px solid rgba(0, 255, 136, 0.2);
    border-bottom: 1px solid rgba(0, 255, 136, 0.2);
}

.section-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.section-icon {
    font-size: 5rem;
    margin-bottom: 2rem;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

.content-section h3 {
    font-size: 3rem;
    color: var(--primary-green);
    margin-bottom: 1.5rem;
    text-shadow: 0 0 10px var(--neon-green);
}

.content-section p {
    font-size: 1.3rem;
    color: var(--light-green);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.link-btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: transparent;
    color: var(--primary-green);
    text-decoration: none;
    border: 2px solid var(--primary-green);
    border-radius: 30px;
    font-size: 1.2rem;
    font-weight: bold;
    transition: all 0.3s ease;
}

.link-btn:hover {
    background: var(--primary-green);
    color: var(--text-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.4);
}

/* Meme Grid */
.meme-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.meme-card {
    aspect-ratio: 1;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.1), rgba(57, 255, 20, 0.1));
    border: 2px solid var(--primary-green);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-green);
    transition: all 0.3s ease;
    cursor: pointer;
    overflow: hidden;
}

.meme-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 18px;
}

.meme-card:hover {
    transform: scale(1.05) rotate(2deg);
    box-shadow: 0 15px 40px rgba(0, 255, 136, 0.4);
    border-color: var(--neon-green);
}

/* PFP Grid */
.pfp-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.pfp-item {
    aspect-ratio: 1;
    background: linear-gradient(135deg, rgba(57, 255, 20, 0.15), rgba(0, 204, 106, 0.15));
    border: 3px solid var(--primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: bold;
    color: var(--primary-green);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.pfp-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.pfp-item::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(
        transparent,
        var(--neon-green),
        transparent 30%
    );
    animation: rotate 4s linear infinite;
    opacity: 0;
    transition: opacity 0.3s;
}

.pfp-item:hover::before {
    opacity: 0.3;
}

.pfp-item:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(0, 255, 136, 0.6);
}

@keyframes rotate {
    100% {
        transform: rotate(360deg);
    }
}

/* Footer */
footer {
    background: rgba(0, 0, 0, 0.5);
    border-top: 2px solid var(--primary-green);
    padding: 3rem 2rem;
    text-align: center;
    margin-top: 4rem;
}

.footer-content p {
    color: var(--light-green);
    margin: 0.5rem 0;
    font-size: 1.1rem;
}

.footer-tagline {
    color: var(--primary-green);
    font-size: 1.3rem;
    font-weight: bold;
    text-shadow: 0 0 10px var(--neon-green);
}

/* Responsive Design */
@media (max-width: 768px) {
    header {
        padding: 1.5rem 1rem;
    }

    .navbar {
        flex-direction: column;
        gap: 1.5rem;
    }

    .logo-image {
        height: 60px;
    }

    .menu {
        gap: 0.8rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .menu-item {
        font-size: 0.9rem;
        padding: 0.4rem 1rem;
    }

    .hero {
        padding: 3rem 1rem;
        min-height: 60vh;
        background-size: cover;
        background-position: center center;
        border-width: 3px;
        box-shadow: 
            0 0 15px rgba(255, 20, 147, 0.5),
            0 0 30px rgba(255, 0, 0, 0.3),
            0 0 45px rgba(255, 255, 0, 0.3),
            0 0 60px rgba(0, 255, 136, 0.5);
    }

    .hero-content {
        padding: 2rem 1rem;
    }

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

    .highlight {
        font-size: 2.5rem;
    }

    .hero-description {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .btn {
        padding: 0.8rem 2rem;
        font-size: 1rem;
        width: 100%;
        max-width: 280px;
    }

    .content-section {
        padding: 4rem 1rem;
    }

    .content-section h3 {
        font-size: 2rem;
    }

    .content-section p {
        font-size: 1rem;
        padding: 0 0.5rem;
    }

    .section-icon {
        font-size: 3rem;
    }

    .meme-grid,
    .pfp-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .shape {
        opacity: 0.05;
    }
}

@media (max-width: 480px) {
    .hero {
        border-width: 2px;
    }

    .hero-content {
        padding: 1.5rem 1rem;
    }

    .logo-image {
        height: 50px;
    }

    .main-title {
        font-size: 1.5rem;
    }

    .highlight {
        font-size: 2rem;
    }

    .menu-item {
        font-size: 0.8rem;
        padding: 0.3rem 0.8rem;
    }
}
