/* ===================================================================
   🎨 RELAX TOWN - PREMIUM STYLING SYSTEM
   =================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@300;400;500;600;700;800;900&family=Readex+Pro:wght@300;400;500;600;700&family=Tajawal:wght@300;400;500;700;800;900&family=Outfit:wght@300;400;600;800&display=swap');

:root {
    /* 🌟 Color Palette */
    --neon-blue: #00e5ff;
    --neon-purple: #bd00ff;
    --bg-dark: #060913;
    --bg-card: rgba(13, 20, 38, 0.5);
    --bg-card-hover: rgba(20, 30, 58, 0.7);
    --border-glow: rgba(0, 229, 255, 0.15);
    
    /* 📝 Typography & Text */
    --text-primary: #f3f4f6;
    --text-secondary: #9ca3af;
    --text-muted: #6b7280;
    
    /* ⚡ Transitions & Settings */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 9999px;
}

/* 🌀 Global Resets & Scrollbars */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Readex Pro', 'Cairo', 'Tajawal', 'Outfit', sans-serif;
}

html {
    scroll-behavior: smooth;
    background-color: var(--bg-dark);
}

body {
    background: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.007) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.007) 1px, transparent 1px),
        radial-gradient(circle at 15% 15%, rgba(0, 229, 255, 0.12) 0%, transparent 55%),
        radial-gradient(circle at 85% 85%, rgba(189, 0, 255, 0.12) 0%, transparent 55%);
    background-size: 50px 50px, 50px 50px, 100% 100%, 100% 100%;
    background-attachment: fixed;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* 📜 Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--neon-purple), var(--neon-blue));
    border-radius: 10px;
    border: 2px solid var(--bg-dark);
}

/* 💎 Reusable Elements & Utilities */
.glass {
    background: var(--bg-card);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: var(--radius-md);
}

.neon-border-glow:hover {
    border-color: rgba(0, 229, 255, 0.4);
    box-shadow: 0 0 25px rgba(0, 229, 255, 0.15);
}

.gradient-text {
    background: linear-gradient(135deg, var(--neon-blue), var(--neon-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

/* 🎯 Headers and Subsections */
h2 {
    font-size: 2.8rem;
    text-align: center;
    font-weight: 900;
    margin-bottom: 0.5rem;
    letter-spacing: -0.5px;
}

.section-sub {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 3.5rem;
    font-size: 1.15rem;
    font-weight: 400;
}

/* 🚀 BUTTONS */
.btn-primary, .btn-secondary, .btn-accent {
    padding: 12px 32px;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: none;
    outline: none;
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--neon-blue), #00b0ff);
    color: #040814;
    box-shadow: 0 8px 24px rgba(0, 229, 255, 0.25);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 229, 255, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--neon-blue);
    transform: translateY(-3px);
}

.btn-accent {
    background: linear-gradient(135deg, var(--neon-purple), #9d00ff);
    color: #fff;
    box-shadow: 0 8px 24px rgba(189, 0, 255, 0.25);
}

.btn-accent:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(189, 0, 255, 0.4);
}

/* 🧭 NAVIGATION HEADER */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: var(--transition-smooth);
    padding: 20px 0;
}

header.scrolled {
    background: rgba(6, 9, 19, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 12px 0;
}

header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.4rem;
    font-weight: 900;
}

.logo-container {
    position: relative;
    width: 48px;
    height: 48px;
}

.logo img {
    width: 100%;
    height: 100%;
    border-radius: var(--radius-sm);
    object-fit: cover;
    border: 1.5px solid rgba(255, 255, 255, 0.1);
}

.admin-dot {
    position: absolute;
    bottom: -3px;
    right: -3px;
    width: 14px;
    height: 14px;
    background: var(--neon-blue);
    border: 3px solid #060913;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 0 10px var(--neon-blue);
    display: none;
    transition: var(--transition-fast);
}

.admin-dot:hover {
    transform: scale(1.3);
}

.admin-dot.active {
    display: block;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 8px;
}

nav ul li a {
    color: var(--text-secondary);
    font-weight: 700;
    font-size: 0.95rem;
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
    text-decoration: none;
}

nav ul li a:hover,
nav ul li a.active {
    color: #fff;
    background: rgba(255, 255, 255, 0.06);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.auth-area {
    display: flex;
    align-items: center;
    gap: 16px;
}

.user-badge {
    display: none;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.04);
    padding: 6px 16px 6px 6px;
    border-radius: var(--radius-full);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.user-badge.active {
    display: flex;
}

.user-badge img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.user-badge .username {
    font-size: 0.9rem;
    font-weight: 700;
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-primary);
}

/* 🏠 HERO SECTION */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 140px 0 80px;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(0, 229, 255, 0.05) 0%, transparent 60%);
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 0;
}

.hero .container {
    position: relative;
    z-index: 2;
    text-align: center;
}

.badge-wrapper {
    margin-bottom: 24px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 229, 255, 0.06);
    color: var(--neon-blue);
    padding: 8px 24px;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 800;
    border: 1px solid rgba(0, 229, 255, 0.15);
    letter-spacing: 0.5px;
}

.live-indicator {
    width: 8px;
    height: 8px;
    background-color: var(--neon-blue);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--neon-blue);
    animation: pulse 1.5s infinite;
}

.hero h1 {
    font-size: 4.8rem;
    font-weight: 950;
    line-height: 1.1;
    margin-bottom: 16px;
    letter-spacing: -1.5px;
}

.hero-sub {
    font-size: 1.8rem;
    color: var(--text-secondary);
    font-weight: 700;
    margin-bottom: 40px;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin: 48px 0;
}

.stat-item {
    position: relative;
}

.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 50%;
    left: -30px;
    transform: translateY(-50%);
    width: 1px;
    height: 30px;
    background: rgba(255, 255, 255, 0.1);
}

.stat-num {
    display: block;
    font-size: 2.8rem;
    font-weight: 900;
    color: #fff;
    line-height: 1;
    margin-bottom: 6px;
    font-family: 'Outfit', sans-serif;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* 🛡️ JOBS SECTION */
.page-section {
    padding: 100px 0;
    position: relative;
}

.page-section:nth-child(even) {
    background: rgba(255, 255, 255, 0.01);
}

.jobs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.job-card {
    padding: 40px 30px;
    text-align: center;
    position: relative;
    transition: var(--transition-smooth);
    overflow: hidden;
}

.job-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--neon-blue), var(--neon-purple));
    opacity: 0;
    transition: var(--transition-fast);
}

.job-card:hover {
    transform: translateY(-10px);
    background: var(--bg-card-hover);
    border-color: rgba(255, 255, 255, 0.12);
}

.job-card:hover::before {
    opacity: 1;
}

.job-icon {
    font-size: 3.2rem;
    margin-bottom: 20px;
    display: inline-block;
    transition: var(--transition-smooth);
}

.job-card:hover .job-icon {
    transform: scale(1.1) rotate(5deg);
}

.job-card h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.job-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 24px;
}

.status-badge {
    display: inline-block;
    padding: 6px 16px;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 700;
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
    border: 1px solid rgba(16, 185, 129, 0.15);
    margin-bottom: 20px;
}

.status-badge.closed {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.15);
}

.job-card .btn-apply {
    width: 100%;
    justify-content: center;
}

.job-card .btn-apply:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    pointer-events: none;
}

/* 🛒 STORE SECTION */
.store-section {
    display: none;
}

.store-section.active {
    display: block;
}

.store-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.store-card {
    padding: 40px 24px;
    text-align: center;
    position: relative;
    transition: var(--transition-smooth);
}

.store-card:hover {
    transform: translateY(-8px);
    background: var(--bg-card-hover);
    border-color: rgba(255, 255, 255, 0.12);
}

.store-icon {
    font-size: 3.2rem;
    color: var(--neon-blue);
    margin-bottom: 16px;
    text-shadow: 0 0 20px rgba(0, 229, 255, 0.2);
}

.store-card h3 {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.store-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.store-price {
    font-size: 2.2rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 24px;
    font-family: 'Outfit', sans-serif;
    background: linear-gradient(135deg, #fff, var(--text-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.store-card .btn-buy {
    width: 100%;
    justify-content: center;
}

/* 📺 STREAMERS SECTION */
.streamers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.streamer-card {
    padding: 30px;
    text-align: center;
    position: relative;
    transition: var(--transition-smooth);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.streamer-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 229, 255, 0.25);
    background: var(--bg-card-hover);
}

.streamer-avatar-wrapper {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 16px;
}

.streamer-avatar {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.streamer-status-dot {
    position: absolute;
    bottom: 2px;
    right: 2px;
    width: 16px;
    height: 16px;
    background: #10b981;
    border: 3px solid #0d1426;
    border-radius: 50%;
}

.streamer-name {
    font-size: 1.25rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 4px;
}

.streamer-platform {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-bottom: 12px;
}

.streamer-platform.kick {
    color: #53fc18;
}

.streamer-platform.tiktok {
    color: #ff0050;
}

.streamer-followers {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--neon-blue);
    background: rgba(0, 229, 255, 0.06);
    padding: 4px 12px;
    border-radius: var(--radius-full);
    display: inline-block;
}

/* 👥 TEAM SECTION */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

.team-card {
    padding: 30px 20px;
    text-align: center;
    position: relative;
    transition: var(--transition-smooth);
}

.team-card:hover {
    transform: translateY(-5px);
    border-color: rgba(189, 0, 255, 0.25);
    background: var(--bg-card-hover);
}

.team-avatar {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    margin: 0 auto 16px;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.team-name {
    font-size: 1.2rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 4px;
}

.team-role {
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.role-owner {
    color: #ef4444;
}

.role-admin {
    color: var(--neon-blue);
}

.role-mod {
    color: #f59e0b;
}

.team-discord {
    font-size: 0.85rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

/* 🖼️ GALLERY SECTION */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gallery-item {
    position: relative;
    height: 240px;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition-smooth);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(6, 9, 19, 0.8) 100%);
    display: flex;
    align-items: flex-end;
    padding: 24px;
    opacity: 0;
    transition: var(--transition-smooth);
}

.gallery-overlay span {
    font-size: 1.15rem;
    font-weight: 800;
    color: #fff;
    transform: translateY(10px);
    transition: var(--transition-smooth);
}

.gallery-item:hover {
    transform: scale(1.02);
    border-color: var(--neon-blue);
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-overlay span {
    transform: translateY(0);
}

/* 🖼️ LIGHTBOX FOR GALLERY */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(6, 9, 19, 0.95);
    z-index: 3000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 85vh;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: var(--radius-md);
    border: 2px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.8);
}

.lightbox-close {
    position: absolute;
    top: -45px;
    left: 0;
    font-size: 2.2rem;
    color: #fff;
    cursor: pointer;
    transition: var(--transition-fast);
}

.lightbox-close:hover {
    color: var(--neon-blue);
}

/* 🗳️ MODAL SYSTEM */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(3, 4, 9, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.modal-overlay.active {
    display: flex;
}

.modal-container {
    width: 100%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    animation: modalSlideIn 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-header {
    padding: 30px 30px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.modal-title {
    font-size: 1.5rem;
    font-weight: 800;
}

.modal-close {
    font-size: 1.5rem;
    color: var(--text-secondary);
    cursor: pointer;
    transition: var(--transition-fast);
}

.modal-close:hover {
    color: #fff;
}

.modal-body {
    padding: 30px;
}

/* 📋 FORM INPUTS */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.form-input, .form-select, .form-textarea {
    width: 100%;
    padding: 14px 18px;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #fff;
    outline: none;
    font-size: 0.95rem;
    transition: var(--transition-fast);
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
    border-color: var(--neon-blue);
    box-shadow: 0 0 15px rgba(0, 229, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
}

.form-select option {
    background-color: var(--bg-dark);
    color: #fff;
}

.form-error {
    color: #ef4444;
    font-size: 0.85rem;
    margin-top: 6px;
    display: none;
}

/* ⚙️ ADMIN PANEL STYLING */
.admin-panel {
    max-width: 960px;
}

.admin-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.admin-stat-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 20px;
    border-radius: var(--radius-md);
    text-align: center;
}

.admin-stat-card .stat-val {
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--neon-blue);
    font-family: 'Outfit', sans-serif;
}

.admin-stat-card .stat-lbl {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-top: 4px;
}

.admin-section-title {
    font-size: 1.3rem;
    font-weight: 800;
    margin: 30px 0 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.admin-table-container {
    overflow-x: auto;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 24px;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    text-align: right;
}

.admin-table th, .admin-table td {
    padding: 14px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.admin-table th {
    background: rgba(255, 255, 255, 0.02);
    font-weight: 800;
    color: var(--text-secondary);
    font-size: 0.85rem;
}

.admin-table td {
    font-size: 0.9rem;
}

.admin-actions {
    display: flex;
    gap: 8px;
    justify-content: flex-end;
}

.btn-action-edit, .btn-action-delete {
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 0.8rem;
    cursor: pointer;
    border: none;
    transition: var(--transition-fast);
}

.btn-action-edit {
    background: rgba(0, 229, 255, 0.1);
    color: var(--neon-blue);
}

.btn-action-edit:hover {
    background: var(--neon-blue);
    color: #060913;
}

.btn-action-delete {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
}

.btn-action-delete:hover {
    background: #ef4444;
    color: #fff;
}

/* 🐾 FOOTER */
footer {
    background: rgba(4, 6, 12, 0.8);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 80px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 50px;
}

.footer-brand img {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-sm);
    margin-bottom: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand h3 {
    font-size: 1.6rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 12px;
}

.footer-brand p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    max-width: 320px;
}

.footer-links h4 {
    font-size: 1.1rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    transition: var(--transition-fast);
}

.footer-links ul li a:hover {
    color: var(--neon-blue);
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    font-size: 1.25rem;
    transition: var(--transition-smooth);
    text-decoration: none;
}

.social-btn:hover {
    color: #fff;
    border-color: var(--neon-blue);
    background: rgba(0, 229, 255, 0.08);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* 📽️ ANIMATIONS */
@keyframes pulse {
    0% { transform: scale(0.9); opacity: 0.6; }
    50% { transform: scale(1.15); opacity: 1; box-shadow: 0 0 14px var(--neon-blue); }
    100% { transform: scale(0.9); opacity: 0.6; }
}

@keyframes modalSlideIn {
    from { transform: translateY(20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

/* 📱 RESPONSIVE SYSTEM (Media Queries) */
@media (max-width: 1024px) {
    .hero h1 { font-size: 3.8rem; }
    .hero-sub { font-size: 1.5rem; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    header { padding: 16px 0; }
    .menu-toggle { display: block; }
    
    nav ul {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: rgba(6, 9, 19, 0.95);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 24px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        gap: 16px;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: var(--transition-smooth);
    }
    
    nav ul.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    
    nav ul li a { display: block; font-size: 1.1rem; }
    
    .hero h1 { font-size: 2.8rem; }
    .hero-stats { flex-wrap: wrap; gap: 30px; }
    .stat-item:not(:last-child)::after { display: none; }
    .footer-grid { grid-template-columns: 1fr; gap: 40px; text-align: center; }
    .footer-brand p { margin: 0 auto 16px; }
    .social-links { justify-content: center; }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 2.2rem; }
    .hero-sub { font-size: 1.2rem; }
    .gallery-grid { grid-template-columns: 1fr; }
    .gallery-item { height: 200px; }
    .auth-area .btn-primary { display: none; }
    .user-badge .username { display: none; }
    .admin-stats { grid-template-columns: 1fr 1fr; }
}

/* ===================================================================
   🌟 NEW ELEMENTS AND SECTIONS
   =================================================================== */

/* 🌟 FEATURES SECTION */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-top: 20px;
}

.feature-card {
    padding: 40px 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition-smooth);
}

.feature-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 229, 255, 0.03), rgba(189, 0, 255, 0.03));
    opacity: 0;
    transition: var(--transition-smooth);
    pointer-events: none;
}

.feature-card:hover {
    transform: translateY(-8px);
    background: var(--bg-card-hover);
    border-color: rgba(0, 229, 255, 0.25);
    box-shadow: 0 10px 30px rgba(0, 229, 255, 0.05);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    font-size: 3.2rem;
    margin-bottom: 20px;
    display: inline-block;
    transition: var(--transition-smooth);
}

.feature-card:hover .feature-icon {
    transform: scale(1.15) rotate(8deg);
}

.feature-card h3 {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 12px;
    color: #fff;
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ❓ FAQ SECTION */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
    transition: var(--transition-smooth);
}

.faq-item:hover {
    border-color: rgba(0, 229, 255, 0.2);
    background: var(--bg-card-hover);
}

.faq-question {
    padding: 20px 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 700;
    font-size: 1.1rem;
    color: #fff;
    user-select: none;
    transition: var(--transition-fast);
}

.faq-question i {
    font-size: 0.9rem;
    color: var(--neon-blue);
    transition: transform var(--transition-smooth);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-smooth);
}

.faq-answer p {
    padding: 0 28px 24px;
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
    color: var(--neon-purple);
}

/* 🔔 TOAST NOTIFICATIONS */
.toast-container {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 12px;
    pointer-events: none;
}

.toast {
    pointer-events: auto;
    min-width: 320px;
    max-width: 400px;
    background: rgba(13, 20, 38, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    padding: 16px 20px;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transform: translateX(-120%);
    opacity: 0;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.4s;
    direction: rtl;
}

.toast.active {
    transform: translateX(0);
    opacity: 1;
}

.toast-icon {
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    flex-shrink: 0;
}

.toast-message {
    flex: 1;
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1.4;
}

.toast-close {
    cursor: pointer;
    font-size: 1rem;
    color: var(--text-muted);
    transition: var(--transition-fast);
    padding: 4px;
}

.toast-close:hover {
    color: #fff;
}

.toast.success {
    border-color: rgba(16, 185, 129, 0.3);
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.1);
}
.toast.success .toast-icon {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
}

.toast.error {
    border-color: rgba(239, 68, 68, 0.3);
    box-shadow: 0 8px 24px rgba(239, 68, 68, 0.1);
}
.toast.error .toast-icon {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
}

.toast.info {
    border-color: rgba(0, 229, 255, 0.3);
    box-shadow: 0 8px 24px rgba(0, 229, 255, 0.1);
}
.toast.info .toast-icon {
    background: rgba(0, 229, 255, 0.1);
    color: var(--neon-blue);
}

.toast.warning {
    border-color: rgba(245, 158, 11, 0.3);
    box-shadow: 0 8px 24px rgba(245, 158, 11, 0.1);
}
.toast.warning .toast-icon {
    background: rgba(245, 158, 11, 0.1);
    color: #f59e0b;
}

/* 💳 PAYPAL CHECKOUT STEPS & STYLING */
#checkout-form-fields, #checkout-payment-area {
    animation: fadeInModalStep 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes fadeInModalStep {
    from {
        opacity: 0;
        transform: translateY(8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

#paypal-button-container {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 16px;
    border-radius: var(--radius-md);
    margin-top: 16px;
}

/* 🛡️ USER PROFILE DISCORD ID INTERACTION */
#user-discord-id {
    cursor: pointer;
    transition: var(--transition-fast);
}

#user-discord-id:hover {
    color: var(--neon-blue) !important;
    text-decoration: underline;
}



/* ===================================================================
   📜 RULES SECTION TAB STYLING
   =================================================================== */
.rules-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.rules-tab-btn {
    padding: 12px 24px;
    font-size: 0.95rem;
    font-weight: 700;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    color: var(--text-secondary);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.25s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.rules-tab-btn:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
    border-color: rgba(255, 255, 255, 0.15);
}

.rules-tab-btn.active {
    background: rgba(0, 242, 254, 0.1);
    color: var(--neon-blue);
    border-color: rgba(0, 242, 254, 0.3);
    box-shadow: 0 0 15px rgba(0, 242, 254, 0.1);
}

.rules-content-box {
    padding: 40px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(13, 20, 38, 0.4);
    min-height: 250px;
}

.rules-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
    text-align: right;
}

.rules-list li {
    position: relative;
    padding-right: 25px;
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.rules-list li::before {
    content: "⚡";
    position: absolute;
    right: 0;
    top: 2px;
    color: var(--neon-blue);
    font-size: 0.95rem;
    text-shadow: 0 0 10px rgba(0, 242, 254, 0.4);
}
