/* === BAZOWE USTAWIENIA === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

/* === GAMINGOWE TŁO Z SIATKĄ (CYBERPUNK VIBE) === */
body {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #07070a; /* Głęboka czerń */
    color: #ffffff;
    padding: 40px 20px;
    position: relative;
    overflow-x: hidden;
}

/* Subtelne neonowe poświaty w tle */
body::before {
    content: '';
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: 
        radial-gradient(circle at 15% 30%, rgba(83, 252, 24, 0.08), transparent 40%),
        radial-gradient(circle at 85% 70%, rgba(88, 101, 242, 0.08), transparent 40%);
    z-index: -2;
}

/* Animowana siatka w tle */
.grid-bg {
    position: fixed;
    top: 0; left: 0; width: 100vw; height: 100vh;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    z-index: -1;
    animation: moveGrid 15s linear infinite;
}

/* === GŁÓWNY KONTENER === */
.container {
    width: 100%;
    max-width: 480px;
    text-align: center;
    animation: fadeIn 1s ease-out forwards;
    position: relative;
    z-index: 10;
}

/* === ZDJĘCIE PROFILOWE === */
.profile-wrapper {
    position: relative;
    width: 140px;
    height: 140px;
    margin: 0 auto 20px;
}

.profile-pic {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 2;
}

.profile-wrapper::after {
    content: '';
    position: absolute;
    top: -5px; left: -5px; right: -5px; bottom: -5px;
    border-radius: 50%;
    background: linear-gradient(45deg, #53FC18, #00d2ff, #E1306C);
    z-index: 1;
    filter: blur(20px);
    opacity: 0.6;
    animation: pulseGlow 3s infinite alternate;
}

/* === TEKSTY === */
.name {
    font-size: 2.2rem;
    font-weight: 900;
    margin-bottom: 5px;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-shadow: 0 0 15px rgba(255,255,255,0.3);
}

.bio {
    font-size: 0.95rem;
    font-weight: 400;
    margin-bottom: 35px;
    color: #b3b3b3;
}

/* === KONTENER NA ZAKŁADKI === */
.links-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* === BAZOWY STYL ZAKŁADEK === */
.link-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 18px 25px;
    border-radius: 12px;
    text-decoration: none;
    color: #ffffff;
    font-weight: 600;
    font-size: 1.1rem;
    position: relative;
    overflow: hidden;
    
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    opacity: 0;
    transform: translateY(20px);
    animation: slideUp 0.5s ease-out forwards;
}

.link-btn i, .link-btn .custom-icon {
    position: absolute;
    left: 25px;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

/* === SPECJALNE TŁO I STYL DLA KICKA (LASER EFFECT) === */
.link-btn.kick {
    background: linear-gradient(90deg, rgba(20, 20, 20, 0.8) 0%, rgba(83, 252, 24, 0.2) 50%, rgba(20, 20, 20, 0.8) 100%);
    background-size: 200% 100%;
    border: 1px solid rgba(83, 252, 24, 0.6);
    box-shadow: 0 0 15px rgba(83, 252, 24, 0.2);
    animation: kickLaser 3s infinite linear, slideUp 0.5s ease-out forwards;
    font-weight: 800;
    letter-spacing: 1px;
}

.link-btn.kick .custom-icon {
    font-weight: 900;
    font-style: italic;
    color: #53FC18;
    text-shadow: 0 0 10px rgba(83, 252, 24, 0.8);
}

.link-btn.kick:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 0 30px rgba(83, 252, 24, 0.5);
    border-color: #53FC18;
    color: #ffffff;
    text-shadow: 0 0 5px #53FC18;
}

/* === G4SKINS Z EFEKTEM 18+ === */
.link-btn.g4skins:hover {
    background: rgba(255, 153, 0, 0.1);
    border-color: #ff9900;
    box-shadow: 0 0 20px rgba(255, 153, 0, 0.4);
    color: #ff9900;
}

.age-badge {
    position: absolute;
    right: 25px;
    background-color: #ff0000;
    color: white;
    font-size: 0.85rem;
    font-weight: 900;
    padding: 5px 10px;
    border-radius: 8px;
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.7);
}

.link-btn.g4skins:hover .age-badge {
    opacity: 1;
    transform: scale(1) rotate(5deg);
}

/* === POZOSTAŁE EFEKTY HOVER === */
.link-btn.tipply:hover {
    background: rgba(0, 210, 255, 0.1); border-color: #00d2ff; color: #00d2ff;
    box-shadow: 0 0 20px rgba(0, 210, 255, 0.4); transform: translateY(-4px);
}
.link-btn.discord:hover {
    background: rgba(88, 101, 242, 0.1); border-color: #5865F2; color: #5865F2;
    box-shadow: 0 0 20px rgba(88, 101, 242, 0.4); transform: translateY(-4px);
}
.link-btn.tiktok:hover {
    background: rgba(255, 0, 80, 0.1); border-color: #ff0050; color: #ffffff;
    box-shadow: -5px 5px 20px rgba(0, 242, 254, 0.3), 5px -5px 20px rgba(255, 0, 80, 0.3); transform: translateY(-4px);
}
.link-btn.instagram:hover {
    background: rgba(225, 48, 108, 0.1); border-color: #E1306C; color: #E1306C;
    box-shadow: 0 0 20px rgba(225, 48, 108, 0.4); transform: translateY(-4px);
}
.link-btn.youtube:hover {
    background: rgba(255, 0, 0, 0.1); border-color: #FF0000; color: #FF0000;
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.4); transform: translateY(-4px);
}

/* === OPÓŹNIENIA ANIMACJI WSKAKIWANIA === */
.link-btn:nth-child(1) { animation-delay: 0.1s; } 
.link-btn.kick { animation-delay: 0.2s; }         
.link-btn:nth-child(3) { animation-delay: 0.3s; } 
.link-btn:nth-child(4) { animation-delay: 0.4s; } 
.link-btn:nth-child(5) { animation-delay: 0.5s; } 
.link-btn:nth-child(6) { animation-delay: 0.6s; } 
.link-btn:nth-child(7) { animation-delay: 0.7s; } 

/* === DEFINICJE ANIMACJI === */
@keyframes kickLaser {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

@keyframes moveGrid {
    0% { transform: translateY(0); }
    100% { transform: translateY(40px); }
}

@keyframes pulseGlow {
    0% { transform: scale(0.95); opacity: 0.4; }
    100% { transform: scale(1.05); opacity: 0.8; }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}