@import url('../fonts/fonts.css');

:root {
    --bg-dark: #0d0705;
    --bg-card: rgba(22, 12, 8, 0.85);
    --bg-card-hover: rgba(32, 18, 12, 0.95);
    --border-gold: rgba(217, 119, 6, 0.35);
    --border-gold-glow: rgba(245, 158, 11, 0.6);
    --gold-300: #fde68a;
    --gold-400: #fbbf24;
    --gold-500: #f59e0b;
    --gold-600: #d97706;
    --gold-700: #b45309;
    --text-main: #f8fafc;
    --text-sub: #e2e8f0;
    --text-muted: #94a3b8;
    --font-serif: 'Cinzel', serif;
    --font-sans: 'Outfit', sans-serif;
    --shadow-gold: 0 10px 30px -10px rgba(217, 119, 6, 0.3);
    --shadow-card: 0 15px 35px rgba(0, 0, 0, 0.6);
}

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

html {
    background: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-sans);
    line-height: 1.7;
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    background: transparent;
    position: relative;
    overflow-x: hidden;
}

/* Background Atmosphere */
body::before {
    content: "";
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(180deg, rgba(13, 7, 5, 0.7) 0%, rgba(8, 4, 3, 0.9) 100%), 
                url('../login_bg-optimized.webp');
    background-size: cover;
    background-position: center top;
    z-index: -2;
    pointer-events: none;
}

body::after {
    content: "";
    position: fixed;
    top: 10%; left: 50%;
    transform: translateX(-50%);
    width: 80%;
    max-width: 1100px;
    height: 60%;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.08) 0%, rgba(217, 119, 6, 0.02) 50%, transparent 80%);
    z-index: -1;
    pointer-events: none;
    filter: blur(60px);
}

.guide-container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

/* HEADER */
.guide-header {
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(245, 158, 11, 0.15);
    background: rgba(13, 7, 5, 0.4);
    backdrop-filter: blur(8px);
}

.guide-logo {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
}

.guide-logo-img {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(245, 158, 11, 0.4);
}

.guide-logo-text {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-weight: 900;
    letter-spacing: 2px;
    background: linear-gradient(135deg, #fff 0%, #fbbf24 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.guide-header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.guide-play-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: #fff;
    font-family: var(--font-serif);
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 8px 18px;
    border-radius: 20px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(217, 119, 6, 0.4);
    transition: all 0.3s ease;
}

.guide-play-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.6);
}

/* BREADCRUMB */
.breadcrumb-nav {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 24px 0 10px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.breadcrumb-nav a {
    color: var(--gold-400);
    text-decoration: none;
    transition: color 0.2s;
}

.breadcrumb-nav a:hover {
    color: #fff;
    text-decoration: underline;
}

.breadcrumb-separator {
    color: rgba(245, 158, 11, 0.4);
}

.breadcrumb-current {
    color: var(--text-sub);
    font-weight: 500;
}

/* HERO */
.guide-hero {
    text-align: center;
    padding: 40px 0 50px;
    position: relative;
}

.guide-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    border-radius: 30px;
    font-family: var(--font-serif);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    background: rgba(245, 158, 11, 0.12);
    color: var(--gold-300);
    border: 1px solid var(--border-gold);
    margin-bottom: 20px;
    box-shadow: 0 0 20px rgba(245, 158, 11, 0.15);
}

.guide-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    line-height: 1.2;
    color: #ffffff;
    margin-bottom: 20px;
    text-shadow: 0 4px 20px rgba(0,0,0,0.8);
}

.guide-title-highlight {
    background: linear-gradient(135deg, #fef08a 0%, #f59e0b 50%, #d97706 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.guide-lead {
    font-size: 1.15rem;
    color: var(--text-sub);
    max-width: 820px;
    margin: 0 auto 30px;
    line-height: 1.8;
}

/* CTA BUTTONS */
.hero-cta-group {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 25px;
}

.btn-primary-glow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #f59e0b, #b45309);
    color: #ffffff;
    font-family: var(--font-serif);
    font-size: 1rem;
    font-weight: 800;
    padding: 14px 32px;
    border-radius: 12px;
    text-decoration: none;
    box-shadow: 0 10px 25px -5px rgba(245, 158, 11, 0.5), inset 0 1px 0 rgba(255,255,255,0.3);
    border: 1px solid rgba(254, 240, 138, 0.4);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-primary-glow:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 30px rgba(245, 158, 11, 0.7);
}

.btn-secondary-glass {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-main);
    font-family: var(--font-serif);
    font-size: 1rem;
    font-weight: 700;
    padding: 14px 28px;
    border-radius: 12px;
    text-decoration: none;
    border: 1px solid rgba(245, 158, 11, 0.3);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.btn-secondary-glass:hover {
    background: rgba(245, 158, 11, 0.15);
    border-color: var(--gold-400);
    transform: translateY(-3px);
}

/* APP STORE & GOOGLE PLAY & WEB STORE BUTTONS */
.store-badges-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin: 30px 0;
}

.guide-store-btn {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 12px 24px;
    border-radius: 14px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    min-width: 210px;
    text-align: left;
    backdrop-filter: blur(12px);
}

.guide-store-btn svg {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
}

.guide-store-btn-text {
    display: flex;
    flex-direction: column;
}

.guide-store-btn-subtitle {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.85;
}

.guide-store-btn-title {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 800;
    line-height: 1.2;
}

/* Store Variant: Web (Golden Glow) */
.guide-store-btn.web {
    background: linear-gradient(135deg, #f59e0b, #b45309);
    color: #ffffff;
    border: 1px solid rgba(254, 240, 138, 0.5);
    box-shadow: 0 8px 25px -4px rgba(245, 158, 11, 0.5);
}
.guide-store-btn.web:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 30px rgba(245, 158, 11, 0.7);
}
.guide-store-btn.web svg {
    fill: #ffffff;
}

/* Store Variant: Apple (Dark Silver Glass) */
.guide-store-btn.apple {
    background: rgba(30, 20, 15, 0.75);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}
.guide-store-btn.apple:hover {
    background: rgba(50, 35, 25, 0.9);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.15);
}
.guide-store-btn.apple svg {
    fill: #ffffff;
}

/* Store Variant: Google Play (Dark Gold Glass) */
.guide-store-btn.google {
    background: rgba(30, 20, 15, 0.75);
    color: #ffffff;
    border: 1px solid rgba(245, 158, 11, 0.35);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}
.guide-store-btn.google:hover {
    background: rgba(45, 28, 18, 0.9);
    border-color: var(--gold-400);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(245, 158, 11, 0.3);
}
.guide-store-btn.google svg {
    fill: #f59e0b;
}

/* CARDS & GRIDS */
.guide-grid-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
    margin: 40px 0;
}

.guide-grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin: 40px 0;
}

.guide-card {
    background: var(--bg-card);
    border: 1px solid var(--border-gold);
    border-radius: 16px;
    padding: 30px;
    box-shadow: var(--shadow-card);
    backdrop-filter: blur(12px);
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.guide-card::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold-500), transparent);
    opacity: 0.5;
    transition: opacity 0.3s;
}

.guide-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-gold-glow);
    background: var(--bg-card-hover);
    box-shadow: var(--shadow-gold), var(--shadow-card);
}

.guide-card:hover::before {
    opacity: 1;
}

.card-icon-badge {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(245, 158, 11, 0.15);
    border: 1px solid var(--border-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.card-title {
    font-family: var(--font-serif);
    font-size: 1.35rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.card-desc {
    color: var(--text-sub);
    font-size: 1rem;
    line-height: 1.7;
}

/* NATION SPECIAL CARDS */
.nation-card-gokturk {
    border-color: rgba(59, 130, 246, 0.4);
    background: linear-gradient(180deg, rgba(30, 58, 138, 0.2) 0%, rgba(15, 23, 42, 0.8) 100%);
}
.nation-card-gokturk:hover {
    border-color: rgba(96, 165, 250, 0.8);
    box-shadow: 0 10px 30px -5px rgba(59, 130, 246, 0.4);
}

.nation-card-hun {
    border-color: rgba(220, 38, 38, 0.4);
    background: linear-gradient(180deg, rgba(127, 29, 29, 0.2) 0%, rgba(24, 10, 10, 0.8) 100%);
}
.nation-card-hun:hover {
    border-color: rgba(248, 113, 113, 0.8);
    box-shadow: 0 10px 30px -5px rgba(220, 38, 38, 0.4);
}

.nation-card-selcuklu {
    border-color: rgba(217, 119, 6, 0.4);
    background: linear-gradient(180deg, rgba(120, 53, 15, 0.2) 0%, rgba(20, 12, 6, 0.8) 100%);
}
.nation-card-selcuklu:hover {
    border-color: rgba(251, 191, 36, 0.8);
    box-shadow: 0 10px 30px -5px rgba(217, 119, 6, 0.4);
}

/* HIGH-CONTRAST TABLES */
.table-wrapper {
    width: 100%;
    overflow-x: auto;
    margin: 30px 0;
    border-radius: 12px;
    border: 1px solid var(--border-gold);
    box-shadow: var(--shadow-card);
}

.guide-table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(18, 10, 6, 0.9);
    text-align: left;
}

.guide-table th {
    background: rgba(45, 25, 14, 0.95);
    color: var(--gold-300);
    font-family: var(--font-serif);
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 16px 20px;
    border-bottom: 2px solid var(--border-gold);
}

.guide-table td {
    padding: 14px 20px;
    border-bottom: 1px solid rgba(245, 158, 11, 0.12);
    color: var(--text-sub);
    font-size: 0.95rem;
}

.guide-table tr:hover td {
    background: rgba(245, 158, 11, 0.05);
    color: #fff;
}

/* STEP TIMELINE (HOW TO) */
.timeline-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin: 40px 0;
}

.timeline-item {
    display: flex;
    gap: 24px;
    background: var(--bg-card);
    border: 1px solid var(--border-gold);
    border-radius: 16px;
    padding: 28px;
    box-shadow: var(--shadow-card);
}

.timeline-number {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-500), var(--gold-700));
    color: #ffffff;
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 15px rgba(245, 158, 11, 0.5);
}

.timeline-content h3 {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    color: #ffffff;
    margin-bottom: 8px;
}

.timeline-content p {
    color: var(--text-sub);
    font-size: 1rem;
    line-height: 1.7;
}

/* FAQ ACCORDION */
.faq-wrap {
    margin: 50px 0;
}

.faq-section-title {
    text-align: center;
    font-family: var(--font-serif);
    font-size: 2rem;
    color: #fff;
    margin-bottom: 30px;
}

.faq-card {
    background: var(--bg-card);
    border: 1px solid var(--border-gold);
    border-radius: 12px;
    margin-bottom: 16px;
    overflow: hidden;
    transition: border-color 0.2s;
}

.faq-btn {
    width: 100%;
    padding: 20px 24px;
    background: transparent;
    border: none;
    color: #ffffff;
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 700;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    gap: 16px;
}

.faq-btn:hover {
    color: var(--gold-300);
}

.faq-btn svg {
    width: 20px;
    height: 20px;
    fill: var(--gold-400);
    transition: transform 0.3s ease;
}

.faq-card.active .faq-btn svg {
    transform: rotate(180deg);
}

.faq-body {
    display: none;
    padding: 0 24px 22px 24px;
    color: var(--text-sub);
    font-size: 1rem;
    line-height: 1.8;
    border-top: 1px solid rgba(245, 158, 11, 0.1);
}

.faq-card.active .faq-body {
    display: block;
}

/* BOTTOM PROMO BANNER */
.guide-promo-banner {
    background: radial-gradient(circle at center, rgba(180, 83, 9, 0.3) 0%, rgba(20, 10, 6, 0.95) 100%);
    border: 1px solid var(--border-gold-glow);
    border-radius: 20px;
    padding: 45px 30px;
    text-align: center;
    margin: 60px 0;
    box-shadow: var(--shadow-gold), var(--shadow-card);
}

.guide-promo-banner h2 {
    font-family: var(--font-serif);
    font-size: 2rem;
    color: #fff;
    margin-bottom: 15px;
}

.guide-promo-banner p {
    color: var(--text-sub);
    font-size: 1.1rem;
    max-width: 650px;
    margin: 0 auto 25px;
}

/* FOOTER */
.guide-footer {
    border-top: 1px solid rgba(245, 158, 11, 0.15);
    background: rgba(8, 4, 3, 0.95);
    padding: 50px 0 30px;
    margin-top: 60px;
}

.guide-footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.guide-footer h4 {
    font-family: var(--font-serif);
    color: var(--gold-400);
    font-size: 1.1rem;
    margin-bottom: 16px;
    letter-spacing: 1px;
}

.guide-footer ul {
    list-style: none;
}

.guide-footer li {
    margin-bottom: 10px;
}

.guide-footer a {
    color: var(--text-muted);
    text-decoration: none;
    transition: all 0.2s;
}

.guide-footer a:hover {
    color: #ffffff;
    padding-left: 4px;
}

.guide-footer-bottom {
    text-align: center;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* INSTAGRAM SOCIAL STREAM & COMMUNITY */
.insta-feed-section {
    margin: 70px 0;
    padding: 35px 25px;
    background: rgba(22, 12, 8, 0.75);
    border: 1px solid var(--border-gold);
    border-radius: 20px;
    backdrop-filter: blur(14px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
}

.insta-feed-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(245, 158, 11, 0.2);
}

.insta-account-info {
    display: flex;
    align-items: center;
    gap: 16px;
}

.insta-avatar-wrapper {
    position: relative;
    width: 52px;
    height: 52px;
}

.insta-avatar {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #0d0705;
}

.insta-story-ring {
    position: absolute;
    top: -4px; left: -4px; right: -4px; bottom: -4px;
    border-radius: 50%;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    z-index: -1;
    animation: rotateRing 6s linear infinite;
}

@keyframes rotateRing {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.insta-username-row {
    display: flex;
    align-items: center;
    gap: 6px;
}

.insta-username {
    font-weight: 800;
    font-size: 1.1rem;
    color: #ffffff;
    letter-spacing: 0.5px;
}

.insta-verified-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    background: #0095f6;
    color: #ffffff;
    font-size: 10px;
    font-weight: bold;
    border-radius: 50%;
}

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

.insta-follow-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(45deg, #f09433, #dc2743, #bc1888);
    color: #ffffff;
    padding: 10px 22px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(220, 39, 67, 0.4);
    transition: all 0.3s ease;
}

.insta-follow-btn:hover {
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 8px 25px rgba(220, 39, 67, 0.6);
}

.insta-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px;
}

.insta-card {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    background: rgba(30, 18, 12, 0.6);
    border: 1px solid rgba(245, 158, 11, 0.2);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

.insta-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold-400);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.7), 0 0 20px rgba(245, 158, 11, 0.25);
}

.insta-media-wrap {
    position: relative;
    width: 100%;
    padding-top: 100%; /* 1:1 Aspect Ratio */
    background: #000;
    overflow: hidden;
}

.insta-media-wrap img {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.insta-card:hover .insta-media-wrap img {
    transform: scale(1.08);
}

.insta-type-badge {
    position: absolute;
    top: 10px; right: 10px;
    background: rgba(0, 0, 0, 0.7);
    color: #fef08a;
    font-size: 0.7rem;
    font-weight: 800;
    padding: 3px 8px;
    border-radius: 6px;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(254, 240, 138, 0.3);
    z-index: 2;
}

.insta-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(13, 7, 5, 0.65);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.insta-card:hover .insta-overlay {
    opacity: 1;
}

.insta-overlay-action {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(0, 0, 0, 0.85);
    border: 1px solid var(--gold-400);
    color: #ffffff;
    font-size: 0.85rem;
    font-weight: 800;
    padding: 8px 16px;
    border-radius: 20px;
    backdrop-filter: blur(6px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    transform: translateY(8px);
    transition: transform 0.3s ease;
}

.insta-card:hover .insta-overlay-action {
    transform: translateY(0);
}

.insta-caption-wrap {
    padding: 12px 14px;
    background: rgba(18, 10, 7, 0.85);
}

.insta-category-row {
    font-size: 0.72rem;
    font-weight: 800;
    color: var(--gold-400);
    letter-spacing: 0.8px;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.insta-caption {
    font-size: 0.85rem;
    color: var(--text-sub);
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* TOP NAV LINKS */
.guide-nav-links {
    display: flex;
    align-items: center;
    gap: 20px;
}

.guide-nav-links a {
    color: var(--text-sub);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    transition: color 0.2s ease;
}

.guide-nav-links a:hover, .guide-nav-links a.active {
    color: var(--gold-400);
}

@media (max-width: 768px) {
    .guide-title { font-size: 1.7rem; }
    .timeline-item { flex-direction: column; }
    .hero-cta-group { flex-direction: column; width: 100%; }
    .btn-primary-glow, .btn-secondary-glass { width: 100%; justify-content: center; }
    .guide-header { flex-direction: column; gap: 14px; padding: 16px 0; }
    .guide-header .guide-container { flex-direction: column; gap: 12px; }
    .guide-nav-links { 
        display: flex; 
        width: 100%; 
        overflow-x: auto; 
        -webkit-overflow-scrolling: touch; 
        white-space: nowrap; 
        gap: 10px; 
        padding: 6px 4px 10px;
        scrollbar-width: none;
    }
    .guide-nav-links::-webkit-scrollbar { display: none; }
    .guide-nav-links a {
        background: rgba(22, 12, 8, 0.85);
        border: 1px solid rgba(245, 158, 11, 0.35);
        padding: 6px 14px;
        border-radius: 20px;
        font-size: 0.85rem;
        flex-shrink: 0;
    }
    .guide-nav-links a.active {
        background: rgba(245, 158, 11, 0.3);
        border-color: var(--gold-400);
        color: #ffffff;
    }
    .guide-header-actions { width: 100%; justify-content: center; }
    .guide-play-btn { width: 100%; justify-content: center; }
    .insta-feed-header { flex-direction: column; align-items: flex-start; }
    .insta-follow-btn { width: 100%; justify-content: center; }
    .insta-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .insta-caption { font-size: 0.75rem; }
    .store-badges-container { flex-direction: column; width: 100%; }
    .guide-store-btn { width: 100%; justify-content: center; }
}
