/* --- Global & Body --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overscroll-behavior-y: contain;
    background-color: #000;
}

html, body {
    height: 100%;
    font-family: 'Lato', sans-serif;
    color: #fff;
}

/* --- Video Background & Overlay --- */
.video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    overflow: hidden;
}

.video-background video,
.video-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: -1;
}

/* --- Main Container --- */
.container {
    width: 95%;
    max-width: 500px;
    margin: 40px auto;
    text-align: center;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.8);
    border-radius: 15px;
}

/* --- Header Section --- */
header {
    margin-bottom: 20px;
}

.profile-pic {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(255, 255, 255, 0.5);
    margin-bottom: 10px;
}

.name {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    gap: 8px;
}

.name-logo {
    height: 68px;
    width: auto;
}

.verification-badge {
    color: #0095F6;
    font-size: 1.5rem;
}

.handle {
    color: #ccc;
    font-size: 1rem;
    margin-top: 5px;
}

/* --- Social Icons (New Style) --- */
.social-icons {
    display: flex;
    justify-content: center;
    gap: 25px;
    /* ZMIANA TUTAJ */
    margin: 10px 0 25px; /* Zmniejszony górny margines, dolny pozostawiony */
}

.social-icons a {
    color: #ccc;
    font-size: 1.4rem;
    transition: color 0.2s, transform 0.2s;
}

.social-icons a:hover {
    color: #fff;
    transform: scale(1.1);
}

.social-icons a img {
    height: 40px;
    vertical-align: middle; 
}


/* --- Bio --- */
.bio {
    font-size: 1rem;
    color: #eee;
    line-height: 1.6;
    margin-bottom: 30px;
}

/* --- Link Buttons Section (New Style) --- */
.links-section {
    width: 100%;
}

.link-button {
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 200px;
    padding: 15px 20px;
    margin-bottom: 15px;
    text-decoration: none;
    color: #fff;
    
    background-size: cover;
    background-position: center;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    
    position: relative;
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.link-button::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: rgba(0, 0, 0, 0.6);
    transition: background-color 0.2s ease;
}

.link-button:hover {
    transform: scale(1.02);
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}

.link-button:hover::before {
    background-color: rgba(0, 0, 0, 0.4);
}

/* Link-specific backgrounds */
#link-of { background-image: url('https://i.ibb.co/SX7wFRMM/asdsadsadsadsafgdhgfgh.png'); }
#link-telegram { background-image: url('https://i.ibb.co/zVDLTTBv/mimimimimimimimimimi.png'); }
#link-stripchat { background-image: url('https://i.ibb.co/jPQkTGXH/agayayayayay.png'); }

.link-text {
    position: relative;
    z-index: 1;
    text-align: left;
}

.link-title {
    display: block;
    font-weight: 700;
    font-size: 1rem;
}

.link-subtitle {
    display: block;
    font-size: 0.8rem;
    color: #ccc;
    margin-top: 4px;
}

/* --- Footer --- */
footer {
    margin-top: 40px;
}

footer p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
}