[id^="replit"] {
    display: none !important;
}

:root {
    --primary: #0077b6;
    --primary-dark: #005f8f;
    --primary-darker: #004a73;
    --primary-light: #90e0ef;
    --primary-bg: #e8f4f8;
    --accent: #00b4d8;
    --accent-light: #caf0f8;
    --bg: #f0f7fa;
    --bg-card: #ffffff;
    --text: #1a2b3c;
    --text-secondary: #5a6f80;
    --text-muted: #8a9bac;
    --border: #d4e4ed;
    --border-light: #e8f0f5;
    --error: #dc3545;
    --error-bg: #fef2f2;
    --success: #10b981;
    --success-bg: #ecfdf5;
    --warning: #f59e0b;
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.07), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -4px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.05);
    --radius: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
}

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

body {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    min-height: 100vh;
}

.navbar {
    background: var(--bg-card);
    border-bottom: 1px solid var(--border-light);
    padding: 0 1.5rem;
    height: 60px;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow-sm);
}

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

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1.125rem;
    color: var(--primary);
    text-decoration: none;
}

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

.nav-links {
    display: flex;
    gap: 0.25rem;
}

.nav-link {
    padding: 0.5rem 1rem;
    border-radius: var(--radius);
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.875rem;
    transition: all 0.15s;
}

.nav-link:hover {
    background: var(--primary-bg);
    color: var(--primary);
}

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

.form-wrapper {
    max-width: 720px;
    margin: 0 auto;
}

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

.header-icon {
    width: 64px;
    height: 64px;
    background: var(--primary-bg);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--primary);
}

.page-title {
    font-family: 'Outfit', sans-serif;
    font-size: 2.25rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.75rem;
}

.page-subtitle {
    color: var(--text-secondary);
    font-size: 1.05rem;
    max-width: 480px;
    margin: 0 auto;
}

.card {
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    overflow: visible;
    border: 1px solid var(--border-light);
}

.card-accent {
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

.card-header {
    padding: 2rem 2rem 1rem;
}

.card-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.25rem;
}

.card-desc {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.card-body {
    padding: 1rem 2rem 2rem;
}

.form-section {
    margin-bottom: 0.5rem;
}

.section-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 1rem;
}

.section-number {
    width: 24px;
    height: 24px;
    background: var(--primary-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--primary);
}

.section-divider {
    border: none;
    height: 1px;
    background: var(--border-light);
    margin: 1.5rem 0;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

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

.form-group.full-width {
    grid-column: 1 / -1;
}

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

.form-input,
.form-select {
    padding: 0.625rem 0.875rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-size: 0.9rem;
    font-family: inherit;
    background: rgba(255, 255, 255, 0.5);
    color: var(--text);
    transition: all 0.15s;
    outline: none;
}

.form-input:focus,
.form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0, 119, 182, 0.1);
}

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

.field-error {
    font-size: 0.8rem;
    color: var(--error);
    min-height: 0;
}

.alert {
    padding: 1rem;
    border-radius: var(--radius);
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
}

.alert-error {
    background: var(--error-bg);
    color: var(--error);
    border: 1px solid rgba(220, 53, 69, 0.2);
}

.alert-error svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.upload-area {
    position: relative;
    border: 2px dashed var(--border);
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: all 0.15s;
    overflow: hidden;
    margin-top: 0.5rem;
}

.upload-area:hover {
    border-color: var(--primary);
    background: var(--primary-bg);
}

.upload-input {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
    width: 100%;
    height: 100%;
}

.upload-content,
.upload-success {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    gap: 0.25rem;
    color: var(--text-secondary);
    text-align: center;
}

.upload-success {
    color: var(--primary);
}

.upload-hint {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.terms-section {
    padding-top: 1rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.875rem;
    line-height: 1.5;
    color: var(--text);
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    flex-shrink: 0;
    accent-color: var(--primary);
}

.btn-submit {
    width: 100%;
    padding: 0.875rem;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    border: none;
    border-radius: var(--radius);
    font-size: 1.05rem;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.2s;
    margin-top: 1.5rem;
}

.btn-submit:hover:not(:disabled) {
    box-shadow: 0 4px 15px rgba(0, 119, 182, 0.3);
    transform: translateY(-1px);
}

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

.spot-placeholder {
    text-align: center;
    padding: 2.5rem 1rem;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.spot-grid-wrapper {
    margin-top: 1rem;
}

.spot-grid-header {
    text-align: center;
    margin-bottom: 0.75rem;
}

.spot-grid-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text);
}

.spot-grid-subtitle {
    font-size: 0.875rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.spot-legend {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    padding: 0.75rem 0;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.legend-box {
    width: 32px;
    height: 32px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 700;
}

.legend-box.booked {
    background: #b0c4d8;
    color: #5a6f80;
}

.legend-box.available {
    background: var(--primary);
    color: white;
}

.legend-box.selected {
    background: var(--primary-darker);
    color: white;
}

.spot-grid {
    display: grid;
    grid-template-columns: repeat(8, 64px);
    gap: 5px;
    max-height: 500px;
    overflow-y: auto;
    padding: 0.5rem;
    justify-content: center;
}

.spot-btn {
    width: 64px;
    height: 64px;
    border: none;
    border-radius: var(--radius);
    font-size: 0.8rem;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.15s;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.spot-btn.available:hover {
    background: var(--primary-dark);
}

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

.spot-btn.booked {
    background: #b0c4d8;
    color: #5a6f80;
    cursor: not-allowed;
}

.spot-btn.selected {
    background: var(--primary-darker);
    color: white;
    box-shadow: 0 0 0 3px var(--primary-darker), 0 0 0 5px white;
    transform: scale(1.05);
}

.spot-refresh-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 1.25rem;
    background: #dc2626;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}
.spot-refresh-btn:hover {
    background: #b91c1c;
}
.spot-refresh-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}
.spot-refresh-btn .spin-icon {
    animation: spin 1s linear infinite;
}
@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.spot-selected-msg {
    text-align: center;
    padding: 0.75rem;
    margin-top: 0.75rem;
}

.spot-selected-msg strong {
    background: var(--primary-bg);
    color: var(--primary);
    padding: 0.5rem 1rem;
    border-radius: var(--radius);
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.selection-summary-container {
    background: var(--bg-secondary);
    border: 2px solid var(--primary);
    border-radius: var(--radius);
    padding: 1rem;
    margin-top: 1rem;
}

.selection-summary-header {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border);
}

.selection-summary-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.selection-group {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    background: var(--card-bg);
    border-radius: var(--radius);
    flex-wrap: wrap;
}

.selection-group-label {
    font-weight: 700;
    color: var(--primary);
    white-space: nowrap;
}

.selection-group-spots {
    font-weight: 600;
    color: var(--text);
}

.selection-remove-group {
    margin-left: auto;
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 1.25rem;
    cursor: pointer;
    padding: 0 0.25rem;
    line-height: 1;
    font-weight: 700;
    transition: color 0.15s;
}

.selection-remove-group:hover {
    color: #e74c3c;
}

.success-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - 120px);
}

.success-card {
    max-width: 420px;
    width: 100%;
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    box-shadow: var(--shadow-xl);
    text-align: center;
    border: 1px solid var(--border-light);
}

.success-icon {
    width: 96px;
    height: 96px;
    background: var(--success-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--success);
}

.success-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.75rem;
}

.success-desc {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.success-info {
    background: var(--bg);
    border-radius: var(--radius);
    padding: 1rem;
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.info-item svg {
    flex-shrink: 0;
    color: var(--primary);
}

.admin-wrapper {
    max-width: 100%;
}

.admin-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.admin-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text);
}

.badge {
    display: inline-flex;
    align-items: center;
    padding: 0.375rem 0.75rem;
    background: var(--primary-bg);
    color: var(--primary);
    border-radius: 9999px;
    font-size: 0.8rem;
    font-weight: 600;
}

.empty-state {
    text-align: center;
    padding: 4rem 1rem;
    color: var(--text-muted);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.table-container {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    overflow-x: auto;
    border: 1px solid var(--border-light);
}

.data-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.85rem;
}

.data-table thead {
    background: var(--bg);
}

.data-table th {
    padding: 0.75rem 1rem;
    text-align: left;
    font-weight: 600;
    color: var(--text-secondary);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.025em;
    white-space: nowrap;
    border-bottom: 1px solid var(--border);
}

.data-table td {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid var(--border-light);
    color: var(--text);
    white-space: nowrap;
}

.data-table tbody tr {
    transition: background 0.15s ease;
}

.data-table tbody tr:hover {
    background: var(--primary-bg);
}

.data-table tbody tr:last-child td {
    border-bottom: none;
}

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

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

.no-receipt {
    color: var(--text-muted);
    font-size: 0.8rem;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.625rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.01em;
}

.status-badge.confirmed {
    background: var(--success-bg);
    color: var(--success);
}

.status-badge.pending {
    background: #fef3c7;
    color: var(--warning);
}

.nav-mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-secondary);
    padding: 0.5rem;
    border-radius: var(--radius);
}

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

.hero-section {
    position: relative;
    min-height: 600px;
    background-color: #003d5c;
    background-image: url('/images/banner.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 30, 50, 0.55) 0%, rgba(0, 20, 40, 0.7) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 3rem 1.5rem;
    max-width: 640px;
}

.hero-badge {
    display: inline-block;
    padding: 0.375rem 1rem;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 9999px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(8px);
}

.hero-title {
    font-family: 'Outfit', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    line-height: 1.1;
    margin-bottom: 1rem;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

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

.hero-actions {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    background: white;
    color: var(--primary);
    border: none;
    border-radius: var(--radius);
    font-size: 1rem;
    font-weight: 700;
    font-family: inherit;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.btn-hero-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.btn-hero-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: var(--radius);
    font-size: 1rem;
    font-weight: 600;
    font-family: inherit;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s;
    backdrop-filter: blur(8px);
}

.btn-hero-outline:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
}

.countdown-section {
    background: var(--primary-darker);
    padding: 2.5rem 1rem;
    position: relative;
    overflow: hidden;
}

.countdown-inner {
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.catfish-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.catfish {
    position: absolute;
    opacity: 0.08;
    filter: blur(1px);
}

.catfish svg {
    fill: rgba(255, 255, 255, 0.6);
    width: 100%;
    height: 100%;
}

.catfish-1 {
    width: 140px;
    height: 56px;
    top: 20%;
    animation: swimRight 18s linear infinite;
    animation-delay: 0s;
}

.catfish-2 {
    width: 100px;
    height: 40px;
    top: 55%;
    animation: swimLeft 22s linear infinite;
    animation-delay: -5s;
    opacity: 0.06;
}

.catfish-3 {
    width: 170px;
    height: 68px;
    top: 40%;
    animation: swimRight 25s linear infinite;
    animation-delay: -10s;
    opacity: 0.05;
    filter: blur(2px);
}

.catfish-4 {
    width: 90px;
    height: 36px;
    top: 70%;
    animation: swimLeft 16s linear infinite;
    animation-delay: -3s;
    opacity: 0.07;
}

.catfish-5 {
    width: 120px;
    height: 48px;
    top: 10%;
    animation: swimLeft 20s linear infinite;
    animation-delay: -8s;
    opacity: 0.05;
    filter: blur(1.5px);
}

@keyframes swimRight {
    0% {
        transform: translateX(-200px) scaleX(-1) rotate(2deg);
    }
    25% {
        transform: translateX(25vw) scaleX(-1) rotate(-1deg);
    }
    50% {
        transform: translateX(50vw) scaleX(-1) rotate(2deg);
    }
    75% {
        transform: translateX(75vw) scaleX(-1) rotate(-1deg);
    }
    100% {
        transform: translateX(calc(100vw + 200px)) scaleX(-1) rotate(2deg);
    }
}

@media (prefers-reduced-motion: reduce) {
    .catfish {
        animation: none !important;
        display: none;
    }
}

@keyframes swimLeft {
    0% {
        transform: translateX(calc(100vw + 200px)) rotate(2deg);
    }
    25% {
        transform: translateX(75vw) rotate(-1deg);
    }
    50% {
        transform: translateX(50vw) rotate(2deg);
    }
    75% {
        transform: translateX(25vw) rotate(-1deg);
    }
    100% {
        transform: translateX(-200px) rotate(2deg);
    }
}

.countdown-label {
    color: var(--primary-light);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
}

.countdown-timer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.countdown-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 72px;
}

.countdown-value {
    font-family: 'Outfit', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: white;
    line-height: 1;
}

.countdown-text {
    font-size: 0.75rem;
    color: var(--primary-light);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 0.375rem;
    font-weight: 500;
}

.countdown-separator {
    font-family: 'Outfit', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 1rem;
}

.countdown-date {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1.25rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    font-weight: 500;
}

.landing-container {
    max-width: 960px;
    margin: 0 auto;
    padding: 3rem 1rem;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin-bottom: 3rem;
}

.info-card {
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    padding: 2rem 1.5rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-light);
    text-align: center;
    transition: all 0.2s;
}

.info-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

.info-icon {
    width: 56px;
    height: 56px;
    background: var(--primary-bg);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: var(--primary);
}

.info-card-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.75rem;
}

.info-card-text {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
}

.info-link {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    margin-top: 0.75rem;
    transition: color 0.15s;
}

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

.registration-info-section {
    margin-bottom: 2.5rem;
}

.reg-info-card {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    box-shadow: var(--shadow-lg);
}

.reg-info-left {
    flex: 1;
}

.reg-info-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.reg-info-desc {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
    margin-bottom: 1.25rem;
    line-height: 1.5;
}

.reg-info-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.reg-info-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.875rem;
}

.reg-info-list li svg {
    flex-shrink: 0;
    color: rgba(255, 255, 255, 0.7);
}

.reg-info-right {
    flex-shrink: 0;
}

.btn-register-large {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    padding: 1rem 2rem;
    background: white;
    color: var(--primary);
    border: none;
    border-radius: var(--radius);
    font-size: 1.05rem;
    font-weight: 700;
    font-family: inherit;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    white-space: nowrap;
}

.btn-register-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.quick-links-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.quick-link-card {
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    padding: 1.25rem 1.5rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    color: inherit;
    transition: all 0.2s;
}

.quick-link-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--primary-light);
}

.quick-link-icon {
    width: 48px;
    height: 48px;
    background: var(--primary-bg);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    flex-shrink: 0;
}

.quick-link-title {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--text);
}

.quick-link-desc {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-top: 0.125rem;
}

.quick-link-arrow {
    margin-left: auto;
    color: var(--text-muted);
    flex-shrink: 0;
}

.whatsapp-section {
    text-align: center;
    margin-bottom: 1rem;
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.875rem 2rem;
    background: #25d366;
    color: white;
    border: none;
    border-radius: var(--radius);
    font-size: 1rem;
    font-weight: 700;
    font-family: inherit;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.whatsapp-btn:hover {
    background: #22c55e;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
}

.landing-footer {
    text-align: center;
    padding: 2rem 1rem;
    border-top: 1px solid var(--border-light);
    color: var(--text-muted);
    font-size: 0.8rem;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 60px;
        left: 0;
        right: 0;
        background: var(--bg-card);
        border-bottom: 1px solid var(--border-light);
        flex-direction: column;
        padding: 0.5rem;
        box-shadow: var(--shadow-md);
        z-index: 99;
    }

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

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

    .navbar {
        position: relative;
    }

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

    .countdown-value {
        font-size: 2rem;
    }

    .countdown-unit {
        min-width: 52px;
    }

    .countdown-separator {
        font-size: 1.75rem;
    }

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

    .reg-info-card {
        flex-direction: column;
        text-align: center;
        padding: 2rem 1.5rem;
    }

    .reg-info-list li {
        justify-content: center;
    }

    .quick-links-section {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .form-grid {
        grid-template-columns: 1fr;
    }

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

    .card-header,
    .card-body {
        padding-left: 1.25rem;
        padding-right: 1.25rem;
    }

    .spot-grid {
        grid-template-columns: repeat(5, 57px);
    }

    .spot-btn {
        width: 57px;
        height: 57px;
        font-size: 0.7rem;
    }
}

.login-page {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - 60px);
    padding: 2rem;
    background: linear-gradient(135deg, #e0f2fe 0%, #f0f9ff 30%, #f8fafc 60%, #ecfeff 100%);
}

.login-card {
    background: var(--bg-card);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 77, 130, 0.08), 0 8px 16px rgba(0, 0, 0, 0.04);
    padding: 2.75rem 2.5rem;
    width: 100%;
    max-width: 420px;
    border: 1px solid rgba(226, 232, 240, 0.6);
}

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

.login-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: linear-gradient(135deg, #0077b6, #0ea5e9);
    color: #fff;
    margin-bottom: 1.25rem;
    box-shadow: 0 4px 12px rgba(0, 119, 182, 0.25);
}

.login-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.25rem;
}

.login-subtitle {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.login-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.7rem 1.25rem;
    font-size: 0.95rem;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 119, 182, 0.2);
    transition: all 0.2s ease;
}

.login-btn:hover {
    box-shadow: 0 4px 16px rgba(0, 119, 182, 0.3);
    transform: translateY(-1px);
}

.admin-header-actions {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    flex-wrap: wrap;
}

.btn-outline-sm {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.45rem 0.9rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    background: var(--bg-card);
    transition: all 0.2s;
    cursor: pointer;
}

.btn-outline-sm:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: var(--primary-bg);
}

.btn-danger-sm {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.4rem 0.8rem;
    border: 1px solid var(--error);
    border-radius: var(--radius);
    color: var(--error);
    font-size: 0.8rem;
    font-weight: 500;
    background: transparent;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-danger-sm:hover {
    background: var(--error);
    color: white;
}

.chart-container {
    position: relative;
    height: 300px;
    width: 100%;
}

.text-muted {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.alert-success {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1rem;
    border-radius: 10px;
    background: #ecfdf5;
    border: 1px solid #a7f3d0;
    color: #065f46;
    font-size: 0.88rem;
    margin-bottom: 1.5rem;
}

.tournament-card .card-body {
    padding-top: 0.5rem;
}

.add-zone-grid {
    grid-template-columns: 1fr 1fr auto;
}

.pond-card .data-table {
    font-size: 0.85rem;
}

.pond-card .data-table th,
.pond-card .data-table td {
    padding: 0.5rem 0.75rem;
}

.btn-export {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.45rem 1rem;
    background: #f8fafc;
    color: #475569;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 0.82rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.15s ease;
}

.btn-export:hover {
    background: #f1f5f9;
    border-color: var(--primary);
    color: var(--primary);
}

.btn-edit-sm {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.35rem 0.75rem;
    background: #f8fafc;
    color: #475569;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    font-size: 0.78rem;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s;
}

.btn-edit-sm:hover {
    background: var(--primary-light);
    border-color: var(--primary);
    color: var(--primary);
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    background: rgba(15, 23, 42, 0.55);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    padding: 1rem;
    padding-bottom: calc(1rem + env(safe-area-inset-bottom, 0px));
    box-sizing: border-box;
}

.modal-dialog {
    background: #ffffff;
    border-radius: 16px;
    width: 100%;
    max-width: 520px;
    max-height: 85vh;
    max-height: 85dvh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(0, 0, 0, 0.04);
    position: relative;
    z-index: 100000;
}

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid #f1f5f9;
    flex-shrink: 0;
}

.modal-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #0f172a;
    margin: 0;
}

.modal-close {
    background: none;
    border: none;
    font-size: 1.4rem;
    color: var(--text-muted);
    cursor: pointer;
    padding: 0;
    line-height: 1;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: all 0.15s;
}

.modal-close:hover {
    color: var(--text-primary);
    background: #f1f5f9;
}

.modal-body {
    padding: 1.5rem;
    overflow-y: auto;
    flex: 1;
    min-height: 0;
    -webkit-overflow-scrolling: touch;
}

.modal-body .form-group {
    margin-bottom: 1rem;
}

.modal-body .form-input,
.modal-body .form-select {
    width: 100%;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    color: #1e293b;
    box-sizing: border-box;
    border-radius: 8px;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.modal-body .form-input:focus,
.modal-body .form-select:focus {
    border-color: #0ea5e9;
    box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.1);
    outline: none;
}

.modal-body .form-label {
    color: #374151;
    font-weight: 600;
    font-size: 0.82rem;
    margin-bottom: 0.35rem;
    display: block;
}

.modal-footer {
    display: flex;
    justify-content: flex-end;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    border-top: 1px solid #f1f5f9;
    flex-shrink: 0;
}

.btn-secondary {
    padding: 0.5rem 1.25rem;
    background: #f8fafc;
    color: #475569;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 0.84rem;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s;
}

.btn-secondary:hover {
    background: #f1f5f9;
    border-color: #cbd5e1;
}

.btn-primary {
    padding: 0.5rem 1.25rem;
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 0.84rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    transition: background 0.2s;
}

.btn-primary:hover {
    background: var(--primary-dark);
    box-shadow: 0 2px 8px rgba(0, 119, 182, 0.25);
}

.alert-error {
    background: #fef2f2;
    color: #dc2626;
    border: 1px solid #fecaca;
    border-radius: 10px;
    padding: 0.75rem 1rem;
    font-size: 0.85rem;
    margin-top: 0.5rem;
}

.pond-layout-grid {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 1rem;
    align-items: start;
}

@media (max-width: 900px) {
    .pond-layout-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 0.75rem !important;
    }

    .pond-layout-grid > div {
        width: 100% !important;
        min-width: 0 !important;
    }

    .pond-layout-grid .table-container {
        overflow-x: auto;
    }

    .add-zone-grid {
        grid-template-columns: 1fr;
    }

    .admin-header-actions {
        flex-direction: row;
        gap: 0.5rem;
    }

    .login-card {
        padding: 1.75rem;
    }

    .modal-dialog {
        max-width: 100%;
    }
}

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

.spinner {
    animation: spin 0.8s linear infinite;
}

.btn-page {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2rem;
    height: 2rem;
    padding: 0 0.5rem;
    border: 1px solid var(--border);
    border-radius: 6px;
    background: var(--white);
    color: var(--text-primary);
    font-size: 0.85rem;
    cursor: pointer;
    transition: background 0.15s, border-color 0.15s;
}

.btn-page:hover:not(.disabled):not(.active) {
    background: var(--bg-light);
    border-color: var(--primary);
}

.btn-page.active {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    font-weight: 600;
}

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

.reg-page {
    min-height: 100vh;
    background: linear-gradient(160deg, #f0f7fa 0%, #e4f1f8 40%, #f5f9fc 100%);
}

.reg-header {
    padding: 2rem 1rem 0;
    text-align: center;
}

.reg-header-inner {
    max-width: 680px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.reg-header-logo {
    height: 56px;
    margin-bottom: 0.75rem;
}

.reg-header-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 0.125rem;
    letter-spacing: -0.01em;
}

.reg-header-subtitle {
    color: var(--text-muted);
    font-size: 0.92rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.reg-body {
    padding: 0 1rem 3rem;
}

.reg-container {
    max-width: 680px;
    margin: 0 auto;
}

.reg-bank-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0, 77, 120, 0.08);
    border: 1px solid rgba(0, 119, 182, 0.08);
    margin-bottom: 1.5rem;
    overflow: hidden;
}

.reg-bank-card-inner {
    display: flex;
    align-items: center;
    padding: 1.5rem;
    gap: 1.5rem;
}

.reg-bank-left {
    flex: 1;
}

.reg-bank-label {
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-muted);
    margin-bottom: 0.625rem;
}

.reg-bank-name {
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--text);
}

.reg-bank-institution {
    font-weight: 600;
    color: var(--primary);
    font-size: 0.88rem;
    margin-top: 0.125rem;
}

.reg-bank-account {
    font-size: 1.25rem;
    font-weight: 800;
    font-family: 'Outfit', sans-serif;
    color: var(--text);
    letter-spacing: 1.5px;
    margin-top: 0.5rem;
}

.reg-bank-copy {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    margin-top: 0.75rem;
    padding: 0.4rem 0.875rem;
    background: var(--primary-bg);
    color: var(--primary);
    border: 1px solid transparent;
    border-radius: 8px;
    font-size: 0.78rem;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
    transition: all 0.15s;
}

.reg-bank-copy:hover {
    background: var(--primary);
    color: white;
}

.reg-bank-divider {
    width: 1px;
    align-self: stretch;
    background: var(--border-light);
}

.reg-bank-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.375rem;
    flex-shrink: 0;
}

.reg-bank-qr-link {
    display: block;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.15s;
}

.reg-bank-qr-link:hover {
    transform: scale(1.03);
}

.reg-bank-qr {
    width: 180px;
    height: 180px;
    object-fit: contain;
    display: block;
}

.reg-bank-qr-hint {
    font-size: 0.7rem;
    color: var(--text-muted);
    font-weight: 500;
}
.swal-qr-image {
    max-width: 320px !important;
    width: 100% !important;
    margin: 0 auto !important;
}

.reg-form {
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0, 77, 120, 0.08);
    border: 1px solid rgba(0, 119, 182, 0.08);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.reg-alert {
    padding: 0.875rem 1rem;
    background: var(--error-bg);
    color: var(--error);
    border: 1px solid rgba(220, 53, 69, 0.15);
    border-radius: 10px;
    display: flex;
    align-items: flex-start;
    gap: 0.625rem;
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
}

.reg-alert svg {
    flex-shrink: 0;
    margin-top: 1px;
}

.reg-section {
    padding-bottom: 1.75rem;
    margin-bottom: 1.75rem;
    border-bottom: 1px solid var(--border-light);
}

.reg-section:last-of-type {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.reg-section-head {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}

.reg-step-badge {
    width: 28px;
    height: 28px;
    min-width: 28px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 800;
    font-family: 'Outfit', sans-serif;
    margin-top: 1px;
}

.reg-section-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text);
    line-height: 1.2;
}

.reg-section-desc {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-top: 0.125rem;
}

.reg-fields {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.reg-field {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
}

.reg-field-full {
    grid-column: 1 / -1;
}

.reg-label {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text);
}

.reg-required {
    color: var(--error);
    font-weight: 700;
}

.reg-optional {
    font-weight: 400;
    color: var(--text-muted);
    font-size: 0.78rem;
}

.reg-input,
.reg-select {
    padding: 0.625rem 0.875rem;
    border: 1.5px solid var(--border);
    border-radius: 10px;
    font-size: 0.88rem;
    font-family: inherit;
    background: white;
    color: var(--text);
    transition: border-color 0.15s, box-shadow 0.15s;
    outline: none;
    width: 100%;
}

.reg-input:focus,
.reg-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0, 119, 182, 0.08);
}

.reg-input::placeholder {
    color: var(--text-muted);
}

.reg-input-prefix-wrap {
    position: relative;
    display: flex;
    align-items: center;
}

.reg-input-prefix {
    position: absolute;
    left: 0.875rem;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--text-muted);
    pointer-events: none;
    z-index: 1;
}

.reg-input-has-prefix {
    padding-left: 2.75rem;
}

.reg-error {
    font-size: 0.78rem;
    color: var(--error);
    min-height: 0;
}

.reg-price-info {
    background: linear-gradient(135deg, #f0f9ff, #e8f4f8);
    border: 1px solid rgba(0, 119, 182, 0.1);
    border-radius: 10px;
    padding: 0.875rem 1rem;
    margin-bottom: 1rem;
}

.reg-price-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
    font-size: 0.88rem;
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.reg-price-row strong {
    font-weight: 700;
}

.reg-price-deposit {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-left: 1.625rem;
}

.reg-upload {
    position: relative;
    border: 2px dashed var(--border);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s;
    overflow: hidden;
    margin-top: 0.25rem;
}

.reg-upload:hover {
    border-color: var(--primary);
    background: #f8fcfe;
}

.reg-upload-content,
.reg-upload-success {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1.75rem;
    gap: 0.375rem;
    text-align: center;
}

.reg-upload-icon {
    width: 44px;
    height: 44px;
    background: var(--primary-bg);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    margin-bottom: 0.25rem;
}

.reg-upload-icon.success {
    background: var(--success-bg);
    color: var(--success);
}

.reg-upload-text {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.reg-upload-text strong {
    color: var(--primary);
}

.reg-upload-hint {
    font-size: 0.72rem;
    color: var(--text-muted);
}

.reg-terms {
    padding-top: 0.5rem;
}

.reg-terms-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.85rem;
    line-height: 1.5;
    color: var(--text-secondary);
}

.reg-checkbox {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    flex-shrink: 0;
    accent-color: var(--primary);
    border-radius: 4px;
}

.reg-submit {
    width: 100%;
    padding: 0.875rem;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.2s;
    margin-top: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.reg-submit span {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.reg-submit:hover:not(:disabled) {
    box-shadow: 0 6px 20px rgba(0, 119, 182, 0.25);
    transform: translateY(-1px);
}

.reg-submit:disabled {
    opacity: 0.45;
    cursor: not-allowed;
}

@media (max-width: 640px) {
    .reg-header {
        padding: 1.5rem 1rem 0;
    }

    .reg-header-title {
        font-size: 1.35rem;
    }

    .reg-body {
        padding: 0 0.75rem 2rem;
    }

    .reg-form {
        padding: 1.25rem;
    }

    .reg-fields {
        grid-template-columns: 1fr;
    }

    .reg-bank-card-inner {
        flex-direction: column;
        text-align: center;
    }

    .reg-bank-divider {
        width: 100%;
        height: 1px;
    }

    .reg-bank-copy {
        margin: 0.75rem auto 0;
    }
}

.radio-group {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
    margin-top: 0.25rem;
}

@media (max-width: 768px) {
    .radio-group {
        grid-template-columns: 1fr;
    }
}

.radio-option {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    padding: 0.6rem 0.75rem;
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    cursor: pointer;
    transition: all 0.2s ease;
    background: var(--bg-card);
}

.radio-option:hover {
    border-color: var(--primary-light);
    background: var(--primary-bg);
}

.radio-option:has(input:checked) {
    border-color: var(--primary);
    background: var(--primary-bg);
    box-shadow: 0 0 0 1px var(--primary);
}

.radio-option input[type="radio"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    min-width: 18px;
    border: 2px solid var(--border);
    border-radius: 50%;
    margin: 1px 0 0;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
    background: var(--bg-card);
}

.radio-option input[type="radio"]:checked {
    border-color: var(--primary);
    background: var(--bg-card);
}

.radio-option input[type="radio"]:checked::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary);
}

.radio-option .radio-text {
    font-size: 0.88rem;
    color: var(--text);
    line-height: 1.4;
}

.radio-option .radio-hint {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-top: 0.1rem;
}