/* static/css/style.css */

:root {
    --primary: #8b5cf6;
    --primary-dark: #7c3aed;
    --primary-light: #a78bfa;
    --secondary: #ec4899;
    --secondary-dark: #db2777;
    --dark: #0f172a;
    --dark-light: #1e293b;
    --dark-lighter: #334155;
    --light: #f8fafc;
    --gray: #94a3b8;
    --gray-dark: #64748b;
    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;
    --twitter: #1da1f2;
    --onlyfans: #00aff0;
    --fansly: #9146ff;
    --instagram: #e4405f;

    --gradient-primary: linear-gradient(135deg, var(--primary), var(--secondary));
    --gradient-dark: linear-gradient(135deg, var(--dark), var(--dark-light));

    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.12);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);

    --radius-sm: 0.5rem;
    --radius-md: 0.75rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    --radius-full: 9999px;

    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --glass-bg: rgba(15, 23, 42, 0.7);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.36);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--dark);
    color: var(--light);
    line-height: 1.6;
    overflow-x: hidden;
}

::selection {
    background: var(--primary);
    color: white;
}

.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 6rem 0;
}

/* ===== ANIMATED BACKGROUND ===== */
.animated-shapes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -10;
    overflow: hidden;
}

.shape {
    position: absolute;
    filter: blur(60px);
    opacity: 0.2;
    animation: float 20s infinite;
}

.shape1 {
    top: 20%;
    left: 10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--primary), transparent 70%);
    animation-delay: 0s;
}

.shape2 {
    bottom: 10%;
    right: 15%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--secondary), transparent 70%);
    animation-delay: -5s;
}

.shape3 {
    top: 60%;
    left: 60%;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, #3b82f6, transparent 70%);
    animation-delay: -10s;
}

.shape4 {
    top: 5%;
    right: 20%;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, #10b981, transparent 70%);
    animation-delay: -15s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) translateX(0) scale(1);
    }

    25% {
        transform: translateY(-30px) translateX(20px) scale(1.1);
    }

    50% {
        transform: translateY(-50px) translateX(-20px) scale(1);
    }

    75% {
        transform: translateY(-20px) translateX(-40px) scale(0.9);
    }
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-lg);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

.btn-secondary {
    background: var(--dark-light);
    color: var(--light);
    border: 1px solid var(--dark-lighter);
}

.btn-secondary:hover {
    background: var(--dark-lighter);
    transform: translateY(-2px);
}

.btn-twitter {
    background: var(--twitter);
    color: white;
}

.btn-sm {
    padding: 0.5rem 1.25rem;
    font-size: 0.875rem;
}

.btn-lg {
    padding: 1.25rem 2.5rem;
    font-size: 1.125rem;
}

/* ===== AGE GATE ===== */
.age-gate {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.5s ease;
}

.age-gate-content {
    background: var(--dark-light);
    border-radius: var(--radius-xl);
    padding: 4rem;
    max-width: 600px;
    width: 90%;
    text-align: center;
    box-shadow: var(--shadow-2xl);
    border: 1px solid var(--dark-lighter);
    animation: scaleIn 0.6s ease;
}

.age-gate-icon {
    width: 120px;
    height: 120px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 3.5rem;
    animation: pulse 2s infinite;
}

.age-gate h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 800;
}

.age-gate p {
    font-size: 1.125rem;
    color: var(--gray);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.age-gate-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.age-gate-terms {
    font-size: 0.875rem;
    color: var(--gray-dark);
}

.age-gate-terms a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
}

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1000;
    padding: 1rem 0;
    transition: var(--transition);
}

.navbar.scrolled {
    padding: 0.75rem 0;
    background: rgba(15, 23, 42, 0.98);
    box-shadow: var(--shadow-lg);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.75rem;
    font-weight: 900;
    color: var(--light);
    text-decoration: none;
}

.logo-icon {
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

.nav-menu {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 0.5rem;
}

.nav-link {
    color: var(--gray);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    transition: var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
    transform: translateX(-50%);
}

.nav-link:hover,
.nav-link.active {
    color: var(--light);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-left: 1rem;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--light);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: var(--radius-sm);
}

.mobile-menu-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* User Dropdown */
.user-dropdown {
    position: relative;
}

.user-avatar-small {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    object-fit: cover;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 0.5rem;
    background: var(--dark-light);
    border: 1px solid var(--dark-lighter);
    border-radius: var(--radius-md);
    min-width: 200px;
    z-index: 1000;
    display: none;
    box-shadow: var(--shadow-xl);
}

.dropdown-menu.show {
    display: block;
    animation: fadeIn 0.3s ease;
}

.dropdown-item {
    display: block;
    padding: 0.75rem 1rem;
    color: var(--light);
    text-decoration: none;
    transition: var(--transition);
    border-bottom: 1px solid var(--dark-lighter);
}

.dropdown-item:last-child {
    border-bottom: none;
}

.dropdown-item:hover {
    background: var(--dark-lighter);
}

.dropdown-item i {
    margin-right: 0.5rem;
    width: 20px;
    color: var(--primary);
}

.dropdown-item.text-danger {
    color: var(--danger);
}

.dropdown-item.text-danger i {
    color: var(--danger);
}

.dropdown-divider {
    height: 1px;
    background: var(--dark-lighter);
    margin: 0.5rem 0;
}

/* ===== FLASH MESSAGES ===== */
.flash-messages {
    position: fixed;
    top: 100px;
    right: 2rem;
    z-index: 1000;
    max-width: 400px;
}

.flash-message {
    background: var(--dark-light);
    border-left: 4px solid var(--primary);
    border-radius: var(--radius-md);
    padding: 1rem 1.5rem;
    margin-bottom: 1rem;
    box-shadow: var(--shadow-xl);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    animation: slideInRight 0.3s ease;
    border: 1px solid var(--dark-lighter);
}

.flash-message.success {
    border-left-color: var(--success);
}

.flash-message.success i {
    color: var(--success);
}

.flash-message.danger {
    border-left-color: var(--danger);
}

.flash-message.danger i {
    color: var(--danger);
}

.flash-message.warning {
    border-left-color: var(--warning);
}

.flash-message.warning i {
    color: var(--warning);
}

/* ===== HERO SECTION ===== */
.hero {
    padding-top: 10rem;
    padding-bottom: 6rem;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 50%, rgba(139, 92, 246, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(236, 72, 153, 0.15) 0%, transparent 50%);
    z-index: -2;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1.1;
    animation: slideUp 0.8s ease;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--gray);
    margin-bottom: 2.5rem;
    animation: slideUp 0.8s ease 0.2s both;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    animation: slideUp 0.8s ease 0.4s both;
}

/* ===== STATS GRID ===== */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 5rem;
}

.stat-card {
    background: var(--dark-light);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    text-align: center;
    border: 1px solid var(--dark-lighter);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s ease;
}

.stat-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: var(--shadow-xl);
}

.stat-card:hover::before {
    transform: scaleX(1);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
}

.stat-value {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* ===== CREATORS GRID ===== */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
}

.creators-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.creator-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: var(--transition);
    position: relative;
    cursor: pointer;
}

.creator-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: var(--shadow-2xl);
}

.creator-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s ease;
}

.creator-card:hover::before {
    transform: scaleX(1);
}

.creator-cover {
    height: 200px;
    position: relative;
    overflow: hidden;
}

.creator-cover-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.creator-card:hover .creator-cover-img {
    transform: scale(1.1);
}

.creator-cover::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, var(--dark), transparent);
}

.creator-avatar {
    position: absolute;
    bottom: -50px;
    left: 2rem;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 4px solid var(--dark-light);
    object-fit: cover;
    z-index: 2;
    transition: var(--transition);
}

.creator-card:hover .creator-avatar {
    transform: scale(1.1);
}

.creator-badges {
    position: absolute;
    top: 1rem;
    right: 1rem;
    display: flex;
    gap: 0.5rem;
}

.badge {
    padding: 0.375rem 0.875rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.badge-featured {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
}

.badge-verified {
    background: linear-gradient(135deg, #3b82f6, #60a5fa);
    color: white;
}

.badge-trending {
    background: var(--gradient-primary);
    color: white;
}

.badge-new {
    background: var(--secondary);
    color: white;
}

.creator-info {
    padding: calc(3rem + 50px) 2rem 2rem;
}

.creator-name {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.creator-name h3 {
    font-size: 1.25rem;
    font-weight: 700;
}

.creator-username {
    color: var(--primary);
    font-weight: 500;
}

.creator-bio {
    color: var(--gray);
    margin-bottom: 1.5rem;
    font-size: 0.9375rem;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.creator-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.2);
    border-radius: var(--radius-lg);
}

.stat-item {
    text-align: center;
}

.stat-label {
    display: block;
    font-size: 0.75rem;
    color: var(--gray);
    margin-bottom: 0.25rem;
}

.stat-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--light);
}

.creator-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.tag {
    padding: 0.375rem 0.875rem;
    background: rgba(139, 92, 246, 0.1);
    color: var(--primary);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 500;
}

.creator-actions {
    display: flex;
    gap: 0.75rem;
}

/* ===== LOAD MORE ===== */
.load-more-container {
    text-align: center;
    margin-top: 3rem;
    position: relative;
}

#load-more {
    position: relative;
    min-width: 250px;
}

.load-more-spinner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 24px;
    height: 24px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    opacity: 0;
    transition: opacity 0.3s ease;
}

@keyframes spin {
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* ===== FOOTER ===== */
.footer {
    background: var(--dark-light);
    border-top: 1px solid var(--dark-lighter);
    padding: 4rem 0 2rem;
    margin-top: 4rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--light);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--gray);
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-links a:hover {
    color: var(--primary);
    transform: translateX(5px);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    text-decoration: none;
    transition: var(--transition);
    border: 1px solid var(--dark-lighter);
}

.social-link:hover {
    background: var(--primary);
    transform: translateY(-3px);
    border-color: var(--primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--dark-lighter);
    color: var(--gray);
    font-size: 0.875rem;
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    z-index: 999;
}

.whatsapp-button {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: var(--radius-full);
    cursor: pointer;
    box-shadow: var(--shadow-xl);
    transition: var(--transition);
    position: relative;
}

.whatsapp-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 30px rgba(37, 211, 102, 0.3);
}

.pulse-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid #25D366;
    border-radius: 50%;
    animation: pulse 2s infinite;
    top: 0;
    left: 0;
    pointer-events: none;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100px) scale(0.9);
    }

    to {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3.5rem;
    }

    .creators-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background: var(--dark);
        flex-direction: column;
        padding: 2rem;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
        box-shadow: var(--shadow-xl);
        border-bottom: 1px solid var(--dark-lighter);
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.25rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .creators-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }

    .creator-cover {
        height: 120px;
    }

    .creator-avatar {
        width: 70px;
        height: 70px;
        bottom: -35px;
        left: 1rem;
    }

    .creator-info {
        padding: calc(2rem + 35px) 1rem 1rem;
    }

    .creator-name h3 {
        font-size: 1rem;
    }

    .creator-stats {
        padding: 0.5rem;
        gap: 0.25rem;
    }

    .stat-value {
        font-size: 0.875rem;
    }

    .stat-label {
        font-size: 0.625rem;
    }

    .creator-actions {
        flex-direction: column;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .creators-grid {
        grid-template-columns: 1fr;
    }

    .age-gate-content {
        padding: 2rem;
    }

    .age-gate h2 {
        font-size: 1.75rem;
    }

    .age-gate-buttons {
        flex-direction: column;
    }
}

/* ===== UTILITY CLASSES ===== */
.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hidden {
    display: none !important;
}

.text-center {
    text-align: center;
}

.mt-4 {
    margin-top: 2rem;
}

.mb-4 {
    margin-bottom: 2rem;
}

/* ===== SEARCH BOX STYLES ===== */
.search-container {
    position: relative;
    max-width: 500px;
    width: 100%;
    margin: 0 auto 3rem;
}

.search-box {
    width: 100%;
    padding: 1.25rem 1.5rem;
    padding-left: 3.5rem;
    background: var(--dark-light);
    border: 2px solid var(--dark-lighter);
    border-radius: var(--radius-full);
    color: var(--light);
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: var(--transition);
}

.search-box:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.2);
}

.search-icon {
    position: absolute;
    left: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray);
    font-size: 1.25rem;
    pointer-events: none;
}

.search-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--dark-light);
    border-radius: var(--radius-lg);
    margin-top: 0.5rem;
    max-height: 400px;
    overflow-y: auto;
    display: none;
    z-index: 1000;
    border: 1px solid var(--dark-lighter);
    box-shadow: var(--shadow-xl);
}

.search-results.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

.search-result-item {
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--dark-lighter);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.search-result-item:hover {
    background: var(--dark-lighter);
}

.search-result-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary);
}

.search-result-info {
    flex: 1;
}

.search-result-name {
    font-weight: 600;
    color: var(--light);
    margin-bottom: 0.25rem;
}

.search-result-username {
    font-size: 0.875rem;
    color: var(--gray);
}

.search-result-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.25rem;
    margin-top: 0.25rem;
}

.search-result-tag {
    font-size: 0.75rem;
    padding: 0.125rem 0.5rem;
    background: rgba(139, 92, 246, 0.1);
    color: var(--primary);
    border-radius: var(--radius-full);
}

.no-results {
    padding: 2rem;
    text-align: center;
    color: var(--gray);
}

/* ===== ADMIN CONTACT SECTION ===== */
.admin-contact-section {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.9) 0%, rgba(30, 41, 59, 0.9) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(139, 92, 246, 0.2);
    margin-top: 4rem;
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.admin-contact-header {
    background: var(--gradient-primary);
    padding: 2rem;
    text-align: center;
}

.admin-contact-title {
    font-size: 2rem;
    font-weight: 800;
    color: white;
    margin-bottom: 0.5rem;
}

.admin-contact-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.125rem;
}

.admin-contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding: 3rem;
}

.admin-contact-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.admin-contact-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    background: rgba(139, 92, 246, 0.1);
}

.admin-contact-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
}

.admin-contact-icon.whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
    animation: pulse 2s infinite;
}

.admin-contact-icon.instagram {
    background: linear-gradient(45deg, #405de6, #5851db, #833ab4, #c13584, #e1306c, #fd1d1d);
}

.admin-contact-icon.support {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
}

.admin-contact-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--light);
    margin-bottom: 0.5rem;
}

.admin-contact-role {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 0.875rem;
}

.admin-contact-desc {
    color: var(--gray);
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

/* ===== FEATURED SLIDER STYLES ===== */
.featured-slider {
    margin: 40px 0;
    position: relative;
    width: 100%;
}

.slider-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.slider-header h2 {
    font-size: 28px;
    font-weight: 800;
    letter-spacing: -1px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.slider-controls {
    display: flex;
    gap: 12px;
}

.slider-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(26, 30, 36, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(139, 92, 246, 0.5);
    color: white;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-btn:hover {
    background: linear-gradient(45deg, #8b5cf6, #ec4899);
    border-color: transparent;
    box-shadow: 0 0 30px rgba(139, 92, 246, 0.5);
}

.slider-container {
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
    -ms-overflow-style: none;
    border-radius: 28px;
}

.slider-container::-webkit-scrollbar {
    display: none;
}

.slider-track {
    display: flex;
    gap: 20px;
    width: max-content;
    animation: slide 190s linear infinite;
}

.slider-card {
    flex: 0 0 300px;
    background: rgba(26, 30, 36, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(139, 92, 246, 0.2);
    transition: all 0.3s;
    cursor: pointer;
}

.slider-card:hover {
    transform: translateY(-8px);
    border-color: #8b5cf6;
    box-shadow: 0 20px 40px rgba(139, 92, 246, 0.3);
}

.slider-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.slider-card-content {
    padding: 20px;
}

.slider-card-content h3 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 5px;
    color: white;
}

.slider-username {
    color: #8b5cf6;
    font-size: 14px;
    margin-bottom: 10px;
}

.slider-followers {
    color: #94a3b8;
    font-size: 14px;
}

/* ===== TWITTER SECTION STYLES ===== */
.twitter-section {
    background: var(--dark-light);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.twitter-header {
    padding: 2rem;
    background: linear-gradient(135deg, #1da1f2, #1a91da);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.twitter-title {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.twitter-logo {
    font-size: 2.5rem;
    color: white;
}

.twitter-title h2 {
    color: white;
    font-size: 1.75rem;
    font-weight: 700;
}

.twitter-title p {
    color: rgba(255, 255, 255, 0.9);
}

.twitter-feed-container {
    max-height: 600px;
    overflow-y: auto;
    padding: 2rem;
}

.twitter-feed-container::-webkit-scrollbar {
    width: 8px;
}

.twitter-feed-container::-webkit-scrollbar-track {
    background: var(--dark-lighter);
    border-radius: var(--radius-full);
}

.twitter-feed-container::-webkit-scrollbar-thumb {
    background: var(--twitter);
    border-radius: var(--radius-full);
}

.tweet-card {
    background: var(--dark);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border: 1px solid var(--dark-lighter);
    transition: var(--transition);
}

.tweet-card:hover {
    border-color: var(--twitter);
    transform: translateX(5px);
    box-shadow: var(--shadow-md);
}

.tweet-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.tweet-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--twitter);
}

.tweet-user {
    flex: 1;
}

.tweet-name {
    font-weight: 700;
    color: var(--light);
}

.tweet-handle {
    color: var(--twitter);
    font-size: 0.875rem;
}

.tweet-time {
    color: var(--gray);
    font-size: 0.875rem;
}

.tweet-content {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.tweet-image {
    width: 100%;
    border-radius: var(--radius-md);
    margin-bottom: 1rem;
    cursor: pointer;
    transition: var(--transition);
}

.tweet-image:hover {
    transform: scale(1.02);
}

.tweet-stats {
    display: flex;
    gap: 2rem;
    color: var(--gray);
    font-size: 0.875rem;
}

.tweet-stat {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.tweet-stat:hover {
    color: var(--twitter);
}

/* ===== CTA SECTION STYLES ===== */
.cta-section {
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 30% 70%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: 3.5rem;
    font-weight: 900;
    color: white;
    margin-bottom: 1.5rem;
}

.cta-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
}

.cta-button {
    background: white;
    color: var(--primary);
    font-size: 1.125rem;
    padding: 1.25rem 3rem;
    border-radius: var(--radius-lg);
    font-weight: 700;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    display: inline-block;
}

.cta-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.cta-stats {
    color: rgba(255, 255, 255, 0.7);
    margin-top: 2rem;
    font-size: 0.875rem;
}

/* ===== LOAD MORE BUTTON ===== */
.load-more-container {
    text-align: center;
    margin-top: 3rem;
    position: relative;
}

#load-more {
    position: relative;
    min-width: 250px;
}

.load-more-spinner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 24px;
    height: 24px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    opacity: 0;
    transition: opacity 0.3s ease;
}

@keyframes spin {
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* ===== MOBILE RESPONSIVE STYLES ===== */
@media (max-width: 768px) {
    .slider-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .slider-controls {
        width: 100%;
        justify-content: center;
    }

    .slider-btn {
        width: 48px !important;
        height: 48px !important;
        background: linear-gradient(135deg, #8b5cf6, #ec4899) !important;
        border: 2px solid white !important;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3) !important;
    }

    .slider-card {
        flex: 0 0 260px;
    }

    .slider-card img {
        height: 160px;
    }

    .admin-contact-grid {
        grid-template-columns: 1fr;
        padding: 2rem;
    }

    .twitter-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .cta-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .search-box {
        padding: 1rem 1rem 1rem 3rem;
        font-size: 0.875rem;
    }

    .admin-contact-title {
        font-size: 1.5rem;
    }

    .cta-title {
        font-size: 2rem;
    }

    .cta-subtitle {
        font-size: 1rem;
    }

    .cta-button {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}

/* Upload Tabs Styling */
.upload-tabs,
.gallery-tabs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid var(--dark-lighter);
    padding-bottom: 0.5rem;
}

.tab-btn {
    padding: 0.75rem 1.5rem;
    background: none;
    border: none;
    color: var(--gray);
    cursor: pointer;
    transition: var(--transition);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9375rem;
}

.tab-btn i {
    font-size: 1.1rem;
}

.tab-btn:hover {
    background: var(--dark-lighter);
    color: var(--light);
}

.tab-btn.active {
    background: var(--primary);
    color: white;
}

.tab-count {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.125rem 0.5rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    margin-left: 0.25rem;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

/* Upload Area Styling */
.upload-area {
    border: 2px dashed var(--dark-lighter);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    margin-bottom: 1rem;
}

.upload-area:hover {
    border-color: var(--primary);
    background: rgba(139, 92, 246, 0.05);
}

.upload-area i {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.upload-area p {
    color: var(--light);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.upload-area small {
    color: var(--gray);
    font-size: 0.75rem;
}

/* Gallery Grid Styling */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.gallery-item {
    position: relative;
    aspect-ratio: 1;
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--dark);
    border: 1px solid var(--dark-lighter);
    transition: var(--transition);
}

.gallery-item:hover {
    transform: scale(1.02);
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-item {
    position: relative;
}

.video-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    border: 2px solid var(--primary);
    transition: var(--transition);
    pointer-events: none;
}

.gallery-item:hover .video-play-icon {
    background: var(--primary);
    transform: translate(-50%, -50%) scale(1.1);
}

.gallery-item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1rem;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-item-overlay {
    opacity: 1;
}

.gallery-item-info {
    margin-bottom: 0.5rem;
}

.gallery-item-caption {
    color: white;
    font-size: 0.875rem;
    display: block;
    margin-bottom: 0.25rem;
    font-weight: 500;
}

.gallery-item-date {
    color: var(--gray);
    font-size: 0.75rem;
}

.gallery-item-actions {
    display: flex;
    gap: 0.5rem;
    justify-content: flex-end;
}

.gallery-item-actions .btn-icon {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.gallery-item-actions .btn-icon:hover {
    background: var(--primary);
    transform: scale(1.1);
}

.empty-state {
    text-align: center;
    padding: 3rem;
    color: var(--gray);
    grid-column: 1 / -1;
}

.empty-state i {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}

.load-more-container {
    text-align: center;
    margin-top: 2rem;
}

/* Modal Styling */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.modal.active {
    display: flex;
    animation: fadeIn 0.3s ease;
}

.modal-content {
    background: var(--dark-light);
    border-radius: var(--radius-xl);
    max-width: 900px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    border: 1px solid var(--dark-lighter);
    animation: modalSlideUp 0.3s ease;
}

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem;
    border-bottom: 1px solid var(--dark-lighter);
}

.modal-header h3 {
    color: var(--light);
    font-size: 1.25rem;
    font-weight: 600;
}

.modal-close {
    background: none;
    border: none;
    color: var(--gray);
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
}

.modal-close:hover {
    color: var(--danger);
    transform: rotate(90deg);
}

.modal-body {
    padding: 1.5rem;
}

.modal-body img,
.modal-body video {
    max-width: 100%;
    max-height: 70vh;
    display: block;
    margin: 0 auto;
    border-radius: var(--radius-md);
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes modalSlideUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }

    .upload-tabs,
    .gallery-tabs {
        flex-wrap: wrap;
    }

    .tab-btn {
        flex: 1;
        justify-content: center;
    }
}