/* ============================================
   GLOBAL STYLES & RESET
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #344075;
    --primary-dark: #4f46e5;
    --secondary: #3c1761;
    --success: #10b981;
    --danger: #ef4444;
    --warning: #f59e0b;
    --dark: #1f2937;
    --dark-light: #374151;
    --gray: #6b7280;
    --light: #f3f4f6;
    --white: #ffffff;
    --white-shadow: rgba(255,255,255,0.2);
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
    --radius: 12px;
    --radius-sm: 8px;
    --transition: all 0.3s ease;
    --border: #e5e7eb;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: linear-gradient(135deg, #344075 0%, #3c1761 100%);
    color: var(--dark);
    min-height: 100vh;
    overflow-x: hidden;
}

#app {
    max-width: 600px;
    margin: 0 auto;
    min-height: 100vh;
    background: var(--white);
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
}

/* ============================================
   NAVIGATION TABS
   ============================================ */
.nav-tabs {
    display: flex;
    background: var(--white);
    border-bottom: 2px solid var(--light);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow);
}

.tab-btn {
    flex: 1;
    padding: 11px 6px;
    background: none;
    border: none;
    font-size: 14px;
    font-weight: 600;
    color: var(--gray);
    cursor: pointer;
    transition: var(--transition);
    border-bottom: 3px solid transparent;
}

.tab-btn.active {
    color: var(--primary);
    border-bottom-color: var(--primary);
}

.tab-btn:hover {
    background: var(--light);
}

.info-red {
    color: red;
}

/* ============================================
   TAB CONTENT
   ============================================ */
.tab-content {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
}

.tab-pane {
    display: none;
    animation: fadeIn 0.3s ease;
    height: 100%;
}

.tab-pane.active {
    display: block;
}

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

/* ============================================
   HOME TAB
   ============================================ */
.home-container {
    padding: 24px;
    text-align: center;
}

.logo h1 {
    font-size: 32px;
    margin-bottom: 8px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tagline {
    color: var(--gray);
    font-size: 16px;
    margin-bottom: 8px;
}
.online-indicator,
.version-tag {
    display: inline-block;
    font-size: 12px;
    color: var(--gray);
    text-decoration: none;
    padding: 2px 8px;
    background: var(--light);
    border-radius: 10px;
    margin-bottom: 24px;
    transition: var(--transition);
}

.version-tag:hover {
    color: var(--primary);
    background: rgba(99, 102, 241, 0.1);
}

.status-card {
    position: relative;
    background: var(--light);
    border-radius: var(--radius);
    padding: 20px;
    margin: 24px 0;
}

.status-text {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-weight: 600;
    font-size: 18px;
}

.status-icon {
    font-size: 24px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.action-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 24px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 32px;
}

.stat-card {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    padding: 24px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.stat-value {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    opacity: 0.9;
}

.leave-reason-tag {
    display: block;
    margin-top: 16px;
    padding: 8px 14px;
    border-radius: 999px;
    background: var(--dark-light);
    color: var(--white);
    font-size: 13px;
    text-align: center;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    padding: 12px 24px;
    border: none;
    border-radius: var(--radius-sm);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.btn:active {
    transform: scale(0.98);
}

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

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

.btn-secondary {
    background: var(--gray);
    color: var(--white);
}

.btn-secondary:hover {
    background: var(--dark-light);
}

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

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

.btn-large {
    padding: 16px 32px;
    font-size: 18px;
    width: 100%;
}

.btn-small {
    padding: 8px 16px;
    font-size: 14px;
}

.btn-end-expose {
    background: linear-gradient(135deg, #ff3838, #ff6b6b);
    color: white;
    font-weight: bold;
    border: 2px solid #ff1a1a;
    animation: end-expose-pulse 1.5s infinite;
    box-shadow: 0 4px 15px rgba(255, 56, 56, 0.4);
}

.btn-end-expose:hover {
    background: linear-gradient(135deg, #ff1a1a, #ff3838);
    box-shadow: 0 6px 20px rgba(255, 56, 56, 0.6);
    transform: translateY(-2px);
}

.btn-chat-leave {
    background: var(--white);
    color: #e74c3c;
    border: 2px solid #e74c3c;
    font-weight: 600;
}

.btn-chat-leave:hover {
    background: #fff5f5;
    box-shadow: 0 2px 8px rgba(231, 76, 60, 0.25);
}

@keyframes end-expose-pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(255, 56, 56, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 25px rgba(255, 56, 56, 0.7);
    }
}

.btn-icon {
    padding: 12px;
    font-size: 20px;
}

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


/* ============================================
   FOOTER LINKS
   ============================================ */
.footer-links {
    margin-top: 40px;
    padding: 20px;
    text-align: center;
    border-top: 1px solid var(--light);
}

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

.footer-links a:hover {
    color: var(--primary);
    text-decoration: underline;
}

/* ============================================
   HOW TO PLAY PAGE
   ============================================ */
#howtoplay-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
    color: var(--text-color);
}

.back-link {
    display: inline-block;
    margin-bottom: 20px;
    color: var(--primary);
    text-decoration: none;
    font-size: 16px;
    transition: var(--transition);
}

.back-link:hover {
    opacity: 0.8;
}

.back-button {
    position: fixed;
    top: 20px;
    left: 20px;
    padding: 12px 24px;
    background: white;
    color: #667eea;
    border: none;
    border-radius: 25px;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
    z-index: 100;
}

.back-button:hover {
    background: #667eea;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .back-button {
        position: static;
        display: block;
        margin: 0 auto 30px;
        width: fit-content;
    }
}

#howtoplay-container .header {
    text-align: center;
    margin-bottom: 40px;
}

#howtoplay-container .header h1 {
    font-size: 36px;
    margin-bottom: 10px;
}

#howtoplay-container .header p {
    font-size: 18px;
    color: var(--dark-light);
}

.guide-nav {
    background: white;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 40px;
}

.guide-nav h3 {
    margin-bottom: 15px;
}

.guide-nav ul {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 10px;
}

.guide-nav a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}

.guide-nav a:hover {
    opacity: 0.8;
}

.game-guide {
    background: white;
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 30px;
}

.game-guide h2 {
    color: var(--primary);
    margin-bottom: 20px;
}

.game-guide h3 {
    margin-bottom: 10px;
    margin-top: 20px;
}

.game-guide h3:first-of-type {
    margin-top: 0;
}

.game-guide p {
    line-height: 1.6;
    color: var(--dark-light);
}

.game-guide ul {
    line-height: 1.8;
    color: var(--dark-light);
}

.game-guide img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 10px 0;
    border-radius: 8px;
}

.general-tips {
    background: white;
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 30px;
}

.general-tips h2 {
    color: var(--primary);
    margin-bottom: 20px;
}

.general-tips ul {
    line-height: 1.8;
    color: var(--dark-light);
}

#howtoplay-container .footer-nav {
    text-align: center;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid rgba(255, 255, 255, 0.1);
}

#howtoplay-container .footer-nav .btn {
    display: inline-block;
    padding: 15px 40px;
    font-size: 18px;
}

/* ============================================
   ACCESSIBILITY
   ============================================ */
button:focus,
input:focus,
select:focus {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

/* ============================================
   FAQ MODAL STYLES
   ============================================ */
.faq-modal-content {
    max-width: 600px;
    max-height: 80vh;
    overflow-y: auto;
}

.faq-container {
    margin-top: 20px;
}

.faq-item {
    border: 1px solid var(--light);
    border-radius: var(--radius-sm);
    margin-bottom: 12px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: var(--primary);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    background: var(--light);
    cursor: pointer;
    font-weight: 600;
    color: var(--dark);
    transition: var(--transition);
}

.faq-question:hover {
    background: #e5e7eb;
}

.faq-arrow {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-arrow {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background: var(--white);
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 16px 20px;
}

.faq-answer p {
    margin: 0;
    color: var(--gray);
    line-height: 1.6;
}

/* ============================================
   PLAYDATE MODE STYLES
   ============================================ */
.playdate-toggle-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: 20px 0;
    padding: 16px;
    background: var(--light);
    border-radius: var(--radius);
    position: relative;
}

.toggle-label {
    font-weight: 600;
    color: var(--dark);
    font-size: 16px;
}

.new-badge {
    position: relative;
    display: inline-block;
    padding: 4px 8px;
    background: linear-gradient(135deg, #90ff6b 0%, #43af4b 100%);
    color: white;
    font-size: 11px;
    font-weight: bold;
    border-radius: 4px;
    cursor: pointer;
    margin-left: 8px;
    box-shadow: 0 2px 4px rgba(238, 90, 111, 0.3);
    animation: badge-pulse 2s ease-in-out infinite;
}

.experimental-badge {
    position: relative;
    display: inline-block;
    padding: 4px 8px;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
    font-size: 11px;
    font-weight: bold;
    border-radius: 4px;
    margin-left: 8px;
    box-shadow: 0 2px 4px rgba(245, 158, 11, 0.3);
    animation: badge-pulse 2s ease-in-out infinite;
}

@keyframes badge-pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 2px 4px rgba(117, 238, 90, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 4px 8px rgba(110, 238, 90, 0.5);
    }
}

.new-badge:hover {
    background: linear-gradient(135deg, #7aee5a 0%, #43af4b 100%);
}

.badge-flyout {
    display: none;
    position: absolute;
    bottom: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%);
    width: 280px;
    padding: 12px 16px;
    background: white;
    color: black;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    font-size: 13px;
    font-weight: normal;
    line-height: 1.5;
    z-index: 1000;
    text-align: left;
}

.badge-flyout-visible {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    width: 280px;
    padding: 12px 16px;
    background: white;
    color: black;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    font-size: 13px;
    font-weight: normal;
    line-height: 1.5;
    z-index: 1000;
    text-align: left;
}

.badge-flyout-visible.show {
    display: block;
    font-family: 'Segoe UI', system-ui, sans-serif;
    font-size: 14px;
    letter-spacing: 0.2px;
    animation: flyout-appear-down 0.2s ease-out, glow-border 2s ease-in-out infinite;
}

@keyframes glow-border {
    0%, 100% { box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15), 0 0 10px rgba(74, 144, 226, 0.5); }
    50% { box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15), 0 0 20px rgba(74, 144, 226, 0.8); }
}

.badge-flyout-visible::after {
    content: '';
    position: absolute;
    bottom: 100%;
    right: 20px;
    border: 8px solid transparent;
    border-bottom-color: white;
}

.badge-flyout-visible::before {
    content: '';
    position: absolute;
    bottom: 100%;
    right: 19px;
    border: 9px solid transparent;
    border-bottom-color: var(--border);
    margin-bottom: 1px;
}

@keyframes flyout-appear-down {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

#game-settings-btn {
    position: relative;
    overflow: visible;
}

.badge-flyout::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 8px solid transparent;
    border-top-color: white;
}

.badge-flyout::before {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 9px solid transparent;
    border-top-color: var(--border);
    margin-top: 1px;
}

.new-badge:hover .badge-flyout {
    display: block;
    animation: flyout-appear 0.2s ease-out;
}

@keyframes flyout-appear {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(5px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

.toggle-switch {
    position: relative;
    display: inline-block;
    width: 54px;
    height: 28px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: 0.4s;
    border-radius: 34px;
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: 0.4s;
    border-radius: 50%;
}

.toggle-switch input:checked + .toggle-slider {
    background-color: var(--primary);
}

.toggle-switch input:focus + .toggle-slider {
    box-shadow: 0 0 1px var(--primary);
}

.toggle-switch input:checked + .toggle-slider:before {
    transform: translateX(26px);
}

/* Session ID Display Card */
.session-id-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    padding: 16px 20px;
    border-radius: var(--radius);
    margin: 0 20px 20px 20px;
    box-shadow: var(--shadow);
}

/* Collapsible Settings Section */
.collapsible-section {
    margin: 20px;
    background: var(--light);
    border-radius: var(--radius);
    overflow: hidden;
}

.collapsible-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    background: var(--light);
    cursor: pointer;
    font-weight: 600;
    font-size: 15px;
    transition: background 0.2s ease;
    user-select: none;
}

.collapsible-header:hover {
    background: rgba(0, 0, 0, 0.03);
}

.collapse-arrow {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.collapsible-header.active .collapse-arrow {
    transform: rotate(-180deg);
}

.collapsible-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.collapsible-content.expanded {
    max-height: 800px;
}

/* Nickname Container */
.nickname-container {
    margin: 20px;
    padding: 16px;
    background: var(--white);
    border-radius: var(--radius);
}

.nickname-container label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--dark);
}

.nickname-input {
    width: 100%;
    padding: 12px;
    border: 2px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 16px;
    transition: var(--transition);
}

.nickname-input:focus {
    outline: none;
    border-color: var(--primary);
}

.nickname-input.error {
    border-color: var(--danger);
}

.nickname-hint {
    display: block;
    margin-top: 6px;
    font-size: 12px;
    color: var(--gray);
}

.nickname-error {
    display: block;
    margin-top: 6px;
    font-size: 12px;
    color: var(--danger);
    font-weight: 600;
}

/* Gender Selection */
.gender-container {
    margin: 20px;
    padding: 16px;
    background: var(--white);
    border-radius: var(--radius);
}

.gender-label {
    display: block;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--dark);
}

.gender-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 8px;
}

.gender-unknown {
    color: red;
}

.gender-male {
    color: dodgerblue;
}

.gender-female {
    color: deeppink;
}

.gender-trans {
    color: yellow;
}

.gender-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 14px 12px;
    background: var(--white);
    border: 2px solid #e5e7eb;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: inherit;
    min-height: 70px;
}

.gender-btn:hover {
    border-color: var(--primary);
    background: #f9fafb;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(99, 102, 241, 0.1);
}

.gender-btn.active {
    border-color: var(--primary);
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.1));
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.2);
}

.gender-icon {
    font-size: 28px;
    line-height: 1;
}

.gender-text {
    font-size: 13px;
    font-weight: 600;
    color: var(--dark);
}

.gender-btn.active .gender-text {
    color: var(--primary);
}

.gender-hint {
    display: block;
    margin-top: 6px;
    font-size: 12px;
    color: var(--gray);
}

/* Age Range Setting */
.age-range-container {
    margin: 20px;
    padding: 16px;
    background: var(--white);
    border-radius: var(--radius);
}

.age-range-label {
    display: block;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--dark);
}

.age-range-options {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 8px;
}

.age-range-btn {
    padding: 8px 14px;
    background: var(--white);
    border: 2px solid var(--border);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all 0.2s ease;
    font-weight: 600;
    font-size: 13px;
    color: var(--dark);
    font-family: inherit;
}

.age-range-btn:hover {
    border-color: var(--primary);
    background: #f9fafb;
}

.age-range-btn.active {
    border-color: var(--primary);
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.1));
    color: var(--primary);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.2);
}

.age-range-hint {
    display: block;
    margin-top: 6px;
    font-size: 12px;
    color: var(--gray);
}

/* Match Preferences Filter */
.match-filter-block {
    margin: 12px 16px 0;
    padding: 12px;
    background: var(--white);
    border-radius: var(--radius-sm);
}

.match-filter-label {
    display: block;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--dark);
    font-size: 14px;
}

.age-filter-options,
.gender-filter-options {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 10px;
}

.age-filter-btn,
.gender-filter-btn {
    padding: 6px 12px;
    background: var(--white);
    border: 2px solid var(--border);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 13px;
    font-weight: 600;
    color: var(--dark);
    font-family: inherit;
}

.age-filter-btn:hover,
.gender-filter-btn:hover {
    border-color: var(--primary);
    background: #f9fafb;
}

.age-filter-btn.active,
.gender-filter-btn.active {
    border-color: var(--primary);
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.1));
    color: var(--primary);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.2);
}

.match-filter-warning {
    margin: 12px 16px 16px;
    padding: 10px 14px;
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.4);
    border-radius: var(--radius-sm);
    font-size: 13px;
    color: #92400e;
}

.session-id-label {
    color: var(--white);
    font-weight: 600;
    font-size: 14px;
}

.session-id-value {
    flex: 1;
    color: var(--white);
    font-size: 18px;
    font-weight: 700;
    font-family: 'Courier New', monospace;
    letter-spacing: 2px;
    text-align: center;
}

#copy-session-id-btn {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 8px 16px;
    font-size: 14px;
    white-space: nowrap;
}

#copy-session-id-btn:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* Join Playdate Form */
.join-playdate-form {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.join-playdate-form .form-control {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--light);
    border-radius: var(--radius-sm);
    font-size: 16px;
    text-align: center;
    font-family: 'Courier New', monospace;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: var(--transition);
}

.join-playdate-form .form-control:focus {
    border-color: var(--primary);
    outline: none;
}