/* ===================================
   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;
}

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;
}

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: sticky;
    top: 0;
    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;
}

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

.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:hover {
    background: transparent !important;
    color: var(--primary-color) !important;
}

.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: var(--accent-gradient);
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at top, rgba(127, 255, 0, 0.1), 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, var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--text-gray);
    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: var(--register-gradient);
    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.1), transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(127, 255, 0, 0.08), 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;
}

.journey-card {
    background: rgba(31, 85, 85, 0.6);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid rgba(127, 255, 0, 0.3);
    position: sticky;
    top: 100px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.journey-card h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.journey-card p {
    color: var(--text-gray);
    margin-bottom: 2rem;
}

.role-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.role-card {
    background: rgba(15, 42, 42, 0.6);
    backdrop-filter: blur(5px);
    padding: 1.5rem;
    border-radius: 12px;
    border: 2px solid rgba(127, 255, 0, 0.2);
    transition: var(--transition);
    cursor: pointer;
}

.role-card:hover,
.role-card.active {
    border-color: var(--primary-color);
    background: rgba(127, 255, 0, 0.15);
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(127, 255, 0, 0.2);
}

.role-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.role-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-color);
    color: var(--bg-dark);
}

.organizer-icon {
    background: #FF6B6B;
}

.speaker-icon {
    background: #4ECDC4;
}

.attendee-icon {
    background: #FFD93D;
}

.role-features {
    list-style: none;
    padding-left: 0;
}

.role-features li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.role-features li::before {
    content: '✓';
    color: var(--primary-color);
    font-weight: bold;
}

.registration-form-container {
    background: rgba(31, 85, 85, 0.6);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid rgba(127, 255, 0, 0.3);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.registration-form-container h2 {
    margin-bottom: 1.5rem;
}

/* 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: var(--text-gray);
    margin-bottom: 2rem;
    font-size: 1rem;
}

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

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

.form-group label {
    color: var(--text-light);
    font-weight: 600;
    font-size: 0.95rem;
}

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

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(127, 255, 0, 0.1);
    box-shadow: 0 0 20px rgba(127, 255, 0, 0.2);
}

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

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

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

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-weight: normal;
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    cursor: pointer;
    accent-color: var(--primary-color);
}

.checkbox-label span {
    color: var(--text-gray);
    line-height: 1.5;
}

.checkbox-label a {
    color: var(--primary-color);
    text-decoration: underline;
}

.btn-submit {
    width: 100%;
    margin-top: 1rem;
    padding: 1rem;
    font-size: 1.1rem;
}

.form-footer {
    text-align: center;
    color: var(--text-gray);
    margin-top: 1rem;
}

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

.link-primary:hover {
    color: var(--primary-dark);
}

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

.faq-section {
    padding: 6rem 0;
    min-height: 60vh;
    background: linear-gradient(180deg, 
        rgba(15, 42, 42, 1) 0%, 
        rgba(20, 60, 40, 0.8) 30%,
        rgba(30, 80, 50, 0.6) 60%,
        rgba(15, 42, 42, 1) 100%
    );
    position: relative;
}

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

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

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

.faq-item {
    background: transparent;
    border-radius: 0;
    margin-bottom: 0;
    border: none;
    border-bottom: 1px solid rgba(127, 255, 0, 0.2);
    transition: var(--transition);
    overflow: hidden;
}

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

.faq-item:hover {
    background: rgba(31, 85, 85, 0.2);
}

.faq-item.active {
    background: rgba(31, 85, 85, 0.3);
    border-bottom-color: var(--primary-color);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.75rem 2.5rem;
    cursor: pointer;
    user-select: none;
    min-height: 80px;
}

.faq-question h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-light);
    margin: 0;
}

.faq-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    font-weight: 300;
    transition: var(--transition);
    line-height: 1;
    min-width: 40px;
    text-align: center;
}

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

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

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 2.5rem 1.75rem 2.5rem;
}

.faq-answer p {
    color: var(--text-gray);
    line-height: 1.8;
    font-size: 1rem;
    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(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

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

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

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

.news-content {
    padding: 1.5rem;
}

.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.4rem;
    margin-bottom: 0.75rem;
    color: var(--text-light);
    line-height: 1.4;
}

.news-content p {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.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;
}

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

.promote-carousel {
    width: 100%;
    overflow: hidden;
    padding: 2rem 0;
    mask-image: linear-gradient(
        to right,
        transparent,
        black 5%,
        black 95%,
        transparent
    );
    -webkit-mask-image: linear-gradient(
        to right,
        transparent,
        black 5%,
        black 95%,
        transparent
    );
}

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

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

.promote-card {
    position: relative;
    min-width: 350px;
    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;
}

/* ===================================
   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);
    }
}

@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: 1.1rem;
    }

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

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

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

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

    .footer-content {
        gap: 2rem;
    }
}

@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: 2rem;
    }
}

/* ===================================
   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(31, 85, 85, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(127, 255, 0, 0.1);
}

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

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

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

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

.login-form label {
    display: block;
    color: var(--text-light);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.login-form input {
    width: 100%;
    padding: 0.875rem 1rem;
    background: rgba(10, 26, 26, 0.6);
    border: 1px solid rgba(127, 255, 0, 0.2);
    border-radius: 8px;
    color: var(--text-light);
    font-size: 1rem;
    transition: var(--transition);
}

.login-form input: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);
}

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

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

.link-forgot:hover {
    text-decoration: underline;
}

.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(31, 85, 85, 0.95);
    padding: 0 1rem;
    color: var(--text-gray);
    font-size: 0.9rem;
}

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

.btn-social {
    flex: 1;
    padding: 0.875rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: var(--text-light);
    font-size: 0.95rem;
    cursor: not-allowed;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: var(--transition);
    opacity: 0.5;
}

.login-benefits {
    background: rgba(10, 26, 26, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 3rem;
    border: 1px solid rgba(127, 255, 0, 0.1);
}

.login-benefits h3 {
    font-size: 1.75rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

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

.login-benefits li {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.login-benefits .icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.login-benefits strong {
    display: block;
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.login-benefits p {
    color: var(--text-gray);
    font-size: 0.95rem;
    margin: 0;
}

/* ===================================
   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;
    padding: 3rem 0;
    mask-image: linear-gradient(
        to right,
        transparent,
        black 5%,
        black 95%,
        transparent
    );
}

.event-carousel-track {
    display: flex;
    gap: 2rem;
    animation: scroll-carousel 40s linear infinite;
    width: fit-content;
}

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

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

.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;
}

.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.08) translateY(-8px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 60px rgba(127, 255, 0, 0.4);
    z-index: 10;
}

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

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

.category-carousel-section {
    background: linear-gradient(180deg, var(--bg-darker) 0%, var(--bg-dark) 100%);
    padding: 3rem 0;
    overflow: hidden;
    border-top: 1px solid rgba(127, 255, 0, 0.05);
    border-bottom: 1px solid rgba(127, 255, 0, 0.05);
}

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

.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(31, 85, 85, 0.6), rgba(10, 31, 31, 0.8));
    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
   ================================== */

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

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 3rem;
    color: var(--primary-color);
    font-weight: 700;
}

.btn-secondary {
    padding: 0.85rem 2rem;
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: 30px;
    font-weight: 600;
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--bg-darker);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(127, 255, 0, 0.3);
}

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

.news-card {
    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);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    cursor: pointer;
}

.news-card.featured {
    grid-column: span 2;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
}

.news-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 50px rgba(127, 255, 0, 0.2);
}

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

.news-card.featured .news-image {
    height: 100%;
    min-height: 350px;
}

.news-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent, rgba(10, 26, 26, 0.8));
}

/* 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%);
}

.news-content {
    padding: 2rem;
}

.news-card.featured .news-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.news-category {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(127, 255, 0, 0.15);
    color: var(--primary-color);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.news-card h3 {
    color: var(--text-light);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.news-card.featured h3 {
    font-size: 2rem;
}

.news-card p {
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.news-meta {
    display: flex;
    gap: 1.5rem;
    color: var(--text-gray);
    font-size: 0.9rem;
}

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

.news-read-time::before {
    content: '⏱️ ';
}

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

@media (max-width: 968px) {
    .news-grid {
        grid-template-columns: 1fr;
    }
    
    .news-card.featured {
        grid-column: span 1;
        grid-template-columns: 1fr;
    }
    
    .news-card.featured .news-image {
        min-height: 250px;
    }
    
    .section-header {
        flex-direction: column;
        gap: 1.5rem;
        align-items: flex-start;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
}

/* ===================================
   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;
    mask-image: linear-gradient(
        to right,
        transparent,
        black 5%,
        black 95%,
        transparent
    );
}

.promote-track {
    display: flex;
    gap: 2rem;
    animation: scroll-promote 45s linear infinite;
    width: fit-content;
}

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

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

.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);
}

.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: '📅';
}

/* ===================================
   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;
    }
}
