/* MAGICAL DARK THEME FOR WIZARD SCORER PRO */
:root {
    --bg-primary: #070403;
    --bg-secondary: #110A07;
    --bg-surface: #1B120E;
    --bg-surface-glass: rgba(27, 18, 14, 0.75);
    
    --primary: #F3A87F;
    --primary-dark: #D68153;
    --primary-light: #FCDAC8;
    
    --accent-gold: #E5C158;
    --accent-gold-dark: #B79227;
    --accent-gold-glow: rgba(229, 193, 88, 0.25);
    
    --text-primary: #F1E3D3;
    --text-secondary: #BAA390;
    --text-on-primary: #170D07;
    
    --success-green: #C0D166;
    --success-bg: #353B18;
    
    --error-red: #E8877A;
    --error-bg: #411C16;
    
    --border-color: rgba(229, 193, 88, 0.15);
    --border-glow: rgba(243, 168, 127, 0.15);
    --radius: 16px;
    --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
    scroll-behavior: smooth;
}

body.magical-dark {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: var(--bg-primary);
    background-image: 
        radial-gradient(circle at 50% 0%, rgba(229, 193, 88, 0.12) 0%, transparent 60%),
        radial-gradient(circle at 100% 60%, rgba(243, 168, 127, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 0% 100%, rgba(229, 193, 88, 0.05) 0%, transparent 40%);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* TYPOGRAPHY */
.fantasy-title {
    font-family: 'Cinzel', serif;
    letter-spacing: 0.5px;
    font-weight: 700;
}

.text-glow {
    text-shadow: 0 0 15px rgba(229, 193, 88, 0.3);
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-light);
}

/* NAVIGATION */
nav {
    background: rgba(11, 7, 5, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    height: 72px;
    transition: var(--transition);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-logo-img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid var(--accent-gold);
    box-shadow: 0 0 8px var(--accent-gold-glow);
    object-fit: cover;
}

nav .logo {
    font-family: 'Cinzel', serif;
    color: var(--accent-gold);
    font-size: 1.25rem;
    font-weight: 900;
    text-shadow: 0 0 10px rgba(229, 193, 88, 0.25);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 32px;
}

nav .nav-links {
    display: flex;
    gap: 28px;
    list-style: none;
}

nav .nav-links a {
    color: var(--text-secondary);
    font-size: 0.95rem;
    font-weight: 500;
}

nav .nav-links a:hover {
    color: var(--accent-gold);
    text-shadow: 0 0 8px rgba(229, 193, 88, 0.4);
}

/* LANGUAGE SELECTOR */
.lang-selector {
    position: relative;
}

.lang-sel-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.lang-sel-btn:hover {
    border-color: var(--primary);
    background: rgba(243, 168, 127, 0.1);
}

.lang-dropdown {
    position: absolute;
    right: 0;
    top: calc(100% + 8px);
    background: var(--bg-surface);
    border: 1px solid var(--accent-gold);
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    display: none;
    flex-direction: column;
    min-width: 140px;
    z-index: 1010;
}

.lang-dropdown.open {
    display: flex;
}

.lang-dropdown button {
    background: transparent;
    border: none;
    color: var(--text-primary);
    padding: 10px 16px;
    text-align: left;
    font-size: 0.9rem;
    cursor: pointer;
    font-weight: 500;
    transition: var(--transition);
}

.lang-dropdown button:hover {
    background: var(--primary);
    color: var(--text-on-primary);
}

/* HERO SECTION */
.hero-section {
    padding: 80px 24px 60px;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.hero-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-text .badge {
    background: rgba(243, 168, 127, 0.1);
    border: 1px solid rgba(243, 168, 127, 0.3);
    color: var(--primary);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
    box-shadow: 0 0 12px rgba(243, 168, 127, 0.1);
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    color: var(--text-primary);
    margin-bottom: 20px;
    background: linear-gradient(135deg, #FFF 40%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-text .subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 520px;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--text-on-primary);
    box-shadow: 0 6px 20px rgba(243, 168, 127, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(243, 168, 127, 0.45);
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
    color: var(--text-on-primary);
}

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

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

.btn-icon {
    font-size: 1.1rem;
}

.app-rating {
    display: flex;
    align-items: center;
    gap: 12px;
}

.app-rating .stars {
    color: var(--accent-gold);
    font-size: 1.2rem;
    letter-spacing: 2px;
}

.app-rating .rating-text {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* INTERACTIVE SMARTPHONE SIMULATOR */
.hero-simulator {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.simulator-tabs {
    display: flex;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    padding: 4px;
    border-radius: 24px;
    margin-bottom: 24px;
    gap: 4px;
    width: 100%;
    max-width: 360px;
}

.sim-tab {
    flex: 1;
    background: transparent;
    border: none;
    color: var(--text-secondary);
    padding: 8px 12px;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 20px;
    cursor: pointer;
    transition: var(--transition);
}

.sim-tab.active, .sim-tab:hover {
    background: var(--primary);
    color: var(--text-on-primary);
}

/* Pure CSS Phone Frame */
.phone-frame {
    width: 310px;
    height: 620px;
    background: #231611;
    border: 10px solid #2B1B15;
    border-radius: 36px;
    box-shadow: 
        0 25px 50px -12px rgba(0, 0, 0, 0.7),
        0 0 25px rgba(229, 193, 88, 0.15);
    position: relative;
    overflow: hidden;
}

/* Speaker & Camera Notches */
.phone-speaker {
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 48px;
    height: 3px;
    background: #170d07;
    border-radius: 2px;
    z-index: 99;
}

.phone-camera {
    position: absolute;
    top: 13px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 18px;
    background: #000;
    border-radius: 12px;
    z-index: 99;
}

/* Phone Screen Container */
.phone-screen {
    width: 100%;
    height: 100%;
    background: #130C09;
    position: relative;
    display: flex;
    flex-direction: column;
}

/* APP UI DESIGN ELEMENTS (INSIDE SIMULATOR) */
.app-header {
    background: linear-gradient(180deg, #7B3F1D 0%, #5A2D13 100%);
    padding: 36px 14px 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.back-arrow {
    color: #F3A87F;
    font-size: 1.1rem;
    font-weight: 800;
    cursor: pointer;
}

.app-header-title {
    color: #FFF;
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
}

.app-header-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.app-header-round {
    color: #F1E3D3;
    font-size: 0.75rem;
    font-weight: 600;
}

.app-header-cards {
    color: var(--text-secondary);
    font-size: 0.65rem;
}

.app-header-dealer {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.62rem;
    color: var(--text-secondary);
}

.dealer-badge {
    color: #FFF;
    font-weight: 700;
}

.avatar-mini {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: var(--accent-gold);
    background-image: url('wizard_logo.png');
    background-size: cover;
    border: 1px solid #FFF;
}

/* App Screens content container */
.app-content {
    flex: 1;
    padding: 12px;
    display: none;
    flex-direction: column;
    position: relative;
    overflow-y: auto;
}

.app-content.active {
    display: flex;
}

.screen-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.title-icon {
    color: var(--primary);
}

.estimate-info-box {
    background: #251B17;
    border: 1px solid #362923;
    border-radius: 10px;
    padding: 6px;
    text-align: center;
    margin-bottom: 12px;
}

.estimate-sum-count {
    color: var(--text-secondary);
    font-size: 0.75rem;
    font-weight: 600;
}

/* Player items */
.player-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.player-item {
    background: #1C130F;
    border: 1px solid rgba(255,255,255,0.03);
    border-radius: 12px;
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.player-left {
    display: flex;
    align-items: center;
    gap: 8px;
}

.player-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    border: 1.5px solid var(--accent-gold);
}

/* Generated placeholders or customized avatars */
.av-gunnar { background-color: #2D3E50; background-image: radial-gradient(circle, #3D5A80, #293241); }
.av-katrin { background-color: #5F2C3E; background-image: radial-gradient(circle, #7B2CBF, #3C096C); }
.av-timo { background-color: #1E4620; background-image: radial-gradient(circle, #38b000, #007200); }
.av-nora { background-color: #6F4E37; background-image: radial-gradient(circle, #FFB703, #D48C00); }

/* Set actual generated image to one avatar */
.player-avatar.av-gunnar {
    background-image: url('wizard_logo.png');
}

.player-name {
    color: #FFF;
    font-size: 0.75rem;
    font-weight: 700;
}

.player-scores {
    font-size: 0.65rem;
    color: var(--text-secondary);
}

.player-scores-sub {
    font-size: 0.6rem;
    color: var(--text-secondary);
}

.player-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn-circle {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #36251E;
    border: 1.5px solid #5A3D30;
    color: var(--primary);
    font-weight: 800;
    font-size: 0.85rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.btn-circle:hover {
    background: var(--primary);
    color: var(--text-on-primary);
}

.action-value {
    color: #FFF;
    font-size: 0.85rem;
    font-weight: 700;
    width: 14px;
    text-align: center;
}

.app-footer-button {
    margin-top: auto;
    padding-top: 12px;
}

.btn-app-main {
    width: 100%;
    background: #2D1D16;
    border: 1px solid #4D3326;
    color: var(--text-secondary);
    padding: 10px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.75rem;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.btn-app-main.disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.btn-app-main.highlight {
    background: #F4AB84;
    color: #170D07;
    border: none;
    box-shadow: 0 4px 10px rgba(244, 171, 132, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.btn-app-main.highlight:hover {
    background: #FFD0B8;
}

.btn-next-icon {
    font-size: 0.65rem;
}

/* Screen 2 items extra */
.special-cards-row {
    display: flex;
    gap: 8px;
    margin-top: 12px;
}

.btn-special {
    flex: 1;
    background: transparent;
    border: 1px solid #362923;
    border-radius: 12px;
    padding: 6px;
    color: var(--text-primary);
    font-size: 0.68rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    transition: var(--transition);
}

.btn-special:hover {
    border-color: var(--primary);
    background: rgba(243, 168, 127, 0.05);
}

.special-icon {
    font-size: 0.75rem;
}

/* Screen 3: Cloud Modal */
.background-dim-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.75);
    z-index: 10;
}

.simulated-modal {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1C110C;
    border-top: 2px solid var(--accent-gold);
    border-radius: 20px 20px 0 0;
    padding: 16px;
    z-index: 12;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: slideUp 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes slideUp {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
}

.modal-icon {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.simulated-modal h4 {
    color: #FFF;
    font-size: 0.85rem;
    font-weight: 800;
    margin-bottom: 4px;
}

.modal-desc {
    color: var(--text-secondary);
    font-size: 0.65rem;
    text-align: center;
    margin-bottom: 12px;
}

.modal-player-list {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 12px;
}

.modal-player-option {
    background: #251812;
    border: 1px solid rgba(255,255,255,0.02);
    border-radius: 10px;
    padding: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.modal-player-option.active {
    border-color: var(--accent-gold);
    background: rgba(229, 193, 88, 0.05);
}

.modal-player-name {
    color: #FFF;
    font-size: 0.75rem;
    font-weight: 700;
}

.player-avatar.mini {
    width: 20px;
    height: 20px;
}

.modal-actions {
    width: 100%;
}

.btn-modal-cancel {
    width: 100%;
    background: transparent;
    border: none;
    color: var(--primary);
    padding: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    cursor: pointer;
}

/* Screen 4: Evaluation details */
.round-complete-alert {
    color: #FFF;
    font-size: 0.85rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 12px;
}

.player-results-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.result-item {
    border-radius: 12px;
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.result-item.positive {
    background: var(--success-bg);
    border: 1px solid rgba(192, 209, 102, 0.1);
}

.result-item.negative {
    background: var(--error-bg);
    border: 1px solid rgba(232, 135, 122, 0.1);
}

.result-left {
    display: flex;
    align-items: center;
    gap: 8px;
}

.result-details {
    display: flex;
    flex-direction: column;
}

.result-name {
    color: #FFF;
    font-size: 0.75rem;
    font-weight: 700;
}

.result-formula {
    font-size: 0.6rem;
    color: var(--text-secondary);
}

.result-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.score-diff {
    font-weight: 800;
    font-size: 0.8rem;
}

.positive .score-diff { color: var(--success-green); }
.negative .score-diff { color: var(--error-red); }

.score-total {
    font-size: 0.6rem;
    color: var(--text-secondary);
}

/* FEATURES SECTION */
.features-section {
    padding: 100px 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-size: 2.25rem;
    text-align: center;
    margin-bottom: 48px;
    font-family: 'Cinzel', serif;
    color: var(--accent-gold);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.feature-card {
    background: var(--bg-surface-glass);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 32px 24px;
    backdrop-filter: blur(8px);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-4px);
    border-color: var(--primary);
    box-shadow: 0 12px 30px rgba(243, 168, 127, 0.08), 0 0 15px rgba(229, 193, 88, 0.05);
}

.feature-card .icon {
    font-size: 2rem;
    margin-bottom: 16px;
    display: inline-block;
    filter: drop-shadow(0 0 8px rgba(229, 193, 88, 0.2));
}

.feature-card h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--accent-gold);
}

.feature-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

/* PRO SECTION */
.pro-section-wrapper {
    padding: 80px 24px;
    background: radial-gradient(circle at center, rgba(229, 193, 88, 0.05) 0%, transparent 70%);
}

.pro-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.pro-header {
    text-align: center;
    margin-bottom: 48px;
}

.pro-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 520px;
    margin: 12px auto 0;
}

.pro-options {
    display: flex;
    gap: 32px;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
}

.pro-card {
    background: var(--bg-surface-glass);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 40px;
    flex: 1;
    min-width: 290px;
    max-width: 420px;
    display: flex;
    flex-direction: column;
    position: relative;
    backdrop-filter: blur(8px);
    transition: var(--transition);
}

.pro-card.gold-border {
    border: 2px solid var(--accent-gold);
    box-shadow: 0 0 25px rgba(229, 193, 88, 0.08);
}

.pro-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), 0 0 15px rgba(229, 193, 88, 0.05);
}

.pro-card-header {
    margin-bottom: 24px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.pro-tag {
    background: rgba(243, 168, 127, 0.15);
    border: 1px solid rgba(243, 168, 127, 0.3);
    color: var(--primary);
    font-size: 0.7rem;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 12px;
    letter-spacing: 0.5px;
}

.pro-tag.gold {
    background: rgba(229, 193, 88, 0.15);
    border: 1px solid rgba(229, 193, 88, 0.3);
    color: var(--accent-gold);
}

.pro-card h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #FFF;
}

.pro-card .price {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--accent-gold);
    margin-bottom: 12px;
}

.pro-card .desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.pro-features-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: auto;
}

.pro-features-list li {
    font-size: 0.95rem;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 12px;
}

.check-icon {
    color: var(--accent-gold);
    font-weight: bold;
}

/* DISCLAIMER SECTION */
.disclaimer-section {
    padding: 40px 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.disclaimer-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius);
    padding: 24px;
    text-align: center;
}

.disclaimer-title {
    font-family: 'Cinzel', serif;
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.disclaimer-card p {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* FOOTER */
footer {
    background: #050302;
    border-top: 1px solid var(--border-color);
    padding: 48px 24px;
    color: var(--text-secondary);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.footer-links {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-links a {
    color: var(--text-secondary);
    font-weight: 500;
}

.footer-links a:hover {
    color: var(--accent-gold);
}

.copyright {
    font-size: 0.85rem;
}

/* PRIVACY PAGE DESIGN */
.privacy-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 80px 24px;
}

.privacy-content h1 {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-gold);
    margin-bottom: 12px;
    text-shadow: 0 0 15px rgba(229, 193, 88, 0.25);
}

.privacy-content .updated {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.privacy-content .lang-toggle {
    display: flex;
    gap: 12px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.lang-btn {
    padding: 10px 24px;
    border-radius: 24px;
    border: 1px solid var(--border-color);
    background: rgba(255,255,255,0.03);
    color: var(--text-secondary);
    font-weight: 600;
    cursor: pointer;
    font-size: 0.9rem;
    transition: var(--transition);
}

.lang-btn.active,
.lang-btn:hover {
    background: var(--primary);
    color: var(--text-on-primary);
    border-color: var(--primary);
}

.privacy-block {
    display: none;
    animation: fadeIn 0.4s ease-out;
}

.privacy-block.visible {
    display: block;
}

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

.privacy-block h2 {
    font-family: 'Cinzel', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--accent-gold);
    margin: 40px 0 16px;
    text-shadow: 0 0 8px rgba(229, 193, 88, 0.1);
}

.privacy-block h2:first-of-type {
    margin-top: 0;
}

.privacy-block p,
.privacy-block ul {
    color: var(--text-primary);
    margin-bottom: 20px;
    font-size: 1rem;
}

.privacy-block ul {
    padding-left: 24px;
}

.privacy-block ul li {
    margin-bottom: 8px;
}

/* RESPONSIVENESS */
@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 48px;
        text-align: center;
    }
    
    .hero-text {
        align-items: center;
    }
    
    .hero-text h1 {
        font-size: 2.8rem;
    }
    
    .cta-buttons {
        justify-content: center;
    }
}

@media (max-width: 600px) {
    .hero-text h1 {
        font-size: 2.25rem;
    }
    
    .hero-text .subtitle {
        font-size: 1.05rem;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .nav-links {
        display: none !important; /* Hide standard nav links on mobile for cleaner layout */
    }
    
    .pro-options {
        flex-direction: column;
        align-items: center;
    }
    
    .pro-card {
        width: 100%;
    }
}
