/* Zepòl Premium - UNIFIED THEME (V6) */
/* This file consolidates V3, V4, and V5 improvements into a single source of truth */

:root {
    --bg-deep: #f0f4f8;
    /* Darker off-white for contrast */
    --text-primary: #1a202c;
    --card-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    --glass-border: 1px solid rgba(255, 255, 255, 0.4);
    --glass-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.hidden {
    display: none !important;
}

.view {
    display: none !important;
}

.view.active {
    display: block !important;
}

body {
    /* FORCE OVERRIDE of Background - High Contrast */
    /* PREMIUM AURORA BACKGROUND - No more white space */
    background-color: #e0eafc;
    background-image:
        radial-gradient(at 0% 0%, rgba(102, 166, 255, 0.15) 0px, transparent 50%),
        radial-gradient(at 100% 0%, rgba(137, 247, 254, 0.15) 0px, transparent 50%),
        radial-gradient(at 50% 100%, rgba(255, 255, 255, 0.1) 0px, transparent 50%),
        linear-gradient(180deg, #eef2f3 0%, #e6e9f0 100%) !important;
    background-attachment: fixed;
    color: var(--text-primary);
}

/* --- VIEW CONTAINERS (Never White/Empty) --- */
.view {
    min-height: 80vh;
    /* Ensure it takes space */
    padding-bottom: 50px;
    animation: fadeInView 0.5s ease-out;
}

@keyframes fadeInView {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- GLASSMORPHISM UTILITIES (Restored) --- */
.glass-panel {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.1);
    border-radius: 20px;
    padding: 20px;
    margin-bottom: 20px;
}

.glass-card {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
    border-radius: 16px;
    padding: 15px;
    transition: transform 0.3s ease;
}

.glass-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.8);
}

/* --- PREMIUM MODALS (Glassmorphism + Vibrant Headers) --- */
.modal-content {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(25px) !important;
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2) !important;
    border-radius: 30px !important;
    overflow: hidden;
    position: relative;
    max-width: 500px;
    /* Standardize width */
    width: 90%;
}

.modal-content h3,
.modal-content h2 {
    background: linear-gradient(135deg, #2d5a27, #1e3d1a);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 24px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 20px;
}

.modal-content textarea,
.modal-content input {
    background: #f7fafc;
    border: 2px solid #edf2f7;
    border-radius: 16px;
    padding: 15px;
    transition: all 0.3s ease;
    width: 100%;
    box-sizing: border-box;
}

.modal-content textarea:focus,
.modal-content input:focus {
    background: white;
    border-color: #4facfe;
    box-shadow: 0 0 0 4px rgba(79, 172, 254, 0.1);
    outline: none;
}

/* --- DASHBOARD WIDGETS REMOVED --- */
.member-only {
    display: none !important;
}

/* --- UNIVERSAL PAGE HEADERS (Consolidated) --- */
.premium-page-header {
    background: white;
    border-radius: 24px;
    padding: 40px 20px;
    margin-bottom: 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.premium-page-header h2 {
    color: #1a202c;
    margin: 0 0 10px 0;
    font-weight: 800;
}

.premium-page-header p {
    color: #4a5568;
    margin: 0;
}

.premium-page-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #4facfe, #00f2fe);
}

/* --- EMPTY STATE PLACEHOLDERS --- */
.empty-state-placeholder {
    text-align: center;
    padding: 50px 20px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin: 20px 0;
    width: 100%;
}

.empty-state-placeholder i {
    font-size: 60px;
    color: #cbd5e0;
    margin-bottom: 20px;
}

.empty-state-placeholder p {
    color: #718096;
    font-size: 16px;
}

/* --- WELCOME BANNER (Dashboard) --- */
.welcome-banner {
    background: linear-gradient(135deg, #2d5a27, #1e3d1a);
    color: white;
    padding: 30px;
    border-radius: 20px;
    margin-bottom: 25px;
    box-shadow: 0 10px 30px rgba(45, 90, 39, 0.2);
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.welcome-banner h2 {
    color: white;
    margin: 0 0 10px 0;
    font-size: 24px;
}

.welcome-banner p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.welcome-banner .btn-primary {
    background: white;
    color: #2d5a27;
    border: none;
    font-weight: 700;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .dashboard-grid-layout {
        grid-template-columns: 1fr;
    }

    .welcome-banner {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .widget-card {
        flex-direction: row;
        height: auto;
        min-height: 120px;
        padding: 20px;
        /* justify-content: flex-start;  <-- Corrected in verification */
        text-align: left;
    }


    .widget-icon {
        margin-bottom: 0;
        margin-right: 20px;
        font-size: 40px;
    }

    .widget-card h3 {
        text-align: left;
        margin: 0;
    }

    .widget-card p {
        text-align: left;
    }

    .sanctuary-header {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
}

/* --- V4.0 NEW STYLES --- */
.filter-chip {
    padding: 8px 16px;
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.2s;
}

.filter-chip.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    box-shadow: 0 4px 10px rgba(45, 90, 39, 0.2);
}

.inbox-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 15px;
}

.msg-card {
    background: white;
    padding: 15px;
    border-radius: 12px;
    border: 1px solid #eee;
    display: flex;
    gap: 12px;
    align-items: center;
    cursor: pointer;
    transition: 0.2s;
}

.msg-avatar {
    width: 35px;
    height: 35px;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.msg-content-mini {
    flex: 1;
    overflow: hidden;
}

.msg-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2px;
}

.msg-sender {
    font-weight: 700;
    font-size: 14px;
}

.msg-time {
    font-size: 10px;
    color: #a0aec0;
}

.msg-text-preview {
    font-size: 13px;
    color: #666;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.notif-item {
    padding: 12px;
    border-bottom: 1px solid #eee;
    display: flex;
    gap: 10px;
    align-items: center;
    cursor: pointer;
}

.notif-item:hover {
    background: #f8fafc;
}

.notif-item.unread {
    background: #f0fff4;
    border-left: 3px solid var(--primary);
}

.badge-count {
    min-width: 18px;
    height: 18px;
    line-height: 18px;
    text-align: center;
}

/* Dashboard Toggle Animation */
#dashboard-collapse {
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Optimizations for Header */
@media (max-width: 768px) {
    .header-actions {
        display: flex;
        gap: 8px;
        align-items: center;
        z-index: 1001;
    }

    .quote-ticker {
        display: none !important;
        /* Force hide to give space */
    }

    .btn-msg-inbox span:not(.badge-count) {
        display: none;
    }

    .btn-msg-inbox {
        padding: 8px 12px !important;
        background: var(--primary-light) !important;
    }

    #notification-bell {
        font-size: 24px !important;
        margin: 0 5px !important;
    }

    .motivation-banner {
        display: none !important;
    }
}

/* Registration Styles */
.register-modal-content {
    max-width: 500px;
    padding: 30px 20px 50px 20px !important;
    border-radius: 28px;
    width: 95%;
    max-height: 85vh !important;
    overflow-y: auto !important;
    background: white;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.register-modal-content h2 {
    text-align: center;
    margin-bottom: 8px;
    font-size: 2rem;
    color: var(--primary);
    font-weight: 800;
}

/* Contact Method Selector */
.contact-method-selector {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.method-btn {
    flex: 1;
    padding: 14px;
    border: 2px solid #e2e8f0;
    background: white;
    border-radius: 16px;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 700;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.method-btn:hover {
    border-color: var(--primary-light);
    background: var(--bg-app);
}

.method-btn.active {
    border-color: var(--primary);
    background: var(--primary);
    color: white;
    box-shadow: 0 4px 15px rgba(45, 90, 39, 0.2);
}

.contact-input-group {
    margin-top: 10px;
}

.contact-input-group input {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 15px;
    transition: border-color 0.3s;
}

.contact-input-group input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(60, 110, 113, 0.1);
}

/* Registration Form Groups */
#register-form .form-group {
    margin-bottom: 20px;
    text-align: left;
}

/* --- MODERN DASHBOARD (Control Center) --- */
.dashboard-header-modern {
    background: white;
    padding: 30px;
    border-radius: 24px;
    margin-bottom: 25px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dashboard-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.dash-card-modern {
    background: white;
    padding: 25px 20px;
    border-radius: 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.dash-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: rgba(45, 90, 39, 0.1);
}

.dash-card-modern .card-icon {
    font-size: 36px;
    margin-bottom: 15px;
    color: var(--primary);
    background: var(--bg-deep);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.dash-card-modern:hover .card-icon {
    background: var(--primary);
    color: white;
    transform: scale(1.1) rotate(5deg);
}

.dash-card-modern h3 {
    margin: 0;
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
}

.dash-card-modern p {
    margin: 5px 0 0;
    font-size: 13px;
    color: #718096;
}

/* Specific Card Themes */
.dash-card-modern.wellness .card-icon {
    color: #27ae60;
    background: #e8f8f5;
}

.dash-card-modern.games .card-icon {
    color: #8e44ad;
    background: #f4ecf7;
}

.dash-card-modern.resources .card-icon {
    color: #e67e22;
    background: #fef5e7;
}

.dash-card-modern.messages .card-icon {
    color: #3498db;
    background: #ebf5fb;
}

.dash-card-modern.community .card-icon {
    color: #e74c3c;
    background: #fdedec;
}

.dash-card-modern.settings .card-icon {
    color: #95a5a6;
    background: #f2f4f6;
}

@media (max-width: 768px) {
    .dashboard-header-modern {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .dashboard-grid-modern {
        grid-template-columns: repeat(2, 1fr);
    }

    .messages-layout {
        flex-direction: column;
    }

    .msg-sidebar {
        width: 100% !important;
        border-right: none !important;
        border-bottom: 1px solid #eee;
        height: 150px;
        overflow-y: auto;
    }
}

/* --- NEW VIEWS STYLES --- */

/* Resources View */
.resource-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.resource-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    cursor: pointer;
    transition: all 0.2s;
}

.resource-list li:hover {
    padding-left: 5px;
    color: var(--primary);
}

.resource-list li i.arrow {
    opacity: 0.5;
    font-size: 0.8rem;
}

.btn-sm {
    padding: 4px 10px;
    font-size: 0.8rem;
    border-radius: 6px;
    background: var(--primary-light);
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
}

/* Messages View */
.messages-layout {
    overflow: hidden;
}

.inbox-item {
    margin-bottom: 5px;
    transition: background 0.2s;
}

.inbox-item:hover {
    background: #f8fafc;
}

.inbox-item.active {
    background: #e2e8f0;
    /* Default active if not overridden inline */
}

/* Games Grid override if needed */
.game-preview {
    text-align: center;
    padding: 20px;
    transition: transform 0.3s;
}

.game-preview:hover {
    transform: translateY(-5px);
}

#register-form .form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 700;
    color: var(--text-main);
    font-size: 14px;
}

#register-form input {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #edf2f7;
    background: #f8fafc;
    border-radius: 16px;
    font-size: 15px;
    transition: var(--transition);
    box-sizing: border-box;
}

#register-form input:focus {
    outline: none;
    border-color: var(--primary);
    background: white;
    box-shadow: 0 0 0 4px rgba(45, 90, 39, 0.1);
}

/* Checkbox Group */
.checkbox-group {
    margin-top: 20px;
}

.checkbox-label {
    display: flex !important;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-size: 13px !important;
    color: #718096 !important;
    font-weight: 400 !important;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 3px;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.checkbox-label span {
    flex: 1;
}

/* Register Button */
.btn-register {
    width: 100%;
    margin-top: 25px;
    padding: 16px !important;
    font-size: 16px;
    border-radius: 50px !important;
    background: var(--primary-gradient) !important;
    color: white !important;
    font-weight: 700 !important;
    border: none !important;
}

/* Toggle Switch */
.toggle-switch {
    position: relative;
    display: inline-block;
    width: 40px;
    height: 22px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 34px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked+.slider {
    background-color: var(--primary);
}

input:focus+.slider {
    box-shadow: 0 0 1px var(--primary);
}

input:checked+.slider:before {
    transform: translateX(18px);
}

.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}

/* --- NEW HOME DASHBOARD GRID (v7 - Premium Polish) --- */
/* --- NEW HOME DASHBOARD GRID (v7.1 - Ultra Premium) --- */
.dashboard-grid-modern {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /* Force 2 columns on mobile by default */
    gap: 15px;
    padding: 15px;
    margin-bottom: 40px;
}

@media (min-width: 768px) {
    .dashboard-grid-modern {
        grid-template-columns: repeat(3, 1fr);
        /* 3 columns on tablet/desktop */
        gap: 25px;
        padding: 25px;
    }
}

.dash-card-modern {
    background: rgba(255, 255, 255, 0.85);
    /* Slightly more transparent */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 20px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: 2px solid rgba(255, 255, 255, 1);
    /* Thicker, opaque border for visibility */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    height: 100%;
    /* Ensure equal height */
    min-height: 160px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* Hover Effect - DRAMATIC LIFT */
.dash-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(255, 255, 255, 0.9);
    z-index: 10;
}

.dash-card-modern .card-icon {
    font-size: 40px;
    margin-bottom: 15px;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.dash-card-modern:hover .card-icon {
    transform: scale(1.15) rotate(5deg);
}

.dash-card-modern h3 {
    margin: 5px 0;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
}

.dash-card-modern p {
    margin: 0;
    font-size: 0.85rem;
    color: #718096;
    line-height: 1.4;
}

/* Vibrant Color Accents (Top Border + Icon) */
.dash-card-modern.wellness {
    border-top: 5px solid #48bb78;
}

.dash-card-modern.wellness .card-icon {
    color: #2f855a;
    background: #f0fff4;
    padding: 15px;
    border-radius: 50%;
}

.dash-card-modern.community {
    border-top: 5px solid #4299e1;
}

.dash-card-modern.community .card-icon {
    color: #2b6cb0;
    background: #ebf8ff;
    padding: 15px;
    border-radius: 50%;
}

.dash-card-modern.games {
    border-top: 5px solid #ed8936;
}

.dash-card-modern.games .card-icon {
    color: #c05621;
    background: #fffaf0;
    padding: 15px;
    border-radius: 50%;
}

.dash-card-modern.resources {
    border-top: 5px solid #805ad5;
}

.dash-card-modern.resources .card-icon {
    color: #553c9a;
    background: #faf5ff;
    padding: 15px;
    border-radius: 50%;
}

.dash-card-modern.settings {
    border-top: 5px solid #718096;
}

.dash-card-modern.settings .card-icon {
    color: #4a5568;
    background: #f7fafc;
    padding: 15px;
    border-radius: 50%;
}

.dash-card-modern.messages {
    border-top: 5px solid #e53e3e;
}

.dash-card-modern.messages .card-icon {
    color: #c53030;
    background: #fff5f5;
    padding: 15px;
    border-radius: 50%;
}

/* Mobile Adjustments */
@media (max-width: 600px) {
    .dash-card-modern {
        min-height: 140px;
        padding: 15px;
    }

    .dash-card-modern .card-icon {
        font-size: 30px;
        padding: 12px;
    }

    .dash-card-modern h3 {
        font-size: 0.95rem;
    }

    .dash-card-modern p {
        font-size: 0.75rem;
        display: none;
        /* Hide description on mobile for cleaner look if needed, or keep */
    }
}

/* --- COMMUNITY REDESIGN & MEMBERSHIP LOCK --- */
.membership-lock-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(20px);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    border-radius: 24px;
}

.lock-content {
    max-width: 450px;
    text-align: center;
    padding: 40px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.membership-requirements {
    text-align: left;
    margin: 20px 0;
    background: rgba(255, 255, 255, 0.4);
    padding: 15px;
    border-radius: 12px;
}

.req-item {
    margin-bottom: 10px;
    font-size: 0.95rem;
    color: #4a5568;
}

.req-item i {
    color: var(--primary);
    margin-right: 8px;
}

.community-layout {
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding-top: 20px;
}

.community-tabs {
    display: flex;
    gap: 15px;
    margin-top: -20px;
    overflow-x: auto;
    padding-bottom: 10px;
}

.comm-tab {
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #4a5568;
}

.comm-tab.active {
    background: var(--primary);
    color: white;
    box-shadow: 0 10px 20px rgba(102, 126, 234, 0.3);
}

.community-main {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 30px;
}

@media (max-width: 900px) {
    .community-main {
        grid-template-columns: 1fr;
    }
}

.section-hint {
    background: rgba(102, 126, 234, 0.05);
    border-radius: 12px;
    padding: 15px;
    margin-bottom: 20px;
    font-style: italic;
    color: var(--primary-dark);
}

.whatsapp-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #25D366;
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: bold;
    text-decoration: none;
    transition: transform 0.3s ease;
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.2);
}

.whatsapp-badge:hover {
    transform: scale(1.05);
    color: white;
}

.online-list-panel {
    background: rgba(255, 255, 255, 0.8);
}

.online-user-list {
    margin-top: 15px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.online-user-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.online-avatar {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: var(--primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9rem;
}

.online-status-dot {
    width: 10px;
    height: 10px;
    background: #10b981;
    border-radius: 50%;
    margin-left: auto;
}

.rules-summary ul {
    padding-left: 20px;
    margin-top: 10px;
    color: #666;
    font-size: 0.9rem;
}

.rules-summary li {
    margin-bottom: 8px;
}