* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: #0a0a0a;
    background-size: cover;
    background-position: center center;
    background-repeat: repeat;
    background-attachment: fixed;
    backdrop-filter: blur(2px);
    color: #fff;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.2));
    backdrop-filter: blur(1.5px);
    z-index: 1;
    min-height: 100vh;
}

.container {
    max-width: 600px;
    width: 90%;
    padding: 20px;
    text-align: center;
    position: relative;
    z-index: 2;
    background: rgba(20, 20, 20, 0.85);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
}

.profile-section {
    margin-bottom: 30px;
}

.profile-pic {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 3px solid #fff;
    margin-bottom: 15px;
    object-fit: cover;
}

.creator-name {
    color: #fff;
    font-size: 24px;
    margin-bottom: 10px;
}

#location {
    color: #fff;
    font-size: 16px;
    margin-bottom: 20px;
}

.creator-bio {
    color: #fff;
    font-size: 16px;
    margin-bottom: 15px;
    opacity: 0.9;
    font-weight: 300;
    line-height: 1.4;
    max-width: 80%;
    margin-left: auto;
    margin-right: auto;
}

.links-section {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.link-button {
    background: rgba(20, 20, 20, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 15px 20px;
    border-radius: 10px;
    text-decoration: none;
    color: #fff;
    font-weight: bold;
    transition: all 0.3s ease;
}

/* OnlyFans specific button */
.link-button[href*="onlyfans.com"] {
    color: #00AFF0 !important;
}

/* Dark mode specific styles */
@media (prefers-color-scheme: dark) {
    .link-button {
        background: rgba(20, 20, 20, 0.9);
        border: 1px solid rgba(255, 255, 255, 0.2);
    }

    .link-button:hover {
        background: rgba(40, 40, 40, 0.95);
        transform: translateY(-2px);
    }
}

.link-button:hover {
    transform: translateY(-2px);
    background: rgba(40, 40, 40, 0.95);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.link-button i {
    margin-right: 10px;
}

/* Remove backdrop-filter for mobile devices */
@media screen and (max-width: 768px) {
    .container, .link-button {
        backdrop-filter: none;
    }
    
    body::before {
        backdrop-filter: none;
        background: rgba(0, 0, 0, 0.4);
    }
}

@media screen and (min-width: 1200px) {
    body {
        background-position: center center;
        background-size: 50% auto;
        background-repeat: repeat;
    }
}