@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Orbitron:wght@500;700;900&family=Rajdhani:wght@500;600;700&display=swap');

:root {
    --bg-dark: #07080e;
    --bg-card: rgba(13, 17, 33, 0.7);
    --border-color: rgba(0, 240, 255, 0.15);
    --border-glow: rgba(0, 240, 255, 0.4);
    --primary-cyan: #00f0ff;
    --primary-purple: #bd00ff;
    --primary-blue: #0066ff;
    --text-white: #ffffff;
    --text-muted: #8b9bb4;
    --success: #00ff66;
    --warning: #ffb800;
    --danger: #ff0055;
    --glass-grad: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
    --font-heading: 'Orbitron', 'Rajdhani', sans-serif;
    --font-body: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-white);
    font-family: var(--font-body);
    overflow-x: hidden;
    line-height: 1.6;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(189, 0, 255, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(0, 240, 255, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(0, 102, 255, 0.05) 0%, transparent 50%);
    background-attachment: fixed;
}

/* Scrollbar styling */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
    background: rgba(0, 240, 255, 0.3);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--primary-cyan);
}

/* Glassmorphism panel utility */
.glass-panel {
    background: var(--bg-card);
    backdrop-filter: blur(12px) saturate(180%);
    -webkit-backdrop-filter: blur(12px) saturate(180%);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    transition: all 0.3s ease;
}

.glass-panel:hover {
    border-color: var(--border-glow);
    box-shadow: 0 8px 32px 0 rgba(0, 240, 255, 0.1);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Glow effects */
.glow-text-cyan {
    text-shadow: 0 0 10px rgba(0, 240, 255, 0.6);
}
.glow-text-purple {
    text-shadow: 0 0 10px rgba(189, 0, 255, 0.6);
}

.neon-btn {
    display: inline-block;
    padding: 12px 28px;
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid;
    position: relative;
    overflow: hidden;
}

.neon-btn-cyan {
    color: var(--primary-cyan);
    border-color: var(--primary-cyan);
    background: rgba(0, 240, 255, 0.05);
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.2);
}

.neon-btn-cyan:hover {
    background: var(--primary-cyan);
    color: var(--bg-dark);
    box-shadow: 0 0 25px var(--primary-cyan);
}

.neon-btn-purple {
    color: var(--primary-purple);
    border-color: var(--primary-purple);
    background: rgba(189, 0, 255, 0.05);
    box-shadow: 0 0 15px rgba(189, 0, 255, 0.2);
}

.neon-btn-purple:hover {
    background: var(--primary-purple);
    color: var(--text-white);
    box-shadow: 0 0 25px var(--primary-purple);
}

/* Navigation bar */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(7, 8, 14, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 15px 0;
    transition: all 0.3s ease;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 900;
    color: var(--text-white);
    text-decoration: none;
    letter-spacing: 2px;
}

.logo span {
    background: linear-gradient(90deg, var(--primary-cyan), var(--primary-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.logo img {
    height: 40px;
    width: auto;
}

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

.nav-link {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: color 0.3s ease;
    letter-spacing: 1px;
}

.nav-link:hover, .nav-link.active {
    color: var(--primary-cyan);
    text-shadow: 0 0 8px rgba(0, 240, 255, 0.5);
}

.nav-auth {
    display: flex;
    gap: 15px;
    align-items: center;
}

.mobile-nav-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-white);
    font-size: 24px;
    cursor: pointer;
    padding: 5px;
    border-radius: 6px;
    transition: color 0.3s ease;
    z-index: 1001;
    position: relative;
}

.mobile-nav-toggle:hover {
    color: var(--primary-cyan);
}

/* Mobile auth items - hidden on desktop */
.mobile-auth-divider {
    display: none;
}

.mobile-auth-item {
    display: none;
}

.mobile-auth-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 10px 16px !important;
    font-size: 13px !important;
    border-radius: 8px;
    text-align: center;
}

.mobile-auth-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    border-radius: 8px;
    transition: color 0.3s ease;
    border: 1px solid rgba(255,255,255,0.08);
}

.mobile-auth-link:hover {
    color: var(--primary-cyan);
    border-color: rgba(0, 240, 255, 0.3);
}

/* Hero Section */
.hero-section {
    padding: 160px 0 100px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
}

.hero-content h1 {
    font-family: var(--font-heading);
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 900;
}

.hero-content h1 span {
    display: block;
    background: linear-gradient(90deg, var(--primary-cyan), var(--primary-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-tagline {
    font-size: 16px;
    color: var(--primary-cyan);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 15px;
    font-family: var(--font-heading);
    font-weight: 700;
}

.hero-desc {
    color: var(--text-muted);
    font-size: 18px;
    margin-bottom: 35px;
    max-width: 600px;
}

.hero-ctas {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

/* Countdown Timer */
.countdown-box {
    padding: 25px;
    border-radius: 16px;
    border: 1px solid rgba(0, 240, 255, 0.2);
    background: rgba(0, 0, 0, 0.4);
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.05);
}

.countdown-title {
    font-family: var(--font-heading);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    color: var(--text-muted);
    text-align: center;
}

.countdown-timer {
    display: flex;
    justify-content: space-around;
    gap: 10px;
}

.countdown-item {
    text-align: center;
    flex: 1;
}

.countdown-value {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 900;
    color: var(--primary-cyan);
    text-shadow: 0 0 10px rgba(0, 240, 255, 0.4);
    line-height: 1;
}

.countdown-label {
    font-size: 10px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-top: 5px;
    letter-spacing: 1px;
}

/* Logo Sponsors banner */
.sponsors-section {
    padding: 30px 0;
    background: rgba(5, 6, 10, 0.5);
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.sponsors-wrap {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    opacity: 0.7;
}

.sponsor-logo {
    height: 45px;
    filter: grayscale(100%) brightness(200%);
    transition: all 0.3s ease;
}

.sponsor-logo:hover {
    filter: none;
    opacity: 1;
}

/* Section general */
section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    color: var(--primary-cyan);
    text-transform: uppercase;
    font-family: var(--font-heading);
    font-size: 13px;
    letter-spacing: 4px;
    margin-bottom: 10px;
    display: inline-block;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 700;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-cyan), var(--primary-purple));
    border-radius: 2px;
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
    align-items: center;
}

.about-text p {
    color: var(--text-muted);
    font-size: 16px;
    margin-bottom: 20px;
}

.about-features {
    margin-top: 30px;
}

.about-feat-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.about-feat-icon {
    color: var(--primary-cyan);
    font-size: 20px;
    margin-top: 3px;
}

.about-feat-title {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 5px;
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.stat-card {
    padding: 30px;
    text-align: center;
    border-radius: 16px;
}

.stat-num {
    font-family: var(--font-heading);
    font-size: 40px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-cyan), var(--primary-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 13px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Kategori Lomba Section */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 30px;
}

.competition-card {
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

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

.comp-icon {
    font-size: 32px;
    color: var(--primary-cyan);
}

.comp-badge {
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 10px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    border: 1px solid;
}

.badge-cyan {
    border-color: var(--primary-cyan);
    color: var(--primary-cyan);
    background: rgba(0, 240, 255, 0.1);
}

.badge-purple {
    border-color: var(--primary-purple);
    color: var(--primary-purple);
    background: rgba(189, 0, 255, 0.1);
}

.badge-blue {
    border-color: var(--primary-blue);
    color: var(--primary-blue);
    background: rgba(0, 102, 255, 0.1);
}

.comp-title {
    font-family: var(--font-heading);
    font-size: 22px;
    margin-bottom: 15px;
    font-weight: 700;
}

.comp-desc {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 25px;
    flex-grow: 1;
}

.comp-requirements {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 20px;
    margin-bottom: 30px;
}

.comp-req-title {
    font-family: var(--font-heading);
    font-size: 12px;
    text-transform: uppercase;
    color: var(--primary-cyan);
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.comp-req-list {
    list-style: none;
    font-size: 13px;
    color: var(--text-muted);
}

.comp-req-list li {
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.comp-req-list li::before {
    content: '▶';
    font-size: 8px;
    color: var(--primary-purple);
}

/* Hadiah Lomba Section */
.prizes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.prize-card {
    text-align: center;
    padding: 50px 30px;
    position: relative;
    overflow: hidden;
}

.prize-card::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 70%);
}

.prize-rank {
    font-size: 60px;
    margin-bottom: 20px;
}

.prize-title {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}

.prize-detail {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 20px;
}

.prize-amount {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 900;
    color: var(--primary-cyan);
    text-shadow: 0 0 10px rgba(0, 240, 255, 0.3);
}

/* Award badges section */
.badges-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.award-badge {
    padding: 15px 30px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-family: var(--font-heading);
    font-weight: 700;
    border-radius: 50px;
    font-size: 14px;
}

/* Gallery Section (Masonry) */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    grid-auto-rows: 220px;
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    cursor: pointer;
}

.gallery-item.tall {
    grid-row: span 2;
}

.gallery-item.wide {
    grid-column: span 2;
}

.gallery-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #13172c, #07080e);
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.gallery-placeholder i {
    font-size: 40px;
    color: rgba(0, 240, 255, 0.2);
    transition: all 0.3s ease;
}

.gallery-item:hover .gallery-placeholder i {
    color: var(--primary-cyan);
    transform: scale(1.1);
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

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

.gallery-caption h4 {
    font-family: var(--font-heading);
    font-size: 14px;
    color: var(--primary-cyan);
    margin-bottom: 5px;
}

.gallery-caption p {
    font-size: 12px;
    color: var(--text-muted);
}

/* Venue Section */
.venue-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: stretch;
}

.venue-details {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.venue-info-box {
    margin-bottom: 25px;
}

.venue-title {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-cyan);
    margin-bottom: 10px;
}

.venue-address {
    color: var(--text-muted);
    font-size: 15px;
    margin-bottom: 20px;
}

.venue-services {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.service-item {
    display: flex;
    gap: 10px;
    font-size: 13px;
    color: var(--text-muted);
}

.service-item i {
    color: var(--primary-cyan);
}

.venue-map-wrap {
    height: 100%;
    min-height: 350px;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.venue-map-wrap iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Pricing Section */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.pricing-card {
    padding: 50px 30px;
    display: flex;
    flex-direction: column;
    position: relative;
}

.pricing-card.popular {
    border-color: var(--primary-purple);
    box-shadow: 0 8px 32px 0 rgba(189, 0, 255, 0.1);
}

.pricing-card.popular::after {
    content: 'RECOMMENDED';
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary-purple);
    color: var(--text-white);
    font-size: 9px;
    padding: 3px 8px;
    border-radius: 20px;
    font-family: var(--font-heading);
    font-weight: 700;
}

.price-name {
    font-family: var(--font-heading);
    font-size: 18px;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-bottom: 15px;
}

.price-amount {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 900;
    color: var(--text-white);
    line-height: 1.1;
    margin-bottom: 25px;
}

.price-amount span {
    font-size: 14px;
    color: var(--text-muted);
}

.price-benefits {
    list-style: none;
    margin-bottom: 40px;
    flex-grow: 1;
}

.price-benefits li {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.price-benefits li i {
    color: var(--primary-cyan);
}

/* Timeline Section (Roadmap) */
.timeline-wrap {
    position: relative;
    padding: 40px 0;
}

.timeline-line {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-cyan), var(--primary-purple));
    transform: translateY(-50%);
    z-index: 1;
}

.timeline-items {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    position: relative;
    z-index: 2;
    gap: 20px;
}

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

.timeline-node {
    width: 24px;
    height: 24px;
    background: var(--bg-dark);
    border: 4px solid var(--primary-cyan);
    border-radius: 50%;
    margin: 0 auto 20px;
    position: relative;
    box-shadow: 0 0 10px var(--primary-cyan);
    z-index: 3;
    transition: all 0.3s ease;
}

.timeline-item:hover .timeline-node {
    transform: scale(1.3);
    border-color: var(--primary-purple);
    box-shadow: 0 0 15px var(--primary-purple);
}

.timeline-date {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    color: var(--primary-cyan);
    margin-bottom: 8px;
}

.timeline-title {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 500;
}

/* FAQ Section */
.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    padding: 20px 25px;
    border-radius: 12px;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
}

.faq-answer {
    margin-top: 15px;
    font-size: 14px;
    color: var(--text-muted);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 15px;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-icon {
    font-size: 18px;
    color: var(--primary-cyan);
    transition: transform 0.3s ease;
}

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

/* Forms general */
.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-family: var(--font-heading);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    color: var(--text-muted);
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-white);
    font-family: var(--font-body);
    font-size: 14px;
    transition: all 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-cyan);
    box-shadow: 0 0 10px rgba(0, 240, 255, 0.2);
}

select.form-control {
    background-image: linear-gradient(45deg, transparent 50%, var(--primary-cyan) 50%), linear-gradient(135deg, var(--primary-cyan) 50%, transparent 50%);
    background-position: calc(100% - 20px) calc(1em + 2px), calc(100% - 15px) calc(1em + 2px);
    background-size: 5px 5px, 5px 5px;
    background-repeat: no-repeat;
    appearance: none;
}

select.form-control option {
    background-color: #111827 !important;
    color: #ffffff !important;
}

.form-text {
    font-size: 11px;
    color: var(--text-muted);
    margin-top: 5px;
}

/* File Upload customization */
.file-upload-wrapper {
    position: relative;
    border: 2px dashed rgba(0, 240, 255, 0.2);
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    background: rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
}

.file-upload-wrapper:hover {
    border-color: var(--primary-cyan);
    background: rgba(0, 240, 255, 0.02);
}

.file-upload-icon {
    font-size: 28px;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.file-upload-wrapper input[type="file"] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

/* Auth Cards */
.auth-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 20px;
}

.auth-card {
    width: 100%;
    max-width: 480px;
    padding: 40px;
}

.auth-header {
    text-align: center;
    margin-bottom: 30px;
}

.auth-title {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 10px;
}

.auth-desc {
    color: var(--text-muted);
    font-size: 14px;
}

.auth-footer {
    text-align: center;
    margin-top: 25px;
    font-size: 13px;
    color: var(--text-muted);
}

.auth-footer a {
    color: var(--primary-cyan);
    text-decoration: none;
}

/* Dashboard layouts */
.dashboard-grid {
    display: grid;
    grid-template-columns: 280fr 920fr;
    gap: 30px;
    min-height: calc(100vh - 120px);
    padding-top: 100px;
}

.dash-sidebar {
    height: fit-content;
    padding: 30px 20px;
}

.dash-user-profile {
    text-align: center;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 25px;
}

.dash-user-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-cyan), var(--primary-purple));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 900;
    margin: 0 auto 15px;
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.3);
}

.dash-user-name {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
}

.dash-user-role {
    font-size: 11px;
    text-transform: uppercase;
    color: var(--primary-cyan);
    letter-spacing: 2px;
}

.dash-nav {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.dash-nav-link {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 18px;
    border-radius: 8px;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.dash-nav-link:hover, .dash-nav-link.active {
    background: rgba(0, 240, 255, 0.05);
    color: var(--primary-cyan);
    border-left: 3px solid var(--primary-cyan);
}

/* Dashboard main content */
.dash-main {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.dash-section-title {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}

/* Dashboard statistic cards */
.dash-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.dash-stat-card {
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.dash-stat-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    background: rgba(255, 255, 255, 0.05);
}

.dash-stat-icon.cyan { color: var(--primary-cyan); background: rgba(0, 240, 255, 0.05); }
.dash-stat-icon.purple { color: var(--primary-purple); background: rgba(189, 0, 255, 0.05); }
.dash-stat-icon.success { color: var(--success); background: rgba(0, 255, 102, 0.05); }
.dash-stat-icon.warning { color: var(--warning); background: rgba(255, 184, 0, 0.05); }

.dash-stat-info {
    display: flex;
    flex-direction: column;
}

.dash-stat-num {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 900;
    line-height: 1;
}

.dash-stat-label {
    font-size: 11px;
    color: var(--text-muted);
    text-transform: uppercase;
}

/* Custom Table style */
.table-responsive {
    overflow-x: auto;
    width: 100%;
}

.custom-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    font-size: 14px;
}

.custom-table th {
    font-family: var(--font-heading);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary-cyan);
    padding: 15px 20px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.05);
}

.custom-table td {
    padding: 15px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
}

.custom-table tr:hover td {
    color: var(--text-white);
    background: rgba(255, 255, 255, 0.01);
}

/* Status Badges */
.status-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 1px solid;
    text-align: center;
}

.status-badge.unpaid {
    border-color: var(--danger);
    color: var(--danger);
    background: rgba(255, 0, 85, 0.1);
}

.status-badge.pending_verification {
    border-color: var(--warning);
    color: var(--warning);
    background: rgba(255, 184, 0, 0.1);
}

.status-badge.verified {
    border-color: var(--success);
    color: var(--success);
    background: rgba(0, 255, 102, 0.1);
}

.status-badge.rejected {
    border-color: var(--danger);
    color: var(--danger);
    background: rgba(255, 0, 85, 0.1);
}

/* Alerts box */
.alert {
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 25px;
    border: 1px solid;
    font-size: 14px;
}

.alert-success {
    background: rgba(0, 255, 102, 0.1);
    border-color: var(--success);
    color: var(--success);
}

.alert-danger {
    background: rgba(255, 0, 85, 0.1);
    border-color: var(--danger);
    color: var(--danger);
}

/* Footer Section */
footer {
    background: #040509;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 80px 0 30px;
    color: var(--text-muted);
}

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

.footer-logo-desc p {
    font-size: 14px;
    margin-top: 15px;
    max-width: 320px;
}

.footer-title {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 20px;
    letter-spacing: 1px;
}

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

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

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-cyan);
}

.footer-contact {
    font-size: 14px;
}

.footer-contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.footer-contact-item i {
    color: var(--primary-cyan);
    margin-top: 3px;
}

.footer-socials {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.footer-social-link {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social-link:hover {
    background: var(--primary-cyan);
    color: var(--bg-dark);
    box-shadow: 0 0 10px var(--primary-cyan);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    padding-top: 30px;
    text-align: center;
    font-size: 12px;
}

/* Detail Section Grid (Panitia view) */
.detail-grid {
    display: grid;
    grid-template-columns: 7fr 5fr;
    gap: 30px;
}

.detail-pane {
    padding: 30px;
}

.detail-label {
    font-family: var(--font-heading);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary-cyan);
    margin-bottom: 5px;
}

.detail-value {
    font-size: 15px;
    color: var(--text-white);
    margin-bottom: 20px;
}

.file-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    border-radius: 8px;
    background: rgba(0, 240, 255, 0.05);
    border: 1px solid rgba(0, 240, 255, 0.2);
    color: var(--primary-cyan);
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    transition: all 0.3s ease;
}

.file-link:hover {
    background: var(--primary-cyan);
    color: var(--bg-dark);
    box-shadow: 0 0 10px var(--primary-cyan);
}

.proof-img-wrap {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    background: #000;
    display: flex;
    justify-content: center;
    max-height: 400px;
    margin-bottom: 20px;
}

.proof-img-wrap img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

/* Mobile First Responsiveness */
@media (max-width: 1200px) {
    .nav-menu {
        gap: 15px;
    }
    .nav-link {
        font-size: 13px;
        letter-spacing: 0.5px;
    }
    .nav-auth {
        gap: 10px;
    }
}

@media (max-width: 991px) {
    /* === Mobile Navbar === */
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(7, 8, 14, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 15px 20px 20px;
        gap: 5px;
        border-bottom: 1px solid var(--border-color);
        border-top: 1px solid rgba(255,255,255,0.04);
        z-index: 999;
        box-shadow: 0 10px 40px rgba(0,0,0,0.5);
    }

    .nav-menu.nav-menu-open {
        display: flex;
    }

    .nav-menu .nav-link {
        display: block;
        padding: 12px 15px;
        font-size: 14px;
        border-radius: 8px;
        letter-spacing: 0.5px;
    }

    .nav-menu .nav-link:hover {
        background: rgba(0, 240, 255, 0.05);
    }

    /* Show mobile-auth items inside dropdown */
    .mobile-auth-divider {
        display: block;
        height: 1px;
        background: rgba(255, 255, 255, 0.07);
        margin: 10px 0;
        list-style: none;
    }

    .mobile-auth-item {
        display: flex;
    }

    /* Hide desktop nav-auth on mobile */
    .nav-auth {
        display: none;
    }

    .mobile-nav-toggle {
        display: block;
    }

    .dashboard-grid {
        grid-template-columns: 1fr;
        padding-top: 90px;
        gap: 20px;
        min-width: 0;
        overflow: hidden;
    }
    .dash-sidebar {
        padding: 20px;
        min-width: 0;
        overflow: hidden;
    }
    .dash-user-profile {
        display: flex;
        align-items: center;
        gap: 15px;
        text-align: left;
        padding-bottom: 15px;
        margin-bottom: 0;
    }
    .dash-user-avatar {
        width: 50px;
        height: 50px;
        font-size: 18px;
        margin: 0;
        flex-shrink: 0;
    }
    .dash-user-name {
        font-size: 14px;
        margin-bottom: 2px;
    }
    .dash-user-role {
        font-size: 10px;
    }
    .dash-nav {
        flex-direction: row;
        gap: 8px;
        padding-top: 15px;
        border-top: 1px solid rgba(255,255,255,0.05);
        margin-top: 15px;
        overflow-x: auto;
        white-space: nowrap;
        padding-bottom: 8px;
        -webkit-overflow-scrolling: touch;
    }
    .dash-nav::-webkit-scrollbar {
        height: 4px;
    }
    .dash-nav::-webkit-scrollbar-track {
        background: rgba(255, 255, 255, 0.02);
        border-radius: 10px;
    }
    .dash-nav::-webkit-scrollbar-thumb {
        background: rgba(0, 240, 255, 0.2);
        border-radius: 10px;
    }
    .dash-nav li {
        flex: 0 0 auto;
    }
    .dash-nav-link {
        padding: 8px 16px;
        font-size: 12px;
        gap: 8px;
        justify-content: center;
        align-items: center;
        flex-direction: row;
        display: inline-flex;
    }
    .hero-grid {
        grid-template-columns: 1fr;
    }
    .about-grid {
        grid-template-columns: 1fr;
    }
    .venue-grid {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .detail-grid {
        grid-template-columns: 1fr;
    }
    .timeline-items {
        grid-template-columns: 1fr;
    }
    .timeline-line {
        display: none;
    }
    .timeline-node {
        margin: 15px auto 10px;
    }
}

@media (max-width: 767px) {
    .hero-content h1 {
        font-size: 32px;
    }
    .section-title {
        font-size: 28px;
    }

    /* === Auth Card === */
    .auth-card {
        padding: 25px;
    }

    /* === Dashboard Mobile === */
    .dashboard-grid {
        padding-top: 85px;
        gap: 15px;
    }

    .dash-sidebar {
        padding: 15px;
    }

    .dash-nav-link {
        padding: 8px 12px;
        font-size: 11px;
        flex-direction: row;
        justify-content: flex-start;
        white-space: nowrap;
    }

    .dash-stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .dash-stat-card {
        padding: 15px;
    }

    .dash-stat-num {
        font-size: 28px !important;
    }

    .dash-section-title {
        font-size: 18px;
    }

    /* Fix all grid layouts inside dash-main on mobile */
    .dash-main [style*="grid-template-columns"]:not(.dash-stats-grid) {
        grid-template-columns: 1fr !important;
    }

    /* Detail grid pane padding */
    .detail-pane {
        padding: 20px;
    }

    /* Proof image wrap */
    .proof-img-wrap {
        max-height: 250px;
    }

    /* Status badge wrapping */
    .status-badge {
        display: inline-block;
        text-align: center;
    }

    /* Registration entry flex wrap */
    .glass-panel [style*="display: flex"][style*="justify-content: space-between"] {
        flex-direction: column;
        align-items: flex-start !important;
        gap: 10px !important;
    }

    /* Table overflow */
    .table-responsive {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    /* Nav container position relative for dropdown */
    .nav-container {
        position: relative;
    }
}

@media (max-width: 480px) {
    .dash-nav {
        gap: 6px;
    }

    .dash-nav-link {
        padding: 7px 8px;
        font-size: 10px;
    }

    .dash-stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .neon-btn {
        font-size: 12px;
        padding: 9px 14px;
    }

    .glass-panel {
        padding: 18px !important;
    }

    .dash-section-title {
        font-size: 16px;
    }

    .detail-pane {
        padding: 15px;
    }
}
