*,*::before,*::after{margin:0;padding:0;box-sizing:border-box}
:root{
    --bg-primary:#1a1a2e;
    --bg-secondary:#16213e;
    --bg-card:#0f3460;
    --bg-accent:#533483;
    --text-primary:#e8e8e8;
    --text-secondary:#b8b8cc;
    --text-accent:#e94560;
    --gold:#d4a574;
    --gold-light:#e8c9a0;
    --border-color:rgba(212,165,116,0.2);
    --shadow:0 4px 24px rgba(0,0,0,0.3);
    --radius:12px;
}
html{scroll-behavior:smooth;font-size:16px}
body{
    font-family:'Source Sans 3',sans-serif;
    background:var(--bg-primary);
    color:var(--text-primary);
    line-height:1.7;
    min-height:100vh;
    overflow-x:hidden;
}
a{color:var(--gold);text-decoration:none;transition:color .3s}
a:hover{color:var(--gold-light)}
img{max-width:100%;height:auto;display:block}
h1,h2,h3,h4{font-family:'Playfair Display',serif;line-height:1.3;color:var(--text-primary)}
h1{font-size:2.4rem;font-weight:700}
h2{font-size:1.8rem;font-weight:600}
h3{font-size:1.3rem;font-weight:600}
p{font-family:'Source Sans 3',sans-serif;margin-bottom:1rem;color:var(--text-secondary)}
blockquote{
    font-family:'Crimson Text',serif;
    font-style:italic;
    font-size:1.2rem;
    border-left:3px solid var(--gold);
    padding:1rem 1.5rem;
    margin:2rem 0;
    background:rgba(212,165,116,0.05);
    border-radius:0 var(--radius) var(--radius) 0;
}

.page-loader{
    position:fixed;top:0;left:0;width:100%;height:100%;
    background:var(--bg-primary);
    display:flex;align-items:center;justify-content:center;
    z-index:10000;
    transition:opacity .4s ease;
}
.page-loader.hidden{opacity:0;pointer-events:none}
.loader-spinner{
    width:40px;height:40px;
    border:3px solid var(--border-color);
    border-top-color:var(--gold);
    border-radius:50%;
    animation:spin .8s linear infinite;
}
@keyframes spin{to{transform:rotate(360deg)}}

.site-header{
    position:fixed;top:0;left:0;width:100%;
    background:linear-gradient(135deg,var(--bg-secondary) 0%,var(--bg-primary) 100%);
    border-bottom:1px solid var(--border-color);
    z-index:1000;
    backdrop-filter:blur(10px);
}
.header-inner{
    max-width:1200px;margin:0 auto;
    padding:0.8rem 2rem;
    display:flex;align-items:center;justify-content:space-between;
}
.logo{display:flex;align-items:center;gap:0.7rem;text-decoration:none}
.logo img{border-radius:4px}
.logo-text{
    font-family:'Playfair Display',serif;
    font-size:1.3rem;font-weight:700;
    color:var(--gold);
    letter-spacing:0.5px;
}
.main-nav ul{display:flex;list-style:none;gap:1.5rem}
.main-nav a{
    font-family:'Fira Sans',sans-serif;
    font-size:0.9rem;font-weight:500;
    color:var(--text-secondary);
    text-transform:uppercase;
    letter-spacing:1px;
    padding:0.3rem 0;
    position:relative;
    transition:color .3s;
}
.main-nav a::after{
    content:'';position:absolute;bottom:0;left:0;
    width:0;height:2px;
    background:var(--gold);
    transition:width .3s;
}
.main-nav a:hover{color:var(--gold)}
.main-nav a:hover::after{width:100%}

.burger-menu{
    display:none;
    flex-direction:column;gap:5px;
    background:none;border:none;cursor:pointer;
    padding:8px;z-index:1001;
}
.burger-menu span{
    width:28px;height:2px;
    background:var(--gold);
    transition:all .3s;
    border-radius:2px;
}

.burger-overlay{
    position:fixed;top:0;left:0;width:100%;height:100%;
    background:rgba(0,0,0,0.7);
    z-index:2000;
    opacity:0;visibility:hidden;
    transition:all .3s;
}
.burger-overlay.active{opacity:1;visibility:visible}
.burger-panel{
    position:fixed;top:0;right:-320px;
    width:320px;height:100%;
    background:linear-gradient(180deg,var(--bg-secondary) 0%,var(--bg-primary) 100%);
    padding:2rem;
    transition:right .3s ease;
    overflow-y:auto;
    z-index:2001;
}
.burger-overlay.active .burger-panel{right:0}
.burger-close{
    position:absolute;top:1rem;right:1.5rem;
    background:none;border:none;
    color:var(--gold);font-size:2rem;
    cursor:pointer;
    transition:transform .3s;
}
.burger-close:hover{transform:rotate(90deg)}
.burger-nav{margin-top:3rem}
.burger-nav ul{list-style:none}
.burger-nav li{margin-bottom:0.3rem}
.burger-nav a{
    display:block;
    font-family:'Fira Sans',sans-serif;
    font-size:1.05rem;
    color:var(--text-secondary);
    padding:0.7rem 1rem;
    border-radius:8px;
    transition:all .3s;
}
.burger-nav a:hover{
    background:rgba(212,165,116,0.1);
    color:var(--gold);
    padding-left:1.5rem;
}
.burger-section-title{
    font-family:'Fira Sans',sans-serif;
    font-size:0.75rem;
    text-transform:uppercase;
    letter-spacing:2px;
    color:var(--gold);
    padding:1.2rem 1rem 0.4rem;
    border-top:1px solid var(--border-color);
    margin-top:0.5rem;
}

.hero{
    margin-top:70px;
    padding:5rem 2rem 4rem;
    background:linear-gradient(135deg,var(--bg-secondary) 0%,var(--bg-accent) 50%,var(--bg-secondary) 100%);
    text-align:center;
    position:relative;
    overflow:hidden;
}
.hero::before{
    content:'';position:absolute;top:0;left:0;width:100%;height:100%;
    background:url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(212,165,116,0.05)" stroke-width="0.5"/></svg>') repeat;
    background-size:200px;
    opacity:0.5;
}
.hero-content{position:relative;z-index:1;max-width:800px;margin:0 auto}
.hero h1{font-size:2.8rem;margin-bottom:1rem;color:var(--gold-light)}
.hero p{font-size:1.15rem;max-width:600px;margin:0 auto 2rem;color:var(--text-secondary)}
.hero-badge{
    display:inline-block;
    font-family:'Fira Sans',sans-serif;
    font-size:0.8rem;
    text-transform:uppercase;
    letter-spacing:3px;
    color:var(--gold);
    border:1px solid var(--gold);
    padding:0.4rem 1.2rem;
    border-radius:20px;
    margin-bottom:1.5rem;
}

.section{padding:4rem 2rem;max-width:1200px;margin:0 auto}
.section-title{
    text-align:center;margin-bottom:3rem;
    position:relative;
    padding-bottom:1rem;
}
.section-title::after{
    content:'';position:absolute;bottom:0;left:50%;
    transform:translateX(-50%);
    width:60px;height:3px;
    background:var(--gold);
    border-radius:2px;
}

.articles-grid{
    display:grid;
    grid-template-columns:1fr;
    gap:2.5rem;
}
.article-card{
    background:linear-gradient(145deg,var(--bg-card) 0%,var(--bg-secondary) 100%);
    border:1px solid var(--border-color);
    border-radius:var(--radius);
    overflow:hidden;
    transition:transform .3s,box-shadow .3s;
    display:grid;
    grid-template-columns:300px 1fr;
}
.article-card:hover{
    transform:translateY(-4px);
    box-shadow:var(--shadow);
}
.article-card-img{
    width:100%;height:100%;
    object-fit:cover;
    min-height:250px;
}
.article-card-body{padding:2rem}
.article-card-tag{
    display:inline-block;
    font-family:'Fira Sans',sans-serif;
    font-size:0.7rem;
    text-transform:uppercase;
    letter-spacing:2px;
    color:var(--gold);
    background:rgba(212,165,116,0.1);
    padding:0.3rem 0.8rem;
    border-radius:4px;
    margin-bottom:1rem;
}
.article-card h2{margin-bottom:0.8rem;font-size:1.5rem}
.article-card p{font-size:0.95rem;margin-bottom:1.2rem}
.article-link{
    display:inline-flex;align-items:center;gap:0.5rem;
    font-family:'Fira Sans',sans-serif;
    font-size:0.9rem;font-weight:500;
    color:var(--gold);
    transition:gap .3s;
}
.article-link:hover{gap:0.8rem}
.article-link svg{width:16px;height:16px;fill:none;stroke:currentColor;stroke-width:2;stroke-linecap:round;stroke-linejoin:round}

.article-page{margin-top:70px;padding:3rem 2rem}
.article-container{max-width:800px;margin:0 auto}
.article-header{margin-bottom:2.5rem;text-align:center}
.article-header .article-card-tag{margin-bottom:1rem}
.article-header h1{margin-bottom:1rem}
.article-meta{
    font-family:'Fira Sans',sans-serif;
    font-size:0.85rem;
    color:var(--text-secondary);
}
.article-hero-img{
    width:100%;max-height:450px;
    object-fit:cover;
    border-radius:var(--radius);
    margin-bottom:2.5rem;
    border:1px solid var(--border-color);
}
.article-content h2{
    margin:2.5rem 0 1rem;
    padding-top:1.5rem;
    border-top:1px solid var(--border-color);
}
.article-content h2:first-of-type{border-top:none;padding-top:0}
.article-content p{font-size:1.02rem;line-height:1.8}
.article-content ul,.article-content ol{
    margin:1rem 0 1.5rem 1.5rem;
    color:var(--text-secondary);
}
.article-content li{margin-bottom:0.5rem;line-height:1.7}
.article-content a{
    color:var(--gold);
    border-bottom:1px solid rgba(212,165,116,0.3);
    transition:border-color .3s;
}
.article-content a:hover{border-bottom-color:var(--gold)}

.info-box{
    background:linear-gradient(135deg,rgba(83,52,131,0.2) 0%,rgba(15,52,96,0.3) 100%);
    border:1px solid var(--border-color);
    border-radius:var(--radius);
    padding:2rem;
    margin:2rem 0;
}
.info-box h3{color:var(--gold);margin-bottom:1rem}

.related-articles{
    margin-top:3rem;
    padding-top:2rem;
    border-top:1px solid var(--border-color);
}
.related-articles h2{margin-bottom:1.5rem}
.related-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:1.5rem;
}
.related-card{
    background:var(--bg-card);
    border:1px solid var(--border-color);
    border-radius:var(--radius);
    padding:1.5rem;
    transition:transform .3s;
}
.related-card:hover{transform:translateY(-3px)}
.related-card h3{margin-bottom:0.5rem;font-size:1.1rem}
.related-card p{font-size:0.9rem;margin-bottom:0.8rem}

.about-page,.contact-page,.policy-page{
    margin-top:70px;
    padding:3rem 2rem;
}
.page-container{max-width:800px;margin:0 auto}
.page-header{text-align:center;margin-bottom:3rem}
.page-header h1{margin-bottom:1rem}

.contact-info{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:1.5rem;
    margin:2rem 0;
}
.contact-card{
    background:var(--bg-card);
    border:1px solid var(--border-color);
    border-radius:var(--radius);
    padding:1.5rem;
    text-align:center;
}
.contact-card h3{color:var(--gold);margin-bottom:0.8rem}
.contact-card p{margin-bottom:0.3rem}

.timeline{margin:2rem 0}
.timeline-item{
    position:relative;
    padding-left:2rem;
    padding-bottom:2rem;
    border-left:2px solid var(--border-color);
}
.timeline-item:last-child{border-left-color:transparent}
.timeline-item::before{
    content:'';position:absolute;left:-6px;top:0;
    width:10px;height:10px;
    background:var(--gold);
    border-radius:50%;
}
.timeline-item h3{color:var(--gold);margin-bottom:0.5rem;font-size:1rem}

.site-footer{
    background:linear-gradient(135deg,var(--bg-secondary) 0%,#0a0a1a 100%);
    border-top:1px solid var(--border-color);
    padding:3rem 2rem 1.5rem;
    margin-top:4rem;
}
.footer-inner{max-width:1200px;margin:0 auto}
.footer-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:2rem;
    margin-bottom:2rem;
}
.footer-col h3{
    font-size:1rem;
    color:var(--gold);
    margin-bottom:1rem;
    font-family:'Fira Sans',sans-serif;
    font-weight:600;
}
.footer-col ul{list-style:none}
.footer-col li{margin-bottom:0.4rem}
.footer-col a{color:var(--text-secondary);font-size:0.9rem}
.footer-col a:hover{color:var(--gold)}
.footer-col p{font-size:0.9rem;color:var(--text-secondary);margin-bottom:0.4rem}
.footer-bottom{
    text-align:center;
    padding-top:1.5rem;
    border-top:1px solid var(--border-color);
}
.footer-bottom p{font-size:0.8rem;color:var(--text-secondary);margin-bottom:0.3rem}

.cookie-banner{
    position:fixed;bottom:0;left:0;width:100%;
    background:linear-gradient(135deg,var(--bg-secondary) 0%,var(--bg-card) 100%);
    border-top:1px solid var(--gold);
    padding:1.5rem 2rem;
    z-index:5000;
    box-shadow:0 -4px 20px rgba(0,0,0,0.4);
}
.cookie-inner{
    max-width:1200px;margin:0 auto;
    display:flex;align-items:center;
    justify-content:space-between;
    gap:2rem;
}
.cookie-text{flex:1}
.cookie-text p{font-size:0.9rem;margin-bottom:0.3rem;color:var(--text-secondary)}
.cookie-text a{color:var(--gold);font-size:0.85rem}
.cookie-buttons{display:flex;gap:0.8rem;flex-shrink:0}
.cookie-btn{
    font-family:'Fira Sans',sans-serif;
    font-size:0.85rem;font-weight:500;
    padding:0.6rem 1.5rem;
    border:none;border-radius:6px;
    cursor:pointer;
    transition:all .3s;
}
.cookie-accept{
    background:var(--gold);
    color:var(--bg-primary);
}
.cookie-accept:hover{background:var(--gold-light)}
.cookie-reject{
    background:transparent;
    color:var(--text-secondary);
    border:1px solid var(--border-color);
}
.cookie-reject:hover{
    border-color:var(--gold);
    color:var(--gold);
}

.external-link{
    font-size:0.85rem;
    display:inline-flex;align-items:center;gap:0.3rem;
}

.features-section{
    padding:4rem 2rem;
    background:linear-gradient(180deg,var(--bg-primary) 0%,var(--bg-secondary) 100%);
}
.features-grid{
    max-width:1200px;margin:0 auto;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:2rem;
    margin-top:3rem;
}
.feature-card{
    background:var(--bg-card);
    border:1px solid var(--border-color);
    border-radius:var(--radius);
    padding:2rem;
    text-align:center;
    transition:transform .3s;
}
.feature-card:hover{transform:translateY(-4px)}
.feature-icon{
    font-family:'Playfair Display',serif;
    font-size:2rem;
    font-weight:700;
    color:var(--gold);
    margin-bottom:1rem;
    display:flex;
    align-items:center;
    justify-content:center;
    width:60px;height:60px;
    margin-left:auto;margin-right:auto;
    border:2px solid var(--gold);
    border-radius:50%;
}
.feature-card h3{margin-bottom:0.8rem}

@media(max-width:1024px){
    .footer-grid{grid-template-columns:repeat(2,1fr)}
    .features-grid{grid-template-columns:repeat(2,1fr)}
    .article-card{grid-template-columns:250px 1fr}
}
@media(max-width:768px){
    .main-nav{display:none}
    .burger-menu{display:flex}
    .hero h1{font-size:2rem}
    .hero{padding:4rem 1.5rem 3rem}
    .section{padding:3rem 1.5rem}
    .article-card{grid-template-columns:1fr}
    .article-card-img{min-height:200px;max-height:250px}
    .footer-grid{grid-template-columns:1fr}
    .related-grid{grid-template-columns:1fr}
    .features-grid{grid-template-columns:1fr}
    .cookie-inner{flex-direction:column;text-align:center}
    .cookie-buttons{justify-content:center}
    h1{font-size:1.8rem}
    h2{font-size:1.4rem}
    .article-page{padding:2rem 1.5rem}
    .contact-info{grid-template-columns:1fr}
}
@media(max-width:480px){
    .header-inner{padding:0.8rem 1rem}
    .logo-text{font-size:1.1rem}
    .hero h1{font-size:1.6rem}
    .hero p{font-size:1rem}
    .burger-panel{width:280px}
}