* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: white;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

#bg-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: radial-gradient(circle at center, #1a1a1a 0%, #0d0d0d 100%);
}

main {
    text-align: center;
    z-index: 1;
}

.logo {
    max-width: 250px;
    margin-bottom: 2rem;
    filter: drop-shadow(0 0 15px rgba(0, 255, 100, 0.4));
}

nav {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.btn {
    text-decoration: none;
    color: #fff;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: transform 0.2s, box-shadow 0.3s;
    width: 220px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 1rem;
}

.btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(0, 255, 100, 0.5);
    background: inherit; /* brak zmiany koloru */
}

/* Kolory przycisków */
.shop {
    background: linear-gradient(135deg, #ffcc00, #ffdd44);
    color: #000;
}

.discord {
    background: #5865F2;
}

.instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.youtube {
    background: #ff0000;
}

.twitter {
    background: #000;
}

.tiktok {
    background: linear-gradient(135deg, #69C9D0, #EE1D52);
}

.ip-box {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(0, 255, 100, 0.15);
    padding: 0.5rem 1rem;
    border-radius: 10px;
    font-size: 0.9rem;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(0, 255, 100, 0.3);
    z-index: 2;
}
