/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', 'SF Pro Text', 'Roboto', sans-serif;
    background-color: #FFFFFF;
    color: #1B1B1E;
    line-height: 1.5;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3 {
    font-family: 'Playfair Display', serif;
}

.hero-title {
    font-size: 32px;
    font-weight: 700;
    line-height: 38px;
    letter-spacing: -0.5px;
    color: #FF6B6B;
    margin-bottom: 16px;
}

.section-title {
    font-size: 28px;
    font-weight: 700;
    line-height: 34px;
    letter-spacing: -0.4px;
    color: #1B1B1E;
    margin-bottom: 8px;
}

.section-description {
    font-size: 16px;
    color: #6B6B73;
    margin-bottom: 32px;
}

/* Navigation */
.top-nav, .logged-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #ECECF3;
    z-index: 1000;
    padding: 16px 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo h2 {
    color: #FF6B6B;
    font-size: 24px;
    font-weight: 700;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 32px;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: #6B6B73;
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s ease;
    cursor: pointer;
}

.nav-link:hover,
.nav-link.active {
    color: #FF6B6B;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: #1B1B1E;
    cursor: pointer;
}

/* Main Content */
.main-content {
    margin-top: 80px;
}

.section {
    display: none;
    min-height: calc(100vh - 80px);
    padding: 40px 0;
}

.section.active {
    display: block;
}

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

/* Hero Section */
.hero-container {
    position: relative;
    min-height: calc(100vh - 80px);
    background: linear-gradient(135deg, #FFE7DB 0%, #FFFFFF 100%);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 32px 24px;
}

.organic-background {
    position: absolute;
    top: -20%;
    right: -10%;
    width: 60%;
    height: 120%;
    background: #1E1E26;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    transform: rotate(-15deg);
    z-index: 1;
}

.confetti-container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    pointer-events: none;
}

.confetti {
    position: absolute;
    border-radius: 2px;
    animation: float 6s ease-in-out infinite;
}

.confetti-1 {
    width: 8px;
    height: 8px;
    background: #FF6B6B;
    top: 20%;
    left: 15%;
    animation-delay: 0s;
}

.confetti-2 {
    width: 6px;
    height: 6px;
    background: #F9C74F;
    top: 30%;
    right: 20%;
    border-radius: 50%;
    animation-delay: 1s;
}

.confetti-3 {
    width: 10px;
    height: 10px;
    background: #4DA3FF;
    top: 60%;
    left: 20%;
    transform: rotate(45deg);
    animation-delay: 2s;
}

.confetti-4 {
    width: 4px;
    height: 4px;
    background: #43D1C6;
    top: 70%;
    right: 30%;
    border-radius: 50%;
    animation-delay: 3s;
}

.confetti-5 {
    width: 6px;
    height: 6px;
    background: #FF6B6B;
    top: 40%;
    left: 70%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1000px;
    width: 100%;
    z-index: 3;
    position: relative;
}

.hero-illustration {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.character {
    position: relative;
    width: 200px;
    height: 250px;
}

.character-body {
    width: 120px;
    height: 160px;
    background: #FF6B6B;
    border-radius: 60px 60px 20px 20px;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.character-head {
    width: 80px;
    height: 80px;
    background: #F4B5A0;
    border-radius: 50%;
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
}

.hero-text {
    flex: 1;
    max-width: 500px;
    z-index: 4;
    position: relative;
}

.hero-tagline {
    font-size: 16px;
    color: #FF6B6B;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
    opacity: 0.9;
}

.hero-description {
    font-size: 18px;
    color: #FF6B6B;
    margin-bottom: 32px;
    line-height: 1.6;
    font-weight: 400;
}

/* Buttons */
.cta-button {
    background: #FF6B6B;
    color: #FFFFFF;
    border: none;
    border-radius: 999px;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.cta-button:hover {
    background: #E85A5A;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 107, 107, 0.4);
}

.cta-button:active {
    transform: translateY(0);
}

.cta-button.large {
    padding: 20px 40px;
    font-size: 18px;
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.about-card {
    background: #FFFFFF;
    padding: 32px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 6px 18px rgba(20, 20, 40, 0.15);
    transition: transform 0.3s ease;
}

.about-card:hover {
    transform: translateY(-4px);
}

.card-icon {
    width: 64px;
    height: 64px;
    background: #FF6B6B;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: #FFFFFF;
    font-size: 24px;
}

.about-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #1B1B1E;
}

.about-card p {
    color: #6B6B73;
    line-height: 1.6;
}

/* Join Section */
.join-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.join-form {
    display: flex;
    gap: 16px;
    margin-top: 32px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.form-input {
    flex: 1;
    padding: 16px;
    border: 1px solid #ECECF3;
    border-radius: 12px;
    font-size: 16px;
    background: #F5F6FA;
}

.form-input:focus {
    outline: none;
    border-color: #FF6B6B;
    background: #FFFFFF;
    box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.1);
}

/* Events Section */
.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.search-bar {
    max-width: 400px;
    margin: 24px auto 0;
    position: relative;
    display: flex;
    align-items: center;
    background: #F5F6FA;
    border-radius: 20px;
    padding: 12px 16px;
    gap: 12px;
}

.search-bar i {
    color: #6B6B73;
    font-size: 16px;
}

.search-bar input {
    flex: 1;
    border: none;
    background: transparent;
    font-size: 16px;
    outline: none;
    color: #1B1B1E;
}

.search-bar input::placeholder {
    color: #A9A9B3;
}

.section-header-small {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.section-header-small h3 {
    font-size: 18px;
    font-weight: 700;
    color: #1B1B1E;
}

.section-header-small i {
    color: #6B6B73;
    cursor: pointer;
}

.events-grid {
    display: grid;
    gap: 24px;
}

.event-card {
    background: #FFFFFF;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(20, 20, 40, 0.15);
    transition: all 0.3s ease;
    cursor: pointer;
}

.event-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(20, 20, 40, 0.2);
}

.event-card-content {
    display: flex;
    gap: 16px;
    padding: 16px;
}

.event-image {
    width: 100px;
    height: 100px;
    border-radius: 12px;
    object-fit: cover;
    background: linear-gradient(135deg, #FF6B6B, #F9C74F);
}

.event-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.event-date {
    font-size: 12px;
    color: #A9A9B3;
    text-transform: uppercase;
    font-weight: 500;
}

.event-title {
    font-size: 18px;
    font-weight: 700;
    color: #1B1B1E;
    line-height: 1.3;
}

.event-location {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 14px;
    color: #6B6B73;
}

.event-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 12px;
}

.attendee-avatars {
    display: flex;
    margin-left: -8px;
}

.avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid #FFFFFF;
    margin-left: -8px;
    background: linear-gradient(135deg, #FF6B6B, #4DA3FF);
}

.interested-chip {
    background: #1E1E26;
    color: #FFFFFF;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 500;
}

/* Neon Events */
.neon-events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.neon-event-card {
    background: linear-gradient(135deg, #1E1E26 0%, #2B2D42 100%);
    border-radius: 20px;
    padding: 24px;
    color: #FFFFFF;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
}

.neon-event-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(255, 107, 107, 0.3);
}

.neon-event-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #FF6B6B, #F9C74F, #4DA3FF);
}

.neon-event-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.neon-event-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.neon-detail-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    opacity: 0.8;
}

.neon-book-btn {
    background: #FF6B6B;
    color: #FFFFFF;
    border: none;
    padding: 12px 24px;
    border-radius: 999px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.neon-book-btn:hover {
    background: #E85A5A;
    transform: scale(1.02);
}

/* Modals */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    padding: 20px;
}

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

.modal-content {
    background: #FFFFFF;
    border-radius: 20px;
    padding: 32px;
    max-width: 400px;
    width: 100%;
    position: relative;
    animation: modalSlideIn 0.3s ease-out;
}

.event-modal {
    max-width: 600px;
    max-height: 80vh;
    overflow-y: auto;
}

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

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.modal-header h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1B1B1E;
}

.modal-close {
    background: none;
    border: none;
    font-size: 20px;
    color: #6B6B73;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: background 0.3s ease;
}

.modal-close:hover {
    background: #F3F4F7;
}

/* Login Form */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #1B1B1E;
}

.form-group input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #ECECF3;
    border-radius: 12px;
    font-size: 16px;
    background: #F5F6FA;
    transition: all 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: #FF6B6B;
    background: #FFFFFF;
    box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.1);
}

.login-hint {
    text-align: center;
    margin-top: 16px;
    color: #6B6B73;
}

/* Event Detail Modal */
.event-detail-hero {
    width: 100%;
    height: 200px;
    border-radius: 16px;
    object-fit: cover;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #FF6B6B, #F9C74F);
}

.event-detail-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #1B1B1E;
}

.event-detail-meta {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.detail-meta-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    color: #4A4A4A;
}

.detail-meta-icon {
    width: 20px;
    height: 20px;
    color: #FF6B6B;
}

.event-description {
    font-size: 16px;
    line-height: 1.6;
    color: #4A4A4A;
    margin-bottom: 32px;
}

.book-event-btn {
    width: 100%;
    background: #FF6B6B;
    color: #FFFFFF;
    border: none;
    padding: 16px;
    border-radius: 16px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.book-event-btn:hover {
    background: #E85A5A;
    transform: translateY(-2px);
}

/* Bottom Navigation */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1E1E26;
    border-radius: 24px 24px 0 0;
    padding: 16px 8px 24px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.nav-item {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 12px;
    color: #FFFFFF;
    opacity: 0.7;
    transition: opacity 0.3s ease;
    cursor: pointer;
}

.nav-item:hover {
    opacity: 1;
}

.fab {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    width: 56px;
    height: 56px;
    background: #FF6B6B;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    font-size: 20px;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(255, 107, 107, 0.4);
    transition: all 0.3s ease;
}

.fab:hover {
    transform: translateX(-50%) scale(1.1);
}

/* Mobile Menu */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2500;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
    display: block;
    opacity: 1;
}

.mobile-menu-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: #FFFFFF;
    border-radius: 24px 24px 0 0;
    padding: 24px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    max-height: 70vh;
    overflow-y: auto;
}

.mobile-menu-overlay.active .mobile-menu-content {
    transform: translateY(0);
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid #ECECF3;
}

.mobile-menu-header h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1B1B1E;
}

.mobile-menu-close {
    background: none;
    border: none;
    font-size: 20px;
    color: #6B6B73;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: background 0.3s ease;
}

.mobile-menu-close:hover {
    background: #F3F4F7;
}

.mobile-menu-items {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.mobile-menu-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    border-radius: 16px;
    background: #F8F9FA;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.mobile-menu-item:not(.coming-soon):hover {
    background: #FF6B6B;
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 107, 107, 0.3);
}

.mobile-menu-item:not(.coming-soon):hover .menu-item-icon {
    background: rgba(255, 255, 255, 0.2);
    color: #FFFFFF;
}

.mobile-menu-item:not(.coming-soon):hover h4,
.mobile-menu-item:not(.coming-soon):hover p {
    color: #FFFFFF;
}

.mobile-menu-item.coming-soon {
    opacity: 0.6;
    cursor: not-allowed;
}

.menu-item-icon {
    width: 48px;
    height: 48px;
    background: #FF6B6B;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    font-size: 20px;
    transition: all 0.3s ease;
}

.mobile-menu-item.coming-soon .menu-item-icon {
    background: #A9A9B3;
}

.menu-item-content {
    flex: 1;
}

.menu-item-content h4 {
    font-size: 16px;
    font-weight: 600;
    color: #1B1B1E;
    margin-bottom: 4px;
    transition: color 0.3s ease;
}

.menu-item-content p {
    font-size: 14px;
    color: #6B6B73;
    margin: 0;
    transition: color 0.3s ease;
}

.coming-soon-badge {
    background: #F9C74F;
    color: #1B1B1E;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Mobile Menu Animation */
@keyframes slideUpIn {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.mobile-menu-item {
    animation: slideUpIn 0.3s ease forwards;
}

.mobile-menu-item:nth-child(1) { animation-delay: 0.1s; }
.mobile-menu-item:nth-child(2) { animation-delay: 0.2s; }
.mobile-menu-item:nth-child(3) { animation-delay: 0.3s; }
.mobile-menu-item:nth-child(4) { animation-delay: 0.4s; }
.mobile-menu-item:nth-child(5) { animation-delay: 0.5s; }
.mobile-menu-item:nth-child(6) { animation-delay: 0.6s; }

/* Profile Menu Specific Styles */
.profile-menu-item:hover {
    background: #FF6B6B;
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 107, 107, 0.3);
}

.profile-menu-item:hover .menu-item-icon {
    background: rgba(255, 255, 255, 0.2);
    color: #FFFFFF;
}

.profile-menu-item:hover h4,
.profile-menu-item:hover p {
    color: #FFFFFF;
}

.logout-icon {
    background: #F44336 !important;
}

.profile-menu-item:last-child:hover .logout-icon {
    background: rgba(244, 67, 54, 0.8) !important;
}

.profile-menu-item:last-child:hover {
    background: #F44336;
}

/* Responsive Design */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #FFFFFF;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        gap: 16px;
    }
    
    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }
    
    .hero-title {
        font-size: 28px;
        line-height: 34px;
    }
    
    .character {
        width: 150px;
        height: 200px;
    }
    
    .character-body {
        width: 100px;
        height: 130px;
    }
    
    .character-head {
        width: 60px;
        height: 60px;
    }
    
    .join-form {
        flex-direction: column;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .neon-events-grid {
        grid-template-columns: 1fr;
    }
    
    .container {
        padding: 0 16px;
    }
    
    .hero-container {
        padding: 20px 16px;
    }
    
    .section {
        padding: 20px 0;
    }
    
    .bottom-nav {
        display: flex;
    }
    
    .main-content {
        margin-bottom: 100px;
    }
    
    .modal-content {
        margin: 20px;
        padding: 24px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 24px;
        line-height: 30px;
    }
    
    .section-title {
        font-size: 24px;
        line-height: 30px;
    }
    
    .event-card-content {
        flex-direction: column;
        text-align: center;
    }
    
    .event-image {
        width: 100%;
        height: 200px;
        margin-bottom: 16px;
    }
    
    .event-footer {
        justify-content: center;
        flex-wrap: wrap;
        gap: 12px;
    }
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #FFFFFF;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Success Animation */
.success-animation {
    animation: successPulse 0.6s ease-out;
}

@keyframes successPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* New Landing Page Sections */

/* Earn While You Vibe Section */
.earn-vibe-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1E1E26 0%, #2B2D42 100%);
    color: #FFFFFF;
    position: relative;
    overflow: hidden;
}

.earn-vibe-section .container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
}

.earn-vibe-title {
    font-size: 36px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 24px;
    line-height: 1.2;
}

.earn-vibe-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 32px;
}

.earn-vibe-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}

.earning-highlight {
    background: linear-gradient(135deg, #FF6B6B, #F9C74F);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 12px 32px rgba(255, 107, 107, 0.3);
    animation: pulse 2s ease-in-out infinite;
}

.earning-amount {
    font-size: 32px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 8px;
}

.earning-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.vibe-elements {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.vibe-element {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    backdrop-filter: blur(10px);
    animation: float 3s ease-in-out infinite;
}

.vibe-element:nth-child(1) { animation-delay: 0s; }
.vibe-element:nth-child(2) { animation-delay: 0.5s; }
.vibe-element:nth-child(3) { animation-delay: 1s; }
.vibe-element:nth-child(4) { animation-delay: 1.5s; }

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

/* What We Do Section */
.what-we-do-section {
    padding: 80px 0;
    background: #FFFFFF;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 48px;
}

.feature-card {
    text-align: center;
    padding: 40px 24px;
    border-radius: 20px;
    background: linear-gradient(135deg, #FFFFFF 0%, #F8F9FA 100%);
    border: 1px solid #ECECF3;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(255, 107, 107, 0.1);
    border-color: #FF6B6B;
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 24px;
    display: block;
}

.feature-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1B1B1E;
    margin-bottom: 16px;
}

.feature-card p {
    color: #6B6B73;
    line-height: 1.6;
    font-size: 16px;
}

/* Services Section */
.services-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #FFE7DB 0%, #FFFFFF 100%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin-top: 48px;
}

.service-card {
    background: #FFFFFF;
    padding: 32px 24px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 6px 18px rgba(20, 20, 40, 0.08);
    transition: all 0.3s ease;
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(255, 107, 107, 0.15);
}

.service-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #FF6B6B, #F9C74F);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #FFFFFF;
    font-size: 24px;
}

.service-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: #1B1B1E;
    margin-bottom: 12px;
}

.service-card p {
    color: #6B6B73;
    font-size: 14px;
    line-height: 1.5;
}

/* Why Join Us Section */
.why-join-section {
    padding: 80px 0;
    background: #FFFFFF;
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.reason-card {
    background: #FFFFFF;
    padding: 32px 24px;
    border-radius: 20px;
    text-align: center;
    border: 2px solid #ECECF3;
    transition: all 0.3s ease;
}

.reason-card:hover {
    border-color: #FF6B6B;
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(255, 107, 107, 0.1);
}

.reason-icon {
    font-size: 40px;
    margin-bottom: 20px;
    display: block;
}

.reason-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: #1B1B1E;
    margin-bottom: 12px;
}

.reason-card p {
    color: #6B6B73;
    line-height: 1.5;
}

/* Karma Section */
.karma-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1E1E26 0%, #2B2D42 100%);
    color: #FFFFFF;
}

.karma-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
}

.karma-text h3 {
    font-size: 28px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 24px;
}

.karma-text p {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
}

.karma-visual {
    display: flex;
    justify-content: center;
}

.karma-circle {
    width: 160px;
    height: 160px;
    background: linear-gradient(135deg, #FF6B6B, #F9C74F);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    animation: pulse 2s ease-in-out infinite;
}

.karma-circle i {
    font-size: 32px;
    margin-bottom: 8px;
}

.karma-circle span {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #FFE7DB 0%, #FFFFFF 100%);
}

.cta-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 32px;
    font-weight: 700;
    color: #1B1B1E;
    margin-bottom: 20px;
    line-height: 1.2;
}

.cta-content p {
    font-size: 18px;
    color: #6B6B73;
    margin-bottom: 40px;
    line-height: 1.6;
}

/* About Page Updates */
.about-hero {
    background: linear-gradient(135deg, #FFE7DB 0%, #FFFFFF 100%);
    padding: 60px 40px;
    border-radius: 20px;
    margin-bottom: 60px;
    text-align: center;
}

.about-hero-content h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1B1B1E;
    margin-bottom: 20px;
}

.about-hero-content p {
    font-size: 18px;
    color: #6B6B73;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

.about-mission {
    background: linear-gradient(135deg, #1E1E26 0%, #2B2D42 100%);
    padding: 60px 40px;
    border-radius: 20px;
    margin-top: 60px;
    text-align: center;
    color: #FFFFFF;
}

.mission-content h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #FFFFFF;
}

.mission-content p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 32px;
    color: rgba(255, 255, 255, 0.9);
}

.mission-tagline {
    font-size: 20px;
    color: #FF6B6B;
    padding: 20px;
    border: 2px solid #FF6B6B;
    border-radius: 12px;
    display: inline-block;
}

/* Mobile Responsive Updates */
@media (max-width: 768px) {
    .what-we-do-section,
    .services-section,
    .why-join-section,
    .karma-section,
    .cta-section,
    .earn-vibe-section {
        padding: 60px 0;
    }
    
    .earn-vibe-section .container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .earn-vibe-title {
        font-size: 28px;
    }
    
    .features-grid,
    .services-grid,
    .reasons-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .karma-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .karma-circle {
        width: 120px;
        height: 120px;
    }
    
    .about-hero,
    .about-mission {
        padding: 40px 24px;
    }
    
    .cta-content h2 {
        font-size: 28px;
    }
    
    .hero-title {
        font-size: 28px;
        line-height: 34px;
    }
    
    .hero-description {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .service-card {
        padding: 20px 16px;
    }
    
    .service-icon {
        width: 48px;
        height: 48px;
        font-size: 20px;
        margin-bottom: 16px;
    }
    
    .service-card h4 {
        font-size: 16px;
    }
    
    .service-card p {
        font-size: 12px;
    }
    
    .feature-card,
    .reason-card {
        padding: 24px 16px;
    }
    
    .cta-content h2 {
        font-size: 24px;
    }
    
    .mission-tagline {
        font-size: 16px;
        padding: 16px;
    }
}

/* Vibe Earn Section */
.vibeearn-hero {
    background: linear-gradient(135deg, #FFE7DB 0%, #FFFFFF 100%);
    padding: 60px 40px;
    border-radius: 20px;
    margin-bottom: 60px;
    text-align: center;
}

.vibeearn-intro h3 {
    font-size: 28px;
    font-weight: 700;
    color: #1B1B1E;
    margin-bottom: 20px;
}

.vibeearn-intro p {
    font-size: 18px;
    color: #6B6B73;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

.section-subtitle {
    font-size: 24px;
    font-weight: 700;
    color: #1B1B1E;
    margin-bottom: 32px;
    text-align: center;
}

/* How It Works Section */
.how-it-works {
    margin-bottom: 80px;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.step-card {
    background: #FFFFFF;
    padding: 32px 24px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 6px 18px rgba(20, 20, 40, 0.08);
    transition: all 0.3s ease;
    position: relative;
}

.step-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(255, 107, 107, 0.15);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #FF6B6B, #F9C74F);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 24px;
}

.step-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: #1B1B1E;
    margin-bottom: 16px;
}

.step-card p {
    color: #6B6B73;
    line-height: 1.6;
}

/* Earning Program Section */
.earning-program {
    margin-bottom: 80px;
}

.program-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 48px;
}

.program-intro p {
    font-size: 16px;
    color: #6B6B73;
    line-height: 1.6;
}

.earning-example {
    background: linear-gradient(135deg, #1E1E26 0%, #2B2D42 100%);
    padding: 48px;
    border-radius: 24px;
    color: #FFFFFF;
    margin-bottom: 48px;
}

.example-header {
    text-align: center;
    margin-bottom: 40px;
}

.example-header h4 {
    font-size: 24px;
    font-weight: 700;
    color: #FF6B6B;
    margin-bottom: 16px;
}

.example-header p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.levels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.level-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 24px;
    border-radius: 16px;
    text-align: center;
    border: 1px solid rgba(255, 107, 107, 0.3);
    transition: all 0.3s ease;
}

.level-card:hover {
    background: rgba(255, 107, 107, 0.2);
    transform: translateY(-4px);
}

.level-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.level-number {
    font-size: 14px;
    font-weight: 600;
    color: #FF6B6B;
    text-transform: uppercase;
}

.level-people {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
}

.level-earning {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.rate {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.total {
    font-size: 20px;
    font-weight: 700;
    color: #F9C74F;
}

.total-earning {
    text-align: center;
    padding: 32px;
    background: rgba(255, 107, 107, 0.1);
    border-radius: 16px;
    border: 2px solid #FF6B6B;
}

.total-earning h4 {
    font-size: 28px;
    font-weight: 700;
    color: #F9C74F;
    margin-bottom: 12px;
}

.total-earning p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
}

/* Additional Benefits Section */
.additional-benefits {
    margin-bottom: 80px;
}

.additional-benefits > p {
    font-size: 16px;
    color: #6B6B73;
    line-height: 1.6;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
}

.success-story {
    background: linear-gradient(135deg, #F9C74F 0%, #FFD93D 100%);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
}

.success-highlight h4 {
    font-size: 24px;
    font-weight: 700;
    color: #1B1B1E;
    margin-bottom: 16px;
}

.success-highlight p {
    font-size: 18px;
    color: #1B1B1E;
    line-height: 1.6;
}

.success-highlight strong {
    color: #FF6B6B;
    font-weight: 700;
}

/* Vibe Earn CTA */
.vibeearn-cta {
    background: linear-gradient(135deg, #FF6B6B 0%, #F9C74F 100%);
    padding: 60px 40px;
    border-radius: 24px;
    text-align: center;
    color: #FFFFFF;
}

.vibeearn-cta h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 16px;
}

.vibeearn-cta p {
    font-size: 18px;
    margin-bottom: 32px;
    opacity: 0.9;
}

.vibeearn-cta .cta-button {
    background: #FFFFFF;
    color: #FF6B6B;
    border: none;
}

.vibeearn-cta .cta-button:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

/* Mobile Responsive for Vibe Earn */
@media (max-width: 768px) {
    .vibeearn-hero,
    .earning-example,
    .vibeearn-cta {
        padding: 40px 24px;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .levels-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .section-subtitle {
        font-size: 20px;
    }
    
    .example-header h4 {
        font-size: 20px;
    }
    
    .total-earning h4 {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .levels-grid {
        grid-template-columns: 1fr;
    }
    
    .level-card {
        padding: 16px;
    }
    
    .total {
        font-size: 18px;
    }
    
    .vibeearn-intro h3 {
        font-size: 24px;
    }
    
    .vibeearn-cta h3 {
        font-size: 24px;
    }
}

/* Admin Panel Styles */
.admin-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #1E1E26 0%, #2B2D42 100%);
    border-bottom: 1px solid #FF6B6B;
    z-index: 1000;
    padding: 16px 0;
}

.admin-nav .nav-logo h2 {
    color: #FF6B6B;
}

.admin-nav .nav-link {
    color: rgba(255, 255, 255, 0.8);
}

.admin-nav .nav-link:hover,
.admin-nav .nav-link.active {
    color: #FF6B6B;
}

.admin-header {
    text-align: center;
    margin-bottom: 48px;
}

.admin-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
    max-width: 800px;
    margin: 0 auto;
}

.admin-card {
    background: #FFFFFF;
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 8px 24px rgba(20, 20, 40, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 24px;
    border: 2px solid transparent;
}

.admin-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(255, 107, 107, 0.2);
    border-color: #FF6B6B;
}

.admin-card-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #FF6B6B, #F9C74F);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    font-size: 24px;
    flex-shrink: 0;
}

.admin-card-content {
    flex: 1;
}

.admin-card-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1B1B1E;
    margin-bottom: 8px;
}

.admin-card-content p {
    color: #6B6B73;
    margin-bottom: 12px;
    line-height: 1.5;
}

.admin-card-stats {
    font-size: 14px;
    color: #FF6B6B;
    font-weight: 600;
}

.admin-card-action {
    color: #6B6B73;
    font-size: 20px;
    transition: color 0.3s ease;
}

.admin-card:hover .admin-card-action {
    color: #FF6B6B;
}

/* Admin Modal Styles */
.admin-modal {
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
}

.admin-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.admin-form .form-group {
    margin-bottom: 0;
}

.admin-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #1B1B1E;
    font-size: 14px;
}

.admin-form input,
.admin-form select,
.admin-form textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #ECECF3;
    border-radius: 12px;
    font-size: 16px;
    background: #FFFFFF;
    transition: all 0.3s ease;
    font-family: inherit;
}

.admin-form input:focus,
.admin-form select:focus,
.admin-form textarea:focus {
    outline: none;
    border-color: #FF6B6B;
    box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.1);
}

.admin-form select {
    cursor: pointer;
}

.admin-form textarea {
    resize: vertical;
    min-height: 100px;
}

.admin-form .cta-button {
    margin-top: 16px;
    align-self: flex-start;
}

/* Mobile Admin Styles */
@media (max-width: 768px) {
    .admin-cards-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .admin-card {
        padding: 24px;
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .admin-modal {
        margin: 20px;
        padding: 24px;
    }
}

@media (max-width: 480px) {
    .admin-card {
        padding: 20px;
    }
    
    .admin-card-icon {
        width: 56px;
        height: 56px;
        font-size: 20px;
    }
    
    .admin-card-content h3 {
        font-size: 18px;
    }
}

/* Photo Carousel Styles */
.photo-carousel-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.photo-carousel-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 107, 107, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(74, 144, 226, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.carousel-header {
    text-align: center;
    margin-bottom: 48px;
    position: relative;
    z-index: 2;
}

.carousel-title {
    font-size: 36px;
    font-weight: 700;
    color: #1B1B1E;
    margin-bottom: 12px;
    background: linear-gradient(135deg, #FF6B6B 0%, #4A90E2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.carousel-subtitle {
    font-size: 18px;
    color: #6B6B73;
    font-weight: 400;
    max-width: 600px;
    margin: 0 auto;
}

.carousel-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    padding: 32px 0;
}

.carousel-track {
    display: flex;
    align-items: flex-start;
    gap: 32px;
    padding: 40px 32px 80px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    min-height: 400px;
}

.carousel-track::-webkit-scrollbar {
    display: none;
}

/* Floating Animation Keyframes */
@keyframes floatSlow {
    0%, 100% { transform: translateY(0px) rotate(var(--rotation)); }
    50% { transform: translateY(-15px) rotate(var(--rotation)); }
}

@keyframes floatMedium {
    0%, 100% { transform: translateY(0px) rotate(var(--rotation)); }
    33% { transform: translateY(-10px) rotate(var(--rotation)); }
    66% { transform: translateY(-20px) rotate(var(--rotation)); }
}

@keyframes floatFast {
    0%, 100% { transform: translateY(0px) rotate(var(--rotation)); }
    25% { transform: translateY(-12px) rotate(var(--rotation)); }
    75% { transform: translateY(-8px) rotate(var(--rotation)); }
}

.photo-item {
    position: relative;
    flex-shrink: 0;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    animation-duration: var(--float-duration);
    animation-name: var(--float-animation);
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
    transform: rotate(var(--rotation));
}

.photo-item:hover {
    transform: translateY(-12px) scale(1.08) rotate(var(--rotation));
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
    animation-play-state: paused;
}

/* Different sizes and orientations for squares */
.photo-item.square {
    border-radius: 20px;
}

.photo-item.square:nth-child(1) {
    width: 280px;
    height: 280px;
    --rotation: -3deg;
    --float-animation: floatSlow;
    --float-duration: 6s;
    margin-top: 20px;
}

.photo-item.square:nth-child(3) {
    width: 240px;
    height: 240px;
    --rotation: 5deg;
    --float-animation: floatMedium;
    --float-duration: 4.5s;
    margin-top: 60px;
}

.photo-item.square:nth-child(5) {
    width: 320px;
    height: 320px;
    --rotation: -2deg;
    --float-animation: floatFast;
    --float-duration: 5.5s;
    margin-top: 10px;
}

.photo-item.square:nth-child(7) {
    width: 200px;
    height: 200px;
    --rotation: 4deg;
    --float-animation: floatSlow;
    --float-duration: 7s;
    margin-top: 80px;
}

.photo-item.square:nth-child(9) {
    width: 260px;
    height: 260px;
    --rotation: -6deg;
    --float-animation: floatMedium;
    --float-duration: 5s;
    margin-top: 40px;
}

.photo-item.square:nth-child(11) {
    width: 300px;
    height: 300px;
    --rotation: 2deg;
    --float-animation: floatFast;
    --float-duration: 6.5s;
    margin-top: 15px;
}

/* Different sizes and orientations for circles */
.photo-item.circle {
    border-radius: 50%;
}

.photo-item.circle:nth-child(2) {
    width: 220px;
    height: 220px;
    --rotation: 0deg;
    --float-animation: floatMedium;
    --float-duration: 5.5s;
    margin-top: 50px;
}

.photo-item.circle:nth-child(4) {
    width: 180px;
    height: 180px;
    --rotation: 0deg;
    --float-animation: floatFast;
    --float-duration: 4s;
    margin-top: 30px;
}

.photo-item.circle:nth-child(6) {
    width: 280px;
    height: 280px;
    --rotation: 0deg;
    --float-animation: floatSlow;
    --float-duration: 6.5s;
    margin-top: 70px;
}

.photo-item.circle:nth-child(8) {
    width: 160px;
    height: 160px;
    --rotation: 0deg;
    --float-animation: floatMedium;
    --float-duration: 4.8s;
    margin-top: 90px;
}

.photo-item.circle:nth-child(10) {
    width: 240px;
    height: 240px;
    --rotation: 0deg;
    --float-animation: floatFast;
    --float-duration: 5.2s;
    margin-top: 25px;
}

.photo-item.circle:nth-child(12) {
    width: 200px;
    height: 200px;
    --rotation: 0deg;
    --float-animation: floatSlow;
    --float-duration: 7.2s;
    margin-top: 55px;
}

.photo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.photo-item:hover img {
    transform: scale(1.1);
}

.photo-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    padding: 32px 20px 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: flex-end;
}

.photo-item.circle .photo-overlay {
    border-radius: 0 0 50% 50%;
}

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

.photo-tag {
    color: white;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: rgba(255, 107, 107, 0.9);
    padding: 6px 12px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.carousel-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 16px;
    pointer-events: none;
    z-index: 3;
}

.carousel-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.9);
    color: #1B1B1E;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: all 0.3s ease;
    pointer-events: auto;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.carousel-btn:hover {
    background: #FF6B6B;
    color: white;
    transform: scale(1.1);
    box-shadow: 0 6px 24px rgba(255, 107, 107, 0.3);
}

.carousel-btn:active {
    transform: scale(0.95);
}

/* Mobile Carousel Styles */
@media (max-width: 768px) {
    .photo-carousel-section {
        padding: 60px 0;
    }
    
    .carousel-title {
        font-size: 28px;
        margin-bottom: 8px;
    }
    
    .carousel-subtitle {
        font-size: 16px;
        padding: 0 20px;
    }
    
    .carousel-header {
        margin-bottom: 32px;
    }
    
    .carousel-track {
        gap: 20px;
        padding: 30px 20px 60px;
        min-height: 320px;
    }
    
    /* Mobile sizes for squares - maintaining random sizes and positions */
    .photo-item.square:nth-child(1) {
        width: 200px;
        height: 200px;
        margin-top: 15px;
    }
    
    .photo-item.square:nth-child(3) {
        width: 170px;
        height: 170px;
        margin-top: 45px;
    }
    
    .photo-item.square:nth-child(5) {
        width: 220px;
        height: 220px;
        margin-top: 8px;
    }
    
    .photo-item.square:nth-child(7) {
        width: 140px;
        height: 140px;
        margin-top: 60px;
    }
    
    .photo-item.square:nth-child(9) {
        width: 180px;
        height: 180px;
        margin-top: 30px;
    }
    
    .photo-item.square:nth-child(11) {
        width: 210px;
        height: 210px;
        margin-top: 12px;
    }
    
    /* Mobile sizes for circles - maintaining random sizes and positions */
    .photo-item.circle:nth-child(2) {
        width: 160px;
        height: 160px;
        margin-top: 35px;
    }
    
    .photo-item.circle:nth-child(4) {
        width: 130px;
        height: 130px;
        margin-top: 20px;
    }
    
    .photo-item.circle:nth-child(6) {
        width: 190px;
        height: 190px;
        margin-top: 50px;
    }
    
    .photo-item.circle:nth-child(8) {
        width: 110px;
        height: 110px;
        margin-top: 65px;
    }
    
    .photo-item.circle:nth-child(10) {
        width: 170px;
        height: 170px;
        margin-top: 18px;
    }
    
    .photo-item.circle:nth-child(12) {
        width: 140px;
        height: 140px;
        margin-top: 40px;
    }
    
    .carousel-controls {
        padding: 0 8px;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
    
    .photo-tag {
        font-size: 12px;
        padding: 4px 8px;
    }
}

@media (max-width: 480px) {
    .photo-carousel-section {
        padding: 40px 0;
    }
    
    .carousel-title {
        font-size: 24px;
    }
    
    .carousel-subtitle {
        font-size: 14px;
    }
    
    .carousel-track {
        gap: 16px;
        padding: 25px 16px 50px;
        min-height: 280px;
    }
    
    /* Small mobile sizes for squares */
    .photo-item.square:nth-child(1) {
        width: 160px;
        height: 160px;
        margin-top: 10px;
    }
    
    .photo-item.square:nth-child(3) {
        width: 140px;
        height: 140px;
        margin-top: 35px;
    }
    
    .photo-item.square:nth-child(5) {
        width: 180px;
        height: 180px;
        margin-top: 5px;
    }
    
    .photo-item.square:nth-child(7) {
        width: 120px;
        height: 120px;
        margin-top: 45px;
    }
    
    .photo-item.square:nth-child(9) {
        width: 150px;
        height: 150px;
        margin-top: 20px;
    }
    
    .photo-item.square:nth-child(11) {
        width: 170px;
        height: 170px;
        margin-top: 8px;
    }
    
    /* Small mobile sizes for circles */
    .photo-item.circle:nth-child(2) {
        width: 130px;
        height: 130px;
        margin-top: 25px;
    }
    
    .photo-item.circle:nth-child(4) {
        width: 110px;
        height: 110px;
        margin-top: 15px;
    }
    
    .photo-item.circle:nth-child(6) {
        width: 150px;
        height: 150px;
        margin-top: 40px;
    }
    
    .photo-item.circle:nth-child(8) {
        width: 90px;
        height: 90px;
        margin-top: 50px;
    }
    
    .photo-item.circle:nth-child(10) {
        width: 140px;
        height: 140px;
        margin-top: 12px;
    }
    
    .photo-item.circle:nth-child(12) {
        width: 120px;
        height: 120px;
        margin-top: 30px;
    }
}

/* Vibe & Earn Button Section */
.vibe-earn-button-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #FF6B6B 0%, #4A90E2 100%);
    position: relative;
    overflow: hidden;
}

.vibe-earn-button-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.vibe-earn-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
    position: relative;
    z-index: 2;
}

.vibe-earn-preview {
    flex: 1;
    color: white;
}

.earning-teaser {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.earning-amount-small {
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 18px;
    font-weight: 700;
    backdrop-filter: blur(10px);
}

.earning-tagline {
    font-size: 14px;
    font-weight: 500;
    opacity: 0.9;
}

.vibe-earn-preview h3 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.2;
}

.vibe-earn-preview p {
    font-size: 18px;
    opacity: 0.9;
    line-height: 1.6;
}

.vibe-earn-trigger {
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.15) !important;
    color: white !important;
    border: 2px solid rgba(255, 255, 255, 0.3) !important;
    backdrop-filter: blur(10px);
    padding: 20px 32px !important;
    font-size: 18px !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
}

.vibe-earn-trigger:hover {
    background: rgba(255, 255, 255, 0.25) !important;
    border-color: rgba(255, 255, 255, 0.5) !important;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2) !important;
}

.vibe-earn-trigger span {
    margin-right: 8px;
}

/* Vibe & Earn Modal Styles */
.vibe-earn-modal {
    max-width: 700px;
    max-height: 90vh;
    overflow-y: auto;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    transform: scale(0.8);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

#vibeEarnModal.active .vibe-earn-modal {
    transform: scale(1);
    opacity: 1;
}

#vibeEarnModal {
    opacity: 0;
    transition: opacity 0.3s ease;
}

#vibeEarnModal.active {
    opacity: 1;
}

.vibe-earn-modal-content {
    padding: 32px;
}

.earning-highlight-modal {
    text-align: center;
    margin-bottom: 32px;
    padding: 24px;
    background: linear-gradient(135deg, #FF6B6B 0%, #4A90E2 100%);
    border-radius: 20px;
    color: white;
}

.earning-amount-large {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 8px;
}

.earning-label-modal {
    font-size: 16px;
    font-weight: 500;
    opacity: 0.9;
}

.earn-description {
    margin-bottom: 32px;
}

.earn-description p {
    font-size: 16px;
    line-height: 1.6;
    color: #4A4A4A;
    margin-bottom: 16px;
}

.vibe-elements-modal {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 32px;
}

.vibe-element-modal {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: rgba(255, 107, 107, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 107, 107, 0.1);
    transition: all 0.3s ease;
}

.vibe-element-modal:hover {
    background: rgba(255, 107, 107, 0.1);
    transform: translateY(-2px);
}

.vibe-icon {
    font-size: 24px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 107, 107, 0.1);
    border-radius: 50%;
}

.vibe-element-modal span {
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

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

.cta-button.secondary {
    background: transparent !important;
    color: #6B6B73 !important;
    border: 2px solid #E5E5E5 !important;
}

.cta-button.secondary:hover {
    background: #f5f5f5 !important;
    color: #333 !important;
    border-color: #ddd !important;
}

/* Mobile Styles for Vibe & Earn Section */
@media (max-width: 768px) {
    .vibe-earn-button-section {
        padding: 60px 0;
    }
    
    .vibe-earn-cta {
        flex-direction: column;
        text-align: center;
        gap: 32px;
    }
    
    .vibe-earn-preview h3 {
        font-size: 28px;
    }
    
    .vibe-earn-preview p {
        font-size: 16px;
    }
    
    .earning-teaser {
        justify-content: center;
    }
    
    .vibe-earn-modal-content {
        padding: 24px;
    }
    
    .earning-amount-large {
        font-size: 36px;
    }
    
    .vibe-elements-modal {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .modal-actions {
        flex-direction: column;
        align-items: stretch;
    }
}

@media (max-width: 480px) {
    .vibe-earn-button-section {
        padding: 40px 0;
    }
    
    .vibe-earn-preview h3 {
        font-size: 24px;
    }
    
    .earning-amount-small {
        font-size: 16px;
        padding: 6px 12px;
    }
    
    .earning-tagline {
        font-size: 12px;
    }
    
    .vibe-earn-trigger {
        padding: 16px 24px !important;
        font-size: 16px !important;
    }
    
    .earning-amount-large {
        font-size: 32px;
    }
}

/* Enhanced Vibe In Form Styles */
.join-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.user-details-form {
    background: #f8f9ff;
    border-radius: 20px;
    padding: 40px;
    margin-top: 32px;
    text-align: left;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.form-header {
    text-align: center;
    margin-bottom: 32px;
}

.form-header h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1B1B1E;
    margin-bottom: 8px;
}

.form-header p {
    color: #6B6B73;
    margin-bottom: 16px;
}

.insider-info {
    background: linear-gradient(135deg, #FF6B6B 0%, #4A90E2 100%);
    color: white;
    padding: 12px 20px;
    border-radius: 25px;
    display: inline-block;
    font-size: 14px;
    font-weight: 500;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    position: relative;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.form-input {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #E5E5E5;
    border-radius: 12px;
    font-size: 16px;
    background: #FFFFFF;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-input:focus {
    outline: none;
    border-color: #FF6B6B;
    box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.1);
}

.form-input:valid {
    border-color: #10B981;
}

.form-input.error {
    border-color: #EF4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.error-message {
    color: #EF4444;
    font-size: 12px;
    margin-top: 4px;
    min-height: 16px;
    display: block;
}

.success-message {
    color: #10B981;
    font-size: 12px;
    margin-top: 4px;
    min-height: 16px;
    display: block;
}

.form-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-top: 32px;
}

.registration-success {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    color: white;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    margin-top: 32px;
}

.success-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.registration-success h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
}

.registration-success p {
    font-size: 16px;
    opacity: 0.9;
}

/* Username validation styling */
#username {
    position: relative;
}

#username.checking {
    border-color: #F59E0B;
}

#username.available {
    border-color: #10B981;
}

#username.taken {
    border-color: #EF4444;
}

/* Phone number validation */
#phoneNumber:invalid {
    border-color: #EF4444;
}

#phoneNumber:valid {
    border-color: #10B981;
}

/* Date picker styling */
input[type="date"] {
    position: relative;
}

input[type="date"]::-webkit-calendar-picker-indicator {
    background: #FF6B6B;
    border-radius: 4px;
    color: white;
    cursor: pointer;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .user-details-form {
        padding: 24px;
        margin-top: 24px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-bottom: 16px;
    }
    
    .form-header h3 {
        font-size: 20px;
    }
    
    .form-actions {
        flex-direction: column;
        align-items: stretch;
    }
    
    .insider-info {
        padding: 10px 16px;
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .user-details-form {
        padding: 20px;
    }
    
    .form-input {
        padding: 10px 12px;
        font-size: 14px;
    }
    
    .success-icon {
        font-size: 36px;
    }
    
    .registration-success h3 {
        font-size: 20px;
    }
    
    .registration-success p {
        font-size: 14px;
    }
}

/* OTP Verification Styles */
.phone-input-container,
.email-input-container,
.otp-input-container {
    display: flex;
    gap: 8px;
    align-items: stretch;
}

.phone-input-container .form-input,
.email-input-container .form-input,
.otp-input-container .form-input {
    flex: 1;
}

.send-otp-btn,
.verify-otp-btn {
    background: #FF6B6B;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 0 16px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
    min-width: 100px;
    justify-content: center;
}

.send-otp-btn:hover,
.verify-otp-btn:hover {
    background: #E85A5A;
    transform: translateY(-1px);
}

.send-otp-btn:disabled,
.verify-otp-btn:disabled {
    background: #A9A9B3;
    cursor: not-allowed;
    transform: none;
}

.send-otp-btn.loading,
.verify-otp-btn.loading {
    background: #F59E0B;
    cursor: wait;
}

.send-otp-btn.success,
.verify-otp-btn.success {
    background: #10B981;
}

.otp-verification {
    background: #F8F9FF;
    border: 2px solid #E5E7EB;
    border-radius: 12px;
    padding: 20px;
    margin-top: 16px;
    animation: slideInDown 0.3s ease-out;
}

.otp-verification.verified {
    border-color: #10B981;
    background: #F0FDF4;
}

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

.otp-timer {
    font-size: 12px;
    color: #6B6B73;
    margin-top: 8px;
    text-align: center;
}

.otp-timer.expiring {
    color: #EF4444;
    font-weight: 600;
}

.resend-otp-link {
    background: none;
    border: none;
    color: #FF6B6B;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: underline;
    margin-top: 8px;
    padding: 4px 0;
    width: 100%;
    text-align: center;
    transition: color 0.3s ease;
}

.resend-otp-link:hover {
    color: #E85A5A;
}

.resend-otp-link:disabled {
    color: #A9A9B3;
    cursor: not-allowed;
    text-decoration: none;
}

/* OTP Input specific styling */
#phoneOtpCode,
#emailOtpCode {
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 2px;
    font-family: 'Courier New', monospace;
}

#phoneOtpCode:focus,
#emailOtpCode:focus {
    border-color: #FF6B6B;
    box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.1);
}

#phoneOtpCode.verified,
#emailOtpCode.verified {
    border-color: #10B981;
    background: #F0FDF4;
    color: #065F46;
}

/* Registration form updates */
#submitRegistrationBtn:disabled {
    background: #A9A9B3;
    cursor: not-allowed;
    opacity: 0.6;
}

.form-step-indicator {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 20px;
}

.step-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #E5E7EB;
    transition: background 0.3s ease;
}

.step-dot.active {
    background: #FF6B6B;
}

.step-dot.completed {
    background: #10B981;
}

/* Verification Progress Indicator */
.verification-progress {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 20px 0;
    padding: 16px;
    background: #F8F9FF;
    border-radius: 12px;
    border: 1px solid #E5E7EB;
}

.verification-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 8px;
    background: #FFFFFF;
    border: 1px solid #E5E7EB;
    transition: all 0.3s ease;
}

.verification-item.verified {
    border-color: #10B981;
    background: #F0FDF4;
    color: #065F46;
}

.verification-item.pending {
    border-color: #F59E0B;
    background: #FFFBEB;
    color: #92400E;
}

.verification-icon {
    width: 16px;
    height: 16px;
    font-size: 12px;
}

.verification-icon.verified {
    color: #10B981;
}

.verification-icon.pending {
    color: #F59E0B;
}

.verification-text {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Mobile responsive for OTP */
@media (max-width: 768px) {
    .phone-input-container,
    .email-input-container,
    .otp-input-container {
        flex-direction: column;
        gap: 12px;
    }
    
    .send-otp-btn,
    .verify-otp-btn {
        width: 100%;
        padding: 12px 16px;
    }
    
    .otp-verification {
        padding: 16px;
    }
    
    .verification-progress {
        flex-direction: column;
        gap: 12px;
    }
    
    .verification-item {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    #phoneOtpCode,
    #emailOtpCode {
        font-size: 16px;
        letter-spacing: 1px;
    }
    
    .otp-timer {
        font-size: 11px;
    }
    
    .verification-text {
        font-size: 11px;
    }
}

/* Dashboard Section Styles */
.refresh-dashboard-btn {
    background: linear-gradient(135deg, #4A90E2 0%, #FF6B6B 100%);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 20px auto 0;
}

.refresh-dashboard-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(74, 144, 226, 0.3);
}

.refresh-dashboard-btn:disabled {
    background: #A9A9B3;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.refresh-dashboard-btn.loading {
    background: #F59E0B;
}

.refresh-dashboard-btn.loading i {
    animation: spin 1s linear infinite;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
    margin: 40px 0;
}

.metric-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.metric-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--metric-color);
}

.metric-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border-color: var(--metric-color);
}

.metric-header {
    display: flex;
    align-items: center;
    justify-content: between;
    margin-bottom: 20px;
}

.metric-icon {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    background: var(--metric-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    margin-right: 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.metric-info {
    flex: 1;
}

.metric-title {
    font-size: 18px;
    font-weight: 700;
    color: #1B1B1E;
    margin: 0 0 5px 0;
}

.metric-description {
    font-size: 14px;
    color: #6B6B73;
    margin: 0;
}

.metric-value {
    font-size: 48px;
    font-weight: 800;
    color: var(--metric-color);
    margin: 20px 0 15px 0;
    font-family: 'Inter', sans-serif;
    line-height: 1;
}

.metric-details {
    background: rgba(255, 255, 255, 0.8);
    padding: 15px;
    border-radius: 12px;
    font-size: 13px;
    color: #6B6B73;
    line-height: 1.5;
    border-left: 4px solid var(--metric-color);
}

.metrics-loading,
.transactions-loading {
    text-align: center;
    padding: 60px 20px;
    color: #6B6B73;
}

.metrics-loading i,
.transactions-loading i {
    font-size: 24px;
    margin-bottom: 15px;
    color: #FF6B6B;
}

.transactions-section {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    margin-top: 40px;
}

.transactions-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 20px;
}

.transactions-header h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1B1B1E;
    margin: 0;
}

.transaction-filters {
    display: flex;
    gap: 8px;
    background: #F5F6FA;
    border-radius: 12px;
    padding: 6px;
}

.filter-btn {
    padding: 8px 16px;
    border: none;
    background: transparent;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #6B6B73;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn.active {
    background: #FFFFFF;
    color: #FF6B6B;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.filter-btn:hover:not(.active) {
    color: #333;
}

.transactions-list {
    max-height: 400px;
    overflow-y: auto;
}

.transaction-item {
    display: flex;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid #F0F1F5;
    transition: all 0.3s ease;
}

.transaction-item:last-child {
    border-bottom: none;
}

.transaction-item:hover {
    background: rgba(255, 107, 107, 0.02);
    margin: 0 -15px;
    padding: 16px 15px;
    border-radius: 12px;
}

.transaction-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 16px;
    color: white;
}

.transaction-icon.swag {
    background: #FFD700;
}

.transaction-icon.karma {
    background: #FF6B6B;
}

.transaction-icon.vibe {
    background: #4A90E2;
}

.transaction-icon.credit {
    background: #10B981;
}

.transaction-icon.debit {
    background: #EF4444;
}

.transaction-content {
    flex: 1;
}

.transaction-description {
    font-size: 15px;
    font-weight: 600;
    color: #1B1B1E;
    margin: 0 0 4px 0;
}

.transaction-date {
    font-size: 13px;
    color: #6B6B73;
    margin: 0;
}

.transaction-amount {
    font-size: 16px;
    font-weight: 700;
    text-align: right;
}

.transaction-amount.credit {
    color: #10B981;
}

.transaction-amount.debit {
    color: #EF4444;
}

.no-transactions {
    text-align: center;
    padding: 40px 20px;
    color: #6B6B73;
}

.no-transactions i {
    font-size: 48px;
    margin-bottom: 15px;
    color: #E5E7EB;
}

/* Metric Color Variables */
.metric-card.swag {
    --metric-color: #FFD700;
}

.metric-card.karma {
    --metric-color: #FF6B6B;
}

.metric-card.vibe {
    --metric-color: #4A90E2;
}

/* Responsive Design */
@media (max-width: 768px) {
    .metrics-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin: 30px 0;
    }
    
    .metric-card {
        padding: 20px;
    }
    
    .metric-value {
        font-size: 36px;
    }
    
    .transactions-section {
        padding: 20px;
        margin-top: 30px;
    }
    
    .transactions-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .transaction-filters {
        width: 100%;
        justify-content: center;
    }
    
    .refresh-dashboard-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .metric-header {
        flex-direction: column;
        text-align: center;
    }
    
    .metric-icon {
        margin: 0 0 15px 0;
    }
    
    .metric-value {
        font-size: 28px;
    }
    
    .transaction-filters {
        flex-wrap: wrap;
        gap: 6px;
    }
    
    .filter-btn {
        flex: 1;
        min-width: calc(50% - 3px);
    }
}

/* Animation for refresh */
@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Invites Section Styles */
.invite-toggle-container {
    text-align: center;
    margin-bottom: 48px;
}

.invite-toggle-buttons {
    display: inline-flex;
    background: #F5F6FA;
    border-radius: 12px;
    padding: 4px;
    gap: 4px;
}

.invite-toggle-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border: none;
    background: transparent;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #6B6B73;
    cursor: pointer;
    transition: all 0.3s ease;
}

.invite-toggle-btn.active {
    background: #FFFFFF;
    color: #FF6B6B;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.invite-toggle-btn:hover:not(.active) {
    color: #333;
}

.invite-count {
    background: #FF6B6B;
    color: white;
    padding: 2px 6px;
    border-radius: 10px;
    font-size: 11px;
    font-weight: 700;
    min-width: 18px;
    text-align: center;
}

.invite-toggle-btn.active .invite-count {
    background: #FF6B6B;
}

.invite-toggle-btn:not(.active) .invite-count {
    background: #A9A9B3;
}

.invites-content {
    position: relative;
}

.invite-tab {
    display: none;
}

.invite-tab.active {
    display: block;
}

.invite-section {
    margin-bottom: 48px;
}

.invite-section-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 20px;
    font-weight: 700;
    color: #1B1B1E;
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 2px solid #ECECF3;
}

.invite-section-title i {
    color: #FF6B6B;
    font-size: 18px;
}

.invites-grid {
    display: grid;
    gap: 20px;
}

.invite-card {
    background: #FFFFFF;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    border: 1px solid #ECECF3;
    transition: all 0.3s ease;
    position: relative;
}

.invite-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    border-color: #FF6B6B;
}

.invite-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 16px;
}

.invite-user-info {
    flex: 1;
}

.invite-user-name {
    font-size: 18px;
    font-weight: 700;
    color: #1B1B1E;
    margin-bottom: 4px;
}

.invite-user-email {
    font-size: 14px;
    color: #6B6B73;
    margin-bottom: 8px;
}

.invite-user-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 12px;
    margin-bottom: 20px;
}

.invite-detail-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #4A4A4A;
}

.invite-detail-item i {
    color: #FF6B6B;
    font-size: 12px;
    width: 12px;
}

.invite-timestamp {
    font-size: 12px;
    color: #A9A9B3;
    text-align: right;
    margin-bottom: 16px;
}

.invite-actions {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
}

.invite-action-btn {
    padding: 8px 16px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
}

.approve-btn {
    background: #10B981;
    color: white;
}

.approve-btn:hover {
    background: #059669;
    transform: translateY(-1px);
}

.reject-btn {
    background: #EF4444;
    color: white;
}

.reject-btn:hover {
    background: #DC2626;
    transform: translateY(-1px);
}

.invite-status {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-approved {
    background: #D1FAE5;
    color: #065F46;
}

.status-rejected {
    background: #FEE2E2;
    color: #991B1B;
}

.rejection-reason {
    background: #FEF3F2;
    border-left: 4px solid #EF4444;
    padding: 12px;
    border-radius: 8px;
    margin-top: 12px;
}

.rejection-reason-label {
    font-size: 12px;
    font-weight: 600;
    color: #EF4444;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.rejection-reason-text {
    font-size: 14px;
    color: #7F1D1D;
    line-height: 1.4;
}

.empty-state {
    text-align: center;
    padding: 60px 20px;
    color: #6B6B73;
}

.empty-state i {
    font-size: 48px;
    color: #D1D5DB;
    margin-bottom: 16px;
}

.empty-state h4 {
    font-size: 18px;
    color: #4B5563;
    margin-bottom: 8px;
}

.empty-state p {
    font-size: 14px;
    color: #6B6B73;
}

/* Profile Menu Badge */
.invite-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    background: #FF6B6B;
    color: white;
    border-radius: 12px;
    padding: 2px 6px;
    font-size: 10px;
    font-weight: 700;
    min-width: 18px;
    text-align: center;
    border: 2px solid white;
}

/* Reject Modal Styles */
.rejection-warning {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #FEF3F2;
    border: 1px solid #FECACA;
    border-radius: 8px;
    padding: 12px;
    margin: 16px 0;
    font-size: 14px;
    color: #B91C1C;
}

.rejection-warning i {
    color: #EF4444;
    font-size: 16px;
}

/* Mobile Responsive for Invites */
@media (max-width: 768px) {
    .invite-toggle-buttons {
        flex-direction: column;
        background: transparent;
        gap: 8px;
        padding: 0;
    }
    
    .invite-toggle-btn {
        justify-content: center;
        padding: 16px 24px;
        background: #F5F6FA;
        border-radius: 12px;
    }
    
    .invite-toggle-btn.active {
        background: #FF6B6B;
        color: white;
    }
    
    .invite-toggle-btn.active .invite-count {
        background: rgba(255, 255, 255, 0.2);
    }
    
    .invite-card {
        padding: 20px;
    }
    
    .invite-card-header {
        flex-direction: column;
        gap: 12px;
    }
    
    .invite-user-details {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    
    .invite-actions {
        justify-content: stretch;
    }
    
    .invite-action-btn {
        flex: 1;
        justify-content: center;
    }
    
    .invite-status {
        position: relative;
        top: auto;
        right: auto;
        align-self: flex-start;
        margin-bottom: 12px;
    }
}

@media (max-width: 480px) {
    .invite-section-title {
        font-size: 18px;
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .invite-user-name {
        font-size: 16px;
    }
    
    .invite-actions {
        flex-direction: column;
        gap: 8px;
    }
    
    .invite-action-btn {
        padding: 12px 16px;
    }
}

/* Commune Page Styles */
.commune-summary {
    margin-bottom: 40px;
}

.summary-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 16px;
    padding: 32px;
    display: flex;
    align-items: center;
    gap: 20px;
    max-width: 400px;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.summary-icon {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.summary-icon i {
    font-size: 24px;
}

.summary-content h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 4px;
    font-family: 'Inter', sans-serif;
}

.summary-content p {
    font-size: 16px;
    opacity: 0.9;
}

.refresh-commune-btn {
    background: #4ECDC4;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    margin-left: auto;
}

.refresh-commune-btn:hover {
    background: #45B7B8;
    transform: translateY(-2px);
}

.refresh-commune-btn i {
    font-size: 12px;
}

.levels-container {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.level-section {
    background: #FAFAFA;
    border-radius: 16px;
    padding: 24px;
    border: 1px solid #E8E8E8;
}

.level-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 2px solid #E8E8E8;
}

.level-title {
    display: flex;
    align-items: center;
    gap: 12px;
}

.level-number {
    background: #FF6B6B;
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
}

.level-title h3 {
    font-size: 20px;
    font-weight: 600;
    color: #1B1B1E;
    font-family: 'Inter', sans-serif;
}

.level-count {
    background: #4ECDC4;
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.referrals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 16px;
    margin-top: 20px;
}

.referral-card {
    background: white;
    border-radius: 12px;
    padding: 20px;
    border: 1px solid #E8E8E8;
    transition: all 0.3s ease;
    position: relative;
}

.referral-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: #4ECDC4;
}

.referral-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.referral-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 16px;
}

.referral-info h4 {
    font-size: 16px;
    font-weight: 600;
    color: #1B1B1E;
    margin-bottom: 2px;
}

.referral-username {
    font-size: 14px;
    color: #6B6B73;
}

.referral-details {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid #F0F0F0;
}

.referral-detail {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
    font-size: 14px;
    color: #6B6B73;
}

.referral-detail i {
    width: 16px;
    color: #4ECDC4;
}

.empty-level {
    text-align: center;
    padding: 40px 20px;
    color: #6B6B73;
}

.empty-level i {
    font-size: 48px;
    color: #E8E8E8;
    margin-bottom: 16px;
}

.empty-level h4 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #1B1B1E;
}

.commune-loading {
    text-align: center;
    padding: 60px 20px;
    color: #6B6B73;
}

.commune-loading i {
    font-size: 32px;
    color: #4ECDC4;
    margin-bottom: 16px;
}

/* Mobile Commune Styles */
@media (max-width: 768px) {
    .summary-card {
        flex-direction: column;
        text-align: center;
        padding: 24px;
    }
    
    .summary-icon {
        margin-bottom: 8px;
    }
    
    .level-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    .referrals-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .referral-card {
        padding: 16px;
    }
    
    .refresh-commune-btn {
        margin: 0;
        width: 100%;
        justify-content: center;
    }
}

/* Payouts Page Styles */
.payout-summary-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.summary-stat-card {
    background: white;
    border-radius: 16px;
    padding: 24px;
    border: 1px solid #E8E8E8;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.summary-stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.summary-stat-card.total-earnings .stat-icon {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.summary-stat-card.total-paid .stat-icon {
    background: linear-gradient(135deg, #4ECDC4 0%, #44A08D 100%);
}

.summary-stat-card.pending-amount .stat-icon {
    background: linear-gradient(135deg, #FFB74D 0%, #FF8A65 100%);
}

.summary-stat-card.avg-monthly .stat-icon {
    background: linear-gradient(135deg, #81C784 0%, #66BB6A 100%);
}

.stat-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.stat-icon i {
    font-size: 24px;
}

.stat-content h3 {
    font-size: 28px;
    font-weight: 700;
    color: #1B1B1E;
    margin-bottom: 4px;
    font-family: 'Inter', sans-serif;
}

.stat-content p {
    font-size: 14px;
    color: #6B6B73;
    font-weight: 500;
}

.refresh-payouts-btn {
    background: #667eea;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    margin-left: auto;
}

.refresh-payouts-btn:hover {
    background: #5a6fd8;
    transform: translateY(-2px);
}

.refresh-payouts-btn i {
    font-size: 12px;
}

.payouts-section {
    background: #FAFAFA;
    border-radius: 16px;
    padding: 24px;
    border: 1px solid #E8E8E8;
}

.payouts-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 2px solid #E8E8E8;
    flex-wrap: wrap;
    gap: 16px;
}

.payouts-header h3 {
    font-size: 20px;
    font-weight: 600;
    color: #1B1B1E;
    margin: 0;
}

.payout-filters {
    display: flex;
    gap: 8px;
}

.filter-btn {
    background: transparent;
    border: 2px solid #E8E8E8;
    border-radius: 8px;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 500;
    color: #6B6B73;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    border-color: #667eea;
    color: #667eea;
}

.filter-btn.active {
    background: #667eea;
    border-color: #667eea;
    color: white;
}

.payouts-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.payout-card {
    background: white;
    border-radius: 12px;
    padding: 20px;
    border: 1px solid #E8E8E8;
    transition: all 0.3s ease;
    position: relative;
}

.payout-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-color: #667eea;
}

.payout-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
    flex-wrap: wrap;
    gap: 12px;
}

.payout-month {
    display: flex;
    align-items: center;
    gap: 12px;
}

.month-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
}

.month-info h4 {
    font-size: 16px;
    font-weight: 600;
    color: #1B1B1E;
    margin-bottom: 2px;
}

.month-info p {
    font-size: 14px;
    color: #6B6B73;
}

.payout-status {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.payout-status.calculated {
    background: #FFF3E0;
    color: #F57C00;
}

.payout-status.paid {
    background: #E8F5E8;
    color: #2E7D32;
}

.payout-status.cancelled {
    background: #FFEBEE;
    color: #C62828;
}

.payout-amount {
    font-size: 24px;
    font-weight: 700;
    color: #1B1B1E;
    margin-bottom: 16px;
}

.level-breakdown {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
    gap: 12px;
    margin-bottom: 16px;
}

.level-item {
    text-align: center;
    padding: 12px 8px;
    background: #F8F9FA;
    border-radius: 8px;
    border: 1px solid #E8E8E8;
}

.level-item .level-label {
    font-size: 12px;
    color: #6B6B73;
    font-weight: 500;
    margin-bottom: 4px;
}

.level-item .level-amount {
    font-size: 14px;
    font-weight: 600;
    color: #1B1B1E;
}

.payout-details {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid #F0F0F0;
    flex-wrap: wrap;
    gap: 12px;
}

.transaction-count {
    font-size: 14px;
    color: #6B6B73;
}

.payout-date {
    font-size: 14px;
    color: #6B6B73;
}

.empty-payouts {
    text-align: center;
    padding: 60px 20px;
    color: #6B6B73;
}

.empty-payouts i {
    font-size: 64px;
    color: #E8E8E8;
    margin-bottom: 20px;
}

.empty-payouts h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #1B1B1E;
}

.empty-payouts p {
    font-size: 16px;
    max-width: 400px;
    margin: 0 auto;
    line-height: 1.5;
}

.payouts-loading {
    text-align: center;
    padding: 60px 20px;
    color: #6B6B73;
}

.payouts-loading i {
    font-size: 32px;
    color: #667eea;
    margin-bottom: 16px;
}

/* Mobile Payouts Styles */
@media (max-width: 768px) {
    .payout-summary-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .summary-stat-card {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
    
    .stat-icon {
        margin-bottom: 8px;
    }
    
    .payouts-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .payout-filters {
        width: 100%;
        justify-content: center;
    }
    
    .payout-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .level-breakdown {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }
    
    .level-item {
        padding: 8px 4px;
    }
    
    .payout-details {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .refresh-payouts-btn {
        margin: 0;
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .payout-summary-grid {
        grid-template-columns: 1fr;
    }
    
    .level-breakdown {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Footer Styles */
.home-footer {
    background: #1B1B1E;
    color: white;
    padding: 60px 0 20px 0;
    margin-top: 80px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

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

.footer-brand h3 {
    font-size: 28px;
    font-weight: 700;
    color: #FF6B6B;
    margin-bottom: 12px;
    font-family: 'Playfair Display', serif;
}

.footer-brand p {
    font-size: 16px;
    color: #B8B8B8;
    line-height: 1.6;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-column h4 {
    font-size: 18px;
    font-weight: 600;
    color: white;
    margin-bottom: 20px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-column a {
    color: #B8B8B8;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #4ECDC4;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid #333;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-address p {
    font-size: 14px;
    color: #B8B8B8;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-address i {
    color: #4ECDC4;
}

.footer-copyright p {
    font-size: 14px;
    color: #B8B8B8;
    margin: 0;
}

/* Legal Pages Styles */
.legal-page {
    min-height: 100vh;
    background: #FAFAFA;
}

.legal-nav {
    background: white;
    border-bottom: 1px solid #E8E8E8;
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.legal-nav .nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.legal-nav .nav-logo a {
    text-decoration: none;
    color: inherit;
}

.legal-nav .nav-logo h2 {
    font-size: 24px;
    font-weight: 700;
    color: #FF6B6B;
    margin: 0;
    font-family: 'Playfair Display', serif;
}

.back-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #6B6B73;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.back-btn:hover {
    color: #FF6B6B;
}

.legal-content, .contact-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
}

.legal-header, .contact-header {
    text-align: center;
    margin-bottom: 50px;
}

.legal-header h1, .contact-header h1 {
    font-size: 36px;
    font-weight: 700;
    color: #1B1B1E;
    margin-bottom: 12px;
    font-family: 'Playfair Display', serif;
}

.last-updated, .contact-subtitle {
    font-size: 14px;
    color: #6B6B73;
    margin: 0;
}

.legal-body {
    background: white;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.legal-section {
    margin-bottom: 40px;
}

.legal-section:last-child {
    margin-bottom: 0;
}

.legal-section h2 {
    font-size: 24px;
    font-weight: 600;
    color: #1B1B1E;
    margin-bottom: 16px;
    border-bottom: 2px solid #E8E8E8;
    padding-bottom: 8px;
}

.legal-section h3 {
    font-size: 18px;
    font-weight: 600;
    color: #1B1B1E;
    margin: 20px 0 12px 0;
}

.legal-section p {
    font-size: 15px;
    color: #4A4A4A;
    line-height: 1.7;
    margin-bottom: 16px;
}

.legal-section ul, .legal-section ol {
    font-size: 15px;
    color: #4A4A4A;
    line-height: 1.7;
    margin-bottom: 16px;
    padding-left: 24px;
}

.legal-section li {
    margin-bottom: 8px;
}

.policy-highlight {
    background: linear-gradient(135deg, #FFE5B4 0%, #FFD700 100%);
    border-radius: 12px;
    padding: 20px;
    margin: 20px 0;
    border-left: 4px solid #FF6B6B;
}

.policy-highlight h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 600;
    color: #B8860B;
    margin-bottom: 8px;
}

.policy-highlight p {
    margin: 0;
    color: #8B6914;
    font-weight: 500;
}

.contact-info {
    background: #F8F9FA;
    border-radius: 8px;
    padding: 20px;
    margin-top: 16px;
}

.contact-info p {
    margin-bottom: 8px;
    font-size: 14px;
}

.emergency-contact {
    background: #FFF3E0;
    border-radius: 8px;
    padding: 20px;
    margin-top: 16px;
    border-left: 4px solid #FF8A65;
}

.emergency-contact p {
    margin-bottom: 8px;
    font-weight: 600;
    color: #E65100;
}

.emergency-contact ul {
    margin: 0;
    padding-left: 20px;
}

.emergency-contact li {
    color: #BF360C;
    font-weight: 500;
}

/* Contact Page Specific Styles */
.contact-content {
    max-width: 1200px;
}

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

.contact-info-section h2 {
    font-size: 28px;
    font-weight: 600;
    color: #1B1B1E;
    margin-bottom: 16px;
}

.contact-methods {
    margin: 40px 0;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
    padding: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.method-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.method-icon i {
    font-size: 20px;
}

.method-details h3 {
    font-size: 18px;
    font-weight: 600;
    color: #1B1B1E;
    margin-bottom: 8px;
}

.method-details p {
    margin-bottom: 4px;
    color: #4A4A4A;
    line-height: 1.6;
}

.method-details a {
    color: #667eea;
    text-decoration: none;
}

.method-details a:hover {
    text-decoration: underline;
}

.method-details small {
    color: #6B6B73;
    font-size: 13px;
}

.team-contacts h3 {
    font-size: 22px;
    font-weight: 600;
    color: #1B1B1E;
    margin-bottom: 24px;
}

.team-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.team-card {
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    gap: 16px;
}

.team-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4ECDC4 0%, #44A08D 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.team-info h4 {
    font-size: 16px;
    font-weight: 600;
    color: #1B1B1E;
    margin-bottom: 4px;
}

.team-role {
    font-size: 14px;
    color: #6B6B73;
    margin-bottom: 8px;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #667eea;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
}

.contact-link:hover {
    color: #5a6fd8;
}

.form-container {
    background: white;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.form-container h2 {
    font-size: 24px;
    font-weight: 600;
    color: #1B1B1E;
    margin-bottom: 8px;
}

.form-container > p {
    color: #6B6B73;
    margin-bottom: 32px;
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #1B1B1E;
    margin-bottom: 8px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #E8E8E8;
    border-radius: 8px;
    font-size: 14px;
    font-family: inherit;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #667eea;
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    color: #4A4A4A;
    cursor: pointer;
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.submit-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 8px;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: transform 0.3s ease;
    width: 100%;
    justify-content: center;
}

.submit-btn:hover {
    transform: translateY(-2px);
}

.form-note {
    margin-top: 20px;
    padding: 16px;
    background: #F0F8FF;
    border-radius: 8px;
    border-left: 4px solid #667eea;
}

.form-note p {
    margin: 0;
    font-size: 14px;
    color: #4A4A4A;
}

.faq-section, .social-section {
    background: white;
    border-radius: 16px;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.faq-section h2, .social-section h2 {
    font-size: 24px;
    font-weight: 600;
    color: #1B1B1E;
    margin-bottom: 16px;
    text-align: center;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 32px;
}

.faq-item {
    padding: 20px;
    background: #F8F9FA;
    border-radius: 12px;
}

.faq-item h3 {
    font-size: 16px;
    font-weight: 600;
    color: #1B1B1E;
    margin-bottom: 12px;
}

.faq-item p {
    font-size: 14px;
    color: #4A4A4A;
    line-height: 1.6;
    margin: 0;
}

.faq-item a {
    color: #667eea;
    text-decoration: none;
}

.faq-item a:hover {
    text-decoration: underline;
}

.social-section p {
    text-align: center;
    color: #6B6B73;
    margin-bottom: 32px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: transform 0.3s ease;
}

.social-link:hover {
    transform: translateY(-2px);
}

.social-link.facebook {
    background: #1877F2;
    color: white;
}

.social-link.instagram {
    background: linear-gradient(45deg, #F58529, #DD2A7B, #8134AF);
    color: white;
}

.social-link.twitter {
    background: #1DA1F2;
    color: white;
}

.social-link.linkedin {
    background: #0A66C2;
    color: white;
}

.social-link.youtube {
    background: #FF0000;
    color: white;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .footer-main {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .legal-content, .contact-content {
        padding: 20px;
    }
    
    .legal-body, .form-container {
        padding: 24px;
    }
    
    .legal-header h1, .contact-header h1 {
        font-size: 28px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-form .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .social-links {
        gap: 12px;
    }
    
    .social-link {
        padding: 10px 16px;
        font-size: 14px;
    }
}
