/* CSS Reset & Variables (Monotone Luxury Theme) */
/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;800&family=Inter:wght@300;400;600;700&family=Noto+Sans+JP:wght@400;700&display=swap');

:root {
    --bg-dark: #0d0d10;                 /* Dark background with subtle deep gray/blue warmth */
    --bg-darker: #070708;
    --gold: #d4af37;                    /* Rich royal champagne gold */
    --gold-hover: #e6c55d;
    --gold-glow: rgba(212, 175, 55, 0.22);
    --red-glow: rgba(212, 175, 55, 0.12);
    --accent-red: #d4af37;              /* Harmonized to gold */
    --text-light: #ffffff;
    --text-muted: #a5a5ad;              /* Brighter gray text for much better readability */
    --glass-bg: rgba(24, 24, 29, 0.72);  /* Brighter translucent glass bg */
    --glass-border: rgba(212, 175, 55, 0.16); /* Warm gold frame */
    --glass-border-focus: rgba(212, 175, 55, 0.38);
    --font-heading: 'Cinzel', 'Noto Sans JP', serif;
    --font-body: 'Inter', 'Noto Sans JP', sans-serif;
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--bg-dark);
    color: var(--text-light);
    font-family: var(--font-body);
    overflow-x: hidden;
}

body {
    overflow-x: hidden;
    line-height: 1.6;
}

/* Common Layout & Spacing */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-padding {
    padding: 8rem 0;
}

.bg-darker {
    background-color: var(--bg-darker);
}

.text-gold {
    color: var(--gold);
    background: linear-gradient(135deg, #ffffff 0%, #a1a1a6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.icon-margin {
    margin-right: 0.5rem;
}

.hidden {
    display: none !important;
}

/* Typography & Section Headers */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    letter-spacing: 0.05em;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
    position: relative;
}

.section-subtitle {
    font-family: var(--font-heading);
    color: var(--gold);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    display: block;
    margin-bottom: 0.75rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-light);
    letter-spacing: 0.1em;
}

.title-underline {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 1.5rem auto 0;
}

/* Glassmorphism Styles */
.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.4);
}

/* Buttons */
.btn-primary, .btn-secondary, .btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 2rem;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    font-family: var(--font-body);
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background: #ffffff;
    color: #000000;
    border: 1px solid #ffffff;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 20px var(--gold-glow);
    background: transparent;
    color: #ffffff;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-light);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
    border-color: var(--gold);
}

.btn-outline {
    background: transparent;
    color: var(--gold);
    border: 1px solid var(--gold);
}

.btn-outline:hover {
    background: var(--gold);
    color: #000;
    box-shadow: 0 0 15px var(--gold-glow);
    transform: translateY(-2px);
}

.btn-sm {
    padding: 0.5rem 1.25rem;
    font-size: 0.8rem;
}

.btn-block {
    display: flex;
    width: 100%;
}

/* Header & Navigation (Responsive Side Dock Layout) */

/* --- Mobile / Tablet Default Header (Top Bar style) --- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
    border-bottom: 1px solid transparent;
}

.header.scrolled {
    background: rgba(5, 5, 6, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 0.75rem 0;
}

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

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--text-light);
    gap: 0.75rem;
}

.logo-img {
    height: 44px;
    width: 96px;
    object-fit: contain;
}

.logo-text {
    display: none;
}

.logo-text-vertical {
    display: none; /* Only for desktop sidebar expanded */
}

.logo-i {
    color: #dc1820;
    background: none;
    -webkit-background-clip: border-box;
    -webkit-text-fill-color: #dc1820;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 500;
    position: relative;
    padding: 0.5rem 0;
    transition: var(--transition);
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--gold);
    transition: var(--transition);
}

.nav-link:hover, .nav-link.active-section {
    color: var(--text-light);
}

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

/* Hide link icons on mobile header by default */
.nav-link .link-icon {
    display: none;
}

.header-cta .cta-icon {
    display: none;
}

.mobile-nav-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
    z-index: 1100;
}

.mobile-nav-toggle .bar {
    width: 25px;
    height: 2px;
    background-color: var(--text-light);
    transition: var(--transition);
}


/* --- Desktop Vertical Left Sidebar (Applying over 1025px) --- */
@media (min-width: 1025px) {
    body {
        padding-left: 90px;
        transition: var(--transition);
    }

    .header {
        width: 90px;
        height: 100vh;
        border-bottom: none;
        border-right: 1px solid var(--glass-border);
        background: #050507;
        padding: 3rem 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
    }

    /* Expand sidebar on hover */
    .header:hover {
        width: 240px;
        box-shadow: 10px 0 40px rgba(0, 0, 0, 0.8);
        border-color: rgba(255, 255, 255, 0.15);
        background: #08080b;
    }

    .header-container {
        display: flex;
        flex-direction: column;
        height: 100%;
        width: 100%;
        align-items: center;
        justify-content: space-between;
        padding: 0;
    }

    .logo {
        flex-direction: column;
        gap: 1rem;
    }

    .logo-img {
        width: 70px;
        height: 34px;
    }

    .header:hover .logo-img {
        width: 150px;
        height: 70px;
    }

    .logo-text {
        display: none; /* Hide horizontal text on desktop */
    }

    .logo-text-vertical {
        display: none;
        font-family: var(--font-heading);
        font-size: 1.4rem;
        font-weight: 800;
        letter-spacing: 0.15em;
        color: #fff;
        background: linear-gradient(135deg, #fff, var(--text-muted));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .header:hover .logo-text-vertical {
        display: none;
    }

    .nav {
        width: 100%;
    }

    .nav-list {
        flex-direction: column;
        gap: 2.2rem;
        align-items: flex-start;
        width: 100%;
        padding: 0 1.5rem;
    }

    .nav-link {
        gap: 1.5rem;
        font-size: 0.9rem;
        width: 100%;
        padding: 0.5rem 0;
    }

    .nav-link::after {
        display: none; /* Hide underline indicator on desktop */
    }

    /* Always show icon, show text only on hover */
    .nav-link .link-icon {
        display: inline-block;
        font-size: 1.25rem;
        width: 25px;
        text-align: center;
        color: var(--text-muted);
        transition: var(--transition);
    }

    .nav-link:hover .link-icon, .nav-link.active-section .link-icon {
        color: #fff;
        text-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
    }

    .nav-link .link-text {
        opacity: 0;
        transform: translateX(-10px);
        transition: opacity 0.3s ease, transform 0.3s ease;
        white-space: nowrap;
        color: var(--text-muted);
    }

    .header:hover .nav-link .link-text {
        opacity: 1;
        transform: translateX(0);
    }

    .header:hover .nav-link:hover .link-text,
    .header:hover .nav-link.active-section .link-text {
        color: #fff;
    }

    /* CTA Button (Folds into icon on desktop, expands on hover) */
    .header-cta {
        padding: 0.5rem;
        width: 44px;
        height: 44px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
        transition: var(--transition);
        border: 1px solid #fff;
        background: #fff;
        color: #000;
    }

    .header-cta .cta-icon {
        display: inline-block;
        font-size: 1.1rem;
        transition: var(--transition);
    }

    .header-cta .cta-text {
        display: none;
        white-space: nowrap;
        font-weight: 700;
    }

    .header:hover .header-cta {
        width: 80%;
        border-radius: 4px;
        padding: 0.75rem 1.5rem;
        height: auto;
    }

    .header:hover .header-cta .cta-icon {
        display: none;
    }

    .header:hover .header-cta .cta-text {
        display: inline;
    }
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    height: 100svh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 80px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transform: scale(1.05);
    filter: brightness(1.05) contrast(1.02);
    z-index: -2;
    animation: zoomOut 20s ease-out forwards;
    animation-play-state: paused;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, 
        rgba(10, 10, 12, 0.2) 0%, 
        rgba(10, 10, 12, 0.45) 80%,
        var(--bg-dark) 100%
    );
    z-index: -1;
}

.hero-content {
    text-align: center;
    z-index: 10;
    padding: 0 1.5rem;
}

.hero-badge {
    font-family: var(--font-heading);
    color: var(--gold);
    font-size: 0.85rem;
    letter-spacing: 0.3em;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-play-state: paused;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-play-state: paused;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    letter-spacing: 0.05em;
    margin-bottom: 3rem;
    animation: fadeInUp 1.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-play-state: paused;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    animation: fadeInUp 1.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-play-state: paused;
}

.hero-today-panel {
    position: fixed;
    left: 90px;
    right: 0;
    bottom: 2rem;
    z-index: 1200;
    width: auto;
    min-height: auto;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    gap: 2.2rem;
    padding: 2.4rem 3.5rem;
    background: rgba(0, 0, 0, 0.78);
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
    border-left: 0;
    border-radius: 0;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 -18px 45px rgba(0, 0, 0, 0.35);
    transition: var(--transition);
}

.hero-today-panel:hover {
    background: rgba(0, 0, 0, 0.86);
}

.hero-today-panel.scrolled-out {
    opacity: 0;
    transform: translateY(calc(100% + 2rem));
    pointer-events: none;
}

.hero-today-panel.compact {
    bottom: 0.75rem;
    padding: 0.65rem 1.4rem;
    gap: 1rem;
    background: rgba(0, 0, 0, 0.64);
}

.hero-today-panel.compact .hero-today-kicker {
    font-size: 0.62rem;
}

.hero-today-panel.compact .hero-today-list {
    gap: 0.6rem;
}

.hero-today-panel.compact .hero-today-item {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 0.8rem;
}

.hero-today-panel.compact .hero-today-title {
    font-size: clamp(0.9rem, 1.1vw, 1.1rem);
}

.hero-today-panel.compact .hero-today-time,
.hero-today-panel.compact .hero-today-entry {
    font-size: 0.68rem;
}

.hero-live-status {
    position: absolute;
    top: 90px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    width: min(600px, calc(100% - 2rem));
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #1e1e24 0%, #111115 100%);
    border: 1px solid rgba(220, 24, 32, 0.15);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(220, 24, 32, 0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    overflow: hidden;
}

.hero-live-status::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: #dc1820; /* DICE Accent Red */
    box-shadow: 0 0 10px rgba(220, 24, 32, 0.6);
}

.hero-live-status-label {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--text-muted);
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.hero-live-status-label .indicator-dot {
    background-color: #dc1820;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
}

.hero-live-status-label .indicator-dot.pulse {
    box-shadow: 0 0 0 0 rgba(220, 24, 32, 0.7);
    animation: pulseIndicatorRed 1.8s infinite;
}

@keyframes pulseIndicatorRed {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(220, 24, 32, 0.7);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 6px rgba(220, 24, 32, 0);
    }
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(220, 24, 32, 0);
    }
}

.hero-live-status-value {
    color: #ffffff;
    font-family: 'Outfit', sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
    background: rgba(220, 24, 32, 0.1);
    padding: 6px 16px;
    border-radius: 8px;
    border: 1px solid rgba(220, 24, 32, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.hero-live-status-value span {
    color: var(--text-muted);
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 700;
}

.hero-live-status-time {
    color: var(--text-muted);
    font-size: 0.75rem;
    white-space: nowrap;
}

.visit-ranking-section {
    padding: 4rem 0;
    background: #111115;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.visit-ranking-inner {
    display: grid;
    grid-template-columns: minmax(240px, 0.7fr) minmax(420px, 1.3fr);
    align-items: center;
    gap: 4rem;
}

.visit-ranking-heading .section-title {
    margin-top: 0.35rem;
    font-size: 2rem;
}

.visit-ranking-heading .title-underline {
    margin: 1rem 0 0;
}

.visit-ranking-list {
    display: grid;
    margin: 0;
    padding: 0;
    list-style: none;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.visit-ranking-list li {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr) auto;
    align-items: center;
    min-height: 58px;
    padding: 0 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-muted);
}

.visit-ranking-list li.empty {
    display: flex;
}

.visit-ranking-list .rank {
    color: #e3bd50;
    font-family: 'Outfit', sans-serif;
    font-size: 1.2rem;
    font-weight: 800;
}

.visit-ranking-list strong {
    overflow: hidden;
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.visit-ranking-list .points {
    color: #fff;
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 700;
}

.hero-today-kicker {
    color: var(--text-muted);
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    margin-bottom: 0;
    white-space: nowrap;
}

.hero-today-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.2rem;
    min-width: 0;
}

.hero-today-item {
    display: grid;
    grid-template-columns: 1fr;
    align-items: start;
    gap: 0.75rem;
    color: var(--text-light);
    text-decoration: none;
    min-width: 0;
}

.hero-today-details {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.hero-today-time,
.hero-today-entry {
    display: inline-flex;
    align-items: center;
    color: var(--text-muted);
    background: transparent;
    border: 0;
    border-radius: 0;
    padding: 0;
    font-size: 0.82rem;
    font-weight: 600;
    line-height: 1.4;
    white-space: nowrap;
}

.hero-today-title {
    min-width: 0;
    font-family: var(--font-heading);
    font-size: clamp(1.35rem, 1.8vw, 2rem);
    font-weight: 800;
    line-height: 1.25;
    letter-spacing: 0.02em;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    text-shadow: 0 14px 26px rgba(0, 0, 0, 0.7);
}

.hero-today-meta,
.hero-today-link {
    color: var(--text-muted);
    font-size: 0.9375rem;
}

.hero-today-link {
    display: inline-flex;
    margin-top: 0.65rem;
    color: var(--gold);
    text-decoration: none;
}

.scroll-indicator {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    z-index: 10;
}

.mouse {
    width: 26px;
    height: 42px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 15px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background-color: var(--gold);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollMouse 1.8s ease-in-out infinite;
}

.scroll-text {
    font-family: var(--font-heading);
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    color: rgba(255, 255, 255, 0.4);
}

/* Live Status Section */
.status-dashboard {
    padding: 3rem;
    position: relative;
    overflow: hidden;
}

.status-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 2rem;
    margin-bottom: 2.5rem;
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.indicator-dot {
    width: 10px;
    height: 10px;
    background-color: #2ec4b6;
    border-radius: 50%;
}

.indicator-dot.pulse {
    box-shadow: 0 0 0 0 rgba(46, 196, 182, 0.7);
    animation: pulseIndicator 1.8s infinite;
}

.indicator-label {
    font-size: 0.95rem;
    font-weight: 600;
}

.status-timestamp {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.status-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.stat-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.03);
    transition: var(--transition);
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.04);
    transform: translateY(-2px);
    border-color: rgba(212, 175, 55, 0.2);
}

.stat-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    background: rgba(212, 175, 55, 0.1);
    color: var(--gold);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.stat-icon-wrapper.gold-glow {
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.05);
}

.stat-icon-wrapper.red-glow {
    background: rgba(230, 57, 70, 0.1);
    color: var(--accent-red);
    border-color: rgba(230, 57, 70, 0.2);
    box-shadow: 0 0 15px rgba(230, 57, 70, 0.05);
}

.stat-info {
    flex-grow: 1;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-family: var(--font-body);
    margin-bottom: 0.25rem;
}

.stat-value {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1;
}

.stat-unit {
    font-size: 1rem;
    margin-left: 0.25rem;
    font-family: var(--font-body);
    color: var(--text-muted);
}

.status-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.pokerfans-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    background: rgba(212, 175, 55, 0.07);
    border: 1px solid rgba(212, 175, 55, 0.2);
    padding: 0.35rem 0.75rem;
    border-radius: 50px;
    color: var(--gold);
}

.pf-mini-logo {
    height: 18px;
    width: 42px;
    object-fit: contain;
}

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

/* Schedule Section */
.config-trigger {
    position: absolute;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    cursor: pointer;
    font-size: 1.2rem;
    transition: var(--transition);
    padding: 0.5rem;
}

.config-trigger:hover {
    color: var(--gold);
    transform: translateY(-50%) rotate(45deg);
}

.config-modal {
    max-width: 600px;
    margin: 0 auto 3rem;
    padding: 1.5rem;
    display: none;
}

.config-modal.active {
    display: block;
    animation: fadeInUp 0.5s ease;
}

.config-title {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

.config-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.config-help {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 0.5rem;
}

.form-group-row {
    display: flex;
    gap: 1rem;
}

.form-control {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    padding: 0.75rem 1rem;
    border-radius: 4px;
    outline: none;
    font-family: var(--font-body);
    transition: var(--transition);
}

.form-control:focus {
    border-color: var(--gold);
    background: rgba(255, 255, 255, 0.08);
}

#club-id-input {
    flex-grow: 1;
}

/* Homepage Event Calendar - Premium Design */
.homepage-calendar-shell {
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 16px !important;
    padding: 20px !important;
    background: rgba(10, 10, 12, 0.4) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.02);
}

.homepage-cal-nav-btn {
    width: 36px;
    height: 36px;
    border-radius: 50% !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    background: rgba(255, 255, 255, 0.02) !important;
    color: #ffffff !important;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    font-size: 11px;
}
.homepage-cal-nav-btn:hover {
    background: #ffffff !important;
    color: #000000 !important;
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
    border-color: #ffffff !important;
}

#homepage-cal-title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    background: linear-gradient(135deg, #ffffff 30%, #e3bd50 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Homepage Event Calendar - Scroll Wrapper (removed, using option A instead) */

/* Weekday header row */
.homepage-calendar-weekday-header {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
    font-size: 11px;
    font-weight: 800;
    color: var(--text-muted);
    background: rgba(255, 255, 255, 0.02);
    border-radius: 8px;
    padding: 10px 0;
    margin-bottom: 10px;
    border: 1px solid rgba(255, 255, 255, 0.04);
    font-family: var(--font-heading);
    letter-spacing: 0.08em;
}

/* Homepage Event Calendar - Grid Container and Tiles */
.homepage-calendar-grid-container {
    background: rgba(212, 175, 55, 0.22); /* 上品なゴールドの格子線 */
    padding: 1px;
    border-radius: 12px;
    overflow: hidden;
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 1px;
}

.homepage-calendar-day {
    aspect-ratio: 1 / 1;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    border: none !important;
    background: rgba(22, 22, 28, 0.9) !important; /* 真っ黒ではなく、上品なアッシュダークグレー */
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.95); /* 日付の数字をさらに明るく鮮明に */
    position: relative;
    padding: 0;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
    min-height: 75px;
}
.homepage-calendar-day:hover {
    background-color: rgba(212, 175, 55, 0.1) !important;
    color: var(--gold);
    z-index: 2;
    transform: scale(1.02);
}
.homepage-calendar-day.is-other-month {
    color: rgba(255, 255, 255, 0.32) !important;
    background: rgba(16, 16, 20, 0.6) !important;
}

/* 今日（Today）の特別な輝き */
.homepage-calendar-day.is-today {
    background: rgba(212, 175, 55, 0.08) !important;
    box-shadow: inset 0 0 0 1.5px var(--gold);
    z-index: 1;
}

/* イベントがある日（has-event）: ほんのりゴールドがかり、左上にゴールドのシャープな三角インジケータ */
.homepage-calendar-day.has-event {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.12) 0%, rgba(212, 175, 55, 0.03) 100%) !important;
    color: var(--gold) !important;
}
.homepage-calendar-day.has-event::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 0;
    border-top: 7px solid #e3bd50;
    border-right: 7px solid transparent;
}

/* 店休日: グレーアウト＋斜線パターン */
.homepage-calendar-day.is-holiday {
    background: repeating-linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.03) 0px,
        rgba(255, 255, 255, 0.03) 3px,
        rgba(255, 255, 255, 0.00) 3px,
        rgba(255, 255, 255, 0.00) 8px
    ), rgba(255, 80, 80, 0.06) !important;
    color: rgba(255, 120, 120, 0.6) !important;
}
.homepage-calendar-day.is-holiday::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid rgba(255, 80, 80, 0.18);
    pointer-events: none;
}

/* 「休」バッジ */
.holiday-badge {
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 9px;
    font-weight: 900;
    font-family: var(--font-heading);
    color: rgba(255, 100, 100, 0.85);
    letter-spacing: 0.05em;
    line-height: 1;
}

/* 選択された日: 豪華なゴールドグラデーションで塗りつぶし、文字は深みのある黒 */
.homepage-calendar-day.is-selected {
    background: linear-gradient(135deg, #e3bd50 0%, #c49a3c 100%) !important;
    color: #0d0d11 !important;
    font-weight: 800;
    box-shadow: 0 4px 15px rgba(227, 189, 80, 0.35);
    z-index: 2;
}
.homepage-calendar-day.is-selected::before {
    border-top-color: #0d0d11 !important; /* 選択時はコーナーマークの色も反転 */
}
.homepage-calendar-dot {
    display: none; /* ドットは廃止し、コーナーマークとセル背景グラデーションに統合 */
}

.pokerfans-embed-container {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    background: #000;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    border: 1px solid var(--glass-border);
}

.pokerfans-embed-container iframe {
    display: block;
}

.schedule-intro-text {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.schedule-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.schedule-item {
    display: flex;
    padding: 2rem;
    align-items: center;
    gap: 2.5rem;
    transition: var(--transition);
}

.schedule-item:hover {
    border-color: rgba(212, 175, 55, 0.3);
    transform: scale(1.01);
}

.schedule-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    padding-right: 2.5rem;
    min-width: 130px;
}

.schedule-date .day {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--gold);
    line-height: 1;
}

.schedule-date .month-year {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin: 0.25rem 0 0.5rem;
}

.schedule-date .day-name {
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.15rem 0.65rem;
    border-radius: 3px;
    background: rgba(255, 255, 255, 0.1);
    letter-spacing: 0.1em;
}

.day-name.sat {
    background: rgba(74, 144, 226, 0.2);
    color: #4a90e2;
}

.day-name.sun {
    background: rgba(230, 57, 70, 0.2);
    color: #e63946;
}

.schedule-details {
    flex-grow: 1;
}

.event-time {
    font-size: 0.9375rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

.event-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.event-desc {
    font-size: 0.9375rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.event-meta {
    display: flex;
    gap: 1.5rem;
}

.event-meta-compact {
    margin-top: 0.65rem;
    gap: 0.75rem;
}

.meta-tag {
    font-size: 0.9375rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 0.25rem 0.75rem;
    border-radius: 40px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.event-full-details {
    margin-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 0.9rem;
}

.event-full-details summary {
    width: fit-content;
    cursor: pointer;
    color: var(--gold);
    font-size: 0.86rem;
    font-weight: 700;
    list-style: none;
    user-select: none;
}

.event-full-details summary::-webkit-details-marker {
    display: none;
}

.event-full-details summary::after {
    content: "+";
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    margin-left: 0.45rem;
    border: 1px solid rgba(212, 175, 55, 0.35);
    border-radius: 50%;
    font-size: 0.72rem;
    line-height: 1;
}

.event-full-details[open] summary::after {
    content: "-";
}

.event-full-text {
    margin-top: 0.9rem;
    max-height: 360px;
    overflow-y: auto;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.24);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 6px;
    color: var(--text-muted);
    font-size: 0.84rem;
    line-height: 1.75;
}

.event-full-text p {
    margin-bottom: 0.9rem;
}

.event-full-text p:last-child {
    margin-bottom: 0;
}

/* Games & System Section */
.games-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 3rem;
    max-width: 820px;
    margin: 0 auto;
}

.game-card {
    padding: 3rem;
    transition: var(--transition);
}

.game-card:hover {
    border-color: rgba(212, 175, 55, 0.25);
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6);
}

.game-card-header {
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 2rem;
    margin-bottom: 2rem;
}

.game-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    background: rgba(212, 175, 55, 0.1);
    color: var(--gold);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.game-icon.gold-glow {
    box-shadow: 0 0 20px var(--gold-glow);
}

.game-icon.red-glow {
    background: rgba(230, 57, 70, 0.1);
    color: var(--accent-red);
    border-color: rgba(230, 57, 70, 0.2);
    box-shadow: 0 0 20px var(--red-glow);
}

.game-type-title {
    font-size: 1.8rem;
    margin-bottom: 0.25rem;
}

.game-type-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.game-text {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.pricing-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.pricing-list li {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.08);
    padding-bottom: 0.5rem;
}

.price-name {
    font-size: 0.9rem;
}

.price-value {
    color: var(--gold);
    font-weight: 700;
}

.ring-game-sync {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

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

.ring-sync-label {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.7rem;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 3px;
    color: var(--text-light);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.06em;
}

.ring-sync-note {
    color: var(--text-muted);
    font-size: 0.78rem;
    text-align: right;
}

.ring-sync-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.ring-sync-item {
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 6px;
    padding: 0.85rem 1rem;
}

.ring-sync-item summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    cursor: pointer;
    list-style: none;
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 700;
}

.ring-sync-item summary::-webkit-details-marker {
    display: none;
}

.ring-sync-title {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    min-width: 0;
}

.ring-sync-title em {
    display: inline-flex;
    align-items: center;
    padding: 0.12rem 0.45rem;
    border: 1px solid rgba(212, 175, 55, 0.35);
    border-radius: 3px;
    color: var(--gold);
    font-size: 0.68rem;
    font-style: normal;
    font-weight: 700;
    white-space: nowrap;
}

.ring-sync-item summary strong {
    color: var(--gold);
    white-space: nowrap;
}

.ring-sync-item .event-full-text {
    max-height: 260px;
}

.ring-sync-link {
    margin-top: 1rem;
}

/* Bar & Lounge Section */
.lounge-container {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
    overflow: hidden;
}

.drink-menu-panel,
.rental-menu-panel {
    padding: 4rem;
}

.rental-menu-panel {
    border-left: 1px solid var(--glass-border);
    background: rgba(0, 0, 0, 0.18);
}

/* Accordion Toggle */
.menu-collapsible {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}

.menu-collapsible.open {
    max-height: 3000px;
}

.menu-toggle-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    background: transparent;
    border: 1px solid rgba(212, 175, 55, 0.35);
    color: var(--gold);
    padding: 0.55rem 1.25rem;
    border-radius: 40px;
    cursor: pointer;
    font-size: 0.875rem;
    font-family: var(--font-body);
    letter-spacing: 0.04em;
    margin-top: 1.2rem;
    transition: var(--transition);
}

.menu-toggle-btn:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: rgba(212, 175, 55, 0.6);
}

.menu-toggle-icon {
    transition: transform 0.35s ease;
    font-size: 0.8rem;
}

.menu-toggle-btn[aria-expanded="true"] .menu-toggle-icon {
    transform: rotate(180deg);
}

.lounge-menu-heading {
    margin-bottom: 2.5rem;
}

.menu-kicker {
    display: block;
    color: var(--gold);
    font-family: var(--font-heading);
    font-size: 1rem;
    font-style: italic;
    margin-bottom: 0.6rem;
}

.lounge-title {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.lounge-desc {
    color: var(--text-muted);
    margin-bottom: 0;
    font-size: 0.9375rem;
}

.menu-section {
    margin-top: 2.5rem;
}

.menu-section:first-of-type {
    margin-top: 0;
}

.category-title {
    font-size: 1rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    padding-bottom: 0.75rem;
    margin-bottom: 1.25rem;
}

.menu-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.menu-list li {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    font-size: 0.9rem;
}

.item-name {
    color: var(--text-light);
}

.item-price {
    color: var(--gold);
    font-weight: 700;
    white-space: nowrap;
}

.drink-price-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.6rem;
}

.drink-price-group strong {
    display: block;
    color: var(--text-light);
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
    padding-bottom: 0.35rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.55);
}

.compact-menu-list {
    list-style: none;
    color: var(--text-light);
    font-size: 0.9375rem;
    line-height: 1.85;
}

.shot-menu-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 2rem;
}

.champagne-list .item-name {
    min-width: 0;
}

.menu-note {
    margin-top: 0.9rem;
    font-size: 0.9375rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* Food Menu Section */
.food-section {
    background: #0a0a0d;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.food-menu-description {
    margin-top: 1rem;
    color: var(--text-muted);
    font-size: 0.9375rem;
}

.food-featured {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: stretch;
    max-width: 900px;
    margin: 0 auto 2rem;
    border: 2px solid #dc1820;
    background: #17171b;
}

.food-featured-label {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    padding: 1.4rem 1.6rem;
    color: #fff;
    background: #dc1820;
    font-size: 0.85rem;
    font-weight: 800;
    white-space: nowrap;
}

.food-featured-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 1.4rem 1.8rem;
}

.food-featured-content strong {
    color: #fff;
    font-size: 1.25rem;
}

.food-featured-content span {
    color: #e3bd50;
    font-family: 'Outfit', sans-serif;
    font-size: 1.3rem;
    font-weight: 800;
    white-space: nowrap;
}

.food-menu-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 1100px;
    margin: 0 auto;
    border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.food-menu-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    min-height: 60px;
    padding: 0.8rem 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.food-menu-item:nth-child(odd) {
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.food-menu-item span {
    color: #fff;
    font-size: 0.9rem;
    line-height: 1.5;
}

.food-menu-item strong {
    color: #e3bd50;
    font-family: 'Outfit', sans-serif;
    white-space: nowrap;
}

@media (max-width: 720px) {
    .food-featured {
        grid-template-columns: 1fr;
    }

    .food-featured-label {
        justify-content: center;
        padding: 0.8rem 1rem;
    }

    .food-featured-content {
        align-items: flex-start;
        flex-direction: column;
        gap: 0.5rem;
        padding: 1.2rem;
    }

    .food-menu-grid {
        grid-template-columns: 1fr;
    }

    .food-menu-item:nth-child(odd) {
        border-right: 0;
    }
}

.rental-fee-box {
    padding: 1rem 0;
    border-top: 1px solid rgba(212, 175, 55, 0.28);
    border-bottom: 1px solid rgba(212, 175, 55, 0.28);
}

.free-drink-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
}

/* Access & Contact Section */
.access-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 3rem;
}

.info-card, .contact-form-card {
    padding: 3rem;
}

.card-title {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 1rem;
}

.info-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.info-list li {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.list-icon {
    font-size: 1.4rem;
    color: var(--gold);
    width: 25px;
    text-align: center;
}

.info-list li strong {
    display: block;
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

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

.map-container {
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.form-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.contact-channel-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-channel {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem;
    border: 1px solid rgba(212, 175, 55, 0.18);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.035);
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition);
}

.contact-channel:hover {
    border-color: rgba(212, 175, 55, 0.45);
    background: rgba(212, 175, 55, 0.07);
    transform: translateY(-2px);
}

.contact-channel-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--gold);
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.24);
    font-size: 1.15rem;
}

.contact-channel-text {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    min-width: 0;
}

.contact-channel-text strong {
    font-size: 0.95rem;
}

.contact-channel-text span {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.contact-channel-arrow {
    margin-left: auto;
    color: var(--gold);
    font-size: 0.85rem;
    opacity: 0.8;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
}

.required {
    color: var(--accent-red);
}

.form-row {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 1.5rem;
}

textarea.form-control {
    resize: none;
}

/* Footer */
.footer {
    background-color: var(--bg-darker);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 6rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 4rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-logo {
    height: 58px;
    width: 128px;
    object-fit: contain;
    margin-bottom: 1rem;
}

.footer-brand-name {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: 0.1rem;
    display: block;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #fff, var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-tagline {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.footer-links h4, .footer-sns h4 {
    font-size: 0.9rem;
    color: var(--text-light);
    letter-spacing: 0.15em;
    margin-bottom: 1.5rem;
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    text-decoration: none;
    color: var(--text-muted);
    font-size: 0.85rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--gold);
    padding-left: 5px;
}

.sns-icons {
    display: flex;
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.sns-icons a {
    color: var(--text-muted);
    font-size: 1.3rem;
    transition: var(--transition);
}

.sns-icons a:hover {
    color: var(--gold);
    transform: translateY(-2px);
}

.staff-portal-link a {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    color: rgba(255,255,255,0.25);
    font-size: 0.75rem;
    transition: var(--transition);
}

.staff-portal-link a:hover {
    color: var(--gold);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.25);
}

/* Scroll Animation classes */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s ease, transform 1s ease;
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Animations */
@keyframes zoomOut {
    from {
        transform: scale(1.1);
    }
    to {
        transform: scale(1);
    }
}

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

@keyframes scrollMouse {
    0% {
        opacity: 1;
        top: 8px;
    }
    50% {
        opacity: 0.3;
        top: 20px;
    }
    100% {
        opacity: 1;
        top: 8px;
    }
}

@keyframes pulseIndicator {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(46, 196, 182, 0.7);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 8px rgba(46, 196, 182, 0);
    }
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(46, 196, 182, 0);
    }
}

/* Fade In Base class */
.fade-in {
    opacity: 0;
    animation: fadeInAnimation 1.5s forwards;
}

@keyframes fadeInAnimation {
    to {
        opacity: 1;
    }
}

/* Responsive Web Design (Media Queries) */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3.5rem;
    }
    
    .status-grid {
        gap: 1.5rem;
    }
    
    .games-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .lounge-container {
        grid-template-columns: 1fr;
    }
    
    .rental-menu-panel {
        border-left: none;
        border-top: 1px solid var(--glass-border);
    }

    .drink-price-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .shot-menu-grid {
        grid-template-columns: 1fr;
    }
    
    .access-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

@media (max-width: 768px) {
    .section-padding {
        padding: 5rem 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    /* Header & Mobile Nav */
    .mobile-nav-toggle {
        display: flex;
        z-index: 1400;
    }

    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: rgba(5, 5, 6, 0.98);
        backdrop-filter: blur(20px);
        z-index: 1300;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: var(--transition);
        border-left: 1px solid var(--glass-border);
    }

    body {
        padding-bottom: 100px;
    }
    
    .nav.active {
        right: 0;
    }
    
    .nav-list {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }
    
    .nav-link {
        font-size: 1.2rem;
    }
    
    .header-cta {
        display: none; /* Hide button on mobile in favor of link in menu */
    }
    
    .mobile-nav-toggle.active .bar:nth-child(1) {
        transform: rotate(45deg) translate(5px, 6px);
    }
    
    .mobile-nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-nav-toggle.active .bar:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -6px);
    }

    .hero-title {
        font-size: 2.6rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        padding: 0 2rem;
    }

    .hero-today-panel {
        left: 0;
        right: 0;
        bottom: 0.75rem;
        width: auto;
        min-height: auto;
        grid-template-columns: 1fr;
        gap: 1.1rem;
        padding: 1.4rem 1.2rem;
    }

    .hero-live-status {
        top: 85px;
        left: 1rem;
        right: 1rem;
        width: auto;
        transform: none;
        padding: 0.8rem 1.2rem;
        flex-direction: row;
        justify-content: space-between;
    }

    .visit-ranking-section {
        padding: 3rem 0;
    }

    .visit-ranking-inner {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-live-status-value {
        font-size: 1.8rem;
        padding: 4px 10px;
    }

    .hero-today-list {
        grid-template-columns: 1fr;
        gap: 1.1rem;
    }

    .hero-today-item {
        grid-template-columns: 1fr;
        gap: 0.4rem;
    }

    .hero-today-title {
        font-size: 1.25rem;
        white-space: nowrap;
    }
    
    .status-dashboard {
        padding: 1.5rem;
    }
    
    .status-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .status-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        padding-bottom: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .status-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        margin-top: 1.5rem;
        padding-top: 1rem;
    }
    
    .schedule-item {
        flex-direction: column;
        gap: 1.5rem;
        padding: 1.5rem;
    }
    
    .schedule-date {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding-right: 0;
        padding-bottom: 1.5rem;
        width: 100%;
        min-width: unset;
        flex-direction: row;
        justify-content: flex-start;
        gap: 1.5rem;
    }
    
    .schedule-date .day {
        font-size: 2.2rem;
    }
    
    .schedule-action {
        width: 100%;
    }
    
    .schedule-action .btn-outline {
        width: 100%;
    }
    
    .game-card {
        padding: 2rem 1.5rem;
    }
    
    .drink-menu-panel,
    .rental-menu-panel {
        padding: 2.5rem 1.5rem;
    }
    
    .drink-price-grid,
    .free-drink-grid {
        grid-template-columns: 1fr;
        gap: 1.4rem;
    }

    .menu-list li {
        align-items: flex-start;
        flex-direction: column;
        gap: 0.25rem;
    }
    
    .info-card, .contact-form-card {
        padding: 2.5rem 1.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 390px) {
    .container {
        padding: 0 1.2rem;
    }
    /* 390px以下でのカレンダー補正（containerのpadding が 1.2rem に変わるため） */
    .schedule-display {
        width: calc(100% + 2.4rem) !important;
        margin-left: -1.2rem !important;
    }

    .drink-menu-panel,
    .rental-menu-panel {
        padding: 2rem 1.2rem;
    }

    .game-card {
        padding: 1.5rem 1.2rem;
    }

    .info-card, .contact-form-card {
        padding: 2rem 1.2rem;
    }
}

/* --- Opening Loader (Card Cascade) --- */
.opening-loader-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #050507;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 1.2s cubic-bezier(0.85, 0, 0.15, 1), opacity 1.2s cubic-bezier(0.85, 0, 0.15, 1);
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.opening-loader-overlay.fade-out {
    opacity: 0;
    pointer-events: none;
    transform: translateY(-100%);
}

.cascade-container {
    position: relative;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
}

.cascading-card {
    position: absolute;
    width: 70px;
    height: 100px;
    background: linear-gradient(135deg, #15151c, #050508);
    border: 1px solid var(--gold);
    border-radius: 6px;
    top: -120px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--gold);
    opacity: 0.8;
}

.cascade-center-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.6);
    opacity: 0;
    z-index: 100;
}

.cascade-center-logo.reveal {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
    transition: all 1.0s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.loader-logo-img {
    width: 240px;
    height: 112px;
    object-fit: contain;
}

/* 他のローダー用（後日変更対応用予備スタイル） */
.neon-flicker-text {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    color: rgba(212, 175, 55, 0.1);
    text-transform: uppercase;
}

.neon-flicker-text.active {
    animation: neonFlicker 2s ease-in-out forwards;
}

/* ゲートスプリット用 */
.gate-panel-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    z-index: 99999;
    pointer-events: none;
}

.gate-panel {
    width: 50%;
    height: 100%;
    background: #070709;
    position: relative;
    transition: transform 1.2s cubic-bezier(0.77, 0, 0.175, 1);
}

.gate-left {
    transform: translateX(0);
    border-right: 1px solid var(--gold);
}

.gate-right {
    transform: translateX(0);
    border-left: 1px solid var(--gold);
}

.gate-panel-container.open .gate-left {
    transform: translateX(-100%);
}

.gate-panel-container.open .gate-right {
    transform: translateX(100%);
}

.gate-center-badge {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 100000;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: #050507;
    border: 2px solid var(--gold);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    transition: all 0.5s ease;
}

.gate-panel-container.open .gate-center-badge {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0);
}

/* --- 3D Floating Cards Hero Section --- */
.design-3-space {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
    perspective: 1000px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.design-3-logo {
    position: relative;
    z-index: 10;
    width: 140px;
    height: 140px;
    background-image: url('assets/logo-site.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.9;
    filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.25));
    pointer-events: none;
    animation: logoPulse 5s ease-in-out infinite alternate;
}

.floating-card-3d {
    position: absolute;
    width: 110px;
    height: 160px;
    border-radius: 8px;
    background: linear-gradient(135deg, #15151c, #050508);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.65);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.45);
    transform-style: preserve-3d;
    pointer-events: none;
    transition: left 0.1s ease, top 0.1s ease;
}

.floating-card-3d::after {
    content: '';
    position: absolute;
    width: 90%;
    height: 92%;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 6px;
}

.card-sheen {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 100%);
    border-radius: 8px;
}

.card-suit {
    font-family: 'Cinzel', serif;
    color: rgba(255, 255, 255, 0.8);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.35);
}

@keyframes logoPulse {
    0% {
        transform: scale(0.96);
        filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.1));
    }
    100% {
        transform: scale(1.04);
        filter: drop-shadow(0 0 25px rgba(255, 255, 255, 0.45));
    }
}

/* 3D Cards Mobile responsive scaling */
@media (max-width: 768px) {
    .design-3-logo {
        width: 100px;
        height: 100px;
    }

    .floating-card-3d {
        width: 75px;
        height: 110px;
        font-size: 1.5rem;
    }
}

/* --- Poker Fans Scraped Schedule Styles --- */
.pokerfans-schedule-container {
    width: 100%;
}

.schedule-loading {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    width: 100%;
}

/* Skeleton Loading styles */
.skeleton-item {
    display: flex;
    align-items: center;
    min-height: 120px;
    padding: 1.5rem 2rem;
    position: relative;
    overflow: hidden;
}

.skeleton-item::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    transform: translateX(-100%);
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.05) 20%,
        rgba(255, 255, 255, 0.1) 60%,
        rgba(255, 255, 255, 0) 100%
    );
    animation: shimmer 2.2s infinite;
}

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

.skeleton-date {
    width: 80px;
    height: 80px;
    background-color: rgba(255, 255, 255, 0.04);
    border-radius: 4px;
    margin-right: 2rem;
    flex-shrink: 0;
}

.skeleton-details {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.skeleton-time {
    width: 80px;
    height: 14px;
    background-color: rgba(255, 255, 255, 0.04);
    border-radius: 2px;
}

.skeleton-title {
    width: 60%;
    height: 22px;
    background-color: rgba(255, 255, 255, 0.06);
    border-radius: 3px;
}

.skeleton-meta {
    width: 40%;
    height: 14px;
    background-color: rgba(255, 255, 255, 0.04);
    border-radius: 2px;
}

/* Error fallback view */
.pokerfans-error-container {
    text-align: center;
    padding: 3.5rem 2rem;
    background: rgba(255, 255, 255, 0.01);
    border: 1px dashed rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.pokerfans-error-container .error-msg {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

/* Animations */
.schedule-item.fade-in-up {
    animation: scheduleFadeInUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    opacity: 0;
    transform: translateY(20px);
}

@keyframes scheduleFadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive adjustment for skeletons */
@media (max-width: 768px) {
    .skeleton-item {
        flex-direction: column;
        align-items: flex-start;
        padding: 1.5rem;
        gap: 1.5rem;
    }
    
    .skeleton-date {
        width: 100%;
        height: 50px;
        margin-right: 0;
    }

    .skeleton-title {
        width: 95%;
    }
}

/* Hero Member Portal Badge */
.hero-member-portal-badge {
    position: absolute;
    left: 2rem;
    bottom: 8.5rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 18px;
    border: 1px solid rgba(227, 189, 80, 0.3) !important;
    background: rgba(15, 15, 18, 0.75) !important;
    border-radius: 8px;
    box-shadow: 0 8px 32px rgba(227, 189, 80, 0.08);
    transition: var(--transition);
    z-index: 10;
}
.hero-member-portal-badge:hover {
    transform: translateY(-3px);
    border-color: #e3bd50 !important;
    box-shadow: 0 12px 40px rgba(227, 189, 80, 0.2);
}

@media (max-width: 1024px) {
    .hero-member-portal-badge {
        left: 50% !important;
        transform: translateX(-50%) !important;
        bottom: 16rem !important;
        width: calc(100% - 32px) !important;
        max-width: 360px !important;
        justify-content: center !important;
    }
    .hero-member-portal-badge:hover {
        transform: translateX(-50%) translateY(-3px) !important;
    }
}

/* --- POINTS RANKING SECTION --- */
@media (max-width: 991px) {
    .ranking-grid-container {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
}
.points-ranking-section .visit-ranking-list {
    border-top: none;
}
.points-ranking-section .visit-ranking-list li {
    min-height: 52px;
}
.points-ranking-section .visit-ranking-list li:last-child {
    border-bottom: none;
}

@media (max-width: 767px) {
    /* カレンダーを両端に少しだけ余白を残して広げる */
    .schedule-display {
        width: calc(100% + 4rem) !important;
        max-width: none !important;
        margin-left: -2rem !important;
        margin-right: 0 !important;
        padding: 0 12px !important;
        box-sizing: border-box !important;
    }
    .schedule-display > .glass-panel {
        border-radius: 0 !important;
        border-left: none !important;
        border-right: none !important;
        padding: 20px 0 0 !important;
        gap: 0 !important;
    }
    .schedule-display .homepage-calendar-shell {
        padding: 0 0 4px !important;
        border-radius: 0 !important;
        border: none !important;
        background: transparent !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        box-shadow: none !important;
    }
    /* ナビ（月タイトル＋矢印）は左右に余白を戻す */
    .schedule-display .homepage-calendar-shell > div:first-child {
        padding: 0 16px 14px !important;
        margin-bottom: 0 !important;
    }
    /* 曜日ヘッダー・グリッドは端まで */
    .schedule-display .homepage-calendar-weekday-header {
        border-radius: 0 !important;
    }
    .schedule-display .homepage-calendar-grid-container {
        border-radius: 0 !important;
    }
    /* 選択日イベントパネルは左右余白を戻す */
    .schedule-display > .glass-panel > div:last-child {
        padding: 16px 16px 20px !important;
        margin-top: 0 !important;
        border-top: 1px solid rgba(255, 255, 255, 0.06);
    }

    /* セルをシンプル表示 */
    .homepage-calendar-day {
        aspect-ratio: 1 / 1 !important;
        min-height: unset !important;
        padding: 0 !important;
        align-items: center !important;
        justify-content: center !important;
    }
    .homepage-calendar-day .day-number {
        font-size: 17px !important;
        font-weight: 800 !important;
        text-align: center !important;
        width: 100% !important;
        padding: 0 !important;
        line-height: 1 !important;
    }
    .homepage-calendar-day .calendar-events-preview {
        display: none !important;
    }
}

/* スケジュールセクション全体の背景が黒ずんで沈むのを防ぐため、下部から上品なゴールドの光が湧き上がるライティング効果を適用 */
.schedule-section {
    background: radial-gradient(circle at 50% 90%, rgba(212, 175, 55, 0.06) 0%, var(--bg-darker) 70%) !important;
    position: relative;
    overflow: hidden;
}
.schedule-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 120px;
    background: linear-gradient(180deg, transparent, rgba(212, 175, 55, 0.04));
    pointer-events: none;
}

