:root {
    --primary-color: #0b3621; /* Rich luxurious deep forest green */
    --primary-light: #124d32;
    --accent-color: #00c775; /* Vibrant high-tech minty green */
    --bg-color: #f4f6f8; /* Soft neutral gray-blue background */
    --card-bg: #ffffff;
    --text-main: #1b1f1c; /* Extremely dark soft slate */
    --text-sub: #5c645f; /* Elegant gray-green */
    --text-light: #9aa49e;
    --border-color: #eef1ef; /* Ultra-thin sleek border color */
    --input-bg: #f5f7f6;
    --active-bg: #f0fbf5;
    
    --radius-sm: 10px;
    --radius-md: 14px;
    --radius-lg: 24px; /* Smoother, larger modern roundness */
    --radius-full: 9999px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    -webkit-tap-highlight-color: transparent;
}

body {
    font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
    background: radial-gradient(circle at 50% 50%, #f4f7f5 0%, #e2e8e4 100%);
    color: var(--text-main);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.app-container {
    width: 100%;
    max-width: 400px;
    height: 100vh;
    max-height: 850px;
    background-color: var(--card-bg);
    position: relative;
    overflow: hidden;
    box-shadow: 0 40px 96px -16px rgba(11, 54, 33, 0.12), 0 16px 32px -16px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
}

@media (min-width: 450px) {
    .app-container {
        height: 90vh;
        border-radius: 32px; /* Smooth rounded corners on desktop */
        border: 1px solid rgba(255, 255, 255, 0.7);
    }
}

.view {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    background: var(--card-bg);
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    opacity: 0;
    pointer-events: none;
    z-index: 1;
}

.view.active {
    transform: translateX(0);
    opacity: 1;
    pointer-events: auto;
    z-index: 2;
}

/* Home View - Premium & Centered Design */
#view-home {
    padding: 32px 24px 24px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center; /* Centered items */
    height: 100%;
    background-color: var(--card-bg);
}

.hero-section {
    width: 100%;
    text-align: center; /* Center header content */
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo-container {
    margin-bottom: 12px;
    align-self: center; /* Center logo */
    display: flex;
    justify-content: center;
}

.main-logo {
    width: 125px;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.main-logo:hover {
    transform: scale(1.03);
}

.small-logo {
    width: 110px;
    margin-bottom: 8px;
}

.tiny-logo {
    width: 75px;
    margin-bottom: 12px;
}

.main-title {
    font-size: 24px;
    font-weight: 950;
    color: #0d1410;
    letter-spacing: -1px;
    line-height: 1.38;
    margin-bottom: 8px;
    text-align: center; /* Center main title */
}

.main-subtitle {
    font-size: 13.5px;
    color: var(--text-sub);
    line-height: 1.5;
    text-align: center; /* Center subtitle */
    font-weight: 500;
}

/* Premium Segmented Tab Switcher */
.home-tab-switcher {
    display: flex;
    background-color: #f1f5f9;
    border-radius: 9999px;
    padding: 4px;
    margin-bottom: 20px;
    position: relative;
    border: none;
    width: 100%;
}

.tab-switch-btn {
    flex: 1;
    padding: 12px;
    border: none !important;
    outline: none !important;
    background: transparent;
    border-radius: 9999px;
    font-size: 14px;
    font-weight: 700;
    color: #64748b;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    font-family: inherit;
    text-align: center;
}

.tab-switch-btn.active {
    background-color: #ffffff;
    color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(11, 54, 33, 0.06);
    font-weight: 800;
    border: none !important;
    outline: none !important;
}

/* Home Layout Content and Switch Logic */
.home-layout-container {
    width: 100%;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.home-tab-content {
    display: none;
    flex-direction: column;
    gap: 16px;
    opacity: 0;
    transform: translateY(8px);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.home-tab-content.active {
    display: flex;
    opacity: 1;
    transform: translateY(0);
}

/* Premium Membership Card - Ultra-Clean White & Mint Theme */
.premium-hero-card {
    background: linear-gradient(135deg, #ffffff 0%, #f3faf6 100%);
    color: var(--primary-color);
    border: 1px solid rgba(11, 54, 33, 0.08);
    border-radius: 24px;
    padding: 30px 24px;
    text-align: center; /* Centered card text */
    position: relative;
    overflow: hidden;
    box-shadow: 0 16px 36px -12px rgba(11, 54, 33, 0.06);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.card-glow-bg {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 199, 117, 0.08) 0%, rgba(0, 0, 0, 0) 65%);
    pointer-events: none;
    animation: floatGlow 12s infinite alternate ease-in-out;
}

@keyframes floatGlow {
    0% { transform: translate(-8%, -8%) rotate(0deg); }
    100% { transform: translate(8%, 8%) rotate(15deg); }
}

.premium-card-badge {
    align-self: center; /* Centered badge */
    font-size: 10px;
    font-weight: 850;
    padding: 4px 10px;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    background: rgba(11, 54, 33, 0.06);
    color: var(--primary-color);
    border: 1px solid rgba(11, 54, 33, 0.08);
}

.premium-card-badge.pro {
    background: rgba(0, 100, 255, 0.08);
    color: #0064ff;
    border: 1px solid rgba(0, 100, 255, 0.12);
    align-self: flex-start;
}

.premium-card-title {
    font-size: 20px;
    font-weight: 900;
    line-height: 1.45;
    letter-spacing: -0.6px;
    color: var(--primary-color);
    margin-top: 4px;
    text-align: center;
}

.premium-card-desc {
    font-size: 13.5px;
    color: var(--text-sub);
    line-height: 1.55;
    font-weight: 500;
    margin-bottom: 8px;
    text-align: center;
}

/* Premium Call To Action Button - Sophisticated High Contrast Forest Green */
.btn-premium-cta {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%) !important;
    color: #ffffff !important;
    border: none !important;
    border-radius: 18px !important;
    font-size: 16px !important;
    font-weight: 800 !important;
    padding: 16px !important;
    box-shadow: 0 8px 24px rgba(11, 54, 33, 0.18) !important;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1) !important;
    cursor: pointer;
    width: 100%;
}

.btn-premium-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(11, 54, 33, 0.28) !important;
}

.btn-premium-cta:active {
    transform: translateY(0) scale(0.98);
}

.btn-arrow {
    font-size: 14px;
    transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    display: inline-block;
}

.btn-premium-cta:hover .btn-arrow {
    transform: translateX(5px);
}

/* Premium Booking Status Link */
.home-status-link {
    background: #ffffff;
    border: 1px solid rgba(11, 54, 33, 0.05);
    border-radius: 18px;
    padding: 18px 20px;
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 750;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    width: 100%;
    box-shadow: 0 4px 16px rgba(11, 54, 33, 0.02);
}

.home-status-link:hover {
    background-color: #f6faf7;
    border-color: rgba(11, 54, 33, 0.12);
    transform: translateY(-1.5px);
    box-shadow: 0 8px 24px rgba(11, 54, 33, 0.04);
}

.status-link-icon {
    font-size: 16px;
    margin-right: 2px;
}

.status-link-text {
    flex: 1;
    text-align: left;
    margin-left: 8px;
}

.status-link-chevron {
    font-weight: 800;
    opacity: 0.6;
    transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.home-status-link:hover .status-link-chevron {
    transform: translateX(4px);
    opacity: 1;
}

/* Pro Premium Business Card */
.pro-premium-card {
    background: linear-gradient(135deg, #ffffff 0%, #f9fafb 100%);
    border: 1px solid rgba(11, 54, 33, 0.05);
    border-radius: 24px;
    padding: 28px 24px;
    text-align: left;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.02);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.pro-card-title {
    font-size: 19px;
    font-weight: 855;
    color: #1e293b;
    letter-spacing: -0.5px;
    margin-top: 4px;
}

.pro-card-desc {
    font-size: 13.5px;
    color: #64748b;
    line-height: 1.55;
    font-weight: 500;
    margin-bottom: 8px;
}

.btn-pro-action-premium {
    background-color: var(--primary-color) !important;
    color: #ffffff !important;
    border: none !important;
    font-weight: 800 !important;
    font-size: 16px !important;
    padding: 16px !important;
    border-radius: 18px !important;
    box-shadow: 0 6px 16px rgba(11, 54, 33, 0.12) !important;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1) !important;
    cursor: pointer;
}

.btn-pro-action-premium:hover {
    background-color: var(--primary-light) !important;
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(11, 54, 33, 0.2) !important;
}

.btn-pro-action-premium:active {
    transform: translateY(0) scale(0.985);
}

.btn-pro-action-premium:hover .btn-arrow {
    transform: translateX(4px);
}

/* Pro Login Premium Card */
.pro-login-premium-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #f8fafc;
    border: 1px solid #f1f5f9;
    border-radius: 18px;
    padding: 18px 20px;
    text-align: left;
    gap: 16px;
}

.pro-login-info {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.pro-login-label {
    font-size: 13.5px;
    color: #334155;
    font-weight: 750;
}

.pro-login-sublabel {
    font-size: 11px;
    color: #64748b;
    margin-top: 3px;
    line-height: 1.4;
}

.btn-pro-login-premium {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    color: #0f172a;
    font-size: 12.5px;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    font-family: inherit;
    padding: 10px 14px;
    border-radius: 12px;
    white-space: nowrap;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
}

.btn-pro-login-premium:hover {
    background-color: #f8fafc;
    border-color: #cbd5e1;
    transform: translateY(-1px);
}

.btn-pro-login-premium:active {
    transform: translateY(0);
}

/* Common Header */
.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 24px;
    background: var(--card-bg);
    border-bottom: 1px solid var(--border-color);
}

.header h2 {
    font-size: 18px;
    font-weight: 800;
    color: #111b15;
    letter-spacing: -0.5px;
}

.icon-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-main);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    margin-left: -8px;
}

.placeholder-icon {
    width: 24px;
}

.profile-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: var(--primary-color);
}

/* Content Area */
.content {
    flex: 1;
    overflow-y: auto;
    padding: 24px 20px 100px; /* space for bottom button */
}

.content::-webkit-scrollbar {
    display: none;
}

.form-header-center {
    text-align: center;
    margin-bottom: 32px;
}

.subtitle {
    font-size: 15px;
    color: var(--text-sub);
}

.section-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-main);
}

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

.form-group label {
    display: block;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-main);
}

input[type="text"],
input[type="tel"],
input[type="date"],
input[type="time"] {
    width: 100%;
    padding: 14px 16px;
    background-color: var(--input-bg);
    border: 1px solid transparent;
    border-radius: var(--radius-md);
    font-size: 17px;
    color: var(--text-main);
    outline: none;
    transition: all 0.2s;
    font-family: inherit;
}

input[type="text"]:focus,
input[type="tel"]:focus,
input[type="date"]:focus,
input[type="time"]:focus {
    border-color: var(--primary-light);
    background-color: #fff;
    box-shadow: 0 0 0 3px rgba(13, 59, 38, 0.1);
}

input::placeholder {
    color: var(--text-light);
}

.input-with-button {
    display: flex;
    gap: 8px;
}

.input-with-button input {
    flex: 1;
}

/* Buttons */
.btn {
    padding: 16px;
    border-radius: var(--radius-md);
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    border: none;
    transition: all 0.2s;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
    box-shadow: 0 4px 12px rgba(13, 59, 38, 0.15); /* 은은한 그림자로 입체감 부여 */
}

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

.btn-secondary {
    background-color: var(--input-bg);
    color: var(--text-main);
}

.btn-outline {
    padding: 0 16px;
    background-color: #eef2ff;
    color: #4f46e5;
    border: none;
    border-radius: var(--radius-md);
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    cursor: pointer;
}

.full-width {
    width: 100%;
}

.bottom-action {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 16px 20px;
    background: linear-gradient(to top, rgba(255,255,255,1) 80%, rgba(255,255,255,0));
}

/* Toggles */
.toggle-group {
    display: flex;
    background-color: var(--input-bg);
    border-radius: var(--radius-full);
    padding: 4px;
}

.toggle-btn {
    flex: 1;
    padding: 12px;
    border: none;
    background: transparent;
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 600;
    color: var(--text-sub);
    cursor: pointer;
    transition: all 0.2s;
}

.toggle-btn.active {
    background-color: var(--primary-color);
    color: white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Grids & Badges */
.label-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.label-row label {
    margin-bottom: 0;
}

.required-badge {
    font-size: 11px;
    color: var(--text-sub);
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

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

.grid-7 {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
}

.gap-1 { gap: 4px; }
.gap-2 { gap: 8px; }

.grid-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 0;
    background-color: #fff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    color: var(--text-main);
}

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

.grid-btn.active {
    border-color: var(--primary-color);
    background-color: var(--active-bg);
    color: var(--primary-color);
    font-weight: 700;
}

.grid-btn-simple {
    padding: 12px;
    background-color: var(--input-bg);
    border: 1px solid transparent;
    border-radius: var(--radius-md);
    font-size: 14px;
    font-weight: 500;
    color: var(--text-sub);
    cursor: pointer;
    transition: all 0.2s;
}

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

.day-btn {
    padding: 12px 0;
    background-color: var(--input-bg);
    border: none;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 600;
    color: var(--text-sub);
    cursor: pointer;
    transition: all 0.2s;
}

.day-btn.active {
    background-color: var(--primary-color);
    color: white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Utility */
.mt-2 { margin-top: 8px; }
.mt-4 { margin-top: 16px; }
.mb-4 { margin-bottom: 16px; }

/* Terms */
.terms-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500 !important;
}

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

.terms-link {
    font-size: 12px;
    color: var(--text-light);
    text-decoration: underline;
}

/* Pro Specific */
.pro-banner {
    padding: 24px 0;
    border-bottom: 1px solid var(--border-color);
}

.banner-title {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 8px;
    color: var(--text-main);
}

.banner-desc {
    font-size: 13px;
    color: var(--text-sub);
    line-height: 1.5;
}

.partner-card {
    background-color: var(--primary-color);
    color: white;
    padding: 24px;
    border-radius: var(--radius-lg);
    position: relative;
    overflow: hidden;
}

.partner-card::after {
    content: '';
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    background-image: url('data:image/svg+xml;utf8,<svg width="100" height="100" viewBox="0 0 100 100" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M20 80L80 20M80 20V70M80 20H30" stroke="rgba(255,255,255,0.1)" stroke-width="15" stroke-linecap="round" stroke-linejoin="round"/></svg>');
    background-repeat: no-repeat;
}

.partner-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
}

.partner-desc {
    font-size: 13px;
    line-height: 1.5;
    opacity: 0.9;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.partner-link {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    color: white;
    text-decoration: none;
    position: relative;
    z-index: 1;
}

/* Guide Box */
.guide-box {
    background-color: #f8faf9;
    border: 1px solid rgba(11, 54, 33, 0.04);
    border-radius: 20px;
    padding: 24px 20px;
    margin-top: 12px;
    margin-bottom: 28px;
}

.guide-title {
    font-size: 15px;
    font-weight: 800;
    margin-top: 20px;
    margin-bottom: 8px;
    color: var(--primary-color);
}

.guide-title:first-child {
    margin-top: 0;
}

.guide-text {
    font-size: 13.5px;
    line-height: 1.6;
    color: var(--text-sub);
}

.guide-text strong {
    color: var(--text-main);
    font-weight: 700;
}

.guide-highlight {
    background-color: #e2f5ec;
    border-radius: 14px;
    padding: 18px;
    font-size: 13.5px;
    line-height: 1.6;
    font-weight: 600;
    color: #0b8451;
    margin-top: 24px;
    text-align: center;
}

/* Premium Card-based Form Input Styling */
.input-card {
    display: flex;
    align-items: center;
    background-color: #ffffff;
    border: 1px solid rgba(11, 54, 33, 0.06);
    border-radius: 18px;
    padding: 16px 20px;
    margin-bottom: 14px;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
    box-shadow: 0 4px 12px -4px rgba(11, 54, 33, 0.02);
    position: relative;
}

.input-card:hover {
    border-color: rgba(11, 54, 33, 0.15);
    box-shadow: 0 8px 20px -8px rgba(11, 54, 33, 0.05);
}

.input-card:focus-within {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(11, 54, 33, 0.08);
}

.input-card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color); /* Premium green icon */
    margin-right: 14px;
    flex-shrink: 0;
}

.input-card-icon svg {
    width: 24px;
    height: 24px;
}

.input-card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.input-card-label {
    font-size: 13px;
    color: var(--text-light);
    font-weight: 600;
    margin-bottom: 2px;
    letter-spacing: -0.2px;
}

.input-card-content input.card-input-field {
    border: none !important;
    background: transparent !important;
    padding: 0 !important;
    margin: 0 !important;
    outline: none !important;
    font-size: 18px !important;
    font-weight: 700 !important;
    color: #111111 !important; /* Black text */
    width: 100% !important;
    box-shadow: none !important;
    height: auto !important;
    font-family: inherit;
    -webkit-appearance: none;
    appearance: none;
    cursor: text !important;
    caret-color: var(--primary-color) !important; /* Beautiful blinking cursor in theme green */
}

.input-card-content input.card-input-field::placeholder {
    color: var(--text-light);
    font-weight: 500;
}

/* Hide native WebKit calendar/clock indicators and buttons */
.input-card-content input.card-input-field::-webkit-calendar-picker-indicator,
.input-card-content input.card-input-field::-webkit-inner-spin-button,
.input-card-content input.card-input-field::-webkit-clear-button {
    display: none !important;
    -webkit-appearance: none !important;
}

/* Fix date & time input text colors on safari & chrome */
.input-card-content input.card-input-field::-webkit-datetime-edit {
    color: #111111;
}

.input-card-chevron {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d1d5db;
    margin-left: 10px;
    flex-shrink: 0;
}

.input-card-chevron svg {
    width: 18px;
    height: 18px;
}

/* Hidden Date/Time Inputs for Full Card Tap Target */
.hidden-input {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
    z-index: 2;
    -webkit-appearance: none;
    appearance: none;
}

/* Custom value display for date/time cards */
.display-value {
    font-size: 18px;
    font-weight: 700;
    color: #111111; /* Strong black text color */
    margin-top: 2px;
    transition: color 0.2s;
    user-select: none;
}

.display-value.placeholder {
    color: var(--text-light); /* Grey placeholder text when empty */
    font-weight: 500;
}

/* Ensure absolute hiding of Chrome/Safari default icons */
.hidden-input::-webkit-calendar-picker-indicator {
    display: block !important;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

/* Pro Activity Guide Styles */
.guide-welcome-card {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: #ffffff;
    padding: 28px 24px;
    border-radius: var(--radius-lg);
    margin-bottom: 24px;
    box-shadow: 0 8px 20px rgba(13, 59, 38, 0.15);
    position: relative;
    overflow: hidden;
}

.guide-welcome-card::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.guide-welcome-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: var(--radius-full);
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.guide-welcome-title {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 8px;
    line-height: 1.3;
}

.guide-welcome-desc {
    font-size: 14px;
    line-height: 1.5;
    opacity: 0.9;
    font-weight: 500;
}

.guide-section {
    margin-bottom: 28px;
}

.guide-section-header {
    font-size: 17px;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.guide-step-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.guide-step-card {
    background-color: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 16px 20px;
    transition: all 0.2s ease;
}

.guide-step-card:hover {
    border-color: var(--accent-color);
    box-shadow: 0 4px 12px rgba(0,0,0,0.03);
}

.guide-step-num {
    font-size: 11px;
    font-weight: 800;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.guide-step-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 6px;
}

.guide-step-desc {
    font-size: 14px;
    line-height: 1.5;
    color: var(--text-sub);
}

.guide-step-desc em {
    font-style: normal;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 13px;
    display: block;
    margin-top: 4px;
}

/* Revenue & Manners Cards */
.guide-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.guide-icon-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 18px 16px;
    text-align: center;
}

.guide-card-icon-wrapper {
    width: 44px;
    height: 44px;
    background-color: var(--active-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    font-size: 20px;
}

.guide-card-title {
    font-size: 15px;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 6px;
}

.guide-card-desc {
    font-size: 13px;
    line-height: 1.4;
    color: var(--text-sub);
}

/* Reward Banner */
.guide-reward-banner {
    background-color: var(--active-bg);
    border: 1px solid rgba(76, 175, 80, 0.2);
    border-radius: var(--radius-lg);
    padding: 20px;
    position: relative;
    overflow: hidden;
}

.guide-reward-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.guide-reward-badge {
    background-color: var(--primary-color);
    color: white;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: var(--radius-sm);
}

.guide-reward-title {
    font-size: 16px;
    font-weight: 800;
    color: var(--primary-color);
}

.guide-reward-desc {
    font-size: 14px;
    line-height: 1.5;
    color: var(--primary-color);
    font-weight: 500;
}

.guide-reward-desc strong {
    font-weight: 700;
}

.guide-footer-cta {
    background-color: #f3f4f6;
    border-radius: var(--radius-md);
    padding: 18px;
    text-align: center;
    font-size: 15px;
    font-weight: 700;
    color: var(--text-main);
    line-height: 1.4;
    margin-bottom: 20px;
}

/* Premium Toss-Style Payment & Status Page Styles */
.payment-merchant-card {
    background-color: #ffffff;
    padding: 24px;
    border-radius: var(--radius-lg);
    text-align: center;
    margin-bottom: 16px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.02);
    border: 1px solid var(--border-color);
}
.merchant-tag {
    font-size: 13px;
    color: #6B7280;
    font-weight: 600;
    display: block;
    margin-bottom: 6px;
}
.payment-price {
    font-size: 28px;
    font-weight: 800;
    color: #111827;
}
.payment-methods-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
}
.pay-tab {
    flex: 1;
    background-color: #ffffff;
    border: 1.5px solid var(--border-color);
    padding: 14px 8px;
    border-radius: var(--radius-md);
    font-size: 14px;
    font-weight: 700;
    color: #4B5563;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
}
.pay-tab:hover {
    border-color: #9CA3AF;
}
.pay-tab.active {
    border-color: #0064FF;
    background-color: #EBF5FF;
    color: #0064FF;
}
.payment-method-details {
    background-color: #ffffff;
    border-radius: var(--radius-lg);
    padding: 20px;
    border: 1px solid var(--border-color);
    margin-bottom: 16px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.02);
}
.pay-detail-panel {
    display: none;
}
.pay-detail-panel.active {
    display: block;
    animation: fadeIn 0.25s ease-out;
}
.toss-benefit-box {
    background-color: #EFF6FF;
    border: 1px solid #BFDBFE;
    color: #1E40AF;
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    font-size: 12.5px;
    font-weight: 600;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 6px;
}
.benefit-badge {
    background-color: #0064FF;
    color: white;
    font-size: 10px;
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: 800;
}
.toss-user-profile {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
}
.toss-avatar {
    width: 40px;
    height: 40px;
    background-color: #F3F4F6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}
.toss-user-info {
    display: flex;
    flex-direction: column;
}
.toss-username {
    font-size: 15px;
    font-weight: 700;
    color: #111827;
}
.toss-phone {
    font-size: 13px;
    color: #6B7280;
    font-weight: 500;
}
.payment-safety-guide {
    font-size: 12px;
    color: #6B7280;
    line-height: 1.5;
    text-align: center;
    padding: 0 16px;
    margin-top: 24px;
    font-weight: 500;
}
.payment-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.98);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 100;
}
.payment-overlay.active {
    display: flex;
}
.payment-overlay-content {
    text-align: center;
    padding: 24px;
    max-width: 340px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}
.toss-spinner {
    width: 48px;
    height: 48px;
    border: 5px solid #EBF5FF;
    border-top-color: #0064FF;
    border-radius: 50%;
    animation: tossSpinner 1s linear infinite;
    margin-bottom: 24px;
}
@keyframes tossSpinner {
    to { transform: rotate(360deg); }
}
.overlay-title {
    font-size: 19px;
    font-weight: 800;
    color: #111827;
    margin-bottom: 10px;
}
.overlay-subtitle {
    font-size: 14px;
    color: #6B7280;
    line-height: 1.6;
    font-weight: 500;
}
.success-checkmark-circle {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background-color: #ECFDF5;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    box-shadow: 0 4px 10px rgba(16, 185, 129, 0.1);
}
.checkmark-svg {
    width: 52px;
    height: 52px;
    display: block;
}
.checkmark-circle-path {
    stroke: #10B981;
    stroke-width: 2.5;
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    stroke-linecap: round;
    animation: strokeCheckmark 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}
.checkmark-kick-path {
    stroke: #10B981;
    stroke-width: 3;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    stroke-linecap: round;
    animation: strokeCheckmark 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.6s forwards;
}
@keyframes strokeCheckmark {
    to { stroke-dashoffset: 0; }
}
.success-card-bounce {
    animation: successBounce 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) both;
}
@keyframes successBounce {
    0% { transform: scale(0.6); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}
.success-title {
    font-size: 22px;
    font-weight: 800;
    color: #111827;
    margin-bottom: 8px;
}
.success-subtitle {
    font-size: 14.5px;
    color: #4B5563;
    line-height: 1.5;
    font-weight: 500;
}
#confetti-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
    z-index: 99;
}
.confetti-particle {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 2px;
    animation: confettiFall 2.5s ease-out forwards;
}
@keyframes confettiFall {
    0% {
        transform: translateY(-20px) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: translateY(800px) rotate(720deg);
        opacity: 0;
    }
}

/* Matching Status List Styles */
.matching-loading-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 24px;
    text-align: center;
}
.golf-pulsing-ball {
    width: 80px;
    height: 80px;
    background-color: #ffffff;
    border-radius: 50%;
    border: 2.5px dashed var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    animation: golfPulse 2s infinite ease-in-out;
    box-shadow: 0 10px 25px rgba(13,59,38,0.08);
    margin-bottom: 24px;
}
@keyframes golfPulse {
    0% { transform: scale(0.9); box-shadow: 0 0 0 0 rgba(13,59,38,0.25); }
    70% { transform: scale(1.05); box-shadow: 0 0 0 15px rgba(13,59,38,0); }
    100% { transform: scale(0.9); box-shadow: 0 0 0 0 rgba(13,59,38,0); }
}
.my-booking-card {
    background-color: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 24px;
    margin-top: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}
.booking-badge-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}
.booking-status-tag {
    padding: 4px 10px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 800;
    border: 1px solid transparent;
}
.booking-status-tag.wait {
    background-color: #FFFBEB;
    color: #D97706;
    border-color: #FDE68A;
}
.booking-status-tag.matched {
    background-color: #EBF5FF;
    color: #0064FF;
    border-color: #BFDBFE;
}
.booking-status-tag.paid {
    background-color: #ECFDF5;
    color: #059669;
    border-color: #A7F3D0;
}
.booking-title {
    font-size: 19px;
    font-weight: 800;
    color: #111827;
    margin-bottom: 8px;
}
.booking-details-list {
    list-style: none;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 16px 0;
    margin: 16px 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.booking-detail-item {
    display: flex;
    justify-content: space-between;
    font-size: 14.5px;
    font-weight: 500;
}
.booking-detail-label {
    color: #6B7280;
}
.booking-detail-value {
    color: #111827;
    font-weight: 700;
}
.booking-price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 16px;
    font-size: 16px;
    font-weight: 800;
}
.booking-price-value {
    color: var(--primary-color);
    font-size: 20px;
}

/* Pro My Page Styles */
.status-card {
    border-radius: var(--radius-lg);
    padding: 22px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    border: 1px solid var(--border-color);
    text-align: left;
}

.status-card.wait {
    background: linear-gradient(135deg, #FFFDF5 0%, #FFF9E6 100%);
    border-color: #FDE68A;
    color: #92400E;
}

.status-card.active {
    background: linear-gradient(135deg, #F0FDF4 0%, #DCFCE7 100%);
    border-color: #A7F3D0;
    color: #065F46;
}

.status-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.status-icon-pulsing {
    font-size: 22px;
    display: inline-block;
    animation: statusPulse 1.5s infinite alternate ease-in-out;
}

@keyframes statusPulse {
    0% { transform: scale(0.95); opacity: 0.8; }
    100% { transform: scale(1.1); opacity: 1; }
}

.status-title {
    font-size: 17px;
    font-weight: 800;
}

.status-desc {
    font-size: 13.5px;
    line-height: 1.5;
    opacity: 0.95;
}

.pro-settings-card {
    background-color: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    text-align: left;
}

.pro-match-card {
    background-color: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 18px;
    margin-bottom: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.01);
    transition: all 0.2s;
    text-align: left;
}

.pro-match-card:hover {
    border-color: var(--primary-light);
    box-shadow: 0 4px 12px rgba(13, 59, 38, 0.05);
}

.pro-match-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    border-bottom: 1px solid rgba(0,0,0,0.03);
    padding-bottom: 8px;
}

.pro-match-amateur {
    font-size: 15.5px;
    font-weight: 800;
    color: var(--text-main);
}

.pro-match-status-badge {
    padding: 4px 10px;
    border-radius: 30px;
    font-size: 11.5px;
    font-weight: 800;
    border: 1px solid transparent;
}

.pro-match-status-badge.wait {
    background-color: #EFF6FF;
    color: #1E40AF;
    border-color: #BFDBFE;
}

.pro-match-status-badge.paid {
    background-color: #ECFDF5;
    color: #065F46;
    border-color: #A7F3D0;
}

.pro-match-details {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.pro-match-detail-item {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
}

.pro-match-detail-label {
    color: var(--text-sub);
    font-weight: 500;
}

.pro-match-detail-value {
    font-weight: 700;
    color: var(--text-main);
}

.pro-toast {
    position: fixed;
    top: -80px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #0d3b26;
    color: #ffffff;
    padding: 14px 28px;
    border-radius: 30px;
    font-size: 14.5px;
    font-weight: 700;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    z-index: 2000;
    transition: top 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    pointer-events: none;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.pro-toast.show {
    top: 24px;
}

.pro-login-link-box {
    text-align: center;
    margin-top: 20px;
}

.pro-login-link {
    font-size: 13.5px;
    font-weight: 700;
    color: var(--text-sub);
    text-decoration: underline;
    cursor: pointer;
    transition: color 0.2s;
}

.pro-login-link:hover {
    color: var(--primary-color);
}
select.pro-select {
    width: 100%;
    padding: 14px 16px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(11, 54, 33, 0.08);
    background-color: var(--input-bg);
    font-size: 16px;
    font-weight: 600;
    color: var(--text-main);
    outline: none;
    transition: all 0.2s;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%234b5563' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 16px;
    cursor: pointer;
}

select.pro-select:focus {
    border-color: var(--primary-color);
    background-color: #fff;
    box-shadow: 0 0 0 3px rgba(11, 54, 33, 0.08);
}
