:root {
            --bg-deep: #181820; 
            --bg-surface: #20202a; 
            --text-light: #ffffff; 
            --text-muted: rgba(255, 255, 255, 0.6); 
            --gold-accent: #B89A50; 
            --border: rgba(255, 255, 255, 0.08); 
            --shadow-glow: 0 0 30px rgba(184, 154, 80, 0.25); 
            
            --transition-easing: cubic-bezier(0.42, 0, 0.58, 1); 
            --transition-duration: 1.02s; 
            
            --base-font-size: 1.15rem; 

            --art-love: #e00000;       
            --art-courage: #ff7f00;    
            --art-healing: #e6a800;    
            --art-knowledge: #008000;  
            --art-comm: #0044ff;       
            --art-present: #4b0082;    
            --art-trans: #8b00ff;      
        }

        * { box-sizing: border-box; margin: 0; padding: 0; }
        html { scroll-behavior: smooth; }
        body {
            font-family: 'Inter', sans-serif;
            font-size: var(--base-font-size); 
            background: var(--bg-deep); 
            color: var(--text-light); 
            line-height: 1.7; 
            overflow-x: hidden;
            position: relative;
        }
        
        /* SPA LOGIC STYLES */
        .spa-view {
            display: none;
            opacity: 0;
            transition: opacity 0.5s ease-in-out;
            min-height: 100vh;
        }
        
        .spa-view.active {
            display: block;
            animation: fadeInView 0.8s forwards;
        }

        @keyframes fadeInView {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* REST OF STYLES */
        #starfield {
            position: fixed;
            top: 0; left: 0; width: 100%; height: 100%;
            pointer-events: none; z-index: -1; 
        }

        .star {
            position: absolute;
            background-color: var(--text-light);
            border-radius: 50%;
            opacity: 0;
            animation: twinkle linear infinite;
        }

        @keyframes twinkle {
            0%, 10%, 90%, 100% { opacity: 0; }
            50% { opacity: 0.8; }
        }

        .universe {
            position: fixed;
            top: 0; left: 0; width: 100%; height: 100%;
            background: radial-gradient(
                circle at center,
                rgba(255, 0, 0, 0.06) 0%,
                rgba(255, 127, 0, 0.05) 12%,
                rgba(255, 255, 0, 0.04) 24%,
                rgba(0, 128, 0, 0.04) 36%,
                rgba(0, 44, 255, 0.05) 50%, 
                rgba(75, 0, 130, 0.05) 64%,
                rgba(139, 0, 255, 0.06) 78%,
                var(--bg-deep) 100%
            );
            mix-blend-mode: screen; opacity: 0.18; z-index: -2;
        }

        .stars {
            position: fixed;
            top: 0; left: 0; width: 100%; height: 100%;
            z-index: -1;
            background-image: radial-gradient(circle, rgba(255, 255, 255, 0.4) 1px, transparent 1px);
            background-size: 400px 400px; opacity: 0.05; animation: none; 
        }

        #infinityOverlay {
            position: fixed; inset: 0; display: none;
            align-items: center; justify-content: center;
            pointer-events: none; z-index: 950;
            background: radial-gradient(circle at center, rgba(255,255,255,0.04), rgba(0,0,0,0.95));
        }

        #infinityOverlay.active {
            display: flex;
            animation: tunnelFade 0.9s ease-out forwards;
        }

        .tunnel-core {
            width: 70vmin; height: 70vmin; border-radius: 50%;
            border: 2px solid rgba(255,255,255,0.6);
            box-shadow:
                0 0 0 8px rgba(255,255,255,0.12),
                0 0 0 18px rgba(0,240,255,0.18),
                0 0 0 32px rgba(255,85,0,0.22),
                0 0 0 50px rgba(139,0,255,0.20),
                0 0 60px 0 rgba(255,255,255,0.35);
            background:
                radial-gradient(circle at 20% 20%, rgba(0,240,255,0.35), transparent 60%),
                radial-gradient(circle at 80% 80%, rgba(255,0,60,0.28), transparent 60%),
                radial-gradient(circle at 50% 120%, rgba(139,0,255,0.35), transparent 70%);
            transform-style: preserve-3d;
            animation: tunnelZoom 0.9s cubic-bezier(0.3,0,0.7,1) forwards;
        }

        @keyframes tunnelZoom {
            0% { transform: translateZ(0) scale(0.7); opacity: 0; }
            10% { opacity: 1; }
            50% { transform: translateZ(120px) scale(1.05); opacity: 1; }
            100% { transform: translateZ(260px) scale(1.4); opacity: 0; }
        }

        @keyframes tunnelFade {
            0% { opacity: 0; }
            15% { opacity: 1; }
            100% { opacity: 0; }
        }

        h1 { 
            font-size: 7rem; line-height: 1; 
            font-family: 'Cinzel', serif; font-weight: 800; color: var(--text-light); 
        }
        
        .rainbow-text {
            font-weight: 900; 
            background: linear-gradient(
                90deg,
                var(--art-love), var(--art-courage), var(--art-healing), 
                var(--art-knowledge), var(--art-comm), var(--art-present), var(--art-trans)
            );
            -webkit-background-clip: text; -webkit-text-fill-color: transparent;
            background-clip: text; color: transparent;
        }

        h2, h3 {
            font-family: 'Cinzel', serif; font-weight: 800;
            letter-spacing: 1px; text-transform: uppercase; color: var(--text-light);
        }
        .subtitle {
            font-family: 'Lora', serif; font-style: italic;
            font-size: 1.9rem; color: var(--text-muted); font-weight: 400; margin-top: 10px;
        }
        .text-lead { 
            font-size: 1.4rem; line-height: 1.7; color: var(--text-light); 
        } 
        
        #about .text-lead, #whoami .text-lead {
            font-family: 'Lora', serif; font-weight: 400; 
            line-height: 1.8; font-size: 1.6rem; color: var(--text-light);
            margin-bottom: 30px !important; 
        }

        .gold-highlight { color: var(--gold-accent); font-weight: 600; }
        
        .hero-story {
            font-family: 'Lora', serif; font-style: italic;
            font-size: 1.7rem; color: var(--gold-accent);
            max-width: 600px; margin: 30px auto 40px auto; line-height: 1.4;
        }
        
        .micro-cadence {
            font-family: 'Lora', serif; font-size: 1.4rem;
            color: var(--text-muted); margin: 25px auto 40px auto; 
            padding-left: 20px; border-left: 3px solid var(--gold-accent);
            max-width: 800px; text-align: left; font-style: italic; line-height: 1.6;
        }

        .top-nav {
            position: fixed; top: 0; left: 0; right: 0;
            z-index: 900; padding: 25px 8%; 
            display: flex; justify-content: space-between; align-items: center;
            transition: background-color 0.5s, backdrop-filter 0.5s;
            background-color: transparent; backdrop-filter: none;
        }
        .top-nav.scrolled {
            background-color: rgba(24, 24, 32, 0.95); 
            backdrop-filter: blur(10px);
            border-bottom: 1px solid var(--border);
        }
        
        .nav-logo {
            font-family: 'Cinzel', serif; font-weight: 800;
            color: var(--gold-accent); font-size: 1.26rem; 
            text-decoration: none; letter-spacing: 2px; transition: color 0.3s;
            cursor: pointer;
        }

        .nav-right-container {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .nav-links a {
            color: var(--text-light); text-decoration: none;
            margin-left: 25px; font-weight: 600; letter-spacing: 0.5px;
            transition: color 0.3s, opacity 0.3s, border-bottom 0.3s;
            opacity: 0.8; padding: 5px 0; font-size: 0.95rem; cursor: pointer;
        }
        .nav-links a:hover, .nav-links a.active {
            color: var(--gold-accent); opacity: 1;
            border-bottom: 2px solid var(--gold-accent); 
        }

        /* --- STILURI NOI PENTRU SELECTOR LIMBA (DROPDOWN) --- */
        .lang-dropdown-wrapper {
            position: relative;
        }
        
        .lang-trigger {
            background: rgba(255,255,255,0.05);
            border: 1px solid rgba(255,255,255,0.2);
            color: var(--text-light);
            padding: 6px 12px;
            border-radius: 4px;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 6px;
            transition: all 0.3s;
            font-family: 'Inter', sans-serif;
            font-size: 0.85rem;
        }
        .lang-trigger:hover {
            border-color: var(--gold-accent);
            color: var(--gold-accent);
        }
        
        .lang-menu {
            position: absolute;
            top: 120%;
            right: 0;
            background: var(--bg-surface);
            border: 1px solid var(--border);
            border-radius: 6px;
            box-shadow: 0 10px 25px rgba(0,0,0,0.5);
            padding: 5px;
            display: none;
            flex-direction: column;
            min-width: 80px;
            z-index: 1002;
        }
        .lang-menu.show {
            display: flex;
            animation: fadeInMenu 0.3s ease;
        }
        @keyframes fadeInMenu {
            from { opacity: 0; transform: translateY(-5px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .lang-option {
            padding: 8px 15px;
            color: var(--text-muted);
            text-decoration: none;
            font-size: 0.85rem;
            cursor: pointer;
            transition: color 0.2s, background 0.2s;
            border-radius: 4px;
            text-align: center;
        }
        .lang-option:hover {
            color: var(--gold-accent);
            background: rgba(255,255,255,0.05);
        }
        .lang-option.active {
            color: var(--bg-deep);
            background: var(--gold-accent);
            font-weight: bold;
        }

        /* --- MENIU MOBIL --- */
        .mobile-menu-toggle {
            display: none;
            background: none;
            border: none;
            color: var(--gold-accent);
            font-size: 2rem;
            cursor: pointer;
            z-index: 1001;
            margin-left: 10px; /* Spatiu intre limba si burger */
        }

        .mobile-menu-overlay {
            position: fixed;
            top: 0; left: 0; width: 100%; height: 100%;
            background-color: rgba(24, 24, 32, 0.98);
            backdrop-filter: blur(15px);
            z-index: 2000;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.4s ease;
        }

        .mobile-menu-overlay.active {
            opacity: 1;
            pointer-events: all;
        }

        .close-menu-btn {
            position: absolute;
            top: 25px;
            right: 25px;
            background: none;
            border: none;
            color: var(--text-muted);
            font-size: 2.5rem;
            cursor: pointer;
            transition: color 0.3s;
        }
        .close-menu-btn:hover {
            color: var(--art-love);
        }

        .mobile-links {
            display: flex;
            flex-direction: column;
            gap: 30px;
            text-align: center;
        }

        .mobile-links a {
            font-family: 'Cinzel', serif;
            font-size: 2rem;
            font-weight: 700;
            color: var(--text-light);
            text-decoration: none;
            cursor: pointer;
            transition: transform 0.3s, color 0.3s;
        }

        .mobile-links a:hover {
            color: var(--gold-accent);
            transform: scale(1.1);
        }

        .mobile-social {
            margin-top: 50px;
            display: flex;
            gap: 20px;
            flex-wrap: wrap; /* Permite trecerea pe rând nou pe ecrane mici */
            justify-content: center;
        }
        .mobile-social a {
            color: var(--text-muted);
            font-size: 1.8rem;
            transition: color 0.3s;
        }
        .mobile-social a:hover {
            color: var(--gold-accent);
        }

        .btn-scroll-down {
            display: none; border: none; color: var(--gold-accent);
            font-size: 1.3rem; cursor: pointer; z-index: 901; 
            width: 40px; height: 40px; align-items: center; justify-content: center;
            transition: all 0.3s ease; background-color: var(--bg-deep); 
            border-radius: 50%; line-height: 1; text-decoration: none; 
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.6), 0 0 0 2px rgba(184, 154, 80, 0.2); 
        }
        .btn-scroll-down:hover {
            transform: scale(1.05);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.8), 0 0 10px var(--gold-accent);
        }

        .btn-scroll-top {
            display: none; position: fixed; bottom: 20px; right: 20px;
            z-index: 1000; width: 50px; height: 50px; border-radius: 50%;
            background-color: var(--gold-accent); color: var(--bg-deep); 
            border: none; cursor: pointer; box-shadow: 0 4px 15px rgba(0, 0, 0, 0.6);
            font-size: 1.5rem; line-height: 1;
            transition: opacity 0.3s, transform 0.3s, visibility 0.3s, bottom 0.5s ease;
            opacity: 0; visibility: hidden; align-items: center; justify-content: center;
        }
        .btn-scroll-top:hover {
            background-color: #FFD700; transform: scale(1.05);
        }
        .btn-scroll-top.show {
            opacity: 1; visibility: visible;
        }
        /* Clasă adăugată din JS când apare dock-ul de cumpărare */
        .btn-scroll-top.shifted {
            bottom: 100px;
        }

        section {
            padding: 70px 8%; max-width: 1300px; 
            margin: 0 auto; position: relative; z-index: 10; 
            min-height: 65vh; text-align: center; 
        }

        /* Specific Page Header Style */
        .page-intro {
            padding-top: 150px;
            min-height: 40vh;
        }

        #poezii, #contact { padding-top: 30px; padding-bottom: 30px; min-height: 30vh; }
        
        .section-header {
            display: flex; flex-direction: column; align-items: center; text-align: center;
        }
        .section-title-wrapper {
            display: flex; align-items: center; gap: 15px; margin-bottom: 5px;
        }
        .section-header h2 { font-size: 4rem; margin-bottom: 0; }
        .section-icon {
            font-size: 3rem; color: var(--gold-accent); opacity: 0.8;
            transition: color 0.3s; animation: pulseIcon 2s infinite alternate; 
        }

        @keyframes pulseIcon {
            from { opacity: 0.7; transform: scale(1); }
            to { opacity: 1; transform: scale(1.05); }
        }

        /* --- STILURI CARTEA 3D --- */
        .book-container {
            width: 350px; height: 525px; margin: 0 auto; 
            perspective: 1200px; margin-top: 50px; position: relative;
            display: flex; justify-content: center; align-items: center;
        }
        .book {
            width: 100%; height: 100%; transform-style: preserve-3d; 
            transition: transform 1.5s var(--transition-easing); 
            transform: rotateX(8deg) rotateY(-18deg) rotateZ(0deg); 
            box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.7); 
            position: relative; cursor: grab; 
        }
        .face {
            position: absolute; width: 100%; height: 100%;
            transform-origin: center;
            transition: transform 0.5s ease-out, background-image 0.5s ease-in-out; 
            background-size: cover; background-position: center; border-radius: 5px; 
        }
        .front {
            background-image: url('coperta-en.png'); /* Setat default pe EN */
            transform: translateZ(1px); box-shadow: none; backface-visibility: hidden; 
        }
        .back {
            background-color: #111111; 
            transform: translateZ(-1px) rotateY(180deg); backface-visibility: hidden;
        }
        .spine { display: none; }
        .shadow-overlay {
            position: absolute; top: 0; left: 0; right: 0; bottom: 0;
            background: radial-gradient(circle at 70% 50%, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.4) 100%); 
            box-shadow: inset 0 0 50px rgba(0, 0, 0, 0.8); border-radius: 5px; 
        }
        
        .btn-buy {
            background: linear-gradient(90deg, var(--gold-accent), #FFD700);
            color: var(--bg-deep); padding: 18px 45px;
            text-decoration: none; font-family: 'Inter', sans-serif;
            font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px;
            border-radius: 8px; transition: all 0.3s ease;
            display: inline-flex; align-items: center; gap: 10px;
            box-shadow: 0 8px 30px rgba(184, 154, 80, 0.5); margin-top: 40px;
            font-size: 1.1rem;
            cursor: pointer;
        }
        .btn-buy:hover {
            opacity: 0.9; transform: translateY(-2px);
            box-shadow: 0 12px 40px rgba(184, 154, 80, 0.7);
        }
        
        #hero .avertisment-btn {
            background: none; border: 2px solid var(--art-love); 
            color: var(--art-love); text-decoration: none; cursor: pointer; 
            font-size: 1.2rem; font-weight: 700; padding: 10px 20px;
            border-radius: 5px; background: rgba(224, 0, 0, 0.1);
            transition: all 0.3s;
        }
        #hero .avertisment-btn:hover { background: rgba(224, 0, 0, 0.2); }
        
        #avertismentModal .modal-content { max-width: 750px; }
        #avertismentModal h3 { font-size: 2.2rem; }
        #avertismentModal .emergency p { font-size: 1.15rem; }

        .conversion-points {
            max-width: 550px; margin: 40px auto 0;
            text-align: left; padding: 20px;
            border: 1px solid var(--border); border-radius: 8px;
            background: var(--bg-surface); box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
        }
        .conversion-points ul { list-style: none; padding-left: 0; }
        .conversion-points li {
            font-size: 1rem; color: var(--text-light);
            margin-bottom: 12px; padding-left: 20px;
            position: relative; line-height: 1.5; font-family: 'Lora', serif;
        }
        .conversion-points li::before {
            content: '•'; color: var(--gold-accent);
            font-weight: 900; font-size: 1.5rem;
            position: absolute; left: 0; line-height: 0.9;
        }
        
        .art-list {
            display: flex; flex-wrap: wrap; gap: 20px; margin-top: 50px;
        }

        .art-item {
            flex: 1 1 calc(33.333% - 20px); min-width: 280px;
            padding: 30px; background: var(--bg-surface);
            border-radius: 12px; border: 1px solid var(--border);
            transition: transform 0.4s var(--transition-easing), box-shadow 0.4s var(--transition-easing);
            text-align: center; box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
        }
        .art-item:hover {
            transform: translateY(-8px); 
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5), 0 0 30px var(--art-color);
        }

        .art-number {
            font-family: 'Cinzel', serif; font-weight: 800;
            font-size: 3rem; margin-bottom: 5px; line-height: 1;
        }
        .art-info h3 { font-size: 1.5rem; margin-bottom: 10px; }
        .period { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 15px; }
        .text-small { font-size: 1rem; line-height: 1.5; color: var(--text-muted); }

        .tab-container { 
            margin-top: 50px; max-width: 900px; 
            margin-left: auto; margin-right: auto; text-align: left; 
        } 
        .tab-buttons { 
            display: flex; justify-content: center; 
            margin-bottom: 40px; border-bottom: 1px solid var(--border); 
            flex-wrap: wrap;
        }
        .tab-btn {
            background: none; border: none; padding: 15px 25px;
            font-size: 1.1rem; font-weight: 600; color: var(--text-muted);
            cursor: pointer; transition: color 0.3s, border-bottom 0.3s;
            border-bottom: 3px solid transparent; text-transform: uppercase;
        }
        .tab-btn:hover { color: var(--text-light); }
        .tab-btn.active { 
            color: var(--gold-accent); border-bottom: 3px solid var(--gold-accent); 
        }

        .tab-content { padding: 20px 0; display: none; }

        footer {
            padding: 80px 8% 20px; text-align: center;
            border-top: 1px solid var(--border); margin-top: 50px;
            padding-bottom: 150px; /* Aici este cheia pe Desktop */
            position: relative; z-index: 9;
        }
        .social-row {
            display: flex; justify-content: center; gap: 20px; margin-bottom: 20px;
        }
        .social-link {
            font-size: 1.8rem; color: var(--text-muted); transition: color 0.3s;
        }
        .social-link:hover { color: var(--gold-accent); }

        .buy-dock {
            position: fixed; bottom: 0; left: 0; right: 0;
            background-color: rgba(24, 24, 32, 0.95); 
            backdrop-filter: blur(10px); padding: 10px 8%;
            border-top: 1px solid var(--border); z-index: 999;
            display: flex; justify-content: space-between; align-items: center;
            transform: translateY(100%); transition: transform 0.5s var(--transition-easing);
            box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.5);
        }
        .buy-dock.visible { transform: translateY(0); }
        .buy-dock-info { text-align: left; }
        .buy-dock-info div { line-height: 1.2; }

        .modal {
            display: none; position: fixed; z-index: 2000; 
            left: 0; top: 0; width: 100%; height: 100%;
            overflow: auto; background-color: rgba(0,0,0,0.8); 
            backdrop-filter: blur(5px); padding-top: 60px;
            transition: opacity 0.3s; opacity: 0;
        }
        .modal.active { display: block; opacity: 1; }
        .modal-content {
            background-color: var(--bg-surface); margin: 5% auto; 
            padding: 40px; width: 90%; max-width: 650px;
            border-radius: 16px; position: relative;
            box-shadow: 0 0 50px rgba(224, 0, 0, 0.3), 0 10px 50px rgba(0, 0, 0, 0.8); 
            transform: translateY(-50px) scale(0.95); 
            transition: transform 0.5s var(--transition-easing); text-align: center;
        }
        .modal.active .modal-content { transform: translateY(0) scale(1); }
        
        #limitedEditionModal .modal-content {
            box-shadow: 0 0 50px var(--gold-accent), 0 10px 50px rgba(0, 0, 0, 0.8); 
            border: 3px solid var(--gold-accent); max-width: 550px; 
        }
        #limitedEditionModal h2 {
            color: var(--gold-accent); font-size: 2.5rem; margin-bottom: 20px;
        }
        .close-btn {
            color: var(--text-muted); font-size: 35px; font-weight: bold;
            position: absolute; top: 10px; right: 20px;
            cursor: pointer; transition: color 0.3s;
        }
        .close-btn:hover, .close-btn:focus { color: var(--art-love); text-decoration: none; }
        
        .emergency {
            border-left: 5px solid var(--art-love); background: #150a0a; 
            padding: 20px; margin-bottom: 25px; border-radius: 8px; text-align: left;
        }

        /* --- STILURI NOI PENTRU PAGINILE ADAUGATE --- */
        .grid-gallery {
            display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px; margin-top: 40px;
        }
        .grid-item {
            background: #2a2a35; height: 250px; border-radius: 8px; 
            display: flex; align-items: center; justify-content: center;
            border: 1px solid var(--border); transition: transform 0.3s;
        }
        .grid-item:hover { transform: scale(1.03); border-color: var(--gold-accent); }
        
        .journal-entry {
            background: var(--bg-surface); padding: 30px; border-radius: 12px;
            text-align: left; margin-bottom: 30px; border-left: 4px solid var(--gold-accent);
        }
        .journal-date { color: var(--gold-accent); font-size: 0.9rem; font-weight: 600; text-transform: uppercase; }
        
        .faq-item {
            background: var(--bg-surface); border: 1px solid var(--border);
            margin-bottom: 15px; border-radius: 8px; overflow: hidden; text-align: left;
        }
        .faq-question {
            padding: 20px; cursor: pointer; font-weight: 600; display: flex; justify-content: space-between;
            color: var(--text-light); transition: background 0.3s;
        }
        .faq-question:hover { background: rgba(255,255,255,0.05); }
        .faq-answer {
            padding: 0 20px; max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.3s ease;
            color: var(--text-muted);
        }
        .faq-item.open .faq-answer { padding: 20px; max-height: 500px; }

        /* --- STILURI NEWSLETTER --- */
        .newsletter-box {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid var(--border);
            padding: 40px;
            border-radius: 12px;
            margin-top: 30px;
            margin-bottom: 30px;
            position: relative;
            overflow: hidden;
            max-width: 650px;
            margin-left: auto;
            margin-right: auto;
        }

        .newsletter-box::before {
            content: '';
            position: absolute;
            top: -50%; left: -50%;
            width: 200%; height: 200%;
            background: radial-gradient(circle, rgba(184, 154, 80, 0.1) 0%, transparent 60%);
            pointer-events: none;
            z-index: 0;
        }

        .newsletter-content {
            position: relative;
            z-index: 1;
        }

        .newsletter-input {
            width: 100%;
            padding: 15px 20px;
            background: rgba(0, 0, 0, 0.3);
            border: 1px solid var(--border);
            color: var(--text-light);
            font-family: 'Inter', sans-serif;
            font-size: 1rem;
            border-radius: 6px;
            margin-bottom: 20px;
            transition: border-color 0.3s, box-shadow 0.3s;
        }

        .newsletter-input:focus {
            outline: none;
            border-color: var(--gold-accent);
            box-shadow: 0 0 15px rgba(184, 154, 80, 0.2);
        }

        .btn-subscribe {
            background: transparent;
            border: 2px solid var(--gold-accent);
            color: var(--gold-accent);
            padding: 12px 30px;
            font-family: 'Cinzel', serif;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s;
            text-transform: uppercase;
            letter-spacing: 1px;
            width: 100%;
            border-radius: 6px;
        }

        .btn-subscribe:hover {
            background: var(--gold-accent);
            color: var(--bg-deep);
            box-shadow: 0 0 20px rgba(184, 154, 80, 0.4);
        }

        .newsletter-disclaimer {
            font-size: 0.8rem;
            color: var(--text-muted);
            margin-top: 15px;
        }

        .lang-form-group {
            display: none;
            animation: fadeInForm 0.5s ease-out;
        }
        .lang-form-group.active {
            display: block;
        }

        @keyframes fadeInForm {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }

        @media (max-width: 1024px) {
            h1 { font-size: 5rem; }
            .subtitle { font-size: 1.5rem; }
            /* Adjusted top nav for mobile flex */
            .top-nav { padding: 15px 5%; } 
            .nav-links { display: none; }
            
            /* SHOW HAMBURGER ON MOBILE */
            .mobile-menu-toggle { display: block; }
            
            .btn-scroll-down { display: flex; } 
            .btn-scroll-top { display: flex; }
            section { padding: 80px 5%; }
            #poezii, #contact { padding-top: 40px; padding-bottom: 40px; }
            .art-item { flex: 1 1 100%; }
            .section-header h2 { font-size: 3rem; }
            .section-icon { font-size: 2rem; }
            .hero-story, .micro-cadence { font-size: 1.2rem; }
            .nav-logo { font-size: 1.1rem; }
            /* Lang Switcher margin adjustment inside container */
            .lang-switcher { margin-right: 0; }
        }

        @media (max-width: 600px) {
            h1 { font-size: 3rem; }
            .subtitle { font-size: 1.2rem; }
            .nav-logo { font-size: 1.1rem; letter-spacing: 1px; } 
            .top-nav { padding: 10px 5%; }
            .btn-scroll-down { width: 40px; height: 40px; font-size: 1.3rem; }
            .btn-scroll-top { width: 45px; height: 45px; font-size: 1.3rem; bottom: 15px; right: 15px; }
            .btn-buy { padding: 15px 30px; font-size: 1rem; }
            .buy-dock { padding: 10px 5%; flex-direction: column; gap: 5px; }
            .buy-dock-info { text-align: center; }
            .buy-dock-info div:first-child { font-size: 0.8rem; }
            .buy-dock-info div:last-child { font-size: 1.4rem; }
            .buy-dock .btn-buy { width: 100%; }
            .tunnel-core { width: 90vmin; height: 90vmin; }
            .section-header h2 { font-size: 2.5rem; }
            .text-lead { font-size: 1.2rem; }
            .hero-story, .micro-cadence { font-size: 1.1rem; }
            .book-container { width: 250px; height: 375px; }
            .conversion-points { padding: 15px; margin-top: 20px; }
            .conversion-points li { font-size: 0.9rem; }
            
            /* Footer Padding Mărit pentru Mobil pentru a evita suprapunerea cu Dock */
            footer { padding-bottom: 240px; }
            
            .newsletter-box { padding: 25px; margin-top: 20px; }
}