:root {
    --gold: #FFD700;
    --dark-gold: #B8860B;
    --light-gold: #FFF7CC;
    --bg: rgba(0, 0, 0, 0.7);
    --text: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Livvic', sans-serif;
    color: var(--text);
    min-height: 100vh;
    background: url('banner.jpg') center/cover fixed;
    overflow-x: hidden;
}

.banner-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.8));
    z-index: 1;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--bg);
    backdrop-filter: blur(10px);
    z-index: 10;
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

.logo-container {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--gold);
}

.floating-logo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.ca-copier {
    display: flex;
    gap: 1rem;
    background: rgba(255, 215, 0, 0.1);
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.ca-copier input {
    background: transparent;
    border: none;
    color: var(--gold);
    font-family: inherit;
    width: 300px;
    font-size: 0.9rem;
}

.copy-ca {
    background: var(--gold);
    color: black;
    border: none;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

.copy-ca:hover {
    background: var(--dark-gold);
    transform: scale(1.05);
}

.content {
    position: relative;
    z-index: 2;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 6rem 2rem 2rem;
    text-align: center;
}

.hero-text {
    margin-bottom: 4rem;
}

.glitch-title {
    font-size: 8rem;
    font-weight: 700;
    color: var(--gold);
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
    margin-bottom: 2rem;
    position: relative;
}

.glitch-title::before,
.glitch-title::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    clip: rect(0, 900px, 0, 0);
}

.glitch-title::before {
    left: 2px;
    text-shadow: -2px 0 #ff00c1;
    animation: glitch-anim 2s infinite linear alternate-reverse;
}

.glitch-title::after {
    left: -2px;
    text-shadow: 2px 0 #00fff9;
    animation: glitch-anim2 3s infinite linear alternate-reverse;
}

@keyframes glitch-anim {
    0% { clip: rect(44px, 9999px, 56px, 0); }
    20% { clip: rect(12px, 9999px, 76px, 0); }
    40% { clip: rect(89px, 9999px, 15px, 0); }
    60% { clip: rect(32px, 9999px, 98px, 0); }
    80% { clip: rect(54px, 9999px, 35px, 0); }
    100% { clip: rect(67px, 9999px, 23px, 0); }
}

@keyframes glitch-anim2 {
    0% { clip: rect(12px, 9999px, 78px, 0); }
    20% { clip: rect(65px, 9999px, 34px, 0); }
    40% { clip: rect(23px, 9999px, 89px, 0); }
    60% { clip: rect(76px, 9999px, 45px, 0); }
    80% { clip: rect(34px, 9999px, 87px, 0); }
    100% { clip: rect(89px, 9999px, 23px, 0); }
}

.stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.stats span {
    font-size: 1.5rem;
    color: var(--gold);
    font-weight: 600;
    text-shadow: 0 0 10px rgba(0,0,0,0.5);
}

.description {
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.2rem;
    line-height: 1.6;
    color: var(--text);
    text-shadow: 0 0 10px rgba(0,0,0,0.5);
}

.social-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    width: 100%;
    max-width: 1000px;
    padding: 2rem;
    background: var(--bg);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.social-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 15px;
    color: var(--gold);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    transform: translateY(-5px);
    background: rgba(255, 215, 0, 0.2);
}

.social-link i {
    font-size: 1.5rem;
}

.social-link span {
    font-weight: 500;
}

.social-icon {
    width: 24px;
    height: 24px;
    fill: var(--gold);
    transition: all 0.3s ease;
}

.social-link:hover .social-icon {
    transform: scale(1.2);
    filter: drop-shadow(0 0 5px var(--gold));
}

@media (max-width: 768px) {
    header {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }

    .ca-copier {
        width: 90%;
        flex-direction: column;
        align-items: center;
    }

    .ca-copier input {
        width: 100%;
        text-align: center;
        margin-bottom: 0.5rem;
        font-size: 0.8rem;
    }

    .glitch-title {
        font-size: clamp(2.5rem, 10vw, 4rem);
    }

    .stats {
        flex-direction: column;
        gap: 1rem;
    }

    .description {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .social-container {
        grid-template-columns: 1fr;
        padding: 1rem;
        gap: 1rem;
        width: 90%;
    }

    .social-link {
        padding: 0.8rem;
        justify-content: center;
    }

    .social-link span {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .content {
        padding-top: 8rem;
    }

    .stats span {
        font-size: 1.2rem;
    }

    .social-container {
        margin-top: 2rem;
    }
}
