:root {
    --bg-color: #0a0a0a;
    --text-color: #fff;
    --accent: #b9f2ff;
    --crazy-color: #ff00ff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: var(--bg-color);
    color: var(--text-color);
    font-family: 'Arial', sans-serif;
    overflow: hidden;
}

.container {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: repeating-linear-gradient(
        45deg,
        #0a0a0a,
        #0a0a0a 10px,
        #0f0f0f 10px,
        #0f0f0f 20px
    );
}

.content {
    text-align: center;
    padding: 2rem;
    animation: shake 0.5s infinite;
}

.title-box {
    margin-bottom: 3rem;
}

.at {
    font-size: 5rem;
    color: var(--crazy-color);
    animation: colorChange 1s infinite;
}

.crazy-title {
    font-size: 5rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 5px;
    color: var(--accent);
    text-shadow: 
        3px 3px 0 var(--crazy-color),
        -3px -3px 0 #00ff00;
    animation: bounce 0.5s infinite;
}

.stats-box {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-bottom: 3rem;
}

.stat {
    background: #1a1a1a;
    padding: 1rem 2rem;
    border: 3px solid var(--crazy-color);
    transform: rotate(-2deg);
}

.stat:nth-child(2) {
    transform: rotate(2deg);
}

.stat:nth-child(3) {
    transform: rotate(-1deg);
}

.number {
    display: block;
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--accent);
}

.label {
    font-size: 0.8rem;
    letter-spacing: 2px;
}

.join-btn {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 2rem;
    font-size: 1.2rem;
    background: var(--crazy-color);
    color: var(--text-color);
    text-decoration: none;
    border: none;
    transform: rotate(-1deg);
    transition: transform 0.3s;
}

.join-btn:hover {
    transform: scale(1.1) rotate(2deg);
}

.join-btn i {
    font-size: 1.5rem;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes colorChange {
    0% { color: #ff00ff; }
    33% { color: #00ff00; }
    66% { color: #ff0000; }
    100% { color: #ff00ff; }
}

@media (max-width: 768px) {
    .stats-box {
        flex-direction: column;
        align-items: center;
    }
    
    .crazy-title {
        font-size: 3rem;
    }
    
    .at {
        font-size: 3rem;
    }
}

/* Dodatkowy efekt szumu w tle */
.container::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADIAAAAyBAMAAADsEZWCAAAAGFBMVEUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMABA+AAAACHRSTlMzMzMzMzMzM85JBgUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAAwSURBVDjLY2AYBaNg8AJGJkIkQQAjEwOxgHjAyESsQBwgHo6igBFhExMj8YBxFAAANCcqEXhBCJEAAAAASUVORK5CYII=');
    opacity: 0.1;
    pointer-events: none;
}