:root {
    --primary-white: #ffffff;
    --dark-bg: #0f172a;
    --accent-orange: #f97316;
    /* Orange for Privacy */
    --accent-blue: #0ea5e9;
    /* Blue for others */

    /* Dark Theme Glass Variables */
    --glass-bg: rgba(0, 0, 0, 0.4);
    /* Darker glass */
    --glass-border: rgba(255, 255, 255, 0.15);
    /* Subtle white border for contrast */
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.5);

    --text-primary: #ffffff;
    --text-secondary: #e2e8f0;

    /* Button Colors */
    --accent-pink: #fd0f5a;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

body {
    font-family: 'Outfit', sans-serif;
    min-height: 100vh;
    overflow-x: hidden;
    color: var(--text-primary);
    position: relative;
    display: flex;
    justify-content: center;
    background-color: var(--dark-bg);
}

/* Background & Overlays */
.background-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('background.jpeg');
    background-size: cover;
    background-position: center;
    z-index: -2;
    filter: blur(12px) brightness(0.6);
    /* Darkened and blurred */
    transform: scale(1.1);
}

.glass-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.85));
    /* Dark Gradient Overlay */
    z-index: -1;
}

/* Main Layout */
.content-wrapper {
    width: 100%;
    max-width: 480px;
    /* Mobile focused max-width */
    padding: 40px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
    position: relative;
    z-index: 1;
}

/* Profile Header */
.profile-header {
    text-align: center;
    margin-bottom: 40px;
    width: 100%;
}

.profile-image-container {
    margin-bottom: 24px;
    position: relative;
    display: inline-block;
}

.avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    margin: 0 auto;
}

.avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-name {
    font-size: 2rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.verified-badge {
    color: var(--accent-blue);
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    animation: pulse-badge 2s infinite;
}

.verified-badge i {
    filter: drop-shadow(0 0 10px rgba(14, 165, 233, 0.6));
}

.profile-bio {
    font-size: 1.1rem;
    color: var(--text-secondary);
    font-weight: 300;
    line-height: 1.5;
    max-width: 90%;
    margin: 0 auto;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

/* Buttons Container */
.links-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    /* Slightly tighter gap with more buttons */
    flex-grow: 1;
    /* Push footer down */
}

/* Glass Button Styles Base */
.glass-button {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 24px;
    width: 100%;
    text-decoration: none;
    background: var(--glass-bg);
    /* Default dark glass */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    color: #ffffff;
    font-size: 1.15rem;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: var(--glass-shadow);
    overflow: hidden;
    letter-spacing: 0.5px;
}

.icon-wrapper {
    margin-right: 15px;
    font-size: 1.4rem;
    width: 28px;
    display: flex;
    justify-content: center;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.btn-text {
    flex: 1;
    text-align: center;
    padding-right: 28px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
}

/* Button Hover Effects */
.glass-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.2) 50%, transparent 70%);
    transform: skewX(-20deg) translateX(-150%);
    transition: transform 0.6s;
    pointer-events: none;
}

.glass-button:hover::before {
    transform: skewX(-20deg) translateX(150%);
}

.glass-button:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

/* --- Specific Button Colors (Dark Theme) - ALL SOLID NOW --- */

/* Privacy - First Button - ORANGE */
.privacy-btn {
    background: linear-gradient(135deg, rgba(249, 115, 22, 1), rgba(234, 88, 12, 1));
    border: 1px solid rgba(255, 255, 255, 0.4);
    /* Match pink button border */
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.3);
    /* Match pink button shadow style */
}

.privacy-btn:hover {
    background: linear-gradient(135deg, #f97316, #ea580c);
    box-shadow: 0 6px 20px rgba(249, 115, 22, 0.5);
    transform: translateY(-3px) scale(1.02);
}

.privacy-btn .icon-wrapper {
    color: #ffffff;
    animation: pulse-icon 1.5s infinite;
}

/* OnlyFans - Second Button - BLUE */
.onlyfans-btn {
    background: linear-gradient(135deg, rgba(14, 165, 233, 1), rgba(2, 132, 199, 1));
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 4px 15px rgba(14, 165, 233, 0.3);
}

.onlyfans-btn:hover {
    background: linear-gradient(135deg, #0ea5e9, #0284c7);
    box-shadow: 0 6px 20px rgba(14, 165, 233, 0.5);
    transform: translateY(-3px) scale(1.02);
}

.onlyfans-btn .icon-wrapper {
    color: #ffffff;
}

/* Pacotinhos Button - Pink/Red #fd0f5a FILLED (Kept same) */
.pacotinhos-btn {
    background: #00c853;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 4px 15px rgba(0, 200, 83, 0.45);
}

.pacotinhos-btn:hover {
    background: #e60b4e;
    box-shadow: 0 6px 20px rgba(253, 15, 90, 0.5);
    color: #ffffff;
    transform: translateY(-3px) scale(1.02);
}

.pacotinhos-btn .icon-wrapper {
    color: #ffffff;
}

/* Telegram - Fourth Button - BLUE */
.telegram-btn {
    background: linear-gradient(135deg, rgba(56, 189, 248, 1), rgba(14, 165, 233, 1));
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 4px 15px rgba(56, 189, 248, 0.3);
}

.telegram-btn:hover {
    background: linear-gradient(135deg, #38bdf8, #0ea5e9);
    box-shadow: 0 6px 20px rgba(56, 189, 248, 0.5);
    transform: translateY(-3px) scale(1.02);
}

.telegram-btn .icon-wrapper {
    color: #ffffff;
}


/* Footer */
footer {
    margin-top: 40px;
    text-align: center;
    opacity: 0.6;
    font-size: 0.85rem;
    color: #cbd5e1;
    padding-bottom: 20px;
}

/* Animations included in CSS */
@keyframes pulse-badge {
    0% {
        transform: scale(1);
        opacity: 1;
        filter: drop-shadow(0 0 5px rgba(14, 165, 233, 0.6));
    }

    50% {
        transform: scale(1.1);
        opacity: 0.9;
        filter: drop-shadow(0 0 12px rgba(14, 165, 233, 0.9));
    }

    100% {
        transform: scale(1);
        opacity: 1;
        filter: drop-shadow(0 0 5px rgba(14, 165, 233, 0.6));
    }
}

@keyframes pulse-icon {
    0% {
        transform: scale(1);
    }

    14% {
        transform: scale(1.3);
    }

    28% {
        transform: scale(1);
    }

    42% {
        transform: scale(1.3);
    }

    70% {
        transform: scale(1);
    }
}


/* Entry Animations Classes */
.animate-entry {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-up {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    transition-delay: 0.2s;
}

.delay-2 {
    transition-delay: 0.4s;
}

/* Ripple Effect */
.ripple {
    position: absolute;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    transform: scale(0);
    animation: ripple-animation 0.6s linear;
    pointer-events: none;
}

@keyframes ripple-animation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* Responsive adjustments */
@media (max-width: 380px) {
    .profile-name {
        font-size: 1.75rem;
    }

    .glass-button {
        padding: 18px 20px;
    }

    .btn-text {
        font-size: 1rem;
    }
}