:root {
    --primary-purple: #6B46C1;
    --primary-purple-dark: #553C9A;
    --primary-purple-light: #805AD5;
    --accent-purple: #9F7AEA;
    --shield-silver: #CBD5E0;
    --shield-silver-dark: #A0AEC0;
    --shield-glow: #B794F4;
    --background-dark: #1A202C;
    --text-light: #E2E8F0;
}

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

body {
    font-family: 'Roboto', sans-serif;
    background: linear-gradient(135deg, var(--background-dark), #2D3748);
    color: var(--text-light);
    line-height: 1.8;
}

.hero {
    position: relative;
    overflow: hidden;
    padding: 4rem 2rem;
    text-align: center;
    background: radial-gradient(circle at center, var(--primary-purple-dark) 0%, transparent 70%);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNjAiIGhlaWdodD0iNjAiIHZpZXdCb3g9IjAgMCA2MCA2MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJNNTAgMjVsLTIwIDIwTDEwIDI1bDIwLTIweiIgZmlsbD0iIzZCNDZDMSIgZmlsbC1vcGFjaXR5PSIwLjA1Ii8+PC9zdmc+');
    opacity: 0.1;
    z-index: 1;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.logo-container {
    position: relative;
    display: inline-block;
    margin-bottom: 2rem;
}

.logo {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    border: 8px solid var(--shield-silver);
    box-shadow: 0 0 30px var(--shield-glow);
    animation: shield-pulse 3s ease-in-out infinite;
}

@keyframes shield-pulse {
    0% {
        box-shadow: 0 0 30px var(--shield-glow);
    }
    50% {
        box-shadow: 0 0 50px var(--shield-glow), 0 0 80px var(--primary-purple-light);
    }
    100% {
        box-shadow: 0 0 30px var(--shield-glow);
    }
}

.logo-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, var(--primary-purple-light) 0%, transparent 70%);
    animation: shield-rotate 30s linear infinite;
    opacity: 0.3;
}

@keyframes shield-rotate {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

h1 {
    font-family: 'Black Ops One', cursive;
    font-size: 6rem;
    letter-spacing: 10px;
    text-shadow: 0 0 20px rgba(0,0,0,0.5);
    color: var(--light-tan);
    margin: 0;
    line-height: 1;
    animation: text-shadow-pop 1s ease-out both;
}

.ticker {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--light-tan);
    background: linear-gradient(90deg, var(--military-green-dark), var(--military-green), var(--military-green-dark));
    padding: 0.5rem 2rem;
    border-radius: 50px;
    display: inline-block;
    margin: 1rem 0;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    animation: ticker-slide-up 0.5s ease-out both;
}

.description {
    font-size: 1.2rem;
    line-height: 1.8;
    background: rgba(0,0,0,0.5);
    padding: 2rem;
    border-radius: 20px;
    border: 2px solid rgba(255,255,255,0.1);
    max-width: 600px;
    margin: 2rem auto 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    animation: fade-in 1s 0.5s ease-out both;
}

main {
    padding: 2rem;
}

.stats {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin: 6rem 2rem;
    perspective: 1000px;
}

.stat-box {
    background: linear-gradient(135deg, var(--primary-purple-dark), var(--primary-purple));
    padding: 2rem;
    border-radius: 15px;
    min-width: 250px;
    border: 2px solid var(--accent-purple);
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
    transition: all 0.5s ease;
    box-shadow: 0 10px 30px rgba(107, 70, 193, 0.3);
}

.stat-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(107, 70, 193, 0.5);
    border-color: var(--shield-glow);
}

.stat-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent,
        var(--shield-glow),
        transparent
    );
    transform: translateX(-100%) rotate(45deg);
    animation: shield-shine 3s infinite;
}

@keyframes shield-shine {
    0% {
        transform: translateX(-100%) rotate(45deg);
    }
    20%, 100% {
        transform: translateX(100%) rotate(45deg);
    }
}

.stat-title {
    font-family: 'Black Ops One', cursive;
    color: var(--light-tan);
    margin-bottom: 1rem;
    font-size: 2rem;
    position: relative;
    z-index: 1;
    text-shadow: 2px 2px 0 var(--camo-brown-dark);
}

.stat-value {
    font-size: 3rem;
    color: var(--accent-color);
    text-shadow: 0 0 10px rgba(0,0,0,0.5);
    position: relative;
    z-index: 1;
}

.cta {
    text-align: center;
    margin: 6rem 0;
}

.buy-button {
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-purple-light));
    color: white;
    padding: 1.5rem 4rem;
    border: none;
    border-radius: 50px;
    font-size: 1.5rem;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: 0 10px 30px rgba(107, 70, 193, 0.4);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.buy-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(107, 70, 193, 0.6);
}

.buy-button::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    transform: translateX(-100%) rotate(45deg);
    transition: 0.6s;
}

.buy-button:hover::after {
    transform: translateX(100%) rotate(45deg);
}

.buy-button .default,
.buy-button .success {
    display: block;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.buy-button .success {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.5);
    opacity: 0;
}

.buy-button.clicked .default {
    opacity: 0;
    transform: scale(0.5);
}

.buy-button.clicked .success {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

footer {
    background: rgba(0,0,0,0.8);
    color: #ddd;
    text-align: center;
    padding: 4rem 2rem;
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--military-green), var(--camo-brown), var(--military-green));
}

.chain-badge {
    background: linear-gradient(135deg, #00FFA3, #03E1FF);
    color: #1C1C1C;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: bold;
    display: inline-block;
    margin: 1rem 0;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(0, 255, 163, 0.3);
    animation: badge-glow 2s ease-in-out infinite;
}

@keyframes badge-glow {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(0, 255, 163, 0.3);
    }
    50% {
        box-shadow: 0 4px 25px rgba(0, 255, 163, 0.5);
    }
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.social-icons a {
    color: white;
    font-size: 2rem;
    transition: all 0.3s ease;
    padding: 1rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    text-decoration: none;
}

.social-icons a:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.social-icons .fa-telegram {
    color: #0088cc;
}

footer p {
    margin: 1rem;
    opacity: 0;
    animation: fade-in 1s 1s forwards;
}

.disclaimer {
    font-size: 0.8rem;
    opacity: 0.8;
    max-width: 800px;
    margin: 0 auto;
}

@keyframes logo-shine {
    0%, 100% {
        box-shadow: 0 0 30px rgba(212, 175, 55, 0.4);
    }
    50% {
        box-shadow: 0 0 50px rgba(212, 175, 55, 0.8);
    }
}

@keyframes logo-bg-spin {
    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes text-shadow-pop {
    0% {
        text-shadow: 0 0 0 rgba(0,0,0,0.5);
    }
    100% {
        text-shadow: 0 0 20px rgba(0,0,0,0.5);
    }
}

@keyframes ticker-slide-up {
    0% {
        transform: translateY(50px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes fade-in {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@media (max-width: 800px) {
    h1 {
        font-size: 4rem;
    }
    .logo {
        width: 200px;
        height: 200px;
    }
    .logo-bg {
        width: 220px;
        height: 220px;
    }
    .ticker {
        font-size: 2rem;
    }
    .description {
        font-size: 1rem;
        padding: 1.5rem;
    }
    .stat-title {
        font-size: 1.5rem;
    }
    .stat-value {
        font-size: 2rem;
    }
    .buy-button {
        font-size: 1.2rem;
        padding: 1.2rem 3rem;
    }
    .social-icons a {
        font-size: 1.5rem;
    }
}

@media (max-width: 600px) {
    .hero {
        padding: 2rem;
    }
    h1 {
        font-size: 3rem;
        letter-spacing: 5px;
    }
    .logo {
        width: 150px;
        height: 150px;
    }
    .logo-bg {
        width: 170px;
        height: 170px;
    }
    .ticker {
        font-size: 1.5rem;
        padding: 0.5rem 1.5rem;
    }
    .description {
        margin: 1rem auto 0;
    }
    .stats {
        margin: 4rem 1rem;
    }
    .stat-box {
        min-width: 200px;
        padding: 1.5rem;
    }
    .cta {
        margin: 4rem 0;
    }
    .buy-button {
        font-size: 1rem;
        padding: 1rem 2rem;
    }
    footer {
        padding: 2rem;
    }
    .social-icons {
        gap: 1rem;
        margin-bottom: 1rem;
    }
    .social-icons a {
        font-size: 1.2rem;
    }
    .chain-badge {
        font-size: 1rem;
        padding: 0.4rem 1.2rem;
    }
    
    .social-icons a {
        font-size: 1.5rem;
        width: 3rem;
        height: 3rem;
    }
} 

.x-logo {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    font-size: 2.2rem;
    font-weight: bold;
    color: white;
}

@media (max-width: 600px) {
    .x-logo {
        font-size: 1.7rem;
    }
    
    .social-icons a {
        font-size: 1.5rem;
        width: 3rem;
        height: 3rem;
    }
} 