/* =============================================
   ぴったりカード診断AI — スタイルシート
   トーン: ポップ・親しみやすい・カラフル
   ============================================= */

/* --- リセット & 基本 --- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --c-orange: #FF6B35;
    --c-orange-light: #FFF0E8;
    --c-blue: #4ECDC4;
    --c-blue-light: #E8FAF8;
    --c-yellow: #FFD93D;
    --c-green: #6BCB77;
    --c-pink: #FF6B6B;
    --c-purple: #A66CFF;
    --c-bg: #FFFBF7;
    --c-mint: #5BB88A;
    --c-mint-dark: #4AA87A;
    --c-card: #ffffff;
    --c-text: #333333;
    --c-text-sub: #777777;
    --c-border: #eee;
    --radius: 16px;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.12);
    --font: 'Zen Maru Gothic', 'Hiragino Maru Gothic ProN', sans-serif;
    --max-w: 520px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font);
    background: var(--c-bg);
    color: var(--c-text);
    line-height: 1.7;
    min-height: 100dvh;
    -webkit-font-smoothing: antialiased;
}

/* =============================================
   ヘッダーメニュー
   ============================================= */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 251, 247, 0.95);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--c-border);
}

.header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-logo {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 16px;
    font-weight: 900;
    color: var(--c-orange);
    text-decoration: none;
}

.header-logo-icon {
    width: 28px;
    height: 28px;
    border-radius: 6px;
}

/* ハンバーガーボタン */
.menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.menu-bar {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--c-text);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* ハンバーガー → × アニメーション */
.menu-toggle.active .menu-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.menu-toggle.active .menu-bar:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active .menu-bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ナビゲーションパネル */
.header-nav {
    position: fixed;
    top: 0;
    right: -280px;
    width: 280px;
    height: 100dvh;
    background: var(--c-card);
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
    padding: 72px 24px 32px;
    overflow-y: auto;
    transition: right 0.3s ease;
    z-index: 999;
}

.header-nav.open {
    right: 0;
}

/* オーバーレイ */
.nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 998;
}

.nav-overlay.active {
    display: block;
}

/* ナビセクション */
.nav-section {
    margin-bottom: 24px;
}

.nav-label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    color: var(--c-text-sub);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 8px;
    padding-bottom: 6px;
    border-bottom: 1px solid var(--c-border);
}

.nav-section a {
    display: block;
    padding: 10px 12px;
    font-size: 14px;
    font-weight: 500;
    color: var(--c-text);
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.nav-section a:hover {
    background: var(--c-orange-light);
    color: var(--c-orange);
}

/* ヘッダー分の余白を確保 */
body {
    padding-top: 52px;
}

/* --- 画面切り替え --- */
.screen {
    display: none;
    animation: fadeSlideIn 0.4s ease-out;
}

.screen.active {
    display: block;
}

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

/* =============================================
   画面1: トップページ
   ============================================= */
/* OGPバナー */
.top-ogp-wrap {
    width: 100%;
    background: #FBF7EC;
}

.top-ogp {
    max-width: 720px;
    margin: 0 auto;
    padding: 16px 20px 16px;
}

.top-ogp-img {
    width: 100%;
    height: auto;
    border-radius: var(--radius);
}

/* トップのアイコン・タイトルを非表示 */
.top-icon,
.top-title {
    display: none;
}


.top-container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 32px 20px 32px;
    text-align: center;
}

.top-hero {
    margin-bottom: 32px;
}

.top-icon {
    display: none;
    font-size: 64px;
    margin-bottom: 12px;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-8px); }
}

.top-title {
    font-size: 32px;
    font-weight: 900;
    line-height: 1.3;
    background: linear-gradient(135deg, var(--c-orange), var(--c-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
}

.top-catch {
    font-size: 16px;
    font-weight: 500;
    color: var(--c-text);
    line-height: 1.8;
}

/* 診断スタートボタン */
.btn-start {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--c-mint), var(--c-mint-dark));
    color: #fff;
    font-family: var(--font);
    font-size: 20px;
    font-weight: 700;
    padding: 18px 48px;
    border: none;
    border-radius: 60px;
    cursor: pointer;
    box-shadow: 0 6px 24px rgba(91, 184, 138, 0.35);
    transition: all 0.3s ease;
    margin-bottom: 24px;
}

.btn-start:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 32px rgba(74, 168, 122, 0.45);
}

.btn-start:active {
    transform: translateY(0);
}

.btn-arrow {
    font-size: 22px;
    transition: transform 0.3s;
}

.btn-start:hover .btn-arrow {
    transform: translateX(4px);
}

.top-note {
    font-size: 13px;
    color: var(--c-text-sub);
    margin-bottom: 32px;
    line-height: 1.8;
}

/* 特徴バッジ */
.top-features {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 6px;
    background: var(--c-card);
    padding: 10px 16px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
    box-shadow: var(--shadow);
}

.feature-icon {
    font-size: 18px;
}

/* =============================================
   画面2: 診断ページ
   ============================================= */
.quiz-container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 24px 20px 32px;
}

/* プログレスバー */
.progress-bar {
    width: 100%;
    height: 8px;
    background: var(--c-border);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 8px;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--c-blue), var(--c-green));
    border-radius: 4px;
    transition: width 0.4s ease;
    width: 20%;
}

.progress-text {
    text-align: center;
    font-size: 13px;
    font-weight: 700;
    color: var(--c-text-sub);
    margin-bottom: 24px;
}

/* 質問カード */
.quiz-card {
    display: none;
    background: var(--c-card);
    border-radius: var(--radius);
    padding: 32px 24px;
    box-shadow: var(--shadow);
    animation: fadeSlideIn 0.35s ease-out;
}

.quiz-card.active {
    display: block;
}

.quiz-question {
    font-size: 20px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 24px;
    line-height: 1.5;
}

.quiz-hint {
    text-align: center;
    font-size: 13px;
    color: var(--c-blue);
    font-weight: 500;
    margin-top: -16px;
    margin-bottom: 20px;
}

/* 選択肢ボタン（単一） */
.quiz-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.option-btn {
    width: 100%;
    padding: 16px 20px;
    font-family: var(--font);
    font-size: 16px;
    font-weight: 500;
    color: var(--c-text);
    background: var(--c-bg);
    border: 2px solid var(--c-border);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.25s ease;
    text-align: left;
}

.option-btn:hover {
    border-color: var(--c-orange);
    background: var(--c-orange-light);
}

.option-btn.selected {
    border-color: var(--c-orange);
    background: var(--c-orange-light);
    font-weight: 700;
}

/* Q5: 複数選択チェックボックス */
.quiz-options.multi {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.checkbox-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 14px;
    background: var(--c-bg);
    border: 2px solid var(--c-border);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.25s ease;
    font-size: 14px;
    font-weight: 500;
}

.checkbox-btn input[type="checkbox"] {
    display: none;
}

.checkbox-btn.checked {
    border-color: var(--c-blue);
    background: var(--c-blue-light);
    font-weight: 700;
}

.checkbox-btn:hover {
    border-color: var(--c-blue);
}

/* Q5送信ボタン */
.btn-submit {
    display: block;
    width: 100%;
    margin-top: 20px;
    padding: 16px;
    font-family: var(--font);
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(135deg, var(--c-mint), var(--c-mint-dark));
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(91, 184, 138, 0.3);
}

.btn-submit:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    box-shadow: none;
}

.btn-submit:not(:disabled):hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(74, 168, 122, 0.4);
}

/* 戻るボタン */
.btn-back {
    display: block;
    margin: 20px auto 0;
    padding: 10px 20px;
    font-family: var(--font);
    font-size: 14px;
    font-weight: 500;
    color: var(--c-text-sub);
    background: none;
    border: none;
    cursor: pointer;
    transition: color 0.2s;
}

.btn-back:hover {
    color: var(--c-text);
}

.btn-back.hidden {
    visibility: hidden;
}

/* =============================================
   ローディング
   ============================================= */
.loading-container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 80px 20px;
    text-align: center;
}

.loading-card {
    background: var(--c-card);
    border-radius: var(--radius);
    padding: 48px 24px;
    box-shadow: var(--shadow);
}

.loading-spinner {
    width: 48px;
    height: 48px;
    border: 4px solid var(--c-border);
    border-top-color: var(--c-mint);
    border-radius: 50%;
    margin: 0 auto 24px;
    animation: spin 0.8s linear infinite;
}

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

.loading-text {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
}

.loading-sub {
    font-size: 13px;
    color: var(--c-text-sub);
}

/* =============================================
   画面3: 結果ページ
   ============================================= */
.result-container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 32px 20px 40px;
}

.result-title {
    text-align: center;
    font-size: 24px;
    font-weight: 900;
    line-height: 1.5;
    margin-bottom: 28px;
    background: linear-gradient(135deg, var(--c-orange), var(--c-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ランキングカード */
.result-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 28px;
}

.rank-card {
    background: var(--c-card);
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px);
    animation: cardReveal 0.5s ease-out forwards;
}

.rank-card:nth-child(1) { animation-delay: 0.1s; }
.rank-card:nth-child(2) { animation-delay: 0.3s; }
.rank-card:nth-child(3) { animation-delay: 0.5s; }

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

/* 1位のカードにアクセント */
.rank-card.rank-1 {
    border: 2px solid var(--c-yellow);
}

.rank-card.rank-1::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--c-yellow), var(--c-orange));
}

.rank-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 8px;
}

.rank-badge.gold   { color: #D4A017; }
.rank-badge.silver { color: #8E8E8E; }
.rank-badge.bronze { color: #CD7F32; }

.rank-card-name {
    font-size: 20px;
    font-weight: 900;
    margin-bottom: 12px;
    line-height: 1.4;
}

/* スペック表示 */
.rank-specs {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.spec-tag {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 13px;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 20px;
    background: var(--c-bg);
}

.spec-tag.fee { color: var(--c-blue); }
.spec-tag.rate { color: var(--c-green); }

/* 特徴リスト */
.rank-features {
    list-style: none;
    margin-bottom: 16px;
}

.rank-features li {
    position: relative;
    padding-left: 20px;
    font-size: 14px;
    line-height: 1.8;
}

.rank-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--c-green);
    font-weight: 700;
}

/* おすすめ理由 */
.rank-reason {
    background: var(--c-orange-light);
    border-radius: 12px;
    padding: 14px 16px;
    font-size: 14px;
    line-height: 1.7;
}

.rank-reason-label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: var(--c-orange);
    margin-bottom: 4px;
}

/* 広告エリア */
.ad-area {
    margin-bottom: 24px;
    text-align: center;
}

.ad-placeholder {
    display: inline-block;
    padding: 24px 32px;
    background: #f5f5f5;
    border: 2px dashed #ddd;
    border-radius: 12px;
    font-size: 13px;
    color: #aaa;
}

/* 免責注記 */
.result-notice {
    font-size: 12px;
    color: var(--c-text-sub);
    text-align: center;
    margin-bottom: 28px;
    line-height: 1.7;
}

/* エラー表示 */
.error-card {
    background: var(--c-card);
    border-radius: var(--radius);
    padding: 32px 24px;
    box-shadow: var(--shadow);
    text-align: center;
}

.error-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.error-message {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
}

.error-sub {
    font-size: 13px;
    color: var(--c-text-sub);
    margin-bottom: 20px;
}

.btn-error-retry {
    display: inline-block;
    padding: 14px 32px;
    font-family: var(--font);
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    background: var(--c-mint);
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-error-retry:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(91, 184, 138, 0.3);
}

/* =============================================
   シェアボタン
   ============================================= */
.share-section {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border: 2px solid #bae6fd;
    border-radius: var(--radius);
    padding: 24px;
    text-align: center;
    margin-bottom: 24px;
}

.share-title {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 16px;
}

.share-buttons {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 12px 20px;
    font-family: var(--font);
    font-size: 14px;
    font-weight: 700;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    color: #fff;
}

.share-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.share-btn.native { background: var(--c-mint); }
.share-btn.x      { background: #000000; }
.share-btn.line   { background: #06C755; }
.share-btn.copy   { background: #6B7280; }

/* もう一度診断ボタン */
.btn-retry {
    display: block;
    width: 100%;
    padding: 16px;
    font-family: var(--font);
    font-size: 16px;
    font-weight: 700;
    color: var(--c-mint);
    background: var(--c-card);
    border: 2px solid var(--c-mint);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-retry:hover {
    background: var(--c-mint);
    color: #fff;
}

/* =============================================
   フッター
   ============================================= */
.app-footer {
    background: #2D2D2D;
    color: #ccc;
    padding: 28px 20px;
    margin-top: 24px;
}

.footer-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    text-align: center;
}

.footer-note {
    font-size: 11px;
    line-height: 1.7;
    margin-bottom: 16px;
    color: #aaa;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.footer-links a {
    font-size: 12px;
    color: #ccc;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #fff;
}

.footer-links a + a::before {
    content: '|';
    margin-right: 8px;
    color: #666;
}

.footer-copy {
    font-size: 11px;
    color: #888;
}

/* =============================================
   静的ページ（法的ページ・運営者情報）
   ============================================= */
.static-page {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px 32px;
}

.static-page h1 {
    font-size: 24px;
    font-weight: 900;
    margin-bottom: 16px;
    line-height: 1.4;
    color: var(--c-text);
}

.static-page > p {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 24px;
}

.static-card {
    background: var(--c-card);
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: var(--shadow);
    margin-bottom: 20px;
}

.static-card h2 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    padding-left: 12px;
    border-left: 4px solid var(--c-orange);
    line-height: 1.4;
}

.static-card h3 {
    font-size: 16px;
    font-weight: 700;
    margin-top: 20px;
    margin-bottom: 8px;
    color: var(--c-text);
}

.static-card p {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 12px;
}

.static-card ul {
    padding-left: 20px;
    margin-bottom: 12px;
}

.static-card ul li {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 4px;
}

.static-card a {
    color: var(--c-orange);
    text-decoration: none;
    font-weight: 500;
}

.static-card a:hover {
    text-decoration: underline;
}

.policy-date {
    text-align: right;
    font-size: 13px;
    color: var(--c-text-sub);
    margin-top: 24px;
}

/* 運営者情報テーブル */
.info-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 16px;
}

.info-table th,
.info-table td {
    padding: 12px 16px;
    font-size: 14px;
    text-align: left;
    border-bottom: 1px solid var(--c-border);
}

.info-table th {
    font-weight: 700;
    background: var(--c-bg);
    white-space: nowrap;
}

.info-table a {
    color: var(--c-orange);
    text-decoration: none;
}

.info-table a:hover {
    text-decoration: underline;
}

/* =============================================
   記事ページ
   ============================================= */
.article-page {
    max-width: 720px;
}

.article-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.back-to-top {
    font-size: 13px;
    color: var(--c-text-sub);
    text-decoration: none;
    transition: color 0.2s;
}

.back-to-top:hover {
    color: var(--c-orange);
}

.article-category {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    color: #fff;
    background: var(--c-orange);
    padding: 4px 12px;
    border-radius: 20px;
}

.article-meta {
    font-size: 13px;
    color: var(--c-text-sub);
    margin-bottom: 20px;
}

.article-lead {
    background: var(--c-orange-light);
    border-radius: var(--radius);
    padding: 20px 24px;
    margin-bottom: 24px;
}

.article-lead p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--c-text);
}

/* ハイライトボックス */
.highlight-box {
    background: var(--c-blue-light);
    border-radius: 12px;
    padding: 16px 20px;
    margin: 12px 0;
}

.highlight-box p {
    margin-bottom: 4px;
}

/* カード比較用スペック */
.card-specs {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 12px;
}

.spec-item {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    background: var(--c-bg);
    color: var(--c-text-sub);
}

.card-best-for {
    background: var(--c-orange-light);
    border-radius: 8px;
    padding: 10px 14px;
    font-size: 13px;
    font-weight: 500;
    margin-top: 12px;
}

.notice-text {
    font-size: 12px;
    color: var(--c-text-sub);
    margin-bottom: 16px;
    line-height: 1.6;
}

/* 記事CTA */
.article-cta {
    background: linear-gradient(135deg, var(--c-mint), var(--c-mint-dark));
    border-radius: var(--radius);
    padding: 28px 24px;
    text-align: center;
    margin-top: 32px;
}

.cta-text {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
}

.cta-btn {
    display: inline-block;
    padding: 14px 36px;
    font-family: var(--font);
    font-size: 16px;
    font-weight: 700;
    color: var(--c-mint);
    background: #fff;
    border-radius: 60px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

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

/* =============================================
   レスポンシブ
   ============================================= */
@media (max-width: 480px) {
    .top-title {
        font-size: 28px;
    }

    .btn-start {
        font-size: 18px;
        padding: 16px 40px;
    }

    .quiz-question {
        font-size: 18px;
    }

    .quiz-options.multi {
        grid-template-columns: 1fr 1fr;
    }

    .rank-card-name {
        font-size: 18px;
    }

    .rank-specs {
        flex-direction: column;
        gap: 6px;
    }

    .share-buttons {
        flex-direction: column;
    }

    .share-btn {
        justify-content: center;
    }
}

@media (min-width: 481px) and (max-width: 768px) {
    .top-container {
        padding-top: 60px;
    }
}

@media (min-width: 769px) {
    .top-container {
        padding-top: 80px;
    }

    .quiz-container {
        padding-top: 40px;
    }
}
