* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Exo 2', sans-serif;
    height: 100vh;
    overflow: hidden;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a0505 25%, #2d1010 50%, #1a0505 75%, #0a0a0a 100%);
    position: relative;
}

.background-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 69, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 140, 0, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(220, 20, 60, 0.06) 0%, transparent 50%);
    z-index: -2;
}

.background-blur {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(2px);
    z-index: -1;
}

.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
    padding: 20px;
    position: relative;
    z-index: 1;
}

.logo-container {
    margin-bottom: 3rem;
    animation: logoGlow 3s ease-in-out infinite alternate;
}

.logo {
    max-width: 200px;
    height: auto;
    filter: drop-shadow(0 0 10px rgba(255, 69, 0, 0.3));
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

@keyframes logoGlow {
    0% {
        filter: drop-shadow(0 0 10px rgba(255, 69, 0, 0.3));
    }
    100% {
        filter: drop-shadow(0 0 15px rgba(255, 140, 0, 0.4));
    }
}

.content {
    margin-bottom: 4rem;
}

.main-text {
    font-family: 'Orbitron', monospace;
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 700;
    color: #ffffff;
    text-shadow: 
        0 0 5px rgba(255, 69, 0, 0.4),
        0 0 10px rgba(255, 69, 0, 0.2),
        0 0 15px rgba(255, 69, 0, 0.1);
    line-height: 1.2;
    margin-bottom: 2rem;
    animation: textPulse 4s ease-in-out infinite;
}

.highlight {
    color: #ff4500;
    text-shadow: 
        0 0 8px rgba(255, 69, 0, 0.6),
        0 0 15px rgba(255, 69, 0, 0.3),
        0 0 25px rgba(255, 69, 0, 0.2);
}

@keyframes textPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.9;
    }
    50% {
        transform: scale(1.02);
        opacity: 1;
    }
}

.status-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    font-size: 1.2rem;
    color: #ff8c00;
    font-weight: 400;
}

.pulse-dot {
    width: 12px;
    height: 12px;
    background: #ff4500;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
    box-shadow: 0 0 5px rgba(255, 69, 0, 0.4);
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.5);
        opacity: 0.7;
    }
}

.social-links {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    justify-content: center;
}

.social-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: #666666;
    transition: all 0.3s ease;
    padding: 1rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 69, 0, 0.1);
    min-width: 80px;
    cursor: default;
    position: relative;
}

.social-link i {
    font-size: 2rem;
    transition: all 0.3s ease;
}

.social-link span {
    font-size: 0.9rem;
    font-weight: 400;
    transition: all 0.3s ease;
}

.social-link:hover {
    transform: translateY(-2px);
    background: rgba(255, 69, 0, 0.05);
    border-color: rgba(255, 69, 0, 0.2);
    box-shadow: 0 5px 15px rgba(255, 69, 0, 0.1);
}

.social-link::after {
    content: "Wkrótce";
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.7rem;
    color: #888888;
    opacity: 0;
    transition: opacity 0.3s ease;
    white-space: nowrap;
}

.social-link:hover::after {
    opacity: 1;
}

.social-link[data-platform="discord"]:hover {
    color: #7289da;
    box-shadow: 0 5px 15px rgba(114, 137, 218, 0.1);
}

.social-link[data-platform="youtube"]:hover {
    color: #ff0000;
    box-shadow: 0 5px 15px rgba(255, 0, 0, 0.1);
}

.social-link[data-platform="instagram"]:hover {
    color: #e4405f;
    box-shadow: 0 5px 15px rgba(228, 64, 95, 0.1);
}

.social-link[data-platform="tiktok"]:hover {
    color: #ff0050;
    box-shadow: 0 5px 15px rgba(255, 0, 80, 0.1);
}

.footer {
    color: #888888;
    font-size: 0.9rem;
    font-weight: 300;
}

.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: rgba(255, 69, 0, 0.6);
    border-radius: 50%;
    animation: float 6s infinite linear;
}

.particle:nth-child(1) {
    left: 10%;
    animation-delay: 0s;
    animation-duration: 8s;
}

.particle:nth-child(2) {
    left: 20%;
    animation-delay: 1s;
    animation-duration: 6s;
}

.particle:nth-child(3) {
    left: 30%;
    animation-delay: 2s;
    animation-duration: 10s;
}

.particle:nth-child(4) {
    left: 40%;
    animation-delay: 3s;
    animation-duration: 7s;
}

.particle:nth-child(5) {
    left: 50%;
    animation-delay: 4s;
    animation-duration: 9s;
}

.particle:nth-child(6) {
    left: 60%;
    animation-delay: 5s;
    animation-duration: 5s;
}

.particle:nth-child(7) {
    left: 70%;
    animation-delay: 6s;
    animation-duration: 8s;
}

.particle:nth-child(8) {
    left: 80%;
    animation-delay: 7s;
    animation-duration: 6s;
}

.particle:nth-child(9) {
    left: 90%;
    animation-delay: 8s;
    animation-duration: 7s;
}

.particle:nth-child(10) {
    left: 15%;
    animation-delay: 9s;
    animation-duration: 9s;
}

@keyframes float {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) rotate(360deg);
        opacity: 0;
    }
}

/* Responsywność */
@media (max-width: 768px) {
    .container {
        padding: 15px;
    }
    
    .logo {
        max-width: 150px;
    }
    
    .main-text {
        font-size: clamp(1.5rem, 6vw, 2.5rem);
        margin-bottom: 1.5rem;
    }
    
    .social-links {
        gap: 1rem;
        margin-bottom: 2rem;
    }
    
    .social-link {
        padding: 0.8rem;
        min-width: 70px;
    }
    
    .social-link i {
        font-size: 1.5rem;
    }
    
    .social-link span {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .social-links {
        gap: 0.8rem;
    }
    
    .social-link {
        padding: 0.6rem;
        min-width: 60px;
    }
}

/* Aktywna ikonka Discord */
.social-link.active {
    color: #cccccc;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 69, 0, 0.2);
}

.social-link.active:hover {
    transform: translateY(-5px);
    background: rgba(114, 137, 218, 0.1);
    border-color: rgba(114, 137, 218, 0.4);
    box-shadow: 0 8px 25px rgba(114, 137, 218, 0.2);
    color: #7289da;
}

.social-link.active::after {
    content: "Dołącz do nas!";
}

.social-link.active:hover::after {
    opacity: 1;
}