/**
 * =============================================
 * HEXARUN - LUSTRUM 7 STYLESHEET
 * Modern, Sporty, Futuristic Design
 * Turquoise/Teal Theme
 * =============================================
 */
 /* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Nunito:wght@400;600;700;800;900&display=swap');

/* Lanjut ke CSS lainnya... */
html {
  visibility: hidden;
}
/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Warna dari gambar baju - turquoise/teal gradient */
    --primary-turquoise: #5dd9c1;
    --primary-teal: #2d9b96;
    --dark-teal: #1a7872;
    --accent-cyan: #40c9b8;
    --light-turquoise: #7de4d0;
    
    /* Warna pendukung */
    --text-dark: #1a1a2e;
    --text-light: #ffffff;
    --bg-dark: #16213e;
    --bg-light: #f8f9fa;
    
    /* Shadow dengan tone turquoise */
    --shadow-sm: 0 2px 8px rgba(45, 155, 150, 0.15);
    --shadow-md: 0 4px 16px rgba(45, 155, 150, 0.25);
    --shadow-lg: 0 8px 32px rgba(45, 155, 150, 0.35);
    
    /* Gradient sesuai baju */
    --gradient-primary: linear-gradient(180deg, #5dd9c1 0%, #2d9b96 50%, #1a7872 100%);
    --gradient-secondary: linear-gradient(135deg, #40c9b8 0%, #2d9b96 100%);
    --gradient-accent: linear-gradient(135deg, #7de4d0 0%, #5dd9c1 100%);
}


body {
    visibility: visible;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-dark);
    background: var(--bg-light);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ===== UTILITIES ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
/* ===== SYARAT & KETENTUAN STYLES ===== */

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-md);
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -1px;
}

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

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-menu a:hover {
    color: var(--primary-teal);
}

.nav-menu a.active {
    color: var(--primary-teal);
}

.nav-menu a.active::after {
    width: 100%;
}

/* Mobile Menu Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    position: relative;
    user-select: none;
    z-index: 1001;
    pointer-events: auto;
}



.mobile-toggle span {
    width: 25px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* ===== HERO SECTION ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, #5dd9c1 0%, #2d9b96 50%, #1a7872 100%);
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M 40 0 L 0 0 0 40" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    text-align: center;
    color: var(--text-light);
    z-index: 2;
    position: relative;
    animation: fadeInUp 1s ease;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    margin-bottom: 1.5rem;
    font-weight: 600;
    letter-spacing: 1px;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.hero h1 {
    font-size: 4.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    line-height: 1.1;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 300;
    opacity: 0.95;
}

.hero-tagline {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

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

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

.btn-primary {
    background: white;
    color: var(--primary-teal);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-gradient {
    background: var(--gradient-primary);
    color: white;
}

.btn-gradient:hover {
    background: var(--gradient-secondary);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

/* ===== SECTION GENERAL ===== */
section {
    padding: 5rem 0;
}

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

.section-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* ===== EVENT SECTION ===== */
.event-section {
    background: white;
}

.event-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.event-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

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

.event-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: white;
}

.event-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.event-card p {
    color: #666;
    line-height: 1.8;
}

.event-image-placeholder {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, rgba(93, 217, 193, 0.1) 0%, rgba(45, 155, 150, 0.1) 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    position: relative;
    overflow: hidden;
}

.event-image-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.event-image-placeholder .event-icon {
    position: absolute;
    width: 80px;
    height: 80px;
    font-size: 3rem;
}

.event-meta {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin: 1rem 0;
    padding: 1rem 0;
    border-top: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
}
.loading {
            text-align: center;
            padding: 2rem;
        }

        .spinner-large {
            width: 60px;
            height: 60px;
            border: 5px solid rgba(147, 51, 234, 0.2);
            border-top-color: #9333EA;
            border-radius: 50%;
            animation: spin 1s linear infinite;
            margin: 0 auto 1rem;
        }

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

        .form-input {
            width: 100%;
            padding: 1rem;
            border: 2px solid #e5e7eb;
            border-radius: 12px;
            font-size: 1rem;
            transition: all 0.3s ease;
            box-sizing: border-box;
        }

        .form-input:focus {
            outline: none;
            border-color: #9333EA;
            box-shadow: 0 0 0 3px rgba(147, 51, 234, 0.1);
        }
.event-meta span {
    font-size: 0.9rem;
    color: #666;
}

.event-card .btn {
    width: 100%;
    text-align: center;
    margin-top: 1rem;
}

/* ===== HEXARUN PAGE ===== */
.hexarun-hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    background: var(--gradient-primary);
    color: white;
    padding-top: 100px;
}

.hexarun-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.info-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 15px;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.info-box h4 {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-bottom: 0.5rem;
}

.info-box p {
    font-size: 1.5rem;
    font-weight: 700;
}

/* ===== DETAILS SECTION ===== */
.details-section {
    padding: 4rem 0;
}

.details-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.detail-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: var(--shadow-sm);
    margin-bottom: 2rem;
    margin-right: -1px;
    
}
.detail-cardo {
    padding: 2.5rem;
    margin-left: -40px;
    margin-top: -40px;
    margin-bottom: -40px;
}

.detail-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}
.detail-cardo h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.detail-card ul {
    list-style: none;
    padding: 0;
}
.detail-cardo ul {
    list-style: none;
    padding: 0;
}

.detail-card li {
    padding: 0.8rem 0;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
    gap: 1rem;
}
.detail-cardo li {
    padding: 0.8rem 0;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.detail-card li:last-child {
    border-bottom: none;
}
.detail-cardo li:last-child {
    border-bottom: none;
}

.detail-card li::before {
    content: '✓';
    width: 25px;
    height: 25px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    flex-shrink: 0;
}
.detail-cardo li::before {
    content: '✓';
    width: 25px;
    height: 25px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    flex-shrink: 0;
}

/* ===== SIZE CHART ===== */
.size-chart {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
}

.size-chart th,
.size-chart td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #f0f0f0;
}

.size-chart th {
    background: var(--gradient-primary);
    color: white;
    font-weight: 600;
}

.size-chart tr:hover {
    background: #f8f9fa;
}

/* ===== REGISTRATION SIDEBAR ===== */


.registration-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
    border: 2px solid transparent;
    background: linear-gradient(white, white) padding-box,
                var(--gradient-primary) border-box;
}

.registration-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

.form-control {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-teal);
    box-shadow: 0 0 0 3px rgba(45, 155, 150, 0.1);
}

.form-control:hover {
    border-color: var(--primary-turquoise);
}

select.form-control {
    cursor: pointer;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
}

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

.checkbox-group label {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
}

.price-tag {
    text-align: center;
    margin: 1.5rem 0;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(93, 217, 193, 0.1) 0%, rgba(45, 155, 150, 0.1) 100%);
    border-radius: 12px;
}

.price-tag .amount {
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ===== ALERT ===== */
.alert {
    padding: 1rem;
    border-radius: 12px;
    margin-bottom: 1rem;
    display: none;
}

.alert.show {
    display: block;
    animation: slideDown 0.3s ease;
}

.alert-error {
    background: #fee;
    color: #c33;
    border: 2px solid #fcc;
}

.alert-success {
    background: #efe;
    color: #3c3;
    border: 2px solid #cfc;
}

.alert-info {
    background: #eef;
    color: #33c;
    border: 2px solid #ccf;
}

/* ===== PAYMENT PAGE ===== */
.payment-container {
    max-width: 600px;
    margin: 150px auto 50px;
    padding: 0 20px;
}

.payment-card {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: var(--shadow-lg);
}

.payment-methods {
    display: grid;
    gap: 1rem;
    margin: 2rem 0;
}

.payment-method {
    padding: 1.5rem;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.payment-method:hover {
    border-color: var(--primary-teal);
    background: rgba(45, 155, 150, 0.05);
}

.payment-method.selected {
    border-color: var(--primary-teal);
    background: rgba(45, 155, 150, 0.1);
}

.payment-method input[type="radio"] {
    width: 20px;
    height: 20px;
    accent-color: var(--primary-teal);
}

/* ===== SUCCESS PAGE ===== */
.success-container {
    max-width: 600px;
    margin: 150px auto 50px;
    padding: 0 20px;
    text-align: center;
}

.success-icon {
    width: 100px;
    height: 100px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 3rem;
    color: white;
    animation: scaleIn 0.5s ease;
}

.bib-display {
    font-size: 5rem;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 2rem 0;
}

/* ===== FOOTER ===== */
.footer {
    background: linear-gradient(135deg, var(--dark-teal) 0%, var(--text-dark) 100%);
    color: white;
    padding: 3rem 0 1.5rem;
    margin-top: 4rem;
}

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

.footer-logo {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.footer p {
    opacity: 0.8;
    margin: 0.5rem 0;
}

.footer-social {
    margin-top: 1.5rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
}

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

.social-link:hover {
    background: white;
    color: var(--primary-teal);
    transform: translateY(-3px);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes scaleIn {
    from {
        transform: scale(0);
    }
    to {
        transform: scale(1);
    }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 70%;
        height: calc(100vh - 70px);
        background: white;
        flex-direction: column;
        padding: 2rem;
        box-shadow: var(--shadow-lg);
        transition: right 0.3s ease;
        align-items: flex-start;
        z-index: 1000;
    }

    .nav-menu.active {
        right: 0;
        pointer-events: auto;
    }

    .mobile-toggle {
        display: flex;
        pointer-events: auto;
        user-select: none;
    }

    .hero h1 {
        font-size: 3rem;
    }

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

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

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

    .registration-sidebar {
     position: sticky;
    top: 0;
    }

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

    .timeline::before {
        left: 10px;
    }

    .timeline-dot {
        left: 1px;
    }

    .timeline-item {
        padding-left: 50px;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2rem;
        margin-top: 0;
    }

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

    .detail-card,
    .registration-card,
    .payment-card {
        padding: 1.5rem;
    }

    /* Responsive untuk bukti pembayaran */
    .payment-proof-section {
        padding: 1rem;
    }

    .payment-proof-container {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .payment-proof-container img,
    .payment-proof-container iframe {
        max-width: 100%;
        height: auto;
    }

    /* Responsive untuk form input */
    .form-control {
        font-size: 16px; /* Prevent zoom on iOS */
        padding: 0.8rem;
    }

    /* Responsive untuk table */
    .size-chart {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .size-chart th,
    .size-chart td {
        padding: 0.5rem;
        font-size: 0.85rem;
        white-space: nowrap;
    }

    /* Event grid responsive */
    .event-grid {
        grid-template-columns: 1fr;
    }

    /* Timeline responsive */
    .timeline-content {
        padding: 1rem;
    }

    .timeline-content h3 {
        font-size: 1.1rem;
    }
}

/* ===== LOADING SPINNER ===== */
.spinner {
    border: 3px solid rgba(45, 155, 150, 0.2);
    border-top: 3px solid var(--primary-teal);
    border-radius: 50%;
    width: 30px;
    height: 30px;
    animation: spin 1s linear infinite;
    margin: 0 auto;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* ===== TIMELINE SECTION ===== */
.timeline-section {
    background: white;
    padding: 5rem 0;
}

.timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--gradient-primary);
}

.timeline-item {
    position: relative;
    padding-left: 60px;
    margin-bottom: 3rem;
}

.timeline-dot {
    position: absolute;
    left: 11px;
    top: 0;
    width: 20px;
    height: 20px;
    background: white;
    border: 4px solid var(--primary-teal);
    border-radius: 50%;
    z-index: 2;
}

.timeline-content {
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    border: 2px solid #f0f0f0;
    transition: all 0.3s ease;
}

.timeline-content:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--primary-turquoise);
    transform: translateX(5px);
}

.timeline-date {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    background: var(--gradient-accent);
    color: white;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
}

.timeline-content h3 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: #666;
    font-size: 0.95rem;
}

/* =============================================
   INDEX PAGE STYLES
   ============================================= */

/* ===== INDEX HERO ===== */
.index-hero {
    background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 20px 80px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.index-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 80%, rgba(93,217,193,.18) 0%, transparent 70%);
}

.hero-particles span {
    position: absolute;
    border-radius: 50%;
    background: rgba(93,217,193,.45);
    animation: floatP 6s ease-in-out infinite;
}

@keyframes floatP {
    0%,100% { transform: translateY(0) scale(1); opacity: .4; }
    50% { transform: translateY(-30px) scale(1.5); opacity: 1; }
}

.index-hero-inner {
    position: relative;
    z-index: 2;
    animation: fadeInUp .9s ease both;
}

.index-hero-badge {
    display: inline-block;
    padding: .45rem 1.4rem;
    background: rgba(255,255,255,.12);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    border: 1.5px solid rgba(255,255,255,.25);
    color: rgba(255,255,255,.85);
    font-size: .8rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.index-hero-title {
    font-family: 'Bebas Neue', cursive;
    font-size: clamp(3.5rem, 10vw, 7rem);
    color: #fff;
    letter-spacing: 6px;
    line-height: 1;
    margin-bottom: .4rem;
}

.index-hero-title span { color: #5dd9c1; }

.index-hero-subtitle {
    font-size: clamp(1rem, 3vw, 1.4rem);
    color: rgba(255,255,255,.75);
    font-weight: 600;
    margin-bottom: .8rem;
}

.index-hero-tagline {
    font-size: clamp(.9rem, 2.5vw, 1.1rem);
    color: rgba(255,255,255,.6);
    max-width: 560px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
}

.hero-cta-row {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-btn-primary {
    padding: 16px 36px;
    background: linear-gradient(135deg, #5dd9c1, #2d9b96);
    color: #fff;
    border: none;
    border-radius: 50px;
    font-family: 'Bebas Neue', cursive;
    font-size: 1.1rem;
    letter-spacing: 2px;
    cursor: pointer;
    text-decoration: none;
    transition: all .2s;
    box-shadow: 0 6px 20px rgba(45,155,150,.4);
    display: inline-block;
}

.hero-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(45,155,150,.5);
}

.hero-btn-outline {
    padding: 14px 36px;
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,.35);
    border-radius: 50px;
    font-family: 'Bebas Neue', cursive;
    font-size: 1.1rem;
    letter-spacing: 2px;
    cursor: pointer;
    text-decoration: none;
    transition: all .2s;
    display: inline-block;
}

.hero-btn-outline:hover {
    border-color: #5dd9c1;
    color: #5dd9c1;
    transform: translateY(-3px);
}

/* ===== STATS BAR ===== */
.stats-bar {
    background: linear-gradient(135deg, #0f2027, #1a3040);
    padding: 1.5rem 20px;
    border-bottom: 2px solid rgba(93,217,193,.2);
}

.stats-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

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

.stat-num {
    font-family: 'Bebas Neue', cursive;
    font-size: 2rem;
    color: #5dd9c1;
    letter-spacing: 2px;
    line-height: 1;
}

.stat-label {
    font-size: .72rem;
    color: rgba(255,255,255,.55);
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 2px;
}

/* ===== INDEX EVENTS SECTION ===== */
.index-events-section {
    background: #f0faf9;
    padding: 70px 20px;
}

.index-section-title {
    font-family: 'Bebas Neue', cursive;
    font-size: clamp(2rem, 5vw, 3.2rem);
    letter-spacing: 3px;
    color: var(--dark-teal);
    margin-bottom: .5rem;
}

.index-section-title span { color: var(--primary-turquoise); }

.index-section-sub {
    color: #5d9e9b;
    font-size: 1rem;
    max-width: 520px;
    margin: 0 auto;
    font-weight: 600;
}

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

.index-event-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.index-event-card {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(45,155,150,.1);
    border: 2px solid transparent;
    transition: all .25s;
}

.index-event-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-turquoise);
    box-shadow: 0 12px 36px rgba(45,155,150,.2);
}

.index-event-card-top {
    height: 180px;
    background: linear-gradient(135deg, #0f2027, #2c5364);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.index-event-card-top::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 100%, rgba(93,217,193,.25) 0%, transparent 65%);
}

.index-event-emoji {
    font-size: 4rem;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 4px 12px rgba(0,0,0,.3));
}

.index-event-card-body { padding: 1.5rem; }

.index-event-card-body h3 {
    font-family: 'Bebas Neue', cursive;
    font-size: 1.5rem;
    letter-spacing: 2px;
    color: var(--dark-teal);
    margin-bottom: .6rem;
}

.index-event-card-body p {
    color: #666;
    font-size: .9rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.index-event-meta { margin-bottom: 1.2rem; }

.index-event-meta-item {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: .82rem;
    color: #5d9e9b;
    font-weight: 600;
    padding: .3rem 0;
}

.index-event-btn {
    display: block;
    text-align: center;
    padding: 11px;
    background: linear-gradient(135deg, #5dd9c1, #2d9b96);
    color: #fff;
    border-radius: 14px;
    text-decoration: none;
    font-family: 'Bebas Neue', cursive;
    font-size: 1rem;
    letter-spacing: 2px;
    transition: all .2s;
}

.index-event-btn:hover {
    box-shadow: 0 6px 18px rgba(45,155,150,.35);
    transform: translateY(-2px);
}

/* ===== INDEX TIMELINE SECTION ===== */
.index-timeline-section {
    background: linear-gradient(135deg, #0f2027, #203a43);
    padding: 70px 20px;
}

.index-timeline-section .index-section-title { color: #fff; }
.index-timeline-section .index-section-sub { color: rgba(255,255,255,.55); }

.index-timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.index-timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, #5dd9c1, #2d9b96, #1a7872);
    border-radius: 3px;
}

.index-timeline-item {
    position: relative;
    padding-left: 60px;
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all .5s ease;
}

.index-timeline-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.index-timeline-dot {
    position: absolute;
    left: 11px;
    top: 0;
    width: 20px;
    height: 20px;
    background: #5dd9c1;
    border: 4px solid #0f2027;
    border-radius: 50%;
    z-index: 2;
    box-shadow: 0 0 0 4px rgba(93,217,193,.25);
}

.index-timeline-content {
    background: rgba(255,255,255,.06);
    backdrop-filter: blur(10px);
    padding: 1.2rem 1.5rem;
    border-radius: 16px;
    border: 1.5px solid rgba(93,217,193,.2);
    transition: all .25s;
}

.index-timeline-content:hover {
    border-color: rgba(93,217,193,.5);
    background: rgba(255,255,255,.1);
    transform: translateX(6px);
}

.index-timeline-date {
    display: inline-block;
    padding: 3px 12px;
    background: linear-gradient(135deg, #5dd9c1, #2d9b96);
    color: #fff;
    border-radius: 20px;
    font-size: .75rem;
    font-weight: 800;
    letter-spacing: .5px;
    margin-bottom: .6rem;
}

.index-timeline-content h3 {
    font-family: 'Bebas Neue', cursive;
    font-size: 1.3rem;
    letter-spacing: 2px;
    color: #fff;
    margin-bottom: .3rem;
}

.index-timeline-content p {
    color: rgba(255,255,255,.55);
    font-size: .85rem;
}

@media (max-width: 768px) {
    .stats-inner { gap: 1.5rem; }
    .index-events-section { padding: 50px 16px; }
    .index-timeline-section { padding: 50px 16px; }
    .hero-cta-row { flex-direction: column; align-items: center; }
    .hero-btn-primary, .hero-btn-outline { width: 100%; max-width: 280px; text-align: center; }
}

@media (max-width: 480px) {
    .index-event-grid { grid-template-columns: 1fr; }
    .stats-inner { gap: 1rem; }
    .stat-num { font-size: 1.6rem; }
}


/* =============================================
   CONTACT PAGE (HUBUNGI SAYA) STYLES
   ============================================= */

.contact-hero {
    background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 20px 60px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.contact-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 80%, rgba(93,217,193,.18) 0%, transparent 70%);
}

.contact-hero-particles span {
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(93,217,193,.5);
    animation: floatP 6s ease-in-out infinite;
}

.contact-hero-title {
    font-family: 'Bebas Neue', cursive;
    font-size: clamp(2.8rem, 7vw, 5rem);
    color: #fff;
    letter-spacing: 4px;
    line-height: 1;
    position: relative;
}

.contact-hero-title span { color: #5dd9c1; }

.contact-hero-sub {
    color: rgba(255,255,255,.7);
    font-size: clamp(.95rem, 2.5vw, 1.1rem);
    margin-top: .8rem;
    position: relative;
}

.contact-page {
    background: #f0faf9;
    padding: 60px 20px 80px;
}

.contact-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 2rem;
    align-items: start;
}

.c-card {
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 4px 24px rgba(45,155,150,.1);
    padding: 2rem;
    margin-bottom: 1.5rem;
    transition: transform .2s;
}

.c-card:hover { transform: translateY(-2px); }

.c-card-title {
    font-family: 'Bebas Neue', cursive;
    font-size: 1.6rem;
    letter-spacing: 2px;
    color: var(--dark-teal);
    margin-bottom: 1.2rem;
    display: flex;
    align-items: center;
    gap: .6rem;
}

.contact-items { display: grid; gap: 1rem; }

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 1.2rem;
    background: linear-gradient(135deg, rgba(93,217,193,.1), rgba(45,155,150,.08));
    border-radius: 14px;
    border: 1.5px solid rgba(93,217,193,.2);
    transition: all .2s;
}

.contact-item:hover {
    border-color: var(--primary-turquoise);
    box-shadow: 0 4px 16px rgba(45,155,150,.12);
    transform: translateX(4px);
}

.contact-item-icon {
    font-size: 1.8rem;
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #0f2027, #2c5364);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-item-body { flex: 1; min-width: 0; }

.contact-item-label {
    font-weight: 800;
    color: var(--dark-teal);
    font-size: .85rem;
    letter-spacing: .5px;
    text-transform: uppercase;
    margin-bottom: 2px;
}

.contact-item-value {
    font-size: .95rem;
    color: #1e3a38;
    font-weight: 600;
    word-break: break-word;
}

.contact-item-value a { color: var(--primary-teal); text-decoration: none; }
.contact-item-value a:hover { text-decoration: underline; color: var(--dark-teal); }

.contact-item-desc {
    font-size: .78rem;
    color: #5d9e9b;
    margin-top: 2px;
    font-weight: 500;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: .7rem 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: .9rem;
}

.hours-row:last-child { border-bottom: none; }

.hours-badge {
    background: linear-gradient(135deg, #5dd9c1, #2d9b96);
    color: #fff;
    font-size: .7rem;
    font-weight: 900;
    letter-spacing: 1px;
    padding: 3px 10px;
    border-radius: 20px;
    text-transform: uppercase;
}

.form-panel { position: sticky; top: 90px; height: fit-content; }

.form-header {
    text-align: center;
    padding: 1.5rem;
    background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
    border-radius: 20px;
    margin-bottom: 1.5rem;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.form-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(93,217,193,.2) 0%, transparent 60%);
}

.form-header-title {
    font-family: 'Bebas Neue', cursive;
    font-size: 2rem;
    letter-spacing: 2px;
    color: #5dd9c1;
    line-height: 1;
    position: relative;
}

.form-header-sub {
    font-size: .75rem;
    opacity: .6;
    margin-top: .4rem;
    position: relative;
}

.c-form-group { margin-bottom: 1.2rem; }

.c-form-group label {
    display: block;
    font-size: .82rem;
    font-weight: 800;
    color: #374151;
    margin-bottom: .4rem;
    letter-spacing: .3px;
}

.c-form-group input,
.c-form-group select,
.c-form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: .95rem;
    font-family: 'Nunito', sans-serif;
    transition: all .2s;
    outline: none;
    background: #fafafa;
    box-sizing: border-box;
}

.c-form-group input:focus,
.c-form-group select:focus,
.c-form-group textarea:focus {
    border-color: var(--primary-teal);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(45,155,150,.12);
}

.c-form-group textarea { resize: vertical; min-height: 120px; line-height: 1.5; }
.c-form-group select { cursor: pointer; }

.c-submit-btn {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #5dd9c1, #2d9b96, #1a7872);
    color: #fff;
    border: none;
    border-radius: 14px;
    font-family: 'Bebas Neue', cursive;
    font-size: 1.3rem;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all .2s;
}

.c-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(45,155,150,.35);
}

.c-submit-btn:disabled { opacity: .6; cursor: not-allowed; transform: none; }

.c-reply-note {
    text-align: center;
    color: #94a3b8;
    font-size: .78rem;
    margin-top: .8rem;
}

.tips-box {
    background: linear-gradient(135deg, #fffbeb, #fef3c7);
    border: 2px solid #fbbf24;
    border-radius: 16px;
    padding: 1.5rem;
    margin-top: 1.5rem;
}

.tips-box-title {
    font-weight: 900;
    color: #92400e;
    margin-bottom: .8rem;
    font-size: .95rem;
    display: flex;
    align-items: center;
    gap: .4rem;
}

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

.tips-list li {
    padding: .35rem 0;
    color: #78350f;
    font-size: .82rem;
    display: flex;
    align-items: flex-start;
    gap: .5rem;
    line-height: 1.5;
}

.tips-list li::before { content: 'u2192'; color: #f59e0b; font-weight: 900; flex-shrink: 0; }

.alert-box {
    padding: 12px 16px;
    border-radius: 12px;
    font-size: .85rem;
    font-weight: 700;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: .5rem;
}

.alert-box.success { background: #dcfce7; color: #166534; border: 2px solid #bbf7d0; }
.alert-box.error { background: #fee2e2; color: #991b1b; border: 2px solid #fecaca; }

@media (max-width: 900px) {
    .contact-grid { grid-template-columns: 1fr; }
    .form-panel { position: static; }
}

@media (max-width: 600px) {
    .contact-page { padding: 40px 16px 60px; }
    .c-card { padding: 1.4rem; }
    .contact-hero { padding: 100px 16px 50px; }
    .contact-item-icon { width: 40px; height: 40px; font-size: 1.4rem; }
}

@media (max-width: 400px) {
    .c-card { border-radius: 16px; }
    .contact-item { flex-direction: column; }
}


/* =============================================
   MOBILE LEGENDS PAGE STYLES
   ============================================= */

/* ===== ML HERO ===== */
.ml-hero {
    background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
    min-height: 420px;
    display: flex;
    align-items: center;
    padding: 120px 20px 70px;
    position: relative;
    overflow: hidden;
}

.ml-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 60% 80%, rgba(93,217,193,.18) 0%, transparent 65%);
}

.ml-hero-particles span {
    position: absolute;
    border-radius: 50%;
    background: rgba(93,217,193,.45);
    animation: floatP 6s ease-in-out infinite;
}

.ml-hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    position: relative;
    z-index: 2;
}

.ml-hero-eyebrow {
    display: inline-block;
    padding: .4rem 1.2rem;
    background: rgba(255,255,255,.1);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    border: 1.5px solid rgba(255,255,255,.2);
    color: rgba(255,255,255,.8);
    font-size: .75rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1.2rem;
}

.ml-hero-title {
    font-family: 'Bebas Neue', cursive;
    font-size: clamp(2.8rem, 7vw, 5.5rem);
    color: #fff;
    letter-spacing: 4px;
    line-height: 1;
    margin-bottom: .6rem;
}

.ml-hero-title span { color: #5dd9c1; }

.ml-hero-sub {
    font-size: clamp(.95rem, 2.5vw, 1.2rem);
    color: rgba(255,255,255,.7);
    max-width: 540px;
    line-height: 1.6;
    margin-bottom: 2.5rem;
}

/* ===== STAT BAR IN HERO ===== */
.ml-stat-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.ml-stat-box {
    background: rgba(255,255,255,.1);
    border: 1.5px solid rgba(255,255,255,.2);
    border-radius: 14px;
    padding: 1.1rem 1rem;
    backdrop-filter: blur(10px);
    text-align: center;
    transition: all .2s;
}

.ml-stat-box:hover {
    background: rgba(255,255,255,.16);
    border-color: rgba(93,217,193,.5);
    transform: translateY(-3px);
}

.ml-stat-box .stat-icon { font-size: 1.4rem; margin-bottom: .35rem; }
.ml-stat-box .stat-label { font-size: .7rem; color: rgba(255,255,255,.6); font-weight: 700; letter-spacing: .5px; text-transform: uppercase; margin-bottom: .3rem; }
.ml-stat-box .stat-value { font-family: 'Bebas Neue', cursive; font-size: 1.3rem; letter-spacing: 1px; color: #5dd9c1; }

/* ===== SECTION ===== */
.ml-section {
    padding: 60px 0;
    background: #f0faf9;
}

.ml-section-white {
    padding: 60px 0;
    background: #fff;
}

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

.ml-section-header h2 {
    font-family: 'Bebas Neue', cursive;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    letter-spacing: 3px;
    color: var(--dark-teal);
    margin-bottom: .4rem;
}

.ml-section-header h2 span { color: var(--primary-turquoise); }

.ml-section-header p {
    color: #5d9e9b;
    font-size: .95rem;
    font-weight: 600;
}

/* ===== SECTION DIVIDER LABEL ===== */
.section-label {
    display: flex;
    align-items: center;
    gap: .75rem;
    margin-bottom: 1.25rem;
}

.section-label span {
    font-family: 'Bebas Neue', cursive;
    font-size: .85rem;
    letter-spacing: 2px;
    color: var(--primary-teal);
    white-space: nowrap;
}

.section-label::after {
    content: '';
    flex: 1;
    height: 2px;
    background: linear-gradient(90deg, #5dd9c1, transparent);
}

/* ===== UNIVERSAL CARD ===== */
.ml-card {
    background: #fff;
    border-radius: 20px;
    padding: 1.75rem;
    border: 2px solid #e8f5f3;
    box-shadow: 0 2px 16px rgba(45,155,150,.07);
    transition: all .25s;
}

.ml-card:hover {
    border-color: var(--primary-turquoise);
    box-shadow: 0 8px 28px rgba(45,155,150,.15);
    transform: translateY(-3px);
}

.ml-card-header {
    display: flex;
    align-items: center;
    gap: .9rem;
    margin-bottom: 1.25rem;
}

.ml-card-icon {
    width: 46px;
    height: 46px;
    border-radius: 13px;
    background: linear-gradient(135deg, #0f2027, #2c5364);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    flex-shrink: 0;
}

.ml-card-title {
    font-family: 'Bebas Neue', cursive;
    font-size: 1.1rem;
    letter-spacing: 1.5px;
    color: var(--dark-teal);
    line-height: 1.2;
}

.ml-card-subtitle {
    font-size: .76rem;
    color: #5d9e9b;
    margin-top: 3px;
    font-weight: 600;
}

.ml-badge {
    margin-left: auto;
    padding: .22rem .7rem;
    border-radius: 20px;
    font-size: .75rem;
    font-weight: 800;
    white-space: nowrap;
    font-family: 'Bebas Neue', cursive;
    letter-spacing: 1px;
}

.ml-badge-teal  { background: #d0f5ef; color: #1a7872; }
.ml-badge-blue  { background: #dbeafe; color: #1e3a8a; }
.ml-badge-amber { background: #fef3c7; color: #92400e; }

/* ===== LIST ===== */
.ml-list { list-style: none; padding: 0; margin: 0; }

.ml-list li {
    display: flex;
    align-items: flex-start;
    gap: .75rem;
    padding: .5rem 0;
    font-size: .97rem;
    color: #444;
    border-bottom: 1px solid #f0faf9;
    line-height: 1.55;
}

.ml-list li:last-child { border-bottom: none; padding-bottom: 0; }

.ml-list li::before {
    content: '';
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: linear-gradient(135deg, #5dd9c1, #2d9b96);
    margin-top: 7px;
    flex-shrink: 0;
}

/* ===== GRIDS ===== */
.ml-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.ml-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.ml-grid-auto { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 1.5rem; }
.ml-col-full { grid-column: 1 / -1; }

/* ===== PRIZE CARD ===== */
.prize-card {
    background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
    border-radius: 20px;
    padding: 1.75rem;
    color: #fff;
    border: 2px solid rgba(93,217,193,.25);
    transition: all .25s;
    position: relative;
    overflow: hidden;
}

.prize-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(93,217,193,.2) 0%, transparent 60%);
}

.prize-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 40px rgba(15,32,39,.4);
    border-color: rgba(93,217,193,.5);
}

.prize-card .ml-card-header { position: relative; z-index: 2; }
.prize-card .ml-card-icon { background: rgba(255,255,255,.15); }
.prize-card .ml-card-title { color: #5dd9c1; }
.prize-card .ml-card-subtitle { color: rgba(255,255,255,.6); }

.prize-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: .75rem 0;
    border-bottom: 1px solid rgba(255,255,255,.12);
    position: relative;
    z-index: 2;
}

.prize-row:last-child { border-bottom: none; }

.prize-rank {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.prize-info { flex: 1; }

.prize-label {
    font-size: .78rem;
    font-weight: 700;
    color: rgba(255,255,255,.65);
    letter-spacing: .5px;
    text-transform: uppercase;
    margin-bottom: 1px;
}

.prize-amount {
    font-family: 'Bebas Neue', cursive;
    font-size: 1.5rem;
    letter-spacing: 1px;
    color: #5dd9c1;
}

.prize-extras {
    font-size: .8rem;
    font-weight: 700;
    color: rgba(255,255,255,.55);
}

/* ===== TIMELINE CARD ===== */
.timeline-card-list { display: flex; flex-direction: column; gap: 0; }

.tl-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: .65rem 0;
    border-bottom: 1px solid #f0faf9;
}

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

.tl-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: linear-gradient(135deg, #5dd9c1, #2d9b96);
    margin-top: 6px;
    flex-shrink: 0;
    box-shadow: 0 0 0 3px rgba(93,217,193,.2);
}

.tl-date {
    font-family: 'Bebas Neue', cursive;
    font-size: .85rem;
    letter-spacing: 1px;
    color: var(--primary-teal);
    min-width: 110px;
    flex-shrink: 0;
}

.tl-label {
    font-size: .95rem;
    color: #444;
    line-height: 1.4;
}

/* ===== ETIKA GRID ===== */
.etika-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: .25rem;
}

.etika-sub-label {
    font-family: 'Bebas Neue', cursive;
    font-size: .8rem;
    letter-spacing: 2px;
    color: var(--primary-teal);
    margin-bottom: .6rem;
}

/* ===== LARANGAN CARD ===== */
.ml-card.larangan {
    background: #fff5f5;
    border-color: #fecaca;
}

.ml-card.larangan:hover {
    border-color: #ef4444;
    box-shadow: 0 8px 28px rgba(239,68,68,.12);
}

.ml-card.larangan .ml-card-icon {
    background: linear-gradient(135deg, #ef4444, #dc2626);
}

.larangan-pills { display: flex; flex-wrap: wrap; gap: .65rem; margin-top: .25rem; }

.larangan-pill {
    display: flex;
    align-items: center;
    gap: .5rem;
    padding: .55rem 1.1rem;
    background: #fff;
    border: 2px solid #fecaca;
    border-radius: 30px;
    font-size: .88rem;
    font-weight: 600;
    color: #dc2626;
}

/* ===== NOTICE ===== */
.ml-notice {
    text-align: center;
    margin: 2rem auto 0;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, rgba(93,217,193,.1), rgba(45,155,150,.08));
    border: 2px solid rgba(45,155,150,.2);
    border-radius: 14px;
    font-size: .9rem;
    color: var(--primary-teal);
    font-weight: 600;
    max-width: 720px;
}

/* ===== ML RESPONSIVE ===== */
@media (max-width: 900px) {
    .ml-stat-bar { grid-template-columns: repeat(2, 1fr); }
    .ml-grid-2, .ml-grid-3 { grid-template-columns: 1fr; }
    .etika-grid { grid-template-columns: 1fr; }
    .ml-col-full { grid-column: auto; }
}

@media (max-width: 576px) {
    .ml-hero { padding: 100px 16px 60px; }
    .ml-section { padding: 40px 16px; }
    .ml-grid-auto { grid-template-columns: 1fr; }
    .ml-stat-bar { grid-template-columns: repeat(2, 1fr); gap: .75rem; }
}


/* =============================================
   HEXARUN PAGE STYLES
   ============================================= */

/* ===== HERO ===== */
.reg-hero {
    background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
    min-height: 340px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 20px 60px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.reg-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 80%, rgba(93,217,193,.18) 0%, transparent 70%);
}

.reg-hero-particles span {
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(93,217,193,.5);
    animation: floatP 6s ease-in-out infinite;
}

.reg-hero-title {
    font-family: 'Bebas Neue', cursive;
    font-size: clamp(2.8rem, 7vw, 5.5rem);
    color: #fff;
    letter-spacing: 4px;
    line-height: 1;
    position: relative;
}

.reg-hero-title span { color: #5dd9c1; }

.reg-hero-sub {
    color: rgba(255,255,255,.7);
    font-size: 1.1rem;
    margin-top: .8rem;
    position: relative;
}

/* ===== STEPS BAR ===== */
.reg-steps-bar {
    display: flex;
    gap: 0;
    justify-content: center;
    margin-top: 2rem;
    position: relative;
}

.reg-step {
    display: flex;
    align-items: center;
    gap: .4rem;
    font-size: .8rem;
    color: rgba(255,255,255,.5);
    font-weight: 700;
}

.reg-step.active { color: #5dd9c1; }

.reg-step-num {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 2px solid currentColor;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: .75rem;
}

.reg-step.active .reg-step-num {
    background: #5dd9c1;
    color: #0f2027;
    border-color: #5dd9c1;
}

.reg-step-sep {
    width: 40px;
    height: 2px;
    background: rgba(255,255,255,.2);
    margin: 0 4px;
    align-self: center;
}

/* ===== PAGE LAYOUT ===== */
.reg-page {
    background: #f0faf9;
    padding: 60px 20px 80px;
}

.reg-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 2rem;
}

/* ===== REG CARDS ===== */
.reg-card {
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 4px 24px rgba(45,155,150,.1);
    padding: 2rem;
    margin-bottom: 1.5rem;
    transition: transform .2s;
    animation: fadeSlideUp .5s ease both;
}

.reg-card:hover { transform: translateY(-2px); }
.reg-card:nth-child(2) { animation-delay: .1s; }
.reg-card:nth-child(3) { animation-delay: .2s; }
.reg-card:nth-child(4) { animation-delay: .3s; }

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

.reg-card-title {
    font-family: 'Bebas Neue', cursive;
    font-size: 1.6rem;
    letter-spacing: 2px;
    color: #1a7872;
    margin-bottom: 1.2rem;
    display: flex;
    align-items: center;
    gap: .6rem;
}

/* ===== JERSEY VIEWER ===== */
.jersey-viewer {
    position: relative;
    height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    user-select: none;
    cursor: grab;
}

.jersey-viewer:active { cursor: grabbing; }

.jersey-3d-wrap {
    width: 220px;
    height: 280px;
    position: relative;
    transform-style: preserve-3d;
    transition: transform .05s;
}

.jersey-drag-hint {
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    font-size: .75rem;
    color: #999;
    display: flex;
    align-items: center;
    gap: 4px;
}

.jersey-svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 20px 40px rgba(45,155,150,.4));
    transition: filter .3s;
}

.jersey-color-dots {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-top: 1rem;
}

.jersey-dot {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 3px solid transparent;
    cursor: pointer;
    transition: all .2s;
}

.jersey-dot.active {
    border-color: #2d9b96;
    transform: scale(1.2);
}

/* ===== SIZE OPTIONS ===== */
.size-options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 1rem 0;
}

.size-box {
    min-width: 56px;
    height: 52px;
    padding: 0 12px;
    border-radius: 12px;
    border: 2px solid #cbd5e1;
    background: #f8fafc;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1rem;
    color: #94a3b8;
    transition: all .18s;
    position: relative;
}

.size-box .sz-label {
    font-size: .6rem;
    font-weight: 600;
    color: #94a3b8;
}

.size-box:hover {
    border-color: #5dd9c1;
    color: #2d9b96;
    transform: translateY(-2px);
}

.size-box.selected {
    border-color: #22c55e;
    background: #dcfce7;
    color: #22c55e;
    box-shadow: 0 0 0 3px rgba(34,197,94,.2);
}

.size-box.selected .sz-label { color: #16a34a; }

.size-box.selected::after {
    content: '✓';
    position: absolute;
    top: -6px;
    right: -6px;
    width: 16px;
    height: 16px;
    background: #22c55e;
    border-radius: 50%;
    color: #fff;
    font-size: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ===== SIZE CHART TABLE ===== */
.size-chart-table {
    width: 100%;
    border-collapse: collapse;
    font-size: .82rem;
    margin-top: 1rem;
}

.size-chart-table th {
    background: linear-gradient(135deg, #2d9b96, #1a7872);
    color: #fff;
    padding: 8px 12px;
    font-family: 'Bebas Neue', cursive;
    letter-spacing: 1px;
    font-size: .85rem;
}

.size-chart-table td {
    padding: 7px 12px;
    border-bottom: 1px solid #e2e8f0;
    text-align: center;
}

.size-chart-table tr:hover td {
    background: #f0faf9;
    cursor: pointer;
}

.size-chart-table tr.highlight td {
    background: #dcfce7;
    font-weight: 700;
}

/* ===== ROUTE MAP ===== */
.route-map {
    background: linear-gradient(135deg, #e8f5f4, #d0f0ee);
    border-radius: 20px;
    padding: 1.5rem;
    position: relative;
    overflow: hidden;
    height: 280px;
}

.route-info {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.route-badge {
    background: #fff;
    border-radius: 10px;
    padding: 6px 14px;
    font-size: .8rem;
    font-weight: 700;
    color: #1a7872;
    box-shadow: 0 2px 8px rgba(45,155,150,.15);
    display: flex;
    align-items: center;
    gap: 5px;
}

/* ===== MEDALS ===== */
.medals-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: .5rem;
}

.medal-item {
    text-align: center;
    background: linear-gradient(135deg, #f8fafc, #fff);
    border-radius: 16px;
    padding: 1.2rem .8rem;
    border: 2px solid #e2e8f0;
    transition: all .2s;
}

.medal-item:hover {
    border-color: #5dd9c1;
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(45,155,150,.15);
}

.medal-svg { font-size: 2.8rem; margin-bottom: .5rem; }
.medal-name { font-size: .75rem; font-weight: 800; color: #374151; }
.medal-detail { font-size: .65rem; color: #94a3b8; margin-top: 2px; }

/* ===== BENEFITS ===== */
.benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .8rem;
    margin-top: .5rem;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 10px;
    border-radius: 12px;
    background: linear-gradient(135deg, #f0faf9, #e6f7f5);
    border: 1.5px solid rgba(93,217,193,.2);
    transition: all .2s;
}

.benefit-item:hover {
    border-color: #5dd9c1;
    transform: translateX(3px);
}

.benefit-icon { font-size: 1.4rem; flex-shrink: 0; }
.benefit-text { font-size: .82rem; font-weight: 700; color: #1e3a38; }
.benefit-sub { font-size: .7rem; color: #5d9e9b; font-weight: 500; }

/* ===== FORM PANEL ===== */
.form-panel { position: sticky; top: 90px; height: fit-content; }

.price-big {
    text-align: center;
    padding: 1.5rem;
    background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
    border-radius: 20px;
    margin-bottom: 1.5rem;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.price-big::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(93,217,193,.2) 0%, transparent 60%);
}

.price-big-label {
    font-size: .8rem;
    opacity: .7;
    margin-bottom: .3rem;
    position: relative;
    letter-spacing: 1px;
    font-weight: 700;
    text-transform: uppercase;
}

.price-big-amount {
    font-family: 'Bebas Neue', cursive;
    font-size: 3rem;
    letter-spacing: 2px;
    color: #5dd9c1;
    line-height: 1;
    position: relative;
}

.price-big-note {
    font-size: .72rem;
    opacity: .6;
    margin-top: .4rem;
    line-height: 1.4;
    position: relative;
}

.price-big-tax {
    background: rgba(255,200,0,.15);
    border: 1px solid rgba(255,200,0,.4);
    border-radius: 8px;
    padding: 6px 12px;
    margin-top: .8rem;
    font-size: .75rem;
    color: #fbbf24;
    position: relative;
}

/* ===== REGISTRATION FORM ===== */
.reg-form-group { margin-bottom: 1.2rem; }

.reg-form-group label {
    display: block;
    font-size: .82rem;
    font-weight: 800;
    color: #374151;
    margin-bottom: .4rem;
    letter-spacing: .3px;
}

.reg-form-group input[type="text"],
.reg-form-group input[type="tel"],
.reg-form-group input[type="email"] {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: .95rem;
    font-family: 'Nunito', sans-serif;
    transition: all .2s;
    outline: none;
    background: #fafafa;
    box-sizing: border-box;
}

.reg-form-group input:focus {
    border-color: #2d9b96;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(45,155,150,.12);
}

/* ===== PAYMENT METHODS ===== */
.pay-methods {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-top: .5rem;
}

.pay-method {
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 12px 8px;
    text-align: center;
    cursor: pointer;
    transition: all .18s;
    background: #fafafa;
}

.pay-method:hover { border-color: #5dd9c1; }

.pay-method.selected {
    border-color: #2d9b96;
    background: #e6f7f5;
    box-shadow: 0 0 0 3px rgba(45,155,150,.15);
}

.pay-method-icon { font-size: 1.8rem; margin-bottom: 4px; }
.pay-method-label { font-size: .72rem; font-weight: 800; color: #374151; }
.pay-method-sub { font-size: .62rem; color: #94a3b8; }
.pay-method.selected .pay-method-label { color: #1a7872; }

.qris-rec {
    display: inline-block;
    background: linear-gradient(135deg, #5dd9c1, #2d9b96);
    color: #fff;
    font-size: .55rem;
    font-weight: 900;
    letter-spacing: 1px;
    padding: 2px 7px;
    border-radius: 20px;
    margin-top: 3px;
    text-transform: uppercase;
}

/* ===== CHECKBOX ===== */
.check-wrap {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 12px;
    border-radius: 12px;
    background: #f8fafc;
    border: 2px solid #e2e8f0;
    cursor: pointer;
    transition: border-color .2s;
}

.check-wrap:hover { border-color: #5dd9c1; }
.check-wrap input { width: 18px; height: 18px; accent-color: #2d9b96; flex-shrink: 0; margin-top: 2px; }
.check-wrap label { font-size: .8rem; color: #4b5563; cursor: pointer; line-height: 1.5; }

/* ===== SUBMIT BUTTON ===== */
.btn-reg-submit {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, #5dd9c1, #2d9b96, #1a7872);
    color: #fff;
    border: none;
    border-radius: 14px;
    font-family: 'Bebas Neue', cursive;
    font-size: 1.3rem;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all .3s;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(45,155,150,.4);
}

.btn-reg-submit::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,.2), transparent);
    transform: translateX(-100%);
    transition: transform .4s;
}

.btn-reg-submit:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(45,155,150,.5); }
.btn-reg-submit:hover::before { transform: translateX(100%); }
.btn-reg-submit:disabled { opacity: .7; cursor: not-allowed; transform: none; }

/* ===== ALERT BOX (hexarun specific) ===== */
#alertContainer { margin-bottom: 1rem; }

/* ===== BIB CHECK CARD ===== */
.bib-check-card {
    background: linear-gradient(135deg, #0f2027, #1a3040);
    border-radius: 24px;
    overflow: hidden;
}

.bib-check-inner { padding: 1.5rem; }

.bib-result-box {
    background: rgba(93,217,193,.1);
    border: 2px solid rgba(93,217,193,.3);
    border-radius: 14px;
    padding: 1.2rem;
    margin-top: 1rem;
    display: none;
}

.bib-number {
    font-family: 'Bebas Neue', cursive;
    font-size: 3.5rem;
    color: #5dd9c1;
    letter-spacing: 4px;
    text-align: center;
}

/* ===== SLOT COUNTER ===== */
.reg-count {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1rem;
}

.reg-count-num {
    font-family: 'Bebas Neue', cursive;
    font-size: 2.5rem;
    color: #2d9b96;
}

.progress-bar-wrap {
    flex: 1;
    background: #e2e8f0;
    border-radius: 20px;
    height: 12px;
    overflow: hidden;
}

.progress-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #5dd9c1, #2d9b96);
    border-radius: 20px;
    width: 0%;
    transition: width 1.5s ease;
    position: relative;
    overflow: hidden;
}

.progress-bar-fill::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.4), transparent);
    animation: shimmer 2s ease-in-out infinite;
}

@keyframes shimmer {
    0%   { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* ===== HEXARUN RESPONSIVE ===== */
@media (max-width: 900px) {
    .reg-grid { grid-template-columns: 1fr; }
    .form-panel { position: static; }
}

@media (max-width: 600px) {
    .benefits-grid { grid-template-columns: 1fr; }
    .medals-row { grid-template-columns: repeat(2, 1fr); }
    .reg-page { padding: 40px 16px 60px; }
    .reg-card { padding: 1.4rem; }
}


/* =============================================
   HEXARUN — SUPPLEMENTAL (reg-left, reg-right, etc.)
   ============================================= */

.reg-left  { min-width: 0; }
.reg-right { min-width: 0; }

/* Spinner override for reg submit button */
.btn-reg-submit .spinner {
    width: 20px;
    height: 20px;
    border-width: 3px;
    border-color: rgba(255,255,255,.3);
    border-top-color: #fff;
    display: inline-block;
}

/* BIB check input - scoped override */
.bib-check-inner input[type="email"] {
    width: 100%;
    padding: 10px 14px;
    border-radius: 10px;
    border: 2px solid rgba(93,217,193,.3);
    background: rgba(255,255,255,.05);
    color: #fff;
    font-size: .9rem;
    outline: none;
    margin-bottom: 8px;
    font-family: 'Nunito', sans-serif;
    transition: border-color .2s;
    box-sizing: border-box;
}

.bib-check-inner input[type="email"]:focus {
    border-color: #5dd9c1;
}

/* Resume payment button */
.resume-pay-btn {
    display: block;
    width: 100%;
    padding: .85rem;
    background: linear-gradient(135deg, #5dd9c1, #2d9b96, #1a7872);
    color: white;
    border: none;
    border-radius: 12px;
    font-family: 'Bebas Neue', cursive;
    font-size: 1rem;
    letter-spacing: 2.5px;
    text-decoration: none;
    text-align: center;
    box-shadow: 0 4px 18px rgba(45,155,150,.35);
    cursor: pointer;
    transition: all .25s;
    font-weight: 900;
}

.resume-pay-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(45,155,150,.5);
}

/* Resume payment panel */
.resume-pay-panel {
    margin-top: 1.5rem;
    background: linear-gradient(135deg, #0f172a 0%, #1a3a4a 100%);
    border-radius: 18px;
    padding: 1.5rem;
    border: 1.5px solid rgba(93,217,193,.25);
    position: relative;
    overflow: hidden;
}

.resume-pay-panel::before {
    content: '';
    position: absolute;
    top: -30px; right: -30px;
    width: 120px; height: 120px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(93,217,193,.12), transparent);
    pointer-events: none;
}

.resume-pay-panel::after {
    content: '';
    position: absolute;
    bottom: -20px; left: -20px;
    width: 90px; height: 90px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(45,155,150,.1), transparent);
    pointer-events: none;
}

.resume-pay-inner {
    position: relative;
    z-index: 1;
}

.resume-pay-header {
    display: flex;
    align-items: center;
    gap: .6rem;
    margin-bottom: .8rem;
}

.resume-pay-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #5dd9c1, #2d9b96);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.resume-pay-title {
    font-family: 'Bebas Neue', cursive;
    font-size: 1.1rem;
    letter-spacing: 2px;
    color: #5dd9c1;
}

.resume-pay-sub {
    font-size: .72rem;
    color: rgba(255,255,255,.4);
    font-weight: 700;
}

.resume-pay-list {
    display: grid;
    gap: .5rem;
    margin-bottom: 1.2rem;
}

.resume-pay-list-item {
    display: flex;
    align-items: center;
    gap: .6rem;
    font-size: .8rem;
    color: rgba(255,255,255,.55);
}

.resume-pay-list-item span {
    color: #5dd9c1;
    font-weight: 900;
}


/* =============================================
   HEXARUN — BIB CHECK CARD INNER STYLES
   ============================================= */

.bib-card-title {
    color: #5dd9c1 !important;
    font-size: 1.2rem !important;
}

.bib-card-sub {
    color: rgba(255,255,255,.6);
    font-size: .8rem;
    margin-bottom: 1rem;
}

.bib-check-inner input[type="email"] {
    width: 100%;
    padding: 10px 14px;
    border-radius: 10px;
    border: 2px solid rgba(93,217,193,.3);
    background: rgba(255,255,255,.05);
    color: #fff;
    font-size: .9rem;
    outline: none;
    margin-bottom: 8px;
    font-family: 'Nunito', sans-serif;
    transition: border-color .2s;
    box-sizing: border-box;
}

.bib-check-inner input[type="email"]:focus {
    border-color: #5dd9c1;
}

.bib-submit-btn {
    width: 100%;
    padding: 11px;
    background: linear-gradient(135deg, #5dd9c1, #2d9b96);
    color: #0f2027;
    border: none;
    border-radius: 10px;
    font-family: 'Bebas Neue', cursive;
    font-size: 1.1rem;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all .2s;
    font-weight: 700;
}

.bib-submit-btn:hover {
    opacity: .9;
    transform: translateY(-1px);
}

/* QRIS info box */
#qrisInfo {
    background: #f0fdf4;
    border: 1.5px solid #86efac;
    border-radius: 10px;
    padding: 10px 12px;
    margin-top: 8px;
    font-size: .75rem;
    color: #166534;
    font-weight: 600;
}

/* Slot counter card text */
.reg-count-label {
    text-align: center;
    font-size: .78rem;
    color: #5d9e9b;
    font-weight: 600;
    margin-top: .5rem;
}

/* SSL note */
.ssl-note {
    text-align: center;
    color: #94a3b8;
    font-size: .72rem;
    margin-top: .8rem;
}

/* Size helper note */
.input-hint {
    color: #94a3b8;
    font-size: .7rem;
    margin-top: 3px;
    display: block;
}


/* =============================================
   TABLIGH AKBAR PAGE STYLES
   ============================================= */

/* ===== HERO ===== */
.tabligh-hero {
    background: linear-gradient(160deg, #0f172a 0%, #1a3a4a 35%, #16213e 70%, #0f172a 100%);
    padding: 120px 20px 70px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.tabligh-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 15% 50%, rgba(93,217,193,.13) 0%, transparent 55%),
        radial-gradient(ellipse at 85% 30%, rgba(45,155,150,.10) 0%, transparent 55%),
        radial-gradient(ellipse at 50% 80%, rgba(26,120,114,.08) 0%, transparent 50%);
}

/* Islamic geometric pattern overlay */
.tabligh-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        repeating-linear-gradient(60deg, transparent, transparent 40px, rgba(93,217,193,.03) 40px, rgba(93,217,193,.03) 41px),
        repeating-linear-gradient(-60deg, transparent, transparent 40px, rgba(93,217,193,.03) 40px, rgba(93,217,193,.03) 41px);
    pointer-events: none;
}

.tabligh-hero-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.tabligh-hero-particles span {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, #5dd9c1, transparent);
    opacity: .2;
    animation: floatP ease-in-out infinite;
}

.tabligh-hero-inner {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.tabligh-bismillah {
    font-size: 1.8rem;
    color: rgba(93,217,193,.6);
    margin-bottom: 1rem;
    letter-spacing: 4px;
}

.tabligh-hero-badge {
    display: inline-block;
    background: rgba(93,217,193,.12);
    border: 1px solid rgba(93,217,193,.3);
    color: #5dd9c1;
    padding: .3rem 1.2rem;
    border-radius: 20px;
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 1.2rem;
}

.tabligh-hero-title {
    font-family: 'Bebas Neue', cursive;
    font-size: clamp(2.8rem, 7vw, 5.5rem);
    color: #fff;
    letter-spacing: 5px;
    line-height: 1;
    margin-bottom: .5rem;
}

.tabligh-hero-title span { color: #5dd9c1; }

.tabligh-hero-sub {
    color: rgba(255,255,255,.55);
    font-size: .95rem;
    margin-bottom: 2rem;
    font-weight: 600;
    letter-spacing: 1px;
}

/* ===== HERO STATS ===== */
.tabligh-hero-stats {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

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

.th-stat-num {
    font-family: 'Bebas Neue', cursive;
    font-size: 2.2rem;
    color: #5dd9c1;
    letter-spacing: 2px;
    line-height: 1;
}

.th-stat-label {
    font-size: .72rem;
    color: rgba(255,255,255,.45);
    font-weight: 700;
    letter-spacing: 1px;
    margin-top: .2rem;
}

.th-stat-sep {
    width: 1px;
    background: rgba(93,217,193,.2);
    align-self: stretch;
}

/* ===== PAGE LAYOUT ===== */
.tabligh-page {
    padding: 3rem 20px 5rem;
    background: #f1f5f9;
}

.tabligh-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 2rem;
    align-items: start;
}

.tabligh-left  { min-width: 0; }
.tabligh-right { min-width: 0; }

/* ===== CARDS ===== */
.tab-card {
    background: #fff;
    border-radius: 18px;
    padding: 1.5rem;
    border: 1.5px solid #e2e8f0;
    box-shadow: 0 4px 20px rgba(45,155,150,.07);
    margin-bottom: 1.5rem;
    transition: box-shadow .25s, transform .25s;
}

.tab-card:hover {
    box-shadow: 0 8px 30px rgba(45,155,150,.14);
    transform: translateY(-2px);
}

.tab-card-title {
    display: flex;
    align-items: center;
    gap: .6rem;
    font-family: 'Bebas Neue', cursive;
    font-size: 1.1rem;
    letter-spacing: 1.5px;
    color: #1a3a4a;
    margin-bottom: 1rem;
}

/* Dark variant card */
.tab-card-dark {
    background: linear-gradient(135deg, #0f172a, #1a3a4a);
    border-color: rgba(93,217,193,.2);
}

.tab-card-dark .tab-card-title { color: #5dd9c1; }

/* ===== RUNDOWN TABLE ===== */
.rundown-table { width: 100%; border-collapse: collapse; }

.rundown-table th {
    background: linear-gradient(135deg, #0f172a, #1a3a4a);
    color: #5dd9c1;
    font-family: 'Bebas Neue', cursive;
    font-size: .9rem;
    letter-spacing: 1.5px;
    padding: .7rem 1rem;
    text-align: left;
}

.rundown-table th:first-child  { border-radius: 8px 0 0 8px; }
.rundown-table th:last-child   { border-radius: 0 8px 8px 0; }

.rundown-table td {
    padding: .7rem 1rem;
    font-size: .83rem;
    border-bottom: 1px solid #f1f5f9;
    color: #374151;
    vertical-align: top;
}

.rundown-table tr:last-child td { border-bottom: none; }
.rundown-table tr:nth-child(even) td { background: #f8fafc; }
.rundown-table tr:hover td { background: rgba(93,217,193,.06); }

.time-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(93,217,193,.15), rgba(45,155,150,.1));
    border: 1px solid rgba(93,217,193,.3);
    color: #1a7872;
    padding: .2rem .6rem;
    border-radius: 6px;
    font-weight: 800;
    font-size: .8rem;
    white-space: nowrap;
    font-family: 'Bebas Neue', cursive;
    letter-spacing: 1px;
}

/* ===== USTADZ PROFILE ===== */
.ustadz-card {
    background: linear-gradient(135deg, #0f172a 0%, #1a3a4a 100%);
    border-radius: 18px;
    padding: 2rem;
    border: 1.5px solid rgba(93,217,193,.2);
    text-align: center;
    margin-bottom: 1.5rem;
    transition: box-shadow .25s, transform .25s;
}

.ustadz-card:hover {
    box-shadow: 0 12px 40px rgba(0,0,0,.3);
    transform: translateY(-3px);
}

.ustadz-avatar {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: linear-gradient(135deg, #5dd9c1, #1a7872);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 1rem;
    box-shadow: 0 0 30px rgba(93,217,193,.3);
}

.ustadz-name {
    font-family: 'Bebas Neue', cursive;
    font-size: 1.6rem;
    letter-spacing: 2px;
    color: #fff;
    margin-bottom: .3rem;
}

.ustadz-title { font-size: .78rem; color: #5dd9c1; font-weight: 800; letter-spacing: 1px; }

.ustadz-desc {
    font-size: .82rem;
    color: rgba(255,255,255,.5);
    margin-top: .8rem;
    line-height: 1.6;
}

.ustadz-tags {
    margin-top: 1.2rem;
    display: flex;
    justify-content: center;
    gap: .6rem;
    flex-wrap: wrap;
}

.ustadz-tag {
    background: rgba(93,217,193,.12);
    border: 1px solid rgba(93,217,193,.25);
    border-radius: 20px;
    padding: .25rem .8rem;
    font-size: .72rem;
    font-weight: 800;
    color: #5dd9c1;
}

/* ===== INFO LIST ===== */
.info-list { display: grid; gap: .8rem; }

.info-row {
    display: flex;
    align-items: flex-start;
    gap: .9rem;
    padding: .9rem;
    background: #f8fafc;
    border-radius: 12px;
    border: 1.5px solid #e2e8f0;
    transition: border-color .2s, background .2s;
}

.info-row:hover {
    border-color: rgba(93,217,193,.4);
    background: #f0faf9;
}

.info-row-icon { font-size: 1.5rem; flex-shrink: 0; }
.info-row-label { font-size: .72rem; font-weight: 800; color: #94a3b8; letter-spacing: .5px; text-transform: uppercase; }
.info-row-value { font-size: .88rem; font-weight: 700; color: #1a3a4a; margin-top: .15rem; }

/* ===== INTERNAL NOTICE ===== */
.internal-notice {
    background: linear-gradient(135deg, #fffbeb, #fef9c3);
    border: 2px solid #fcd34d;
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.internal-notice-title {
    font-family: 'Bebas Neue', cursive;
    font-size: 1.2rem;
    letter-spacing: 2px;
    color: #92400e;
    margin-bottom: .6rem;
}

.internal-notice-text {
    font-size: .85rem;
    color: #78350f;
    line-height: 1.65;
}

/* ===== MATERI LIST ===== */
.materi-list { display: grid; gap: .7rem; }

.materi-item {
    display: flex;
    align-items: center;
    gap: .8rem;
    padding: .8rem 1rem;
    background: #f8fafc;
    border-radius: 12px;
    border-left: 3px solid #5dd9c1;
    font-size: .85rem;
    font-weight: 700;
    color: #1a3a4a;
    transition: all .2s;
}

.materi-item:hover {
    background: #f0faf9;
    border-left-color: #2d9b96;
    transform: translateX(3px);
}

.materi-num {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: linear-gradient(135deg, #5dd9c1, #2d9b96, #1a7872);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .72rem;
    font-weight: 900;
    flex-shrink: 0;
}

.materi-item-title { font-weight: 800; font-size: .88rem; }
.materi-item-sub   { font-size: .75rem; color: #64748b; font-weight: 600; margin-top: .15rem; }

/* ===== COUNTDOWN ===== */
.countdown-wrap {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 1.2rem 0;
}

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

.cd-num {
    background: linear-gradient(135deg, #0f172a, #1a3a4a);
    color: #5dd9c1;
    font-family: 'Bebas Neue', cursive;
    font-size: 2rem;
    letter-spacing: 2px;
    padding: .4rem .9rem;
    border-radius: 10px;
    min-width: 60px;
    border: 1px solid rgba(93,217,193,.2);
    display: block;
}

.cd-label {
    font-size: .65rem;
    font-weight: 800;
    color: #94a3b8;
    letter-spacing: 1px;
    margin-top: .3rem;
    text-transform: uppercase;
}

.cd-note {
    font-size: .7rem;
    color: #94a3b8;
    margin-top: .5rem;
}

/* ===== TATA TERTIB ===== */
.tata-tertib-list { display: grid; gap: .6rem; }

.tata-item {
    display: flex;
    gap: .7rem;
    align-items: flex-start;
    font-size: .83rem;
    line-height: 1.5;
    color: #374151;
}

.tata-item-icon-ok  { color: #22c55e; font-weight: 900; flex-shrink: 0; }
.tata-item-icon-no  { color: #ef4444; font-weight: 900; flex-shrink: 0; }

/* ===== KONTAK PANEL ===== */
.kontak-item-row {
    display: flex;
    align-items: center;
    gap: .7rem;
    padding: .7rem;
    background: rgba(255,255,255,.05);
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,.08);
    margin-bottom: .7rem;
}

.kontak-item-emoji { font-size: 1.3rem; }
.kontak-item-label { font-size: .72rem; font-weight: 800; color: #5dd9c1; letter-spacing: .5px; text-transform: uppercase; }
.kontak-item-value { font-size: .83rem; color: rgba(255,255,255,.7); font-weight: 700; margin-top: .15rem; }
.kontak-card-sub   { color: rgba(255,255,255,.5); font-size: .8rem; margin-bottom: 1rem; line-height: 1.5; }

.btn-kontak {
    display: block;
    width: 100%;
    padding: .8rem;
    background: linear-gradient(135deg, #5dd9c1, #2d9b96, #1a7872);
    color: white;
    border: none;
    border-radius: 12px;
    font-family: 'Bebas Neue', cursive;
    font-size: .95rem;
    letter-spacing: 2px;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: all .25s;
    box-shadow: 0 4px 18px rgba(45,155,150,.35);
    font-weight: 900;
}

.btn-kontak:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(45,155,150,.5);
}

.materi-theme {
    font-size: .82rem;
    color: #64748b;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.materi-theme strong { color: #1a7872; }

/* ===== TABLIGH RESPONSIVE ===== */
@media (max-width: 900px) {
    .tabligh-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
    .tabligh-hero-stats { gap: 1.2rem; }
    .th-stat-num { font-size: 1.7rem; }
    .tabligh-page { padding: 2rem 16px 4rem; }
    .countdown-wrap { gap: .6rem; }
    .cd-num { font-size: 1.5rem; min-width: 48px; padding: .35rem .7rem; }
}
 /* =============================================
   RESUME PAYMENT PAGE STYLES - HEXAFEST
   ============================================= */

/* ===== HERO SECTION ===== */
.resume-hero {
    background: linear-gradient(135deg, #0f172a 0%, #1a3a4a 40%, #16213e 100%);
    padding: 120px 20px 60px;
    position: relative;
    overflow: hidden;
}
.resume-hero::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at 20% 50%, rgba(93,217,193,0.12) 0%, transparent 60%),
                radial-gradient(ellipse at 80% 20%, rgba(45,155,150,0.10) 0%, transparent 60%);
}
.resume-hero-particles { 
    position: absolute; inset: 0; overflow: hidden; pointer-events: none; 
}
.resume-hero-particles span {
    position: absolute; border-radius: 50%;
    background: radial-gradient(circle, #5dd9c1, transparent);
    opacity: .25; animation: floatP ease-in-out infinite;
}
@keyframes floatP {
    0%,100% { transform: translateY(0) scale(1); opacity:.2; }
    50%      { transform: translateY(-22px) scale(1.15); opacity:.4; }
}
.resume-hero-inner {
    position: relative; z-index: 1;
    text-align: center; max-width: 700px; margin: 0 auto;
}
.resume-hero-icon {
    width: 90px; height: 90px;
    background: linear-gradient(135deg, #5dd9c1, #2d9b96);
    border-radius: 50%; display: flex; align-items: center;
    justify-content: center; margin: 0 auto 1.5rem;
    font-size: 2.5rem; box-shadow: 0 0 40px rgba(93,217,193,0.4);
    animation: pulse 2.5s ease-in-out infinite;
}
@keyframes pulse {
    0%,100% { box-shadow: 0 0 40px rgba(93,217,193,0.4); }
    50%      { box-shadow: 0 0 70px rgba(93,217,193,0.7); }
}
.resume-hero-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    color: #fff; letter-spacing: 4px; line-height: 1;
    margin-bottom: .5rem;
}
.resume-hero-title span { color: #5dd9c1; }
.resume-hero-sub {
    color: rgba(255,255,255,.6); font-size: .95rem;
    margin-bottom: 1.5rem; font-weight: 600;
}
.resume-steps-bar {
    display: flex; align-items: center; justify-content: center;
    gap: .5rem; margin-top: 1.5rem;
}
.resume-step { display: flex; align-items: center; gap: .4rem; opacity: .45; }
.resume-step.active { opacity: 1; }
.resume-step-num {
    width: 28px; height: 28px; border-radius: 50%;
    background: #334155; color: rgba(255,255,255,.5);
    display: flex; align-items: center; justify-content: center;
    font-size: .78rem; font-weight: 800;
}
.resume-step.active .resume-step-num { background: var(--gradient-primary); color: #fff; }
.resume-step span { font-size: .78rem; color: rgba(255,255,255,.7); font-weight: 700; }
.resume-step-sep { width: 32px; height: 2px; background: #334155; border-radius: 2px; }

/* ===== PAGE LAYOUT ===== */
.resume-page { padding: 3rem 20px 5rem; background: #f1f5f9; }
.resume-grid {
    max-width: 1200px; margin: 0 auto;
    display: grid; grid-template-columns: 1fr 1.1fr; gap: 2rem;
    align-items: start;
}
@media (max-width: 900px) { .resume-grid { grid-template-columns: 1fr; } }

/* ===== CARDS ===== */
.res-card {
    background: #fff; border-radius: 18px;
    padding: 1.5rem; border: 1.5px solid #e2e8f0;
    box-shadow: 0 4px 20px rgba(45,155,150,.07);
    margin-bottom: 1.5rem; transition: box-shadow .25s;
}
.res-card:hover { box-shadow: 0 8px 30px rgba(45,155,150,.14); }
.res-card-title {
    display: flex; align-items: center; gap: .6rem;
    font-family: 'Bebas Neue', sans-serif; font-size: 1.1rem;
    letter-spacing: 1.5px; color: #1a1a2e; margin-bottom: 1rem;
}

/* ===== INFO BADGES ===== */
.info-badges { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: .5rem; }
.info-badge {
    display: flex; align-items: center; gap: .4rem;
    background: linear-gradient(135deg, rgba(93,217,193,.12), rgba(45,155,150,.08));
    border: 1px solid rgba(93,217,193,.3); border-radius: 20px;
    padding: .35rem .8rem; font-size: .78rem; font-weight: 700;
    color: #1a7872;
}

/* ===== FAQ ===== */
.faq-item { border-bottom: 1px solid #e2e8f0; }
.faq-item:last-child { border-bottom: none; }
.faq-q {
    display: flex; justify-content: space-between; align-items: center;
    padding: .9rem 0; cursor: pointer; font-weight: 700;
    color: #1a1a2e; font-size: .88rem; gap: .5rem;
    transition: color .2s;
}
.faq-q:hover { color: #2d9b96; }
.faq-icon {
    width: 22px; height: 22px; border-radius: 50%;
    background: rgba(93,217,193,.15); display: flex;
    align-items: center; justify-content: center;
    font-size: .7rem; flex-shrink: 0; transition: transform .3s, background .3s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: #5dd9c1; color: #fff; }
.faq-a {
    max-height: 0; overflow: hidden;
    transition: max-height .35s ease, padding .25s;
    font-size: .82rem; color: #64748b; line-height: 1.65;
}
.faq-item.open .faq-a { max-height: 200px; padding-bottom: .9rem; }

/* ===== TIMELINE ===== */
.timeline { position: relative; padding-left: 1.5rem; }
.timeline::before {
    content: ''; position: absolute; left: 7px; top: 0; bottom: 0;
    width: 2px; background: linear-gradient(to bottom, #5dd9c1, transparent);
}
.timeline-item { position: relative; margin-bottom: 1.2rem; }
.timeline-item::before {
    content: ''; position: absolute; left: -1.5rem; top: 3px;
    width: 14px; height: 14px; border-radius: 50%;
    background: #fff; border: 3px solid #5dd9c1;
    box-shadow: 0 0 8px rgba(93,217,193,.4);
}
.timeline-item-title { font-size: .85rem; font-weight: 800; color: #1a1a2e; margin-bottom: .2rem; }
.timeline-item-desc { font-size: .78rem; color: #64748b; line-height: 1.5; }

/* ===== PAYMENT METHODS VISUAL ===== */
.pay-logos { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: .8rem; }
.pay-logo {
    background: #f8fafc; border: 1.5px solid #e2e8f0;
    border-radius: 10px; padding: .4rem .8rem;
    font-size: .75rem; font-weight: 800; color: #475569;
    letter-spacing: .5px;
}

/* ===== FORM PANEL ===== */
.form-panel-resume {
    background: #fff; border-radius: 20px;
    border: 1.5px solid #e2e8f0;
    box-shadow: 0 8px 40px rgba(45,155,150,.1);
    overflow: hidden;
}
.form-panel-header {
    background: linear-gradient(135deg, #0f172a, #1a3a4a);
    padding: 1.8rem 1.8rem 1.5rem;
    text-align: center;
}
.form-panel-header h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.9rem; letter-spacing: 3px;
    color: #fff; margin-bottom: .3rem;
}
.form-panel-header h2 span { color: #5dd9c1; }
.form-panel-header p { color: rgba(255,255,255,.55); font-size: .82rem; }
.form-panel-body { padding: 2rem; }

/* FORM INPUTS */
.res-form-group { margin-bottom: 1.2rem; }
.res-form-group label {
    display: block; font-weight: 800; font-size: .82rem;
    color: #374151; margin-bottom: .45rem; letter-spacing: .3px;
}
.res-form-group input {
    width: 100%; padding: .75rem 1rem;
    border: 1.5px solid #e2e8f0; border-radius: 12px;
    font-family: 'Nunito', sans-serif; font-size: .88rem;
    color: #1a1a2e; background: #f8fafc;
    transition: border-color .25s, box-shadow .25s; outline: none;
}
.res-form-group input:focus {
    border-color: #5dd9c1;
    box-shadow: 0 0 0 3px rgba(93,217,193,.15);
    background: #fff;
}
.or-divider {
    display: flex; align-items: center; gap: .8rem;
    margin: 1rem 0; color: #94a3b8; font-size: .78rem; font-weight: 700;
}
.or-divider::before, .or-divider::after {
    content: ''; flex: 1; height: 1px; background: #e2e8f0;
}
.btn-resume-submit {
    width: 100%; padding: .95rem;
    background: var(--gradient-primary); color: #fff;
    border: none; border-radius: 14px; cursor: pointer;
    font-family: 'Bebas Neue', sans-serif; font-size: 1.2rem;
    letter-spacing: 2.5px; transition: all .25s;
    box-shadow: 0 4px 20px rgba(45,155,150,.35);
}
.btn-resume-submit:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(45,155,150,.5); }
.btn-resume-submit:active { transform: translateY(0); }

/* ===== STATUS RESULT CARDS ===== */
.result-paid {
    background: linear-gradient(135deg, #0f172a, #1a3a4a);
    border-radius: 18px; padding: 2rem; text-align: center; color: #fff;
}
.result-bib {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 4.5rem; line-height: 1;
    background: var(--gradient-primary);
    background-clip: text;
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    margin: .5rem 0;
}
.result-info-row {
    display: flex; justify-content: space-between; align-items: center;
    padding: .55rem 0; border-bottom: 1px solid rgba(255,255,255,.08);
    font-size: .85rem;
}
.result-info-row:last-child { border-bottom: none; }
.result-info-row span { color: rgba(255,255,255,.5); }
.result-info-row strong { color: #fff; }

/* ===== ALERT ===== */
.alert-box {
    padding: .75rem 1rem; border-radius: 10px;
    font-size: .82rem; font-weight: 700; margin-bottom: 1rem;
}
.alert-box.error { background: #fef2f2; border: 1px solid #fca5a5; color: #991b1b; }
.alert-box.success { background: #f0fdf4; border: 1px solid #86efac; color: #166534; }
.alert-box.info { background: #eff6ff; border: 1px solid #93c5fd; color: #1e40af; }
.alert-box.warning { background: #fffbeb; border: 1px solid #fcd34d; color: #92400e; }

/* ===== LOADING ===== */
.loading-wrap { text-align: center; padding: 3rem; }
.spin-big {
    width: 52px; height: 52px; border-radius: 50%;
    border: 4px solid rgba(93,217,193,.2); border-top-color: #5dd9c1;
    animation: spin .8s linear infinite; margin: 0 auto 1.2rem;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ===== DARK RESULT CARD ===== */
.dark-result-card {
    background: linear-gradient(135deg, #0f172a 0%, #1a3a4a 100%);
    border-radius: 18px; padding: 1.8rem;
    border: 1.5px solid rgba(93,217,193,.2); margin-bottom: 1.5rem;
}
.btn-teal {
    display: block; width: 100%; padding: .9rem;
    background: var(--gradient-primary); color: #fff;
    border: none; border-radius: 12px; cursor: pointer;
    font-family: 'Bebas Neue', sans-serif; font-size: 1.1rem;
    letter-spacing: 2px; text-align: center; text-decoration: none;
    margin-bottom: .8rem; transition: all .25s;
    box-shadow: 0 4px 18px rgba(45,155,150,.3);
}
.btn-teal:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(45,155,150,.5); }
.btn-gray {
    display: block; width: 100%; padding: .9rem;
    background: #334155; color: rgba(255,255,255,.8);
    border: none; border-radius: 12px; cursor: pointer;
    font-family: 'Bebas Neue', sans-serif; font-size: 1.1rem;
    letter-spacing: 2px; text-align: center; text-decoration: none;
    transition: all .25s;
}
.btn-gray:hover { background: #475569; }

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 600px) {
    .form-panel-body { padding: 1.2rem; }
    .resume-hero { padding: 100px 16px 50px; }
}