@import url('https://fonts.googleapis.com/css2?family=Creepster&family=Orbitron:wght@400;700;900&display=swap');

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

body {
    background: linear-gradient(45deg, #0a0a0a, #1a0a00, #000000);
    background-size: 400% 400%;
    animation: backgroundShift 10s ease infinite;
    color: #ff6600;
    font-family: 'Orbitron', monospace;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

@keyframes backgroundShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.container {
    position: relative;
    z-index: 10;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.main-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.social-icons {
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    gap: 15px;
    z-index: 20;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(255, 102, 0, 0.1);
    border: 2px solid #ff6600;
    border-radius: 50%;
    color: #ff6600;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.social-icon:hover {
    background: rgba(255, 102, 0, 0.3);
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 0 20px rgba(255, 102, 0, 0.5);
}

.social-icon svg {
    width: 24px;
    height: 24px;
    filter: drop-shadow(0 0 5px #ff6600);
}

.bonk-text {
    font-family: 'Creepster', cursive;
    font-size: 0.8rem;
    font-weight: bold;
    text-shadow: 0 0 5px #ff6600;
    letter-spacing: -1px;
}

.letsbonk-icon:hover .bonk-text {
    animation: bonkPulse 0.5s ease-in-out;
}

@keyframes bonkPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

.skull-logo {
    margin-bottom: 30px;
}

.pixel-skull {
    width: 200px;
    height: 200px;
    image-rendering: pixelated;
    image-rendering: -moz-crisp-edges;
    image-rendering: crisp-edges;
    filter: drop-shadow(0 0 20px #ff6600) drop-shadow(0 0 40px #ff3300);
    animation: skullPulse 3s ease-in-out infinite, skullFloat 4s ease-in-out infinite;
}

@keyframes skullPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

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

.title {
    font-family: 'Creepster', cursive;
    font-size: 4rem;
    margin-bottom: 20px;
    text-shadow: 0 0 20px #ff6600, 0 0 40px #ff3300, 0 0 60px #cc3300;
    animation: titleGlow 2s ease-in-out infinite alternate;
}

@keyframes titleGlow {
    0% { text-shadow: 0 0 20px #ff6600, 0 0 40px #ff3300, 0 0 60px #cc3300; }
    100% { text-shadow: 0 0 30px #ff9933, 0 0 50px #ff6600, 0 0 70px #ff3300; }
}

.glitch {
    position: relative;
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.glitch::before {
    animation: glitch-1 0.5s infinite;
    color: #ff3300;
    z-index: -1;
}

.glitch::after {
    animation: glitch-2 0.5s infinite;
    color: #00ff00;
    z-index: -2;
}

@keyframes glitch-1 {
    0%, 14%, 15%, 49%, 50%, 99%, 100% { transform: translate(0); }
    15%, 49% { transform: translate(-2px, -2px); }
}

@keyframes glitch-2 {
    0%, 20%, 21%, 62%, 63%, 99%, 100% { transform: translate(0); }
    21%, 62% { transform: translate(2px, 2px); }
}

.subtitle {
    font-size: 1.2rem;
    opacity: 0.8;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.main-content {
    flex: 1;
}

.content-section {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #ff9933;
}

.description {
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.9;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.stat-card {
    background: rgba(255, 102, 0, 0.1);
    border: 2px solid #ff6600;
    border-radius: 10px;
    padding: 40px 20px;
    text-align: center;
    transition: all 0.3s ease;
    animation: cardFloat 6s ease-in-out infinite;
}

.stat-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 20px 40px rgba(255, 102, 0, 0.3);
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    color: #ff6600;
    margin-bottom: 10px;
    text-shadow: 0 0 10px #ff6600;
}

.stat-label {
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
}

.floating-skulls {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.skull {
    position: absolute;
    font-size: 2rem;
    opacity: 0.3;
    animation: float 15s infinite linear;
}

.skull-1 {
    left: 10%;
    animation-delay: 0s;
    animation-duration: 20s;
}

.skull-2 {
    left: 20%;
    animation-delay: -5s;
    animation-duration: 25s;
}

.skull-3 {
    left: 70%;
    animation-delay: -10s;
    animation-duration: 18s;
}

.skull-4 {
    left: 80%;
    animation-delay: -15s;
    animation-duration: 22s;
}

.skull-5 {
    left: 50%;
    animation-delay: -8s;
    animation-duration: 30s;
}

@keyframes float {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.3;
    }
    90% {
        opacity: 0.3;
    }
    100% {
        transform: translateY(-100px) rotate(360deg);
        opacity: 0;
    }
}

.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, #ff6600, transparent),
        radial-gradient(2px 2px at 40px 70px, #ff9933, transparent),
        radial-gradient(1px 1px at 90px 40px, #ff3300, transparent),
        radial-gradient(1px 1px at 130px 80px, #cc3300, transparent),
        radial-gradient(2px 2px at 160px 30px, #ff6600, transparent);
    background-repeat: repeat;
    background-size: 200px 200px;
    animation: particleMove 20s linear infinite;
    opacity: 0.4;
    z-index: 2;
}

@keyframes particleMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(-200px, -200px); }
}

.footer {
    text-align: center;
    margin-top: 60px;
    padding: 30px 0;
    border-top: 1px solid #ff6600;
    opacity: 0.7;
}

@media (max-width: 768px) {
    .title {
        font-size: 2.5rem;
    }

    .pixel-skull {
        width: 150px;
        height: 150px;
    }

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

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

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

    .social-icons {
        position: relative;
        top: auto;
        right: auto;
        justify-content: center;
        margin-bottom: 20px;
    }

    .social-icon {
        width: 45px;
        height: 45px;
    }

    .bonk-text {
        font-size: 0.7rem;
    }
}