:root {
    --primary-brown: #8B4513;
    --primary-green: #4A7C59;
    --secondary-green: #2F5233;
    --light-brown: #D2691E;
    --cream: #FFF8DC;
    --weed-green: #228B22;
    --background-dark: #2C1810;
    --background-light: #3C2415;
    --smoke-color: rgba(255, 255, 255, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    background: linear-gradient(135deg, var(--background-dark), var(--background-light));
    color: var(--cream);
    line-height: 1.8;
}

.shield-background {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, var(--shield-glow) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, var(--shield-glow) 0%, transparent 50%);
    opacity: 0.1;
    z-index: -1;
}

.hero {
    position: relative;
    overflow: hidden;
    padding: 4rem 2rem;
    text-align: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, 
        rgba(139, 69, 19, 0.2) 0%, 
        rgba(44, 24, 16, 0.95) 100%);
    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: 4px solid var(--primary-brown);
    box-shadow: 
        0 0 30px rgba(139, 69, 19, 0.4),
        inset 0 0 30px rgba(139, 69, 19, 0.4);
    animation: float 6s ease-in-out infinite;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.shield-glow {
    position: absolute;
    top: -15px;
    left: -15px;
    right: -15px;
    bottom: -15px;
    border-radius: 50%;
    background: radial-gradient(circle, 
        var(--shield-glow) 0%, 
        transparent 70%);
    animation: shield-rotate 20s linear infinite;
    opacity: 0.6;
}

.shield-rings {
    position: absolute;
    top: -25px;
    left: -25px;
    right: -25px;
    bottom: -25px;
    border: 2px solid var(--shield-border);
    border-radius: 50%;
    animation: shield-expand 3s ease-in-out infinite;
}

.shield-rings::after {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 1px solid var(--shield-border);
    border-radius: 50%;
    animation: shield-expand 3s ease-in-out infinite 0.5s;
}

.shield-panel {
    background: linear-gradient(135deg, 
        rgba(123, 63, 228, 0.1), 
        rgba(155, 111, 245, 0.2));
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid var(--shield-border);
    transform-style: preserve-3d;
    transition: transform 0.5s ease;
}

.shield-panel:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 
        0 20px 40px rgba(123, 63, 228, 0.2),
        0 0 20px rgba(123, 63, 228, 0.3);
}

.shield-icon {
    font-size: 2.5rem;
    color: var(--primary-purple-light);
    margin-bottom: 1.5rem;
    text-shadow: 0 0 20px var(--shield-glow);
}

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: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 6rem auto;
    max-width: 1200px;
    padding: 0 2rem;
}

.stat-box {
    background: linear-gradient(135deg,
        rgba(139, 69, 19, 0.2),
        rgba(74, 124, 89, 0.3));
    padding: 2.5rem;
    border-radius: 20px;
    border: 2px solid var(--primary-brown);
    position: relative;
    overflow: hidden;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    transform-style: preserve-3d;
    animation: wobble 10s ease-in-out infinite;
}

.stat-box:hover {
    transform: translateY(-10px);
    box-shadow: 
        0 20px 40px rgba(123, 63, 228, 0.2),
        0 0 30px rgba(123, 63, 228, 0.3);
    border-color: var(--primary-purple-light);
}

.stat-box::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 200px;
    height: 200px;
    background: url('dog-tags.svg') no-repeat center center;
    background-size: contain;
    opacity: 0.1;
    transform: rotate(15deg);
}

.stat-title {
    font-family: 'Black Ops One', cursive;
    color: var(--text-color);
    font-size: 1.8rem;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.stat-value {
    font-size: 2.8rem;
    color: var(--primary-purple-light);
    font-weight: bold;
    text-shadow: 0 0 15px var(--shield-glow);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 1.1rem;
    letter-spacing: 1px;
}

.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;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 
        0 10px 30px rgba(123, 63, 228, 0.3),
        0 0 0 2px var(--shield-border);
}

.buy-button:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 15px 40px rgba(123, 63, 228, 0.4),
        0 0 0 3px var(--primary-purple-light);
}

.buy-button:active {
    transform: scale(0.95);
}

.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);
}

.buy-button::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(to bottom right, rgba(255,255,255,0), rgba(255,255,255,0.8), rgba(255,255,255,0));
    transform: translateX(-100%) rotate(45deg);
    transition: transform 0.7s ease;
}

.buy-button:hover::before {
    transform: translateX(100%) rotate(45deg);
}

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;
    }
} 

@keyframes shield-pulse {
    0%, 100% {
        box-shadow: 
            0 0 30px var(--shield-glow),
            inset 0 0 30px var(--shield-glow);
    }
    50% {
        box-shadow: 
            0 0 50px var(--shield-glow),
            inset 0 0 50px var(--shield-glow),
            0 0 80px var(--shield-glow);
    }
}

@keyframes button-glow {
    0%, 100% {
        box-shadow: 0 0 20px var(--glow-color);
    }
    50% {
        box-shadow: 0 0 40px var(--glow-color);
    }
} 

@keyframes shield-rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes shield-expand {
    0%, 100% { 
        transform: scale(1); 
        opacity: 0.3; 
    }
    50% { 
        transform: scale(1.1); 
        opacity: 0.1; 
    }
} 

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

.smoke-effect {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.smoke-particle {
    position: absolute;
    width: 50px;
    height: 50px;
    background: var(--smoke-color);
    border-radius: 50%;
    filter: blur(20px);
    animation: smoke 15s infinite;
    opacity: 0;
}

@keyframes smoke {
    0% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }
    20% {
        opacity: 0.5;
    }
    80% {
        opacity: 0.3;
    }
    100% {
        transform: translateY(-100px) scale(3);
        opacity: 0;
    }
}

@keyframes wobble {
    0%, 100% {
        transform: rotate(0deg);
    }
    25% {
        transform: rotate(2deg);
    }
    75% {
        transform: rotate(-2deg);
    }
} 