:root {
    --bg-dark: #050505;
    --text-white: #ffffff;
    --neon-blue: #00FFFF;
    --neon-pink: #FF00FF;
    --card-bg: rgba(20, 20, 20, 0.6);
    --card-border: rgba(255, 255, 255, 0.1);
    --font-main: 'Poppins', sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-dark);
    color: var(--text-white);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    overflow-x: hidden;
    position: relative;
}

/* Background Image Handling */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('assets/background.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
    opacity: 0.8;
}

.container {
    width: 100%;
    max-width: 480px;
    /* Mobile-first column constraint */
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    position: relative;
    z-index: 1;
}

/* Profile Section */
.profile-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 1px;
}

.profile-image-container {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    padding: 3px;
    background: linear-gradient(45deg, var(--neon-blue), var(--neon-pink));
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
    margin-bottom: 16px;
    animation: profilePulse 3s infinite alternate;
}

@keyframes profilePulse {
    0% {
        box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
    }

    100% {
        box-shadow: 0 0 40px rgba(255, 0, 255, 0.5), 0 0 10px rgba(0, 255, 255, 0.5);
    }
}

.profile-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid #000;
    /* Inner border to separate from gradient */
    display: block;
}

.profile-name {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    letter-spacing: 0.5px;
}

.profile-bio {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 15px;
}

/* Social Icons */
.social-icons {
    display: flex;
    gap: 20px;
    margin-top: 5px;
}

.social-icons a {
    color: white;
    font-size: 1.5rem;
    transition: transform 0.2s, color 0.2s;
    text-decoration: none;
    opacity: 0.85;
}

.social-icons a:hover {
    transform: scale(1.1);
    color: var(--neon-blue);
    opacity: 1;
}

/* Links Section */
.links-section {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.link-card {
    display: block;
    width: 100%;
    padding: 16px 20px;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 50px;
    /* Pill shape */
    text-decoration: none;
    color: white;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.link-content {
    display: flex;
    justify-content: center;
    /* Center text */
    align-items: center;
    position: relative;
    font-weight: 600;
    font-size: 1rem;
}

.link-icon {
    position: absolute;
    left: 20px;
    opacity: 0.8;
    font-size: 1.2rem;
}

/* Hover Effects */
.link-card:hover {
    transform: translateY(-2px);
    background: rgba(40, 40, 50, 0.7);
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.15);
    border-color: rgba(0, 255, 255, 0.4);
}

/* Special Card Style (e.g. OnlyFans) */
.special-card {
    background: linear-gradient(90deg, rgba(0, 255, 255, 0.1), rgba(255, 0, 255, 0.1), rgba(0, 255, 255, 0.1));
    background-size: 200% 100%;
    border: 1px solid rgba(0, 255, 255, 0.3);
    animation: gradientShimmer 3s infinite linear;
}

@keyframes gradientShimmer {
    0% {
        background-position: 100% 0%;
    }

    100% {
        background-position: -100% 0%;
    }
}

/* Subscribe Section */
.subscribe-section {
    width: 100%;
    margin-top: 10px;
}

.subscribe-container {
    background: rgba(0, 0, 0, 0.4);
    border-radius: 20px;
    padding: 24px;
    border: 1px solid var(--card-border);
    backdrop-filter: blur(5px);
}

.subscribe-title {
    text-align: center;
    margin-bottom: 20px;
    font-size: 1rem;
    font-weight: 600;
}

.subscribe-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.subscribe-input {
    width: 100%;
    padding: 14px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
    color: white;
    font-family: inherit;
    outline: none;
    transition: border-color 0.2s;
}

.subscribe-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.subscribe-input:focus {
    border-color: var(--neon-blue);
    background: rgba(255, 255, 255, 0.1);
}

.subscribe-button {
    padding: 14px;
    border-radius: 50px;
    border: none;
    background-color: var(--neon-blue);
    color: black;
    font-weight: 700;
    cursor: pointer;
    font-family: inherit;
    transition: opacity 0.2s, transform 0.2s;
    margin-top: 5px;
}

.subscribe-button:hover {
    opacity: 0.9;
    transform: scale(1.02);
}

/* Footer */
.footer {
    margin-top: 20px;
    margin-bottom: 40px;
    text-align: center;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    padding: 0 20px;
    width: 100%;
}

.footer-logo {
    width: 20px;
    height: 20px;
    border-radius: 4px;
}

/* Mobile Responsiveness */
@media (max-width: 380px) {
    .container {
        padding: 30px 15px;
    }

    .profile-name {
        font-size: 1.1rem;
    }
}

/* Age Verification Modal */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.modal-content {
    background: #111;
    border: 1px solid var(--neon-cyan);
    border-radius: 16px;
    padding: 32px;
    max-width: 400px;
    width: 90%;
    text-align: center;
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.2);
    animation: modalPop 0.3s ease-out;
}

@keyframes modalPop {
    from {
        transform: scale(0.9);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.modal-title {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 16px;
    font-weight: 700;
}

.modal-text {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 24px;
    line-height: 1.5;
}

.modal-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.modal-btn {
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: 1rem;
}

.btn-confirm {
    background: var(--neon-blue);
    color: #000;
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.4);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-confirm:hover {
    background: #fff;
    box-shadow: 0 0 25px rgba(0, 255, 255, 0.6);
    transform: translateY(-2px);
}

.btn-cancel {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.btn-cancel:hover {
    background: rgba(255, 255, 255, 0.2);
}