:root {
    --bg: #fff7ed;
    /* warm paper */
    --bg2: #fff1df;
    /* section warm */
    --card: #ffffff;
    --text: #1f2937;
    --muted: rgba(31, 41, 55, .72);
    --line: rgba(31, 41, 55, .10);

    --accent: #f59e0b;
    /* amber */
    --accent2: #fb7185;
    /* rose */
    --accent3: #60a5fa;
    /* blue */

    --radius: 22px;
    --shadow: 0 18px 50px rgba(31, 41, 55, .10);
    --shadow2: 0 12px 30px rgba(31, 41, 55, .08);

    --sans: "Zen Maru Gothic", "BIZ UDGothic", system-ui, -apple-system, "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
    --serif: "Noto Serif JP", serif;
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    font-family: var(--sans);
    color: var(--text);
    background: linear-gradient(180deg, var(--bg) 0%, #fff 32%, #fff 100%);
    font-size: 16px;
    line-height: 1.8;
}

a {
    color: inherit;
    text-decoration: none
}

.container {
    width: min(760px, calc(100% - 40px));
    margin-inline: auto
}

.muted {
    color: var(--muted);
    line-height: 1.9
}

.micro {
    font-size: 12px;
    color: rgba(31, 41, 55, .62);
    line-height: 1.8;
    margin: 10px 0 0
}

.center {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 18px
}

.link {
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 14px;
    border-radius: 999px;
    border: 1px solid rgba(31, 41, 55, .14);
    background: rgba(255, 255, 255, .65);
    box-shadow: 0 10px 22px rgba(31, 41, 55, .06);
    font-weight: 900;
    font-size: 14px;
    transition: transform .15s ease, box-shadow .15s ease;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(31, 41, 55, .15)
}

.btn-primary {
    border-color: rgba(245, 158, 11, .8);
    background: linear-gradient(135deg, #f59e0b, #f97316);
    color: #fff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #fbbf24, #ea580c);
}

.btn-ghost {
    background: rgba(255, 255, 255, .55)
}

.btn-ghost-light {
    background: rgba(255, 255, 255, .15);
    border-color: rgba(255, 255, 255, .4);
    color: #fff;
    backdrop-filter: blur(4px);
}

.btn-ghost-light:hover {
    background: rgba(255, 255, 255, .25);
}

.btn-lg {
    padding: 13px 18px;
    font-size: 15px
}

.btn-xl {
    padding: 18px 32px;
    font-size: 18px;
    border-radius: 999px;
    box-shadow: 0 12px 30px rgba(245, 158, 11, .3);
}

/* Header */
.header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 247, 237, .82);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(31, 41, 55, .08);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 0;
    width: min(1100px, calc(100% - 40px));
    margin-inline: auto;
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
    flex-shrink: 0;
}

.brand-mark {
    width: 36px;
    height: 36px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(255, 247, 237, 0.95), rgba(255, 241, 223, 0.8));
    box-shadow: 0 6px 18px rgba(245, 158, 11, .15);
    display: grid;
    place-items: center;
    flex-shrink: 0;
    overflow: hidden;
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.15
}

.brand-name {
    font-weight: 950;
    letter-spacing: .02em;
    font-size: 15px;
}

.brand-sub {
    font-size: 10px;
    color: rgba(31, 41, 55, .62);
    margin-top: 2px
}

.nav {
    display: flex;
    gap: 4px;
    font-size: 13px;
    color: rgba(31, 41, 55, .82);
    flex-shrink: 0;
}

.nav a {
    padding: 8px 8px;
    border-radius: 12px;
    white-space: nowrap;
}

.nav a:hover {
    background: rgba(31, 41, 55, .05)
}

.header-cta {
    display: flex;
    gap: 8px;
    align-items: center;
    flex-shrink: 0;
}

.header-cta .btn {
    font-size: 13px;
    padding: 8px 14px;
}

.nav-toggle {
    display: none;
    border: 1px solid rgba(31, 41, 55, .14);
    background: rgba(255, 255, 255, .6);
    border-radius: 14px;
    width: 44px;
    height: 44px;
    box-shadow: 0 10px 22px rgba(31, 41, 55, .06);
    cursor: pointer;
}

.bars {
    display: block;
    width: 18px;
    height: 12px;
    margin: 0 auto;
    position: relative
}

.bars::before,
.bars::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    height: 2px;
    background: rgba(17, 24, 39, .8);
    border-radius: 3px
}

.bars::before {
    top: 0
}

.bars::after {
    bottom: 0
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0
}

.mobile-menu {
    display: none;
    padding: 10px 20px 16px;
    border-top: 1px solid rgba(31, 41, 55, .08);
}

.mobile-menu a {
    display: block;
    padding: 12px 10px;
    border-radius: 14px;
    font-size: 15px;
}

.mobile-menu a:hover {
    background: rgba(31, 41, 55, .05)
}

.mobile-menu .btn {
    margin-top: 8px;
    width: 100%
}

/* Hero */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
    margin-top: -65px;
    /* header height negative margin to allow background behind header */
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(17, 24, 39, 0.8) 0%, rgba(17, 24, 39, 0.4) 100%);
    z-index: -1;
}

.hero-inner {
    position: relative;
    z-index: 10;
    width: min(960px, calc(100% - 40px));
}

.eyebrow {
    font-size: 14px;
    letter-spacing: .1em;
    font-weight: 700;
    color: rgba(31, 41, 55, .68)
}

.eyebrow-light {
    color: rgba(255, 255, 255, 0.85);
    background: rgba(245, 158, 11, 0.3);
    display: inline-block;
    padding: 6px 16px;
    border-radius: 999px;
    border: 1px solid rgba(245, 158, 11, 0.5);
    margin-bottom: 24px;
}

.hero-title {
    font-family: var(--sans);
    font-size: clamp(32px, 6vw, 64px);
    line-height: 1.25;
    margin: 0 0 24px;
    color: #ffffff;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.accent-glow {
    color: #fbbf24;
    position: relative;
    display: inline-block;
}

.hero-lead {
    margin: 0 0 40px;
    color: rgba(255, 255, 255, .9);
    font-size: 16px;
    line-height: 2.0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    max-width: 680px;
}

.hero-cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 32px;
}

.hero-summary {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 16px;
    max-width: 500px;
}

.hero-summary strong {
    color: #fff;
    font-size: 1.1em;
}

/* Sections */
.section {
    padding: 62px 0
}

.soft-bg {
    background: linear-gradient(180deg, rgba(255, 241, 223, .90), rgba(255, 255, 255, 0));
    border-top: 1px solid rgba(31, 41, 55, .06);
    border-bottom: 1px solid rgba(31, 41, 55, .06);
}

.section-head {
    margin-bottom: 40px;
    text-align: center;
}

.section-tag {
    margin: 0 0 10px;
    font-size: 12px;
    letter-spacing: .14em;
    color: rgba(31, 41, 55, .60)
}

.section-title {
    font-family: var(--sans);
    font-size: clamp(22px, 2.5vw, 32px);
    margin: 0 0 10px;
    line-height: 1.25;
}

.section-lead {
    margin: 0;
    color: rgba(31, 41, 55, .78);
    line-height: 1.9;
    text-align: center;
}

/* Layout */
.grid {
    display: grid;
    gap: 16px
}

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

.cols-2 {
    grid-template-columns: 1fr;
}

.cols-3-desktop {
    grid-template-columns: 1fr;
}

@media (min-width: 768px) {
    .cols-2 {
        grid-template-columns: repeat(2, 1fr);
    }

    .cols-3-desktop {
        grid-template-columns: repeat(3, 1fr);
    }
}

.about-flex {
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: center;
    margin-top: 24px;
}

@media (min-width: 860px) {
    .about-flex {
        flex-direction: row;
        align-items: stretch;
    }

    .about-visual {
        flex: 1;
        max-width: 45%;
    }

    .about-features {
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
}

.img-fluid {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.split {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: start;
}

/* Cards */
.card {
    background: rgba(255, 255, 255, .86);
    border: 1px solid rgba(31, 41, 55, .10);
    border-radius: var(--radius);
    box-shadow: var(--shadow2);
    padding: 18px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.card-grad {
    background: linear-gradient(135deg, rgba(255, 255, 255, .95), rgba(255, 241, 223, .45));
}

.card-horizontal {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    padding: 24px;
}

.card-icon {
    font-size: 32px;
    line-height: 1;
    background: rgba(245, 158, 11, 0.15);
    padding: 14px;
    border-radius: 16px;
}

/* Pillar card (3つの視点) */
.card-pillar {
    padding: 28px 24px;
    text-align: left;
}

.card-pillar .card-num {
    font-family: var(--serif);
    font-size: 42px;
    font-weight: 900;
    color: rgba(245, 158, 11, 0.2);
    line-height: 1;
    margin-bottom: 10px;
}

.card-pillar .h3 {
    font-size: 17px;
    margin-bottom: 10px;
}

.card-pillar .muted {
    font-size: 14px;
    line-height: 1.8;
}

.card-tall {
    padding: 32px 24px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.card-num {
    font-family: var(--serif);
    font-size: 48px;
    font-weight: 900;
    color: rgba(245, 158, 11, 0.2);
    line-height: 1;
    margin-bottom: 12px;
}

.h3 {
    margin: 0 0 8px;
    font-weight: 950;
    letter-spacing: .01em
}

.h4 {
    margin: 14px 0 6px;
    font-weight: 900;
    font-size: 15px;
}

.badge {
    display: inline-flex;
    padding: 6px 10px;
    border-radius: 999px;
    border: 1px solid rgba(31, 41, 55, .10);
    background: rgba(255, 255, 255, .70);
    font-weight: 950;
    font-size: 12px;
    margin: 0 0 10px;
}

/* Panel */
.panel {
    background: rgba(255, 255, 255, .78);
    border: 1px solid rgba(31, 41, 55, .10);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 18px;
}

.panel-cta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 14px;
}

/* Lists */
.check {
    margin: 0;
    padding-left: 1.1em;
    display: grid;
    gap: 8px;
    color: rgba(31, 41, 55, .82);
    line-height: 1.8
}

.check li::marker {
    color: rgba(245, 158, 11, .85)
}

/* Mini DL */
.mini-dl {
    margin: 10px 0 0;
    display: grid;
    gap: 8px;
}

.mini-dl div {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 18px;
    background: rgba(255, 255, 255, .65);
    border: 1px solid rgba(31, 41, 55, .08);
}

.mini-dl dt {
    font-weight: 950;
    color: rgba(31, 41, 55, .70)
}

.mini-dl dd {
    margin: 0;
    color: rgba(31, 41, 55, .84);
    line-height: 1.7
}

/* Info box */
.info-box {
    margin-top: 14px;
    background: rgba(255, 255, 255, .78);
    border: 1px solid rgba(31, 41, 55, .10);
    border-radius: var(--radius);
    box-shadow: var(--shadow2);
    padding: 14px;
}

.info-row {
    display: grid;
    grid-template-columns: 70px 1fr;
    gap: 12px;
    padding: 10px 12px;
    border-radius: 18px;
    border: 1px solid rgba(31, 41, 55, .08);
    background: rgba(255, 255, 255, .65);
}

.info-row+.info-row {
    margin-top: 10px;
}

.info-k {
    font-weight: 950;
    color: rgba(31, 41, 55, .70);
}

.info-v {
    color: rgba(31, 41, 55, .86);
    font-weight: 800;
}

/* Paper (long text) */
.paper {
    background: rgba(255, 255, 255, .82);
    border: 1px solid rgba(31, 41, 55, .10);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 22px;
}

.paper p {
    margin: 0 0 12px;
    line-height: 2.0;
    color: rgba(31, 41, 55, .84)
}

.paper p:last-child {
    margin-bottom: 0
}

.paper-mini {
    margin-top: 14px;
}

/* Timeline */
.timeline {
    list-style: none;
    padding: 0;
    margin: 22px 0 0;
    display: grid;
    gap: 14px;
}

.t-item {
    display: grid;
    grid-template-columns: 18px 1fr;
    gap: 14px;
    padding: 14px 16px;
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .72);
    border: 1px solid rgba(31, 41, 55, .10);
    box-shadow: var(--shadow2);
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 999px;
    margin-top: 6px;
    background: linear-gradient(135deg, rgba(245, 158, 11, .95), rgba(251, 113, 133, .85));
    box-shadow: 0 10px 20px rgba(245, 158, 11, .20);
}

.step {
    margin: 0;
    font-size: 12px;
    letter-spacing: .08em;
    color: rgba(31, 41, 55, .62);
    font-weight: 950;
}

/* DL */
.dl {
    margin: 12px 0 0;
    display: grid;
    gap: 10px
}

.dl div {
    display: grid;
    grid-template-columns: 86px 1fr;
    gap: 12px;
    padding: 10px 12px;
    border-radius: 18px;
    border: 1px solid rgba(31, 41, 55, .08);
    background: rgba(255, 255, 255, .65);
}

.dl dt {
    font-weight: 950;
    color: rgba(31, 41, 55, .72)
}

.dl dd {
    margin: 0;
    color: rgba(31, 41, 55, .84);
    line-height: 1.8
}

/* Price */
.price-box {
    display: grid;
    gap: 12px;
    margin-top: 12px;
}

.price-item {
    padding: 12px;
    border-radius: 18px;
    border: 1px solid rgba(31, 41, 55, .08);
    background: rgba(255, 255, 255, .65);
}

.price-k {
    margin: 0;
    font-weight: 950;
    color: rgba(31, 41, 55, .72);
}

.price-v {
    margin: 6px 0 0;
    font-family: var(--serif);
    font-size: 28px;
    font-weight: 950;
}

/* Payment info */
.payment-info {
    margin-top: 16px;
    padding: 12px;
    border-radius: 18px;
    border: 1px solid rgba(31, 41, 55, .08);
    background: rgba(255, 255, 255, .65);
}

.apply {
    padding: 22px;
    margin-top: 16px
}

.apply-cta {
    margin-top: 12px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px
}

/* Callout */
.callout {
    margin-top: 18px;
    padding: 18px;
    border-radius: var(--radius);
    background: linear-gradient(135deg, rgba(245, 158, 11, .14), rgba(96, 165, 250, .12));
    border: 1px solid rgba(31, 41, 55, .10);
    box-shadow: var(--shadow2);
}

/* Chips */
.chip-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 14px;
}

.chip {
    display: inline-flex;
    padding: 10px 12px;
    border-radius: 999px;
    border: 1px solid rgba(31, 41, 55, .10);
    background: rgba(255, 255, 255, .70);
    font-weight: 900;
    font-size: 13px;
}

/* Creator Card */
.creator-card {
    text-align: center;
    padding: 24px 18px;
}

.creator-photo {
    margin-bottom: 16px;
}

.creator-img {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid rgba(245, 158, 11, 0.2);
    box-shadow: 0 8px 24px rgba(31, 41, 55, .10);
}

/* FAQ */
.faq {
    display: grid;
    gap: 10px;
    margin-top: 14px
}

.faq-item {
    background: rgba(255, 255, 255, .82);
    border: 1px solid rgba(31, 41, 55, .10);
    border-radius: var(--radius);
    box-shadow: var(--shadow2);
    overflow: hidden;
}

.faq-item summary {
    cursor: pointer;
    padding: 16px 18px;
    font-weight: 950;
    list-style: none
}

.faq-item summary::-webkit-details-marker {
    display: none
}

.faq-body {
    padding: 0 18px 16px;
    color: rgba(31, 41, 55, .78);
    line-height: 1.9
}

/* Photo Gallery */
.section-photo {
    padding: 32px 0;
}

.photo-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
}

.photo-figure {
    margin: 0;
    flex: 1 1 300px;
    max-width: 680px;
}

.photo-img {
    width: 100%;
    height: auto;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    display: block;
}

.photo-caption {
    text-align: center;
    font-size: 13px;
    color: rgba(31, 41, 55, .55);
    margin-top: 10px;
    font-weight: 500;
}

/* Footer */
.footer {
    padding: 34px 0 44px;
    border-top: 1px solid rgba(31, 41, 55, .08);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(255, 241, 223, .55));
}

.footer-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 14px
}

.footer-brand {
    font-weight: 950;
    letter-spacing: .02em
}

.footer-links {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    color: rgba(31, 41, 55, .72)
}

.footer-links a {
    padding: 8px 10px;
    border-radius: 12px
}

.footer-links a:hover {
    background: rgba(31, 41, 55, .05)
}

/* ===== Responsive ===== */

/* Tablet and below: hamburger menu */
@media (max-width: 980px) {
    .nav-desktop {
        display: none
    }

    .nav-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center
    }

    .mobile-menu:not([hidden]) {
        display: block
    }
}

/* Mobile: smaller text sizes and spacing */
@media (max-width: 600px) {
    body {
        font-size: 15px;
    }

    /* ご要望のスマホ文字サイズ調整 (15px -> 16px等へ拡大) */
    .muted,
    .check,
    .info-k,
    .info-v,
    .dl dt,
    .dl dd,
    .price-k,
    .payment-info .muted {
        font-size: 16px;
    }

    .micro {
        font-size: 13px;
    }

    .header-cta .btn {
        font-size: 11px;
        padding: 6px 10px;
    }

    .brand-sub {
        display: none;
    }

    .container {
        width: calc(100% - 32px);
    }

    .hero {
        min-height: 80vh;
        padding: 100px 0 60px;
    }

    .hero-title {
        font-size: clamp(26px, 7vw, 42px);
    }

    .hero-lead {
        font-size: 14px;
        line-height: 1.9;
    }

    .eyebrow-light {
        font-size: 12px;
        padding: 5px 12px;
    }

    .hero-cta-group {
        flex-direction: column;
        gap: 12px;
    }

    .btn-xl {
        padding: 14px 24px;
        font-size: 16px;
        width: 100%;
        text-align: center;
    }

    .hero-summary {
        font-size: 13px;
    }

    .section {
        padding: 44px 0;
    }

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

    .section-title {
        font-size: clamp(20px, 5vw, 28px);
    }

    .section-lead {
        font-size: 14px;
    }

    .card-horizontal {
        padding: 16px;
        gap: 14px;
    }

    .card-icon {
        font-size: 26px;
        padding: 10px;
    }

    .card-pillar {
        padding: 20px 18px;
    }

    .card-pillar .card-num {
        font-size: 36px;
    }

    .card-pillar .h3 {
        font-size: 16px;
    }

    .card-pillar .muted {
        font-size: 14px;
    }

    /* パネル内見出しを見やすく */
    .panel .h3,
    .callout .h3 {
        font-size: 18px;
    }

    /* 申し込みセクションの見出し */
    .apply .h3 {
        font-size: 20px;
    }

    /* 設立にいたる想いの文章を見やすく */
    .paper p {
        font-size: 15px;
        line-height: 2.0;
    }

    .price-v {
        font-size: 24px;
    }

    .chip {
        font-size: 12px;
        padding: 8px 10px;
    }

    .creator-img {
        width: 110px;
        height: 110px;
    }

    .btn-lg {
        padding: 12px 16px;
        font-size: 14px;
    }

    .cols-2 {
        grid-template-columns: 1fr;
    }

    .footer-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .footer-links {
        flex-direction: column;
        gap: 6px;
    }
}
/* Slideshow */
.slideshow {
    max-width: 560px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    box-shadow: var(--shadow2);
    background: rgba(255, 255, 255, .82);
    border: 1px solid rgba(31, 41, 55, .10);
}
.slideshow-track {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}
.slideshow-track::-webkit-scrollbar {
    display: none;
}
.slideshow-slide {
    flex: 0 0 100%;
    scroll-snap-align: center;
    position: relative;
}
.slideshow-img {
    width: 100%;
    height: auto;
    display: block;
}
.slideshow-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    background: rgba(255,255,255,0.9);
    position: relative;
    backdrop-filter: blur(4px);
    border-top: 1px solid rgba(31, 41, 55, 0.05);
}
.slideshow-btn {
    background: rgba(31, 41, 55, 0.08);
    border: none;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--text);
    transition: background 0.2s;
}
.slideshow-btn:hover {
    background: rgba(31, 41, 55, 0.15);
}
.slideshow-dots {
    display: flex;
    gap: 8px;
}
.slideshow-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(31, 41, 55, 0.15);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: all 0.2s;
}
.slideshow-dot.active {
    background: var(--accent);
    transform: scale(1.2);
}
