/* ===================================
   HUBIONIS EVENT PLATFORM - CSS
   ================================== */

/* CSS Variables */
:root {
    --primary-color: #7FFF00;
    --primary-dark: #6DE800;
    --secondary-color: #0D4F4F;
    --bg-dark: #0F2A2A;
    --bg-darker: #0A1A1A;
    --bg-lighter: #1A3A3A;
    --text-light: #FFFFFF;
    --text-gray: #C0C0C0;
    --accent-teal: #1F5555;
    --accent-gradient: linear-gradient(135deg, #0F2A2A 0%, #1A3A3A 50%, #0D4F4F 100%);
    --register-gradient: linear-gradient(180deg, rgba(127, 255, 0, 0.15) 0%, rgba(13, 79, 79, 0.3) 50%, rgba(10, 26, 26, 0.9) 100%);
    --shadow: rgba(127, 255, 0, 0.3);
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
    scrollbar-gutter: stable;
    overflow-x: hidden;
    scrollbar-width: thin; /* Firefox */
    scrollbar-color: rgba(127, 255, 0, 0.3) rgba(10, 20, 18, 0.8); /* Firefox thumb / track */
}

/* Styled scrollbar (Webkit browsers) */
html::-webkit-scrollbar {
    width: 8px;
    background: rgba(10, 20, 18, 0.8);
}

html::-webkit-scrollbar-track {
    background: rgba(10, 20, 18, 0.8);
}

html::-webkit-scrollbar-thumb {
    background: rgba(127, 255, 0, 0.25);
    border-radius: 4px;
    border: 2px solid rgba(10, 20, 18, 0.8);
}

html::-webkit-scrollbar-thumb:hover {
    background: rgba(127, 255, 0, 0.4);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--bg-darker);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
    padding-top: 70px; /* Space for fixed navbar */
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ===================================
   NAVIGATION
   ================================== */

.navbar {
    background: rgba(10, 31, 31, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid rgba(127, 255, 0, 0.1);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-menu a {
    color: var(--text-gray);
    font-size: 0.95rem;
    transition: var(--transition);
    padding: 0.5rem 0;
    border-bottom: 2px solid transparent;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-icon {
    width: 18px;
    height: 18px;
    stroke-width: 2;
    transition: var(--transition);
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

.nav-menu a:hover .nav-icon,
.nav-menu a.active .nav-icon {
    stroke: var(--primary-color);
    transform: translateY(-2px);
}

/* PRO nav link — gold accent */
.nav-pro-link {
    color: #FFD700 !important;
    font-weight: 700 !important;
    letter-spacing: 0.03em;
}
.nav-pro-link .nav-icon {
    stroke: #FFD700 !important;
    fill: rgba(255, 215, 0, 0.15);
}
.nav-pro-link:hover {
    color: #FFA500 !important;
    border-bottom-color: #FFD700 !important;
}
.nav-pro-link:hover .nav-icon {
    stroke: #FFA500 !important;
    fill: rgba(255, 165, 0, 0.25);
}
.nav-menu a.nav-pro-link.active {
    color: #FFD700 !important;
    border-bottom-color: #FFD700 !important;
}
.nav-menu a.nav-pro-link.active .nav-icon {
    stroke: #FFD700 !important;
}

.btn-join {
    background: var(--primary-color);
    color: var(--bg-dark) !important;
    padding: 0.75rem 1.5rem !important;
    border-radius: 25px;
    font-weight: 600;
    border: 2px solid var(--primary-color) !important;
}

.btn-join .nav-icon {
    stroke: var(--bg-dark);
}

.btn-join:hover {
    background: transparent !important;
    color: var(--primary-color) !important;
}

.btn-join:hover .nav-icon {
    stroke: var(--primary-color);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    transition: var(--transition);
}

/* ===================================
   HERO SECTION
   ================================== */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(180deg, 
        #0a1515 0%,
        #0d1f1f 15%,
        #122a25 30%,
        #173530 50%,
        #1a3f38 70%,
        #1a3f38 100%
    );
    overflow: visible;
    padding-bottom: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at top, rgba(127, 255, 0, 0.08), transparent 60%);
    pointer-events: none;
}

.hexagon-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(60deg, transparent, transparent 100px, rgba(127, 255, 0, 0.03) 100px, rgba(127, 255, 0, 0.03) 101px),
        repeating-linear-gradient(120deg, transparent, transparent 100px, rgba(127, 255, 0, 0.03) 100px, rgba(127, 255, 0, 0.03) 101px),
        repeating-linear-gradient(180deg, transparent, transparent 100px, rgba(127, 255, 0, 0.03) 100px, rgba(127, 255, 0, 0.03) 101px);
    opacity: 0.4;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 4rem 0;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, #FFFFFF 0%, #FFFFFF 30%, var(--primary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2.5rem;
}

.btn-primary {
    display: inline-block;
    background: var(--primary-color);
    color: var(--bg-dark);
    padding: 1rem 3rem;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: 0 10px 30px var(--shadow);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px var(--shadow);
    background: var(--primary-dark);
}

/* Event Gallery Carousel - Horizontal Infinite Scroll */
.gallery-carousel {
    position: relative;
    z-index: 2;
    width: 100%;
    overflow: hidden;
    padding: 3rem 0;
    mask-image: linear-gradient(
        to right,
        transparent,
        black 10%,
        black 90%,
        transparent
    );
    -webkit-mask-image: linear-gradient(
        to right,
        transparent,
        black 10%,
        black 90%,
        transparent
    );
}

.gallery-track {
    display: flex;
    gap: 1.5rem;
    animation: scroll-left var(--scroll-speed, 30s) linear infinite;
    width: fit-content;
}

.gallery-track:hover {
    animation-play-state: paused;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.gallery-item {
    position: relative;
    min-width: 320px;
    height: 280px;
    border-radius: 15px;
    overflow: hidden;
    border: 2px solid rgba(127, 255, 0, 0.2);
    transition: var(--transition);
    cursor: pointer;
    background-size: cover;
    background-position: center;
    flex-shrink: 0;
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent, rgba(10, 31, 31, 0.8));
    transition: var(--transition);
}

.gallery-item:hover {
    transform: scale(1.05) translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 15px 40px var(--shadow);
    z-index: 10;
}

.gallery-item:hover::before {
    background: linear-gradient(to bottom, transparent, rgba(127, 255, 0, 0.3));
}

/* Placeholder backgrounds for gallery items */
.gallery-item-1 { 
    background: linear-gradient(135deg, #0D4F4F, #1A4D4D);
}
.gallery-item-2 { 
    background: linear-gradient(135deg, #1A4D4D, #0A1F1F);
}
.gallery-item-3 { 
    background: linear-gradient(135deg, #0A1F1F, #0D4F4F);
}
.gallery-item-4 { 
    background: linear-gradient(135deg, #0D4F4F 30%, #1A4D4D 70%);
}
.gallery-item-5 { 
    background: linear-gradient(135deg, #1A4D4D 20%, #0A1F1F 80%);
}
.gallery-item-6 { 
    background: linear-gradient(135deg, #0A1F1F 40%, #0D4F4F 90%);
}
.gallery-item-7 { 
    background: radial-gradient(circle at top left, #0D4F4F, #1A4D4D);
}
.gallery-item-8 { 
    background: radial-gradient(circle at bottom right, #1A4D4D, #0A1F1F);
}
.gallery-item-9 { 
    background: radial-gradient(circle at center, #0A1F1F, #0D4F4F);
}

/* ===================================
   SCROLLING TAGS SECTION
   ================================== */

.tags-section {
    background: var(--bg-dark);
    padding: 2rem 0;
    overflow: hidden;
}

.tags-carousel {
    width: 100%;
    overflow: hidden;
}

.tags-track {
    display: flex;
    gap: 1rem;
    animation: scroll-tags var(--scroll-speed, 25s) linear infinite;
    width: fit-content;
}

.tags-track:hover {
    animation-play-state: paused;
}

@keyframes scroll-tags {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.tag {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: rgba(127, 255, 0, 0.1);
    border: 2px solid rgba(127, 255, 0, 0.3);
    border-radius: 25px;
    color: var(--text-gray);
    font-size: 0.95rem;
    font-weight: 500;
    white-space: nowrap;
    transition: var(--transition);
    cursor: pointer;
}

.tag:hover {
    background: rgba(127, 255, 0, 0.2);
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-3px);
}

/* ===================================
   EVENTS SECTION
   ================================== */

.events-section {
    padding: 6rem 0;
    background: var(--register-gradient);
    position: relative;
}

.events-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(127, 255, 0, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(31, 85, 85, 0.3) 0%, transparent 50%);
    pointer-events: none;
}

.events-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
    align-items: center;
}

.events-title {
    font-size: 3rem;
    line-height: 1.2;
    color: var(--text-light);
}

.events-description {
    font-size: 1.2rem;
    color: var(--text-gray);
    line-height: 1.8;
}

.events-category {
    margin-bottom: 5rem;
}

.category-title {
    font-size: 2.5rem;
    margin-bottom: 2.5rem;
    color: var(--text-light);
    font-weight: 600;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
}

.event-card {
    background: var(--accent-teal);
    border-radius: 15px;
    overflow: hidden;
    transition: var(--transition);
    border: 2px solid transparent;
}

.event-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 15px 40px var(--shadow);
}

.event-image {
    width: 100%;
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
}

/* Placeholder backgrounds */
.business-building {
    background: linear-gradient(135deg, #1A4D4D 0%, #0D4F4F 100%);
}

.event-info {
    padding: 1.5rem;
}

.event-info h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.btn-event {
    display: inline-block;
    background: transparent;
    color: var(--primary-color);
    padding: 0.75rem 2rem;
    border: 2px solid var(--primary-color);
    border-radius: 25px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-event:hover {
    background: var(--primary-color);
    color: var(--bg-dark);
}

/* ===================================
   REGISTER SECTION
   ================================== */

.register-section {
    padding: 6rem 0;
    min-height: 80vh;
    background: linear-gradient(180deg, 
        #0F2A2A 0%,
        #112622 25%,
        #0e2220 50%,
        #0d1f1d 75%,
        #0B1A18 100%
    );
    position: relative;
    overflow: hidden;
}

.register-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(127, 255, 0, 0.05), transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(127, 255, 0, 0.03), transparent 50%);
    pointer-events: none;
}

.page-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.register-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    align-items: start;
    position: relative;
    z-index: 1;
}

/* ===================================
   ROLE SELECTION - MODERN 2026 DESIGN
   =================================== */

.journey-card {
    background: rgba(15, 42, 42, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 3rem;
    border-radius: 24px;
    border: 1px solid rgba(127, 255, 0, 0.15);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    position: sticky;
    top: 100px;
}

.journey-card h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    background: linear-gradient(135deg, #fff 0%, #7FFF00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.journey-card > p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
    margin-bottom: 2.5rem;
    font-weight: 400;
}

/* Role Cards Container */
.role-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

/* Individual Role Card */
.role-card {
    position: relative;
    background: linear-gradient(
        135deg,
        rgba(31, 85, 85, 0.4) 0%,
        rgba(15, 42, 42, 0.3) 100%
    );
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 1.75rem;
    border-radius: 20px;
    border: 1.5px solid rgba(127, 255, 0, 0.12);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

/* Animated gradient overlay */
.role-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(127, 255, 0, 0.08),
        transparent
    );
    transition: left 0.6s ease;
}

.role-card:hover::before {
    left: 100%;
}

.role-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(127, 255, 0, 0.4);
    background: linear-gradient(
        135deg,
        rgba(31, 85, 85, 0.6) 0%,
        rgba(15, 42, 42, 0.5) 100%
    );
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.4),
        0 0 30px rgba(127, 255, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* Active state */
.role-card.active {
    border-color: var(--primary-color);
    background: linear-gradient(
        135deg,
        rgba(127, 255, 0, 0.15) 0%,
        rgba(31, 85, 85, 0.6) 100%
    );
    box-shadow: 
        0 20px 40px rgba(127, 255, 0, 0.3),
        inset 0 0 20px rgba(127, 255, 0, 0.1);
}

/* Active indicator badge */
.role-card.active::after {
    content: '✓';
    position: absolute;
    top: 16px;
    right: 16px;
    width: 32px;
    height: 32px;
    background: var(--primary-color);
    color: var(--bg-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    box-shadow: 0 4px 12px rgba(127, 255, 0, 0.4);
    animation: checkmarkPop 0.3s ease;
}

@keyframes checkmarkPop {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Role Header */
.role-header {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 1rem;
}

/* Role Icon Container */
.role-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.role-icon svg,
.role-icon i svg {
    width: 28px;
    height: 28px;
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.role-card:hover .role-icon svg,
.role-card:hover .role-icon i svg {
    transform: scale(1.1) rotate(5deg);
}

/* Icon gradients & glow */
.organizer-icon {
    background: linear-gradient(135deg, #FF6B6B 0%, #EE5A6F 100%);
    box-shadow: 
        0 8px 24px rgba(255, 107, 107, 0.3),
        inset 0 0 20px rgba(255, 255, 255, 0.1);
    color: #fff;
}

.role-card:hover .organizer-icon {
    box-shadow: 
        0 12px 32px rgba(255, 107, 107, 0.5),
        0 0 30px rgba(255, 107, 107, 0.3),
        inset 0 0 20px rgba(255, 255, 255, 0.2);
}

.speaker-icon {
    background: linear-gradient(135deg, #4ECDC4 0%, #44A08D 100%);
    box-shadow: 
        0 8px 24px rgba(78, 205, 196, 0.3),
        inset 0 0 20px rgba(255, 255, 255, 0.1);
    color: #fff;
}

.role-card:hover .speaker-icon {
    box-shadow: 
        0 12px 32px rgba(78, 205, 196, 0.5),
        0 0 30px rgba(78, 205, 196, 0.3),
        inset 0 0 20px rgba(255, 255, 255, 0.2);
}

.attendee-icon {
    background: linear-gradient(135deg, #FFD93D 0%, #F6B93B 100%);
    box-shadow: 
        0 8px 24px rgba(255, 217, 61, 0.3),
        inset 0 0 20px rgba(255, 255, 255, 0.1);
    color: #2C3E50;
}

.role-card:hover .attendee-icon {
    box-shadow: 
        0 12px 32px rgba(255, 217, 61, 0.5),
        0 0 30px rgba(255, 217, 61, 0.3),
        inset 0 0 20px rgba(255, 255, 255, 0.2);
}

/* Role Title */
.role-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-light);
    margin: 0;
    transition: color 0.3s ease;
}

.role-card:hover h3 {
    color: var(--primary-color);
}

.role-card.active h3 {
    color: var(--primary-color);
}

/* Role Features List */
.role-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.role-features li {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: color 0.3s ease;
}

.role-card:hover .role-features li {
    color: rgba(255, 255, 255, 0.9);
}

.role-features li::before {
    content: '✓';
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(127, 255, 0, 0.1);
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.role-card:hover .role-features li::before {
    background: rgba(127, 255, 0, 0.2);
    box-shadow: 0 0 12px rgba(127, 255, 0, 0.3);
}

.role-card p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Responsive Design for Role Cards */
@media (max-width: 768px) {
    .journey-card {
        padding: 2rem 1.5rem;
    }

    .journey-card h2 {
        font-size: 1.6rem;
    }

    .role-card {
        padding: 1.5rem;
    }

    .role-icon {
        width: 48px;
        height: 48px;
    }

    .role-icon svg,
    .role-icon i svg {
        width: 24px;
        height: 24px;
    }

    .role-card h3 {
        font-size: 1.2rem;
    }

    .role-features li {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .journey-card {
        padding: 1.5rem 1rem;
        border-radius: 16px;
    }

    .journey-card h2 {
        font-size: 1.4rem;
    }

    .role-card {
        padding: 1.25rem;
    }

    .role-header {
        gap: 1rem;
    }

    .role-icon {
        width: 44px;
        height: 44px;
    }

    .role-icon svg,
    .role-icon i svg {
        width: 22px;
        height: 22px;
    }

    .role-card h3 {
        font-size: 1.1rem;
    }

    .role-features {
        gap: 0.5rem;
    }

    .role-features li {
        font-size: 0.85rem;
    }

    .role-features li::before {
        width: 18px;
        height: 18px;
        font-size: 1rem;
    }
}

.registration-form-container {
    background: rgba(15, 42, 42, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 3rem;
    border-radius: 24px;
    border: 1px solid rgba(127, 255, 0, 0.15);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.registration-form-container h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #fff 0%, #7FFF00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Placeholder for form */
.form-placeholder {
    background: rgba(127, 255, 0, 0.05);
    padding: 3rem;
    border-radius: 10px;
    text-align: center;
    color: var(--text-gray);
    border: 2px dashed rgba(127, 255, 0, 0.3);
}

/* Registration Form Styles */
.form-subtitle {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 2rem;
    font-size: 1rem;
    font-weight: 400;
}

.registration-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    position: relative;
}

.form-group label {
    color: var(--text-light);
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.form-group input,
.form-group select {
    background: rgba(10, 26, 26, 0.5);
    border: 1.5px solid rgba(127, 255, 0, 0.2);
    border-radius: 12px;
    padding: 0.875rem 1.25rem;
    color: var(--text-light);
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.form-group input:hover,
.form-group select:hover {
    border-color: rgba(127, 255, 0, 0.4);
    background: rgba(10, 26, 26, 0.7);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(10, 26, 26, 0.8);
    box-shadow: 
        0 0 0 3px rgba(127, 255, 0, 0.1),
        0 4px 12px rgba(127, 255, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    transform: translateY(-1px);
}

.form-group input::placeholder {
    color: rgba(255, 255, 255, 0.4);
    opacity: 1;
    transition: opacity 0.3s ease;
}

.form-group input:focus::placeholder {
    opacity: 0.6;
}

.form-group select {
    cursor: pointer;
}

.form-group select option {
    background: var(--bg-dark);
    color: var(--text-light);
    padding: 0.5rem;
}

.form-group small {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    font-weight: 400;
    margin-top: -0.25rem;
}

.checkbox-group {
    flex-direction: row;
    align-items: flex-start;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    cursor: pointer;
    font-weight: normal;
    transition: all 0.3s ease;
    user-select: none;
}

.checkbox-label:hover {
    opacity: 0.9;
}

.checkbox-label input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 14px;
    height: 14px;
    min-width: 14px;
    margin-top: 2px;
    cursor: pointer;
    border: 1px solid rgba(127, 255, 0, 0.3);
    border-radius: 2px;
    background: rgba(10, 26, 26, 0.5);
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.checkbox-label input[type="checkbox"]:hover {
    border-color: rgba(127, 255, 0, 0.5);
    background: rgba(10, 26, 26, 0.7);
    transform: scale(1.05);
}

.checkbox-label input[type="checkbox"]:checked {
    background: var(--primary-color);
    border-color: var(--primary-color);
    box-shadow: 
        0 0 8px rgba(127, 255, 0, 0.3),
        inset 0 1px 2px rgba(0, 0, 0, 0.1);
}

.checkbox-label input[type="checkbox"]:checked::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--bg-dark);
    font-weight: 700;
    font-size: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.checkbox-label input[type="checkbox"]:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(127, 255, 0, 0.15);
}

.checkbox-label span {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
    font-size: 0.875rem;
}

.checkbox-label a {
    color: var(--primary-color);
    text-decoration: none;
    border-bottom: 1px solid rgba(127, 255, 0, 0.3);
    transition: all 0.3s ease;
    font-weight: 500;
}

.checkbox-label a:hover {
    color: var(--primary-dark);
    border-bottom-color: var(--primary-color);
    text-shadow: 0 0 8px rgba(127, 255, 0, 0.3);
}

.btn-submit {
    width: 100%;
    margin-top: 1rem;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 700;
    background: var(--primary-color);
    color: var(--bg-dark);
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 4px 12px rgba(127, 255, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.btn-submit::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 8px 24px rgba(127, 255, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    background: var(--primary-dark);
}

.btn-submit:hover::before {
    width: 300px;
    height: 300px;
}

.btn-submit:active {
    transform: translateY(0);
    box-shadow: 
        0 2px 8px rgba(127, 255, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn-submit:focus {
    outline: none;
    box-shadow: 
        0 0 0 3px rgba(127, 255, 0, 0.3),
        0 4px 12px rgba(127, 255, 0, 0.3);
}

.form-footer {
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 1.5rem;
    font-size: 0.95rem;
}

.link-primary {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid rgba(127, 255, 0, 0.3);
    padding-bottom: 1px;
    transition: all 0.3s ease;
}

.link-primary:hover {
    color: var(--primary-dark);
    border-bottom-color: var(--primary-color);
    text-shadow: 0 0 8px rgba(127, 255, 0, 0.3);
}

/* ===================================
   FAQ SECTION
   ================================== */

.faq-section {
    padding: 5rem 0;
    background: linear-gradient(180deg,
        #091a1a 0%,
        #0c2222 40%,
        #0e2828 70%,
        #091a1a 100%
    );
    position: relative;
}

.faq-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 30% 20%, rgba(127,255,0,.04), transparent 40%),
        radial-gradient(circle at 70% 80%, rgba(127,255,0,.03), transparent 40%);
    pointer-events: none;
}

.faq-title {
    font-size: 2.8rem;
    font-weight: 700;
    text-align: center;
    color: #fff;
    margin-bottom: 3.5rem;
    position: relative;
    z-index: 1;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
}

.faq-item {
    border-bottom: 1px solid rgba(127,255,0,.15);
    transition: background .25s;
    overflow: hidden;
}

.faq-item:first-child {
    border-top: 1px solid rgba(127,255,0,.15);
}

.faq-item:hover {
    background: rgba(127,255,0,.03);
}

.faq-item.active {
    background: rgba(127,255,0,.05);
    border-bottom-color: rgba(127,255,0,.35);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 1rem;
    cursor: pointer;
    user-select: none;
}

.faq-question h3 {
    font-size: 1.05rem;
    font-weight: 600;
    color: #E8F5F5;
    margin: 0;
    line-height: 1.4;
}

.faq-icon {
    font-size: 1.6rem;
    color: var(--primary-color, #7FFF00);
    font-weight: 300;
    transition: transform .3s;
    min-width: 30px;
    text-align: center;
    line-height: 1;
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease, padding .4s ease;
    padding: 0 1rem;
}

.faq-item.active .faq-answer {
    max-height: 400px;
    padding: 0 1rem 1.5rem;
}

.faq-answer p {
    color: #B8C5C5;
    line-height: 1.7;
    font-size: .95rem;
    margin: 0;
}

/* ===================================
   NEWS & ARTICLES SECTION
   ================================== */

.news-section {
    padding: 6rem 0;
    background: var(--bg-darker);
}

.news-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-gray);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

.news-card {
    background: rgba(31, 85, 85, 0.3);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition);
    border: 2px solid rgba(127, 255, 0, 0.1);
    min-width: 0;
}

.news-card:hover {
    transform: translateY(-5px);
    border-color: rgba(127, 255, 0, 0.3);
    box-shadow: 0 10px 30px rgba(127, 255, 0, 0.2);
}

.news-image {
    width: 100%;
    height: 160px;
    background-size: cover;
    background-position: center;
}

.news-content {
    padding: 1.2rem;
}

.news-date {
    display: inline-block;
    font-size: 0.85rem;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.news-content h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--text-light);
    line-height: 1.3;
}

.news-content p {
    color: var(--text-gray);
    line-height: 1.5;
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
}

.news-link {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.news-link:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

/* ===================================
   SUBSCRIBE SECTION
   ================================== */

.subscribe-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, 
        rgba(127, 255, 0, 0.1) 0%,
        rgba(31, 85, 85, 0.3) 50%,
        rgba(15, 42, 42, 0.5) 100%
    );
    position: relative;
    overflow: hidden;
}

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

.subscribe-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.subscribe-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.subscribe-text p {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 2.5rem;
}

.subscribe-form {
    display: flex;
    gap: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

.subscribe-form input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: 2px solid rgba(127, 255, 0, 0.3);
    border-radius: 30px;
    background: rgba(10, 26, 26, 0.7);
    color: var(--text-light);
    font-size: 1rem;
    transition: var(--transition);
}

.subscribe-form input:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(127, 255, 0, 0.1);
}

.subscribe-form input::placeholder {
    color: var(--text-gray);
    opacity: 0.7;
}

.btn-subscribe {
    padding: 1rem 2.5rem;
    background: var(--primary-color);
    color: var(--bg-dark);
    border: none;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-subscribe:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(127, 255, 0, 0.3);
}

/* ===================================
   PROMOTE EVENTS SECTION
   ================================== */

.promote-section {
    padding: 6rem 0 4rem 0;
    background: var(--bg-dark);
    overflow: hidden;
}

/* Full width variant - no container margins */
.promote-section.promote-full-width {
    width: 100%;
    margin: 0;
    padding: 6rem 0 4rem 0;
}

.promote-section.promote-full-width .section-header-center {
    max-width: 1200px;
    margin: 0 auto 3rem;
    padding: 0 2rem;
}

.promote-header {
    text-align: center;
    margin-bottom: 3rem;
}

.promote-carousel {
    width: 100%;
    max-width: 100vw;
    overflow: hidden;
    padding: 2rem 0;
    margin: 0;
    position: relative;
}

.promote-track {
    display: flex;
    gap: 2rem;
    width: fit-content;
}

.promote-card {
    position: relative;
    min-width: 420px;
    background: rgba(31, 85, 85, 0.4);
    border-radius: 15px;
    overflow: hidden;
    border: 2px solid rgba(127, 255, 0, 0.2);
    transition: var(--transition);
    cursor: pointer;
    flex-shrink: 0;
}

.promote-card:hover {
    transform: scale(1.05) translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 50px rgba(127, 255, 0, 0.3);
    z-index: 10;
}

.promote-image {
    width: 100%;
    height: 220px;
    background-size: cover;
    background-position: center;
}

.promote-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--primary-color);
    color: var(--bg-dark);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.promote-content {
    padding: 1.5rem;
}

.promote-content h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.promote-content p {
    color: var(--text-gray);
    font-size: 0.95rem;
}

.promote-description {
    margin-top: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-gray);
    line-height: 1.4;
}

.promote-btn {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.6rem 1.5rem;
    background: rgba(127, 255, 0, 0.1);
    border: 1px solid rgba(127, 255, 0, 0.3);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.promote-btn:hover {
    background: rgba(127, 255, 0, 0.2);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.promote-loading {
    text-align: center;
    padding: 3rem;
    color: var(--text-gray);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.promote-date {
    margin-bottom: 0;
}

/* Promote Carousel Navigation */
.promote-carousel {
    position: relative;
}

.promote-carousel .promote-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(10, 20, 20, 0.85);
    border: 2px solid rgba(127, 255, 0, 0.3);
    color: #7fff00;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 20;
    transition: all 0.3s ease;
    backdrop-filter: blur(6px);
}

.promote-carousel .promote-arrow:hover {
    background: rgba(127, 255, 0, 0.15);
    border-color: #7fff00;
    box-shadow: 0 0 18px rgba(127, 255, 0, 0.25);
    transform: translateY(-50%) scale(1.1);
}

.promote-carousel .promote-arrow-prev {
    left: 1.5rem;
}

.promote-carousel .promote-arrow-next {
    right: 1.5rem;
}

.promote-carousel .promote-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.25rem;
    padding: 0;
}

.promote-carousel .promote-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(127, 255, 0, 0.2);
    border: 1px solid rgba(127, 255, 0, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.promote-carousel .promote-dot:hover {
    background: rgba(127, 255, 0, 0.4);
}

.promote-carousel .promote-dot.active {
    background: #7fff00;
    border-color: #7fff00;
    box-shadow: 0 0 8px rgba(127, 255, 0, 0.5);
    transform: scale(1.2);
}

/* ===================================
   FOOTER
   ================================== */

.footer {
    background: #0A1414;
    padding: 4rem 0 2rem 0;
    border-top: 1px solid rgba(127, 255, 0, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 3fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.footer-logo {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.social-links {
    display: flex;
    gap: 1.5rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(127, 255, 0, 0.1);
    border: 2px solid rgba(127, 255, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    color: var(--text-light);
    font-weight: bold;
}

.social-links a:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--bg-dark);
    transform: translateY(-3px);
}

.social-icon {
    font-style: normal;
    font-size: 1.2rem;
}

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

.footer-column h4 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--text-light);
    font-weight: 600;
}

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

.footer-column ul li {
    margin-bottom: 0.75rem;
}

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

.footer-column ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(127, 255, 0, 0.1);
}

.footer-bottom p {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin: 0;
}

/* ===================================
   RESPONSIVE DESIGN
   ================================== */

@media (max-width: 1024px) {
    .hero-title {
        font-size: 3rem;
    }

    .events-header {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .register-content {
        grid-template-columns: 1fr;
    }

    .journey-card {
        position: static;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Tablet breakpoint for news grid - 3 columns to 2 columns */
@media (max-width: 1200px) and (min-width: 769px) {
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.8rem;
    }
}

/* Medium tablet breakpoint - still 2 columns */
@media (max-width: 1024px) and (min-width: 769px) {
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--bg-dark);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.5);
        padding: 2rem 0;
        align-items: center;
    }

    .nav-menu.active {
        left: 0;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .events-title {
        font-size: 2rem;
    }

    .events-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item {
        min-width: 250px;
        height: 220px;
    }

    .faq-question h3 {
        font-size: .88rem;
    }

    .faq-header-row {
        padding: 18px 20px;
    }

    .faq-body {
        padding: 0 20px 20px;
    }

    .faq-question {
        padding-left: 28px;
    }

    .faq-answer {
        padding-left: 28px;
    }

    .faq-item.active .faq-answer {
        padding-left: 28px;
    }

    .news-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .subscribe-form {
        flex-direction: column;
    }

    .promote-card {
        min-width: 280px;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-content {
        gap: 2rem;
    }

    /* Registration Form Mobile */
    .registration-form-container {
        padding: 2rem 1.5rem;
    }

    .registration-form-container h2 {
        font-size: 1.6rem;
    }

    .form-group input,
    .form-group select {
        padding: 0.75rem 1rem;
        font-size: 0.95rem;
    }

    .btn-submit {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .btn-primary {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }

    .page-title {
        font-size: 1.8rem;
    }

    .faq-title {
        font-size: 1.05rem;
    }

    /* Registration Form Small Mobile */
    .registration-form-container {
        padding: 1.5rem 1rem;
        border-radius: 16px;
    }

    .registration-form-container h2 {
        font-size: 1.4rem;
    }

    .form-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }

    .form-group {
        gap: 0.4rem;
    }

    .form-group label {
        font-size: 0.9rem;
    }

    .form-group input,
    .form-group select {
        padding: 0.7rem 0.9rem;
        font-size: 0.9rem;
    }

    .checkbox-label {
        gap: 0.5rem;
        font-size: 0.85rem;
    }

    .checkbox-label input[type="checkbox"] {
        width: 13px;
        height: 13px;
        min-width: 13px;
    }

    .checkbox-label input[type="checkbox"]:checked::after {
        font-size: 8px;
    }

    .btn-submit {
        padding: 0.875rem 1.25rem;
        font-size: 1rem;
    }

    .form-footer {
        font-size: 0.9rem;
    }
}

/* ===================================
   UTILITY CLASSES
   ================================== */

.text-center {
    text-align: center;
}

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.hidden {
    display: none;
}

.fade-in {
    animation: fadeIn 0.5s ease-in;
}

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

/* ===================================
   NOTIFICATIONS & VALIDATION
   ================================== */

.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    min-width: 300px;
    max-width: 500px;
    background: rgba(31, 85, 85, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    padding: 1rem 1.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3), 0 0 20px var(--shadow);
    border-left: 4px solid var(--primary-color);
    transform: translateX(500px);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 10000;
}

.notification.show {
    transform: translateX(0);
    opacity: 1;
}

.notification-content {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.notification-icon {
    font-size: 1.5rem;
    font-weight: bold;
    min-width: 24px;
}

.notification-success {
    border-left-color: #4CAF50;
    background: rgba(76, 175, 80, 0.15);
}

.notification-success .notification-icon {
    color: #4CAF50;
}

.notification-error {
    border-left-color: #FF6B6B;
    background: rgba(255, 107, 107, 0.15);
}

.notification-error .notification-icon {
    color: #FF6B6B;
}

.notification-warning {
    border-left-color: #FFA726;
    background: rgba(255, 167, 38, 0.15);
}

.notification-warning .notification-icon {
    color: #FFA726;
}

.notification-info {
    border-left-color: var(--primary-color);
    background: rgba(127, 255, 0, 0.1);
}

.notification-info .notification-icon {
    color: var(--primary-color);
}

.notification-message {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.4;
}

/* Form validation errors */
.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: #FF6B6B !important;
    background: rgba(255, 107, 107, 0.05);
    box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.1);
}

.field-error {
    display: block;
    color: #FF6B6B;
    font-size: 0.85rem;
    margin-top: 0.25rem;
    animation: slideDown 0.3s ease;
}

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

/* Loading state for buttons */
button[disabled],
.btn[disabled] {
    opacity: 0.6;
    cursor: not-allowed;
    pointer-events: none;
}

/* Success checkmark animation */
@keyframes checkmark {
    0% {
        transform: scale(0) rotate(0deg);
    }
    50% {
        transform: scale(1.2) rotate(180deg);
    }
    100% {
        transform: scale(1) rotate(360deg);
    }
}

.notification-success .notification-icon {
    animation: checkmark 0.5s ease;
}

/* Mobile responsiveness for notifications */
@media (max-width: 768px) {
    .notification {
        right: 10px;
        left: 10px;
        min-width: auto;
        max-width: calc(100% - 20px);
    }
}

/* ===================================
   LOGIN SECTION
   ================================== */

.login-section {
    min-height: 100vh;
    padding: 6rem 0 4rem;
    background: var(--register-gradient);
    position: relative;
}

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

.login-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.login-card {
    background: rgba(15, 42, 42, 0.6);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(127, 255, 0, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.login-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.login-header h1 {
    font-size: 2.25rem;
    background: linear-gradient(135deg, #fff 0%, var(--primary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.75rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.login-header p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    line-height: 1.6;
}

.login-form .form-group {
    margin-bottom: 1.75rem;
}

.login-form label {
    display: block;
    color: var(--text-light);
    font-weight: 500;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
    letter-spacing: 0.01em;
}

.login-form input {
    width: 100%;
    padding: 1rem 1.25rem;
    background: rgba(10, 26, 26, 0.5);
    border: 1px solid rgba(127, 255, 0, 0.15);
    border-radius: 12px;
    color: var(--text-light);
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

.login-form input:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(10, 26, 26, 0.7);
    box-shadow: 
        0 0 0 3px rgba(127, 255, 0, 0.1),
        inset 0 2px 4px rgba(0, 0, 0, 0.1),
        0 4px 12px rgba(127, 255, 0, 0.15);
    transform: translateY(-1px);
}

.login-form input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.login-form .checkbox-group {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.login-form .checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    user-select: none;
}

.login-form .checkbox-label input[type="checkbox"] {
    width: 14px;
    height: 14px;
    min-width: 14px;
    appearance: none;
    -webkit-appearance: none;
    background: rgba(10, 26, 26, 0.5);
    border: 1px solid rgba(127, 255, 0, 0.3);
    border-radius: 4px;
    cursor: pointer;
    position: relative;
    margin: 0;
    padding: 0;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
}

.login-form .checkbox-label input[type="checkbox"]:hover {
    border-color: var(--primary-color);
    background: rgba(127, 255, 0, 0.05);
}

.login-form .checkbox-label input[type="checkbox"]:checked {
    background: var(--primary-color);
    border-color: var(--primary-color);
    box-shadow: 
        0 0 8px rgba(127, 255, 0, 0.4),
        inset 0 1px 2px rgba(0, 0, 0, 0.2);
}

.login-form .checkbox-label input[type="checkbox"]:checked::before {
    content: '✓';
    position: absolute;
    color: #0F2A2A;
    font-size: 9px;
    font-weight: bold;
    line-height: 1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.link-forgot {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 500;
}

.link-forgot:hover {
    text-decoration: none;
    color: #9FFF33;
    text-shadow: 0 0 8px rgba(127, 255, 0, 0.3);
}

.social-divider {
    text-align: center;
    margin: 2rem 0 1.5rem;
    position: relative;
}

.social-divider::before,
.social-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 40%;
    height: 1px;
    background: rgba(127, 255, 0, 0.2);
}

.social-divider::before {
    left: 0;
}

.social-divider::after {
    right: 0;
}

.social-divider span {
    background: rgba(15, 42, 42, 0.6);
    padding: 0 1rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.social-login {
    display: flex;
    gap: 1rem;
}

.btn-social {
    flex: 1;
    padding: 0.875rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.95rem;
    cursor: not-allowed;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0.5;
}

.login-benefits {
    background: rgba(15, 42, 42, 0.6);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 3rem;
    border: 1px solid rgba(127, 255, 0, 0.15);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.login-benefits h3 {
    font-size: 2rem;
    background: linear-gradient(135deg, #fff 0%, var(--primary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 2.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.login-benefits ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.login-benefits li {
    display: flex;
    gap: 1.25rem;
    margin-bottom: 2rem;
    align-items: flex-start;
    padding: 1.25rem;
    background: rgba(10, 26, 26, 0.4);
    border-radius: 16px;
    border: 1px solid rgba(127, 255, 0, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.login-benefits li:hover {
    background: rgba(10, 26, 26, 0.6);
    border-color: rgba(127, 255, 0, 0.25);
    transform: translateX(8px);
    box-shadow: 0 4px 16px rgba(127, 255, 0, 0.1);
}

.login-benefits li:last-child {
    margin-bottom: 0;
}

.login-benefits .icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(127, 255, 0, 0.2), rgba(127, 255, 0, 0.1));
    border-radius: 12px;
    flex-shrink: 0;
    border: 1px solid rgba(127, 255, 0, 0.2);
    box-shadow: 0 4px 12px rgba(127, 255, 0, 0.15);
}

.login-benefits .icon svg {
    width: 20px;
    height: 20px;
    color: var(--primary-color);
    stroke-width: 2.5;
}

.login-benefits strong {
    display: block;
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
    letter-spacing: -0.01em;
}

.login-benefits p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.6;
}

/* Responsive Login Page */
@media (max-width: 968px) {
    .login-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .login-benefits {
        order: 2;
    }
}

@media (max-width: 768px) {
    .login-section {
        padding: 5rem 0 3rem;
    }
    
    .login-card,
    .login-benefits {
        padding: 2rem;
    }
    
    .login-header h1 {
        font-size: 1.75rem;
    }
    
    .login-benefits h3 {
        font-size: 1.5rem;
    }
    
    .login-benefits li {
        padding: 1rem;
    }
    
    .login-benefits .icon {
        width: 36px;
        height: 36px;
    }
    
    .login-benefits .icon svg {
        width: 18px;
        height: 18px;
    }
}

@media (max-width: 480px) {
    .login-card,
    .login-benefits {
        padding: 1.5rem;
        border-radius: 20px;
    }
    
    .login-header h1 {
        font-size: 1.5rem;
    }
    
    .login-form input {
        padding: 0.875rem 1rem;
        font-size: 0.95rem;
    }
    
    .login-form .checkbox-label input[type="checkbox"] {
        width: 13px;
        height: 13px;
        min-width: 13px;
    }
    
    .login-form .checkbox-label input[type="checkbox"]:checked::before {
        font-size: 8px;
    }
    
    .login-benefits li {
        gap: 1rem;
        padding: 0.875rem;
    }
    
    .login-benefits .icon {
        width: 32px;
        height: 32px;
    }
    
    .login-benefits .icon svg {
        width: 16px;
        height: 16px;
    }
    
    .login-benefits strong {
        font-size: 1rem;
    }
    
    .login-benefits p {
        font-size: 0.875rem;
    }
}

/* ===================================
   DASHBOARD
   ================================== */

.navbar-dashboard {
    background: rgba(10, 26, 26, 0.95);
    border-bottom: 1px solid rgba(127, 255, 0, 0.2);
}

.dashboard-section {
    min-height: 100vh;
    padding: 4rem 0;
    background: var(--bg-dark);
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding: 2rem;
    background: rgba(31, 85, 85, 0.5);
    border-radius: 15px;
    border: 1px solid rgba(127, 255, 0, 0.1);
}

.welcome-message h1 {
    font-size: 2rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.welcome-message h1 span {
    color: var(--primary-color);
}

.welcome-message p {
    color: var(--text-gray);
    font-size: 1rem;
}

.user-badge {
    display: flex;
    gap: 1rem;
}

.role-badge,
.status-badge {
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.role-badge {
    background: linear-gradient(135deg, var(--primary-color), #6DE800);
    color: var(--bg-dark);
}

.status-badge {
    background: rgba(76, 175, 80, 0.2);
    color: #4CAF50;
    border: 1px solid #4CAF50;
}

.alert {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 2rem;
}

.alert-warning {
    background: rgba(255, 193, 7, 0.1);
    border: 1px solid rgba(255, 193, 7, 0.3);
}

.alert-content {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.alert-icon {
    font-size: 1.5rem;
}

.alert-content strong {
    display: block;
    color: #FFC107;
    margin-bottom: 0.25rem;
}

.alert-content p {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin: 0;
}

.btn-resend {
    padding: 0.75rem 1.5rem;
    background: var(--primary-color);
    color: var(--bg-dark);
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.btn-resend:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(127, 255, 0, 0.3);
}

.dashboard-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.stat-card {
    background: rgba(31, 85, 85, 0.5);
    border: 1px solid rgba(127, 255, 0, 0.1);
    border-radius: 15px;
    padding: 2rem;
    display: flex;
    gap: 1.5rem;
    align-items: center;
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(127, 255, 0, 0.1);
}

.stat-icon {
    font-size: 3rem;
}

.stat-info h3 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin: 0;
}

.stat-info p {
    color: var(--text-gray);
    font-size: 0.95rem;
    margin: 0.25rem 0 0;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.dashboard-card {
    background: rgba(31, 85, 85, 0.5);
    border: 1px solid rgba(127, 255, 0, 0.1);
    border-radius: 15px;
    overflow: hidden;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid rgba(127, 255, 0, 0.1);
}

.card-header h2 {
    font-size: 1.25rem;
    color: var(--text-light);
    margin: 0;
}

.link-view-all {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

.link-view-all:hover {
    text-decoration: underline;
}

.card-content {
    padding: 2rem;
}

.empty-state {
    text-align: center;
    padding: 3rem 1rem;
}

.empty-icon {
    font-size: 4rem;
    display: block;
    margin-bottom: 1rem;
}

.empty-state p {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}

.activity-item {
    display: flex;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(127, 255, 0, 0.05);
}

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

.activity-icon {
    font-size: 1.5rem;
}

.activity-info p {
    color: var(--text-light);
    margin: 0 0 0.25rem;
}

.activity-info small {
    color: var(--text-gray);
    font-size: 0.85rem;
}

.completion-percentage {
    color: var(--primary-color);
    font-weight: 600;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: rgba(10, 26, 26, 0.6);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), #6DE800);
    transition: width 0.5s ease;
}

.completion-checklist {
    list-style: none;
    padding: 0;
    margin: 0;
}

.completion-checklist li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    color: var(--text-gray);
}

.completion-checklist li.checked {
    color: var(--text-light);
}

.completion-checklist li.checked .check-icon {
    color: var(--primary-color);
}

.check-icon {
    font-size: 1.25rem;
    font-weight: bold;
    color: rgba(127, 255, 0, 0.3);
}

.quick-actions {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.action-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1.5rem;
    background: rgba(10, 26, 26, 0.6);
    border: 1px solid rgba(127, 255, 0, 0.1);
    border-radius: 12px;
    text-decoration: none;
    color: var(--text-light);
    transition: var(--transition);
}

.action-btn:hover {
    background: rgba(127, 255, 0, 0.05);
    border-color: var(--primary-color);
    transform: translateY(-3px);
}

.action-icon {
    font-size: 2rem;
}

.btn-logout {
    color: #FF6B6B !important;
    border-color: rgba(255, 107, 107, 0.3) !important;
}

.btn-logout:hover {
    background: rgba(255, 107, 107, 0.1) !important;
}

/* Responsive */
@media (max-width: 1200px) {
    .dashboard-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .dashboard-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 968px) {
    .login-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .login-benefits {
        display: none;
    }
}

@media (max-width: 768px) {
    .dashboard-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .dashboard-stats {
        grid-template-columns: 1fr;
    }
    
    .quick-actions {
        grid-template-columns: 1fr;
    }
    
    .alert {
        flex-direction: column;
        gap: 1rem;
    }
}

/* ===================================
   EVENT CAROUSEL (NEW)
   ================================== */

.event-carousel {
    position: relative;
    z-index: 2;
    width: 100%;
    overflow: hidden; /* Keep overflow hidden on main container */
    padding: 3rem 0;
    background: transparent;
}

.event-carousel-track {
    display: flex;
    gap: 2rem;
    /* Animation now driven by JS with per-slide speed */
    transition: transform 0.8s cubic-bezier(0.25, 0.1, 0.25, 1);
    width: fit-content;
    will-change: transform;
}

.event-carousel-track:hover {
    /* Pause handled by JS */
}

@keyframes scroll-carousel {
    0% {
        transform: translateX(0);
    }
    100% {
        /* Move by 3 slides (small size: 280px + 2rem gap = 312px each) */
        transform: translateX(calc(-312px * 3));
    }
}

.event-carousel-item {
    position: relative;
    min-width: 380px;
    height: 320px;
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid rgba(127, 255, 0, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    flex-shrink: 0;
    background: #1a3f38; /* Fallback background */
    opacity: 1 !important; /* Force visibility */
    visibility: visible !important;
}

/* Carousel Size Variants */
.event-carousel-item.carousel-size-small {
    min-width: 280px;
    height: 280px;
}

.event-carousel-item.carousel-size-medium {
    min-width: 380px;
    height: 320px;
}

.event-carousel-item.carousel-size-large {
    min-width: 480px;
    height: 400px;
}

.event-carousel-item.carousel-size-full {
    min-width: 100%;
    max-width: 1200px;
    height: 500px;
}

.carousel-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: #0a2f2f;
    z-index: 1;
}

.carousel-image-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.carousel-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 2rem;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
    pointer-events: none;
}

.event-carousel-item:hover .carousel-overlay {
    opacity: 1;
}

.carousel-content {
    color: white;
}

.carousel-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: #8BFF22;
}

.carousel-subtitle {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

.carousel-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: #8BFF22;
    color: #0F2A2A;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-cta-btn:hover {
    transform: translateX(4px);
    background: #a0ff40;
}

.carousel-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.carousel-placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    transition: var(--transition);
}

.event-carousel-item:hover {
    transform: scale(1.02) translateY(-4px);
    border-color: rgba(127, 255, 0, 0.3);
    box-shadow: 0 8px 24px rgba(127, 255, 0, 0.15);
    z-index: 5;
}

.event-carousel-item:hover .carousel-placeholder::before {
    background: rgba(127, 255, 0, 0.1);
}

/* ===================================
   CATEGORY TAGS CAROUSEL
   ================================== */

.category-carousel-section {
    background: linear-gradient(180deg, #1a3f38 0%, #173530 50%, #0F2A2A 100%);
    padding: 3rem 0;
    overflow: hidden;
    border-top: none;
    border-bottom: 1px solid rgba(127, 255, 0, 0.05);
}

.category-carousel {
    width: 100%;
    overflow: hidden;
    position: relative;
    background: linear-gradient(180deg, #1a3f38 0%, #122a25 40%, #0F2A2A 100%);
    padding: 2rem 0;
}

.category-carousel-track {
    display: flex;
    gap: 1.5rem;
    animation: scroll-tags 35s linear infinite;
    width: fit-content;
    padding: 0.5rem 0;
}

.category-carousel-track:hover {
    animation-play-state: paused;
}

@keyframes scroll-tags {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.category-tag {
    display: inline-block;
    padding: 0.85rem 2.5rem;
    background: linear-gradient(135deg, rgba(26, 63, 56, 0.8), rgba(15, 42, 42, 0.9));
    border: 2px solid rgba(127, 255, 0, 0.2);
    border-radius: 30px;
    color: var(--text-light);
    font-size: 0.95rem;
    font-weight: 500;
    white-space: nowrap;
    transition: all 0.3s ease;
    cursor: pointer;
    flex-shrink: 0;
    backdrop-filter: blur(5px);
}

.category-tag:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--bg-darker);
    border-color: var(--primary-color);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 30px rgba(127, 255, 0, 0.4);
}

/* ===================================
   REGISTRATION SECTION (UPDATED)
   ================================== */

.section-subtitle {
    text-align: center;
    color: var(--text-gray);
    font-size: 1.1rem;
    margin-top: -1rem;
    margin-bottom: 3rem;
}

.role-cards-horizontal {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.role-card-compact {
    background: linear-gradient(135deg, rgba(31, 85, 85, 0.4), rgba(10, 31, 31, 0.6));
    border: 2px solid rgba(127, 255, 0, 0.15);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.4s ease;
    cursor: pointer;
}

.role-card-compact:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 50px rgba(127, 255, 0, 0.3);
    background: linear-gradient(135deg, rgba(31, 85, 85, 0.6), rgba(10, 31, 31, 0.8));
}

.role-card-compact .role-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(127, 255, 0, 0.1);
    border: 2px solid rgba(127, 255, 0, 0.3);
    transition: var(--transition);
}

.role-card-compact:hover .role-icon {
    background: rgba(127, 255, 0, 0.2);
    border-color: var(--primary-color);
    transform: scale(1.1);
}

.role-card-compact h3 {
    color: var(--primary-color);
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
}

.role-card-compact p {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.5;
}

.register-cta-center {
    text-align: center;
    margin-top: 2rem;
}

.btn-large {
    padding: 1.2rem 3.5rem;
    font-size: 1.2rem;
    border-radius: 50px;
    display: inline-block;
    box-shadow: 0 10px 30px rgba(127, 255, 0, 0.3);
}

.btn-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(127, 255, 0, 0.5);
}

.cta-subtext {
    margin-top: 1.5rem;
    color: var(--text-gray);
    font-size: 0.95rem;
}

.cta-subtext .link-primary {
    color: var(--primary-color);
    text-decoration: underline;
}

/* ===================================
   EVENTS SECTION (ENHANCED)
   ================================== */

.events-category {
    margin-bottom: 5rem;
}

.events-category:last-child {
    margin-bottom: 0;
}

.category-title {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 1rem;
}

.category-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), transparent);
}

/* Conference Backgrounds */
.conference-bg-1 {
    background: linear-gradient(135deg, #1a4d4d 0%, #0d3333 50%, #1f5555 100%);
}

.conference-bg-2 {
    background: linear-gradient(135deg, #2d6666 0%, #1a4d4d 50%, #0d3333 100%);
}

.conference-bg-3 {
    background: linear-gradient(135deg, #0d3333 0%, #1f5555 50%, #2d6666 100%);
}

/* Networking Backgrounds */
.networking-bg-1 {
    background: linear-gradient(135deg, #3a7070 0%, #2d5a5a 50%, #1f4444 100%);
}

.networking-bg-2 {
    background: linear-gradient(135deg, #2d5a5a 0%, #3a7070 50%, #1a4040 100%);
}

.networking-bg-3 {
    background: linear-gradient(135deg, #1f4444 0%, #2d5a5a 50%, #3a7070 100%);
}

/* Wellness/Relaxation Backgrounds */
.wellness-bg-1 {
    background: linear-gradient(135deg, #4a8585 0%, #357070 50%, #255555 100%);
}

.wellness-bg-2 {
    background: linear-gradient(135deg, #357070 0%, #4a8585 50%, #2a6060 100%);
}

.wellness-bg-3 {
    background: linear-gradient(135deg, #255555 0%, #357070 50%, #4a8585 100%);
}

/* Checkbox group with forgot password */
.checkbox-group {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.checkbox-group .link-primary {
    font-size: 0.9rem;
}

@media (max-width: 968px) {
    .role-cards-horizontal {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .events-category {
        margin-bottom: 3rem;
    }
}

/* ===================================
   NEWS & ARTICLES SECTION - EDITORIAL
   ================================== */

.news-section {
    padding: 6rem 0;
    background: var(--bg-dark);
    position: relative;
    overflow: hidden;
}

.news-section::before {
    content: '';
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(127, 255, 0, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

/* Section Header - Editorial */
.news-section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 1.5rem;
}

.news-section-header-left {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.news-eyebrow {
    font-size: 0.85rem;
    color: var(--primary-color);
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.news-view-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 2rem;
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.news-view-all-btn:hover {
    background: var(--primary-color);
    color: var(--bg-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(127, 255, 0, 0.25);
}

.news-view-all-btn svg {
    transition: transform 0.3s ease;
}

.news-view-all-btn:hover svg {
    transform: translateX(4px);
}

/* Trending Tags Bar */
.news-trending-tags {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 2.5rem;
    padding: 1rem 1.5rem;
    background: rgba(127, 255, 0, 0.04);
    border: 1px solid rgba(127, 255, 0, 0.1);
    border-radius: 12px;
    overflow-x: auto;
    scrollbar-width: none;
}

.news-trending-tags::-webkit-scrollbar {
    display: none;
}

.trending-label {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary-color);
    white-space: nowrap;
}

.trending-tag {
    display: inline-block;
    padding: 0.35rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
    font-weight: 500;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.3s ease;
    cursor: pointer;
}

.trending-tag:hover {
    background: rgba(127, 255, 0, 0.15);
    border-color: rgba(127, 255, 0, 0.4);
    color: var(--primary-color);
    transform: translateY(-1px);
}

/* Editorial Grid Layout */
.news-editorial-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.news-editorial-grid .news-card:first-child {
    grid-row: 1 / 3;
}

/* News Card Base */
.news-editorial-grid .news-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(31, 85, 85, 0.3), rgba(10, 31, 31, 0.6));
    border: 1px solid rgba(127, 255, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
    opacity: 0;
    transform: translateY(30px);
}

.news-editorial-grid .news-card.news-card-visible {
    opacity: 1;
    transform: translateY(0);
}

.news-editorial-grid .news-card:hover {
    transform: translateY(-6px);
    border-color: rgba(127, 255, 0, 0.35);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 40px rgba(127, 255, 0, 0.08);
}

/* Progress bar on hover */
.news-editorial-grid .news-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), #00d9ff);
    transition: width 0.4s ease;
    z-index: 5;
}

.news-editorial-grid .news-card:hover::after {
    width: 100%;
}

/* Hero Card (first/featured) */
.news-card-hero,
.news-editorial-grid .news-card:first-child {
    min-height: 480px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.news-card-hero .news-image,
.news-editorial-grid .news-card:first-child .news-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s ease;
}

.news-card-hero:hover .news-image,
.news-editorial-grid .news-card:first-child:hover .news-image {
    transform: scale(1.05);
}

.news-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(10, 25, 41, 0.95) 0%,
        rgba(10, 25, 41, 0.6) 40%,
        rgba(10, 25, 41, 0.2) 70%,
        transparent 100%
    );
    z-index: 1;
}

.news-card-content {
    position: relative;
    z-index: 2;
    padding: 2rem;
}

.news-card-hero .news-card-content {
    padding: 2.5rem;
}

/* Standard Cards (2nd, 3rd, etc.) */
.news-editorial-grid .news-card:not(:first-child) {
    display: flex;
    flex-direction: column;
}

.news-editorial-grid .news-card:not(:first-child) .news-image {
    width: 100%;
    height: 180px;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.news-editorial-grid .news-card:not(:first-child):hover .news-image {
    transform: scale(1.03);
}

.news-editorial-grid .news-card:not(:first-child) .news-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(to top, rgba(10, 31, 31, 0.8), transparent);
}

.news-editorial-grid .news-card:not(:first-child) .news-card-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Category Badge */
.news-editorial-grid .news-category {
    display: inline-block;
    padding: 0.3rem 0.85rem;
    background: rgba(127, 255, 0, 0.15);
    color: var(--primary-color);
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.75rem;
    border: 1px solid rgba(127, 255, 0, 0.25);
    width: fit-content;
}

/* Sponsored Badge */
.news-editorial-grid .sponsored-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.3rem 0.75rem;
    background: rgba(255, 215, 0, 0.2);
    color: #FFD700;
    border: 1px solid rgba(255, 215, 0, 0.4);
    border-radius: 6px;
    font-size: 0.7rem;
    font-weight: 700;
    z-index: 3;
    backdrop-filter: blur(10px);
}

/* Featured Badge */
.news-editorial-grid .featured-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.3rem 0.75rem;
    background: rgba(127, 255, 0, 0.2);
    color: var(--primary-color);
    border: 1px solid rgba(127, 255, 0, 0.4);
    border-radius: 6px;
    font-size: 0.7rem;
    font-weight: 700;
    z-index: 3;
    backdrop-filter: blur(10px);
}

/* Card Title */
.news-editorial-grid .news-card h3 {
    color: var(--text-light);
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
    line-height: 1.35;
    font-weight: 700;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-card-hero h3,
.news-editorial-grid .news-card:first-child h3 {
    font-size: 1.75rem;
    -webkit-line-clamp: 3;
}

/* Card Excerpt */
.news-editorial-grid .news-card p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex: 1;
}

.news-card-hero p {
    -webkit-line-clamp: 3;
    font-size: 1rem;
}

/* Card Footer */
.news-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: auto;
}

.news-author {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.author-avatar-placeholder {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(127, 255, 0, 0.3), rgba(0, 217, 255, 0.3));
    border: 1px solid rgba(127, 255, 0, 0.3);
    flex-shrink: 0;
}

.news-editorial-grid .author-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid rgba(127, 255, 0, 0.3);
    flex-shrink: 0;
}

.author-name {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
}

.news-meta-inline {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
}

.news-dot {
    font-size: 0.5rem;
}

/* News card link */
.news-editorial-grid .news-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;
}

.news-card-hero .news-card-link {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
}

.news-editorial-grid .news-card:not(:first-child) .news-card-link {
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* Bottom CTA */
.news-bottom-cta {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem 2rem;
    background: rgba(127, 255, 0, 0.03);
    border: 1px dashed rgba(127, 255, 0, 0.15);
    border-radius: 12px;
    text-align: center;
}

.news-bottom-cta p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    margin: 0;
}

.btn-outline-accent {
    display: inline-block;
    padding: 0.6rem 1.5rem;
    border: 1px solid rgba(127, 255, 0, 0.3);
    color: var(--primary-color);
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-outline-accent:hover {
    background: rgba(127, 255, 0, 0.1);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

/* News image placeholders */
.news-img-1 {
    background: linear-gradient(135deg, #2d7a7a 0%, #1f5555 50%, #0d3333 100%);
}

.news-img-2 {
    background: linear-gradient(135deg, #3a9999 0%, #2d7a7a 50%, #1f5555 100%);
}

.news-img-3 {
    background: linear-gradient(135deg, #1f5555 0%, #0d3333 50%, #2d7a7a 100%);
}

.news-img-4 {
    background: linear-gradient(135deg, #0d3333 0%, #1f5555 50%, #3a9999 100%);
}

/* Form row for registration */
.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

/* News Editorial Responsive */
@media (max-width: 1200px) {
    .news-editorial-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }
    
    .news-editorial-grid .news-card:first-child {
        grid-row: auto;
        grid-column: 1 / -1;
        min-height: 380px;
    }
}

@media (max-width: 968px) {
    .news-editorial-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .news-editorial-grid .news-card:first-child {
        min-height: 320px;
    }
    
    .news-section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .news-card-hero h3,
    .news-editorial-grid .news-card:first-child h3 {
        font-size: 1.4rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .news-editorial-grid {
        grid-template-columns: 1fr;
    }
    
    .news-editorial-grid .news-card:first-child {
        min-height: 300px;
    }
    
    .news-bottom-cta {
        flex-direction: column;
        gap: 1rem;
    }
    
    .news-trending-tags {
        gap: 0.5rem;
        padding: 0.75rem 1rem;
    }
}

/* ===================================
   PROMOTE YOUR EVENTS SECTION
   ================================== */

.promote-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-darker) 100%);
    overflow: hidden;
}

.section-header-center {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header-center .section-title {
    font-size: 3rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.section-description {
    color: var(--text-gray);
    font-size: 1.2rem;
}

.promote-carousel {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.promote-track {
    display: flex;
    gap: 2rem;
    width: fit-content;
}

.promote-card {
    position: relative;
    min-width: 380px;
    border-radius: 20px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(31, 85, 85, 0.4), rgba(10, 31, 31, 0.7));
    border: 2px solid rgba(127, 255, 0, 0.15);
    transition: all 0.4s ease;
    cursor: pointer;
    flex-shrink: 0;
}

.promote-card:hover {
    transform: translateY(-10px) scale(1.03);
    border-color: var(--primary-color);
    box-shadow: 0 20px 60px rgba(127, 255, 0, 0.3);
}

/* Promoted Event Card Size Variants */
.promote-card.carousel-size-small {
    min-width: 280px !important;
    max-width: 280px !important;
}

.promote-card.carousel-size-small .promote-image {
    height: 180px !important;
}

.promote-card.carousel-size-medium {
    min-width: 380px !important;
    max-width: 420px !important;
}

.promote-card.carousel-size-medium .promote-image {
    height: 220px !important;
}

.promote-card.carousel-size-large {
    min-width: 520px !important;
    max-width: 600px !important;
}

.promote-card.carousel-size-large .promote-image {
    height: 300px !important;
}

.promote-card.carousel-size-large .promote-content h3 {
    font-size: 1.4rem;
}

.promote-card.carousel-size-full {
    min-width: 90vw !important;
    max-width: 1200px !important;
}

.promote-card.carousel-size-full .promote-image {
    height: 400px !important;
}

.promote-card.carousel-size-full .promote-content h3 {
    font-size: 1.6rem;
}

.promote-card.carousel-size-full .promote-content {
    padding: 1.5rem 2rem;
}

.badge {
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 0.6rem 1.5rem;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 1px;
    z-index: 10;
}

.badge-featured {
    background: var(--primary-color);
    color: var(--bg-darker);
}

.badge-premium {
    background: linear-gradient(135deg, var(--primary-color), #6DE800);
    color: var(--bg-darker);
    animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 0 15px rgba(127, 255, 0, 0.5);
    }
    50% {
        box-shadow: 0 0 25px rgba(127, 255, 0, 0.8);
    }
}

.promote-image {
    width: 100%;
    height: 280px;
    background-size: cover;
    background-position: center;
}

.promote-img-1 {
    background: linear-gradient(135deg, #1a4d4d 0%, #2d6666 50%, #0d3333 100%);
}

.promote-img-2 {
    background: linear-gradient(135deg, #357070 0%, #4a8585 50%, #2a6060 100%);
}

.promote-img-3 {
    background: linear-gradient(135deg, #0d3333 0%, #1f5555 50%, #2d7a7a 100%);
}

.promote-img-4 {
    background: linear-gradient(135deg, #2d5a5a 0%, #3a7070 50%, #1f4444 100%);
}

.promote-img-5 {
    background: linear-gradient(135deg, #1f5555 0%, #3a9999 50%, #2d7a7a 100%);
}

.promote-content {
    padding: 2rem;
}

.promote-content h3 {
    color: var(--text-light);
    font-size: 1.6rem;
    margin-bottom: 0.75rem;
}

.promote-date {
    color: var(--text-gray);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.promote-date::before {
    content: '📅';
}

/* ===================================
   BENEFIT CARDS — "Events That Change You"
   ================================== */

/* -- Outcome Tag Filter Bar -- */
.benefit-tag-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.6rem;
    margin-top: 2rem;
    padding: 0 1rem;
}

.benefit-tag-btn {
    padding: 0.5rem 1.2rem;
    border-radius: 25px;
    border: 1px solid rgba(127, 255, 0, 0.2);
    background: rgba(10, 26, 26, 0.6);
    color: var(--text-gray, #a3c0c0);
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.benefit-tag-btn:hover {
    border-color: var(--primary-color, #7FFF00);
    background: rgba(127, 255, 0, 0.08);
    color: var(--text-light, #E8F5F5);
}

.benefit-tag-btn.active {
    background: var(--primary-color, #7FFF00);
    color: var(--bg-darker, #0a1414);
    border-color: var(--primary-color);
    font-weight: 600;
}

/* -- Benefit Card Body (inner content layer) -- */
.benefit-card-style .bc-body {
    padding: 1.5rem 1.8rem 1.8rem;
}

/* -- Badge Variants -- */
.bc-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 0.45rem 1.2rem;
    border-radius: 22px;
    font-weight: 700;
    font-size: 0.7rem;
    letter-spacing: 1.2px;
    z-index: 10;
}

.bc-badge-benefit {
    background: linear-gradient(135deg, #7FFF00, #00D4FF);
    color: #0a1414;
}

.bc-badge-transformation {
    background: linear-gradient(135deg, #00D4FF, #7FFF00);
    color: #0a1414;
}

.bc-badge-story {
    background: linear-gradient(135deg, #ff8800, #ffcc00);
    color: #1a1a0f;
}

/* -- Card Style Variants (border accents) -- */
.card-style-benefit-card {
    border-color: rgba(127, 255, 0, 0.2) !important;
}

.card-style-transformation-card {
    border-color: rgba(0, 212, 255, 0.25) !important;
}

.card-style-story-card {
    border-color: rgba(255, 136, 0, 0.25) !important;
}

/* -- Headline -- */
.bc-headline {
    color: var(--text-light, #E8F5F5);
    font-size: 1.3rem;
    line-height: 1.35;
    margin-bottom: 0.7rem;
}

/* -- Primary Benefit Pill -- */
.bc-primary-benefit {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.7rem 1rem;
    background: rgba(127, 255, 0, 0.07);
    border: 1px solid rgba(127, 255, 0, 0.15);
    border-radius: 8px;
    margin-bottom: 0.8rem;
}

.bc-benefit-icon {
    font-size: 1.3rem;
    flex-shrink: 0;
}

.bc-benefit-text {
    color: var(--text-light, #E8F5F5);
    font-size: 0.92rem;
    line-height: 1.4;
}

/* -- Proof Line -- */
.bc-proof {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.55rem 0.9rem;
    background: rgba(0, 212, 255, 0.06);
    border-radius: 6px;
    margin-bottom: 0.8rem;
    font-size: 0.82rem;
    color: var(--text-gray, #a3c0c0);
}

.bc-proof-icon {
    font-size: 0.9rem;
}

/* -- Transformation Flow (Before → After) -- */
.bc-transformation-flow {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    padding: 0.8rem 1rem;
    margin-bottom: 0.8rem;
}

.bc-state {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.35rem 0;
    font-size: 0.88rem;
}

.bc-state-before {
    color: #ff8888;
}

.bc-state-after {
    color: #7fff00;
}

.bc-state-arrow {
    text-align: center;
    color: var(--text-gray);
    font-size: 1.1rem;
    padding: 0.15rem 0;
}

/* -- Pain Quote (Story Card) -- */
.bc-pain-quote {
    color: #ff9999;
    font-style: italic;
    font-size: 0.88rem;
    line-height: 1.5;
    margin-bottom: 0.7rem;
    opacity: 0.9;
}

/* -- Transformation Text -- */
.bc-transformation-text {
    color: var(--text-gray, #a3c0c0);
    font-size: 0.88rem;
    line-height: 1.5;
    margin-bottom: 0.8rem;
}

/* -- Meta (date + location) -- */
.bc-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.82rem;
    color: var(--text-gray, #a3c0c0);
    padding-top: 0.8rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

/* -- Benefits Count -- */
.bc-benefits-count {
    font-size: 0.78rem;
    color: var(--primary-color, #7FFF00);
    margin-top: 0.5rem;
    font-weight: 500;
}

/* -- CTA Button -- */
.bc-cta {
    margin-top: 1rem;
    padding: 0.65rem;
    text-align: center;
    background: linear-gradient(135deg, rgba(127, 255, 0, 0.12), rgba(0, 212, 255, 0.12));
    color: var(--primary-color, #7FFF00);
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.88rem;
    transition: background 0.3s ease;
}

.benefit-card-style:hover .bc-cta {
    background: linear-gradient(135deg, rgba(127, 255, 0, 0.22), rgba(0, 212, 255, 0.22));
}

/* -- Empty State -- */
.bc-empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 220px;
    width: 100vw !important;
    max-width: 100%;
    padding: 3rem 2rem;
}

.bc-empty-state p {
    max-width: 480px;
    margin: 0 auto;
    line-height: 1.6;
    font-size: 0.95rem;
    color: var(--text-secondary, #B8C5C5);
}

.bc-empty-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}

/* -- Responsive -- */
@media (max-width: 768px) {
    .benefit-tag-filters {
        gap: 0.4rem;
    }

    .benefit-tag-btn {
        font-size: 0.78rem;
        padding: 0.4rem 0.9rem;
    }

    .bc-headline {
        font-size: 1.15rem;
    }

    .bc-body {
        padding: 1.2rem 1.3rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .benefit-tag-filters {
        overflow-x: auto;
        flex-wrap: nowrap;
        justify-content: flex-start;
        padding-bottom: 0.5rem;
        -webkit-overflow-scrolling: touch;
    }
}

/* ===================================
   NEWSLETTER SECTION
   ================================== */

.newsletter-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #0d3333 0%, #1a4d4d 50%, #0f2a2a 100%);
    position: relative;
    overflow: hidden;
}

.newsletter-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 50%, rgba(127, 255, 0, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 70% 50%, rgba(31, 85, 85, 0.3) 0%, transparent 50%);
    pointer-events: none;
}

.newsletter-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.newsletter-content h2 {
    font-size: 3rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.newsletter-content p {
    color: var(--text-gray);
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 1.2rem 2rem;
    background: rgba(10, 26, 26, 0.8);
    border: 2px solid rgba(127, 255, 0, 0.2);
    border-radius: 50px;
    color: var(--text-light);
    font-size: 1rem;
    transition: var(--transition);
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(10, 26, 26, 0.95);
}

.newsletter-form input::placeholder {
    color: var(--text-gray);
}

.newsletter-form button {
    padding: 1.2rem 3rem;
    border-radius: 50px;
    white-space: nowrap;
    font-size: 1.1rem;
    font-weight: 600;
}

@media (max-width: 768px) {
    .promote-card {
        min-width: 300px;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form button {
        width: 100%;
    }
    
    .newsletter-content h2 {
        font-size: 2rem;
    }
    
    .section-header-center .section-title {
        font-size: 2rem;
    }
}

/* ===================================
   INTERACTIVE EVENT MOMENTS GAME
   ================================== */
.event-moments-game {
    padding: 60px 20px;
    max-width: 1400px;
    margin: 0 auto;
}

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

.game-title {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    text-shadow: 0 0 20px rgba(127, 255, 0, 0.5);
}

.game-progress {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.progress-text {
    color: var(--text-gray);
    font-size: 1.1rem;
}

.progress-text span {
    color: var(--primary-color);
    font-weight: bold;
}

.progress-bar {
    width: 300px;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.progress-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-dark));
    border-radius: 10px;
    transition: width 0.5s ease;
    box-shadow: 0 0 15px var(--primary-color);
}

/* Moments Carousel */
.moments-carousel {
    position: relative;
    overflow: hidden;
    padding: 20px 0;
}

.moments-track {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 10px 20px;
    -webkit-overflow-scrolling: touch;
}

.moments-track::-webkit-scrollbar {
    height: 8px;
}

.moments-track::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.moments-track::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 10px;
}

/* Moment Card */
.moment-card {
    min-width: 280px;
    height: 380px;
    perspective: 1000px;
    cursor: pointer;
    flex-shrink: 0;
}

.card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.6s;
    transform-style: preserve-3d;
}

.moment-card.flipped .card-inner {
    transform: rotateY(180deg);
}

.card-front,
.card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.card-front {
    background: linear-gradient(135deg, #1f5555 0%, #0a2f2f 100%);
    border: 2px solid rgba(127, 255, 0, 0.3);
}

.card-back {
    background: linear-gradient(135deg, #2d7a7a 0%, #1f5555 100%);
    transform: rotateY(180deg);
    border: 2px solid var(--primary-color);
    box-shadow: 0 10px 40px rgba(127, 255, 0, 0.3);
}

/* Card Front */
.card-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    opacity: 0.3;
    filter: grayscale(100%);
}

.card-label {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 10px;
    text-shadow: 0 0 20px var(--primary-color);
}

.card-hint {
    color: var(--text-gray);
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Card Back */
.card-emoji {
    font-size: 4.5rem;
    margin-bottom: 15px;
    animation: bounce 2s infinite;
}

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

.card-back h4 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    text-shadow: 0 0 15px rgba(127, 255, 0, 0.5);
}

.card-back p {
    text-align: center;
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.6;
}

.card-sparkle {
    font-size: 2rem;
    position: absolute;
    top: 20px;
    right: 20px;
    animation: sparkle 1.5s infinite;
}

@keyframes sparkle {
    0%, 100% { opacity: 1; transform: scale(1) rotate(0deg); }
    50% { opacity: 0.5; transform: scale(1.2) rotate(180deg); }
}

/* Hover Effects */
.moment-card:hover .card-inner {
    transform: scale(1.05);
}

.moment-card.flipped:hover .card-inner {
    transform: rotateY(180deg) scale(1.05);
}

.moment-card:not(.flipped):hover .card-front {
    border-color: var(--primary-color);
    box-shadow: 0 15px 50px rgba(127, 255, 0, 0.4);
}

/* Game CTA */
.game-cta {
    text-align: center;
    margin-top: 50px;
    padding: 40px 20px;
    background: linear-gradient(135deg, rgba(31, 85, 85, 0.3), rgba(10, 47, 47, 0.5));
    border-radius: 20px;
    border: 1px solid rgba(127, 255, 0, 0.2);
}

.cta-text {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 20px;
}

.btn-explore {
    display: inline-block;
    padding: 15px 40px;
    background: var(--primary-color);
    color: var(--bg-darker);
    font-weight: bold;
    font-size: 1.1rem;
    border-radius: 30px;
    transition: var(--transition);
    box-shadow: 0 5px 20px rgba(127, 255, 0, 0.4);
}

.btn-explore:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(127, 255, 0, 0.6);
}

/* Completion Animation */
.game-complete {
    animation: celebrate 1s ease;
}

@keyframes celebrate {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

/* Sound Effect Indicator */
.sound-effect {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 5rem;
    pointer-events: none;
    animation: soundPop 0.5s ease;
    z-index: 1000;
}

@keyframes soundPop {
    0% { 
        opacity: 0; 
        transform: translate(-50%, -50%) scale(0);
    }
    50% { 
        opacity: 1; 
        transform: translate(-50%, -50%) scale(1.2);
    }
    100% { 
        opacity: 0; 
        transform: translate(-50%, -50%) scale(1);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .game-title {
        font-size: 1.5rem;
    }
    
    .moment-card {
        min-width: 240px;
        height: 340px;
    }
    
    .card-emoji {
        font-size: 3.5rem;
    }
    
    .card-back h4 {
        font-size: 1.5rem;
    }
    
    .progress-bar {
        width: 250px;
    }
}

@media (max-width: 480px) {
    .moments-track {
        gap: 15px;
    }
    
    .moment-card {
        min-width: 200px;
        height: 300px;
    }
    
    .card-emoji {
        font-size: 3rem;
    }
    
    .card-back h4 {
        font-size: 1.3rem;
    }
    
    .card-back p {
        font-size: 0.9rem;
    }
}

/* ===================================
   COMPREHENSIVE MOBILE RESPONSIVE
   ================================== */

/* Large Tablets & Small Desktops */
@media (max-width: 1200px) {
    .container {
        max-width: 960px;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .promote-card {
        min-width: 320px;
    }
}

/* Tablets */
@media (max-width: 1024px) {
    .container {
        max-width: 720px;
        padding: 0 1.5rem;
    }
    
    .nav-menu {
        gap: 1rem;
    }
    
    .nav-menu a {
        font-size: 0.9rem;
    }
    
    .hero-title {
        font-size: 3rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .register-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .journey-card {
        position: static;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile & Tablets */
@media (max-width: 768px) {
    /* Show Mobile Menu Toggle */
    .mobile-menu-toggle {
        display: flex !important;
    }
    
    /* Navigation Mobile */
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(10, 31, 31, 0.98);
        backdrop-filter: blur(20px);
        width: 100%;
        max-width: 100%;
        text-align: center;
        transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
        padding: 2rem 1rem;
        align-items: center;
        gap: 0;
        z-index: 999;
        border-top: 2px solid rgba(127, 255, 0, 0.2);
        max-height: calc(100vh - 70px);
        overflow-y: auto;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        width: 100%;
        padding: 0.75rem 0;
        border-bottom: 1px solid rgba(127, 255, 0, 0.1);
    }
    
    .nav-menu li:last-child {
        border-bottom: none;
    }
    
    .nav-menu a {
        display: flex;
        width: 100%;
        padding: 0.75rem 1rem;
        font-size: 1.1rem;
        justify-content: center;
    }
    
    .btn-join {
        margin-top: 1rem;
        width: 80%;
        max-width: 300px;
    }
    
    /* Hero */
    .hero {
        min-height: 80vh;
        padding-top: 80px;
    }
    
    .hero-title {
        font-size: 2.2rem;
        line-height: 1.3;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .btn-primary {
        padding: 0.9rem 2rem;
        font-size: 1rem;
    }
    
    /* Event Carousel */
    .event-carousel {
        padding: 2rem 0;
    }
    
    .event-carousel-track {
        gap: 1rem;
    }
    
    .event-carousel-item {
        min-width: 280px;
        height: 240px;
    }
    
    /* Tags */
    .category-tag {
        padding: 0.7rem 1.5rem;
        font-size: 0.85rem;
    }
    
    /* Registration */
    .page-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .role-cards {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    /* Events */
    .events-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    /* News */
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    /* Promote */
    .promote-card {
        min-width: 260px;
    }
    
    /* Newsletter */
    .newsletter-form {
        flex-direction: column;
        gap: 1rem;
    }
    
    .newsletter-form input,
    .newsletter-form button {
        width: 100%;
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-column {
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .logo img {
        height: 32px;
    }
    
    .nav-menu {
        top: 60px;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
    }
    
    .btn-primary {
        padding: 0.8rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .event-carousel-item {
        min-width: 240px;
        height: 200px;
    }
    
    .category-tag {
        padding: 0.6rem 1.2rem;
        font-size: 0.8rem;
    }
    
    .page-title {
        font-size: 1.6rem;
    }
    
    .news-grid {
        grid-template-columns: 1fr;
    }
    
    .promote-card {
        min-width: 220px;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
}

/* Landscape Mode */
@media (max-width: 896px) and (orientation: landscape) {
    .hero {
        min-height: 100vh;
        padding: 6rem 0 2rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .nav-menu {
        padding: 1rem;
    }
    
    .nav-menu li {
        padding: 0.5rem 0;
    }
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
    .nav-menu a {
        min-height: 48px;
    }
    
    .btn-primary,
    .btn-secondary {
        min-height: 48px;
        padding: 1rem 2rem;
    }
    
    * {
        -webkit-tap-highlight-color: rgba(127, 255, 0, 0.2);
    }
}

/* ================================================
   USER MINI PANEL
   ================================================ */

.user-mini-panel {
    padding: 80px 0;
    background: linear-gradient(135deg, #0a2f2f 0%, #0f1f1f 100%);
    position: relative;
    overflow: hidden;
}

.user-mini-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(127, 255, 0, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(180, 255, 57, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.panel-content {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 2rem;
    position: relative;
    z-index: 1;
}

/* User Info Card */
.user-info-card {
    background: rgba(15, 47, 47, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(127, 255, 0, 0.1);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.user-info-card:hover {
    border-color: rgba(127, 255, 0, 0.2);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.4);
}

.user-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(127, 255, 0, 0.1);
}

.user-avatar-circle {
    position: relative;
    width: 80px;
    height: 80px;
    min-width: 80px;
    min-height: 80px;
    max-width: 80px;
    max-height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #7fff00 0%, #b4ff39 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 700;
    color: #0a2f2f;
    box-shadow: 0 8px 24px rgba(127, 255, 0, 0.3);
    flex-shrink: 0;
    aspect-ratio: 1 / 1;
    overflow: hidden;
}

.user-avatar-circle span {
    display: block;
    line-height: 1;
    user-select: none;
}

.status-dot {
    position: absolute;
    bottom: 4px;
    right: 4px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 3px solid #0a2f2f;
}

.status-dot.online {
    background: #7fff00;
    box-shadow: 0 0 12px rgba(127, 255, 0, 0.6);
    animation: pulse-status 2s infinite;
}

@keyframes pulse-status {
    0%, 100% { box-shadow: 0 0 12px rgba(127, 255, 0, 0.6); }
    50% { box-shadow: 0 0 20px rgba(127, 255, 0, 0.8); }
}

.user-details h2 {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 0.5rem 0;
}

.role-badge {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(127, 255, 0, 0.1);
    border: 1px solid rgba(127, 255, 0, 0.3);
    border-radius: 20px;
    color: #b4ff39;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Quick Stats */
.quick-stats {
    display: grid;
    gap: 1rem;
    margin-bottom: 2rem;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(127, 255, 0, 0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

.stat-item::after {
    content: '→';
    position: absolute;
    right: 1rem;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
    color: #7fff00;
    font-size: 18px;
    font-weight: bold;
}

.stat-item:hover {
    background: rgba(127, 255, 0, 0.05);
    border-color: rgba(127, 255, 0, 0.2);
    transform: translateX(5px);
    padding-right: 2.5rem;
}

.stat-item:hover::after {
    opacity: 1;
    transform: translateX(0);
}

.stat-icon {
    font-size: 28px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(127, 255, 0, 0.1);
    border-radius: 12px;
}

.stat-data {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-size: 24px;
    font-weight: 700;
    color: #7fff00;
    line-height: 1;
}

.stat-label {
    font-size: 13px;
    color: #8892a6;
    margin-top: 4px;
}

/* Loading State for Stats */
.stat-loader {
    width: 24px;
    height: 24px;
    border: 3px solid rgba(127, 255, 0, 0.2);
    border-top-color: #7fff00;
    border-radius: 50%;
    animation: stat-spin 0.8s linear infinite;
}

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

/* Dashboard Button */
.btn-dashboard {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, #7fff00 0%, #b4ff39 100%);
    color: #0a2f2f;
    font-weight: 600;
    font-size: 16px;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(127, 255, 0, 0.3);
    text-decoration: none;
}

.btn-dashboard:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(127, 255, 0, 0.5);
}

/* Quick Actions Grid */
.quick-actions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.action-card {
    background: rgba(15, 47, 47, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(127, 255, 0, 0.1);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.action-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(127, 255, 0, 0.1), transparent);
    transition: left 0.5s ease;
}

.action-card:hover::before {
    left: 100%;
}

.action-card:hover {
    border-color: rgba(127, 255, 0, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(127, 255, 0, 0.2);
}

.action-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.upcoming-icon {
    background: rgba(127, 255, 0, 0.1);
    color: #7fff00;
}

.browse-icon {
    background: rgba(0, 217, 255, 0.1);
    color: #00d9ff;
}

.create-icon {
    background: rgba(255, 107, 107, 0.1);
    color: #ff6b6b;
}

.network-icon {
    background: rgba(180, 255, 57, 0.1);
    color: #b4ff39;
}

.action-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 0.5rem 0;
}

.action-card p {
    font-size: 14px;
    color: #8892a6;
    margin: 0 0 1.5rem 0;
}

.action-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #7fff00;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.action-link:hover {
    gap: 0.75rem;
    color: #b4ff39;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .panel-content {
        grid-template-columns: 1fr;
    }
    
    .quick-actions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .quick-actions-grid {
        grid-template-columns: 1fr;
    }
    
    .user-mini-panel {
        padding: 60px 0;
    }
    
    .user-info-card {
        padding: 2rem;
    }
}

/* ===================================
   MOBILE BOTTOM NAVIGATION
   ================================== */

.mobile-bottom-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(8, 22, 22, 0.97);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-top: 1px solid rgba(127, 255, 0, 0.15);
    box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.4);
    z-index: 1000;
    padding: 6px 8px max(6px, env(safe-area-inset-bottom));
}

.mobile-bottom-nav .nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 1;
    padding: 6px 2px;
    color: rgba(255, 255, 255, 0.45);
    text-decoration: none;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    min-height: 50px;
    -webkit-tap-highlight-color: transparent;
}

.mobile-bottom-nav .nav-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 40px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 0 0 3px 3px;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-bottom-nav .nav-item.active::before {
    transform: translateX(-50%) scaleX(1);
}

.mobile-bottom-nav .nav-item-icon {
    width: 22px;
    height: 22px;
    margin-bottom: 3px;
    stroke: currentColor;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-bottom-nav .nav-item-label {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.2px;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-bottom-nav .nav-item.active {
    color: var(--primary-color);
}

.mobile-bottom-nav .nav-item.active .nav-item-icon {
    transform: translateY(-1px);
    filter: drop-shadow(0 2px 6px rgba(127, 255, 0, 0.4));
}

.mobile-bottom-nav .nav-item.active .nav-item-label {
    font-weight: 700;
    font-size: 10px;
}

.mobile-bottom-nav .nav-item:active {
    background: rgba(127, 255, 0, 0.08);
    border-radius: 10px;
}

/* Ripple effect */
.nav-ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(127, 255, 0, 0.3);
    transform: scale(0);
    animation: ripple 0.6s ease-out;
    pointer-events: none;
}

@keyframes ripple {
    to {
        transform: scale(2);
        opacity: 0;
    }
}

/* Show bottom nav only on mobile */
@media (max-width: 768px) {
    .mobile-bottom-nav {
        display: flex;
    }
    
    /* Hide top navbar on mobile */
    .navbar {
        display: none;
    }
    
    /* Add padding to body to prevent content being hidden under bottom nav */
    body {
        padding-top: 0; /* Remove space for hidden navbar */
        padding-bottom: calc(72px + env(safe-area-inset-bottom));
    }
    
    /* Adjust hero section */
    .hero {
        padding-top: 0;
        min-height: auto;
    }
    
    .hero-content {
        padding: 2.5rem 0 1.5rem;
    }
    
    /* Hide session indicator on mobile */
    #session-indicator {
        display: none !important;
    }
}

/* ===================================
   AI PROMO SECTION — RESPONSIVE GRID
   =================================== */

.ai-promo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.ai-promo-features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

@media (max-width: 768px) {
    .ai-promo-grid {
        grid-template-columns: 1fr !important;
        gap: 28px !important;
    }

    .ai-promo-section {
        padding: 40px 0 !important;
    }

    .ai-promo-section h2 {
        font-size: 1.5rem !important;
    }

    .ai-promo-features-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 10px !important;
    }

    .ai-promo-features-grid > div {
        padding: 14px 10px !important;
    }
}

@media (max-width: 380px) {
    .ai-promo-features-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 8px !important;
    }
    
    .ai-promo-features-grid > div {
        padding: 10px 6px !important;
    }
}

/* iOS safe area support */
@supports (padding: max(0px)) {
    .mobile-bottom-nav {
        padding-bottom: max(8px, env(safe-area-inset-bottom));
    }
}

/* ===================================
   PASSWORD TOGGLE VISIBILITY
   =================================== */
.password-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.password-input-wrapper input {
    flex: 1;
    padding-right: 48px !important;
    width: 100%;
}

.password-toggle {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.5);
    transition: color 0.2s ease;
    z-index: 2;
}

.password-toggle:hover {
    color: var(--primary-color);
}

.password-toggle:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
    border-radius: 4px;
}

.password-toggle .eye-icon {
    pointer-events: none;
}
