@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700&family=Roboto:wght@300;400;500;700&display=swap');

:root {
    --primary-dark: #0d1b2a;
    --primary-blue: #1b263b;
    --secondary-blue: #2d4a6f;
    --accent-gold: #d4a574;
    --accent-gold-dark: #b8905a;
    --accent-red: #8b0000;
    --accent-red-dark: #6b0000;
    --text-primary: #f5f5dc;
    --text-secondary: #c9c9c9;
    --text-muted: #8a8a8a;
    --parchment: #f5f0e6;
    --wood: #3d2914;
    --wood-light: #5c3d2e;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: var(--primary-dark);
    color: var(--text-primary);
    line-height: 1.6;
    min-height: 100vh;
}

a {
    color: var(--accent-gold);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #e8c08a;
    text-decoration: underline;
}

a:visited {
    color: var(--accent-gold);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cinzel', serif;
    font-weight: 600;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.header {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-blue) 100%);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 9998;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    overflow: visible;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--accent-gold);
}

.logo img {
    width: 50px;
    height: 50px;
    margin-right: 12px;
    border-radius: 50%;
    border: 2px solid var(--accent-gold);
}

.logo-text {
    font-family: 'Cinzel', serif;
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 25px;
}

.nav-links a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 0;
}

.nav-links a:hover {
    color: var(--accent-gold);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gold);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

#langSwitch {
    position: relative;
    z-index: 99999;
}

#langBtn {
    background: transparent !important;
    border: 2px solid #d4a574 !important;
    color: #d4a574 !important;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 80px;
    justify-content: center;
    outline: none;
}

#langBtn:hover {
    background: #d4a574 !important;
    color: #0d1b2a !important;
}

.lang-arrow {
    font-size: 10px;
    transition: transform 0.3s ease;
}

#langSwitch:hover .lang-arrow, #langSwitch.open .lang-arrow {
    transform: rotate(180deg);
}

#langDropdown {
    position: fixed;
    top: 75px;
    right: 20px;
    background: #0d1b2a !important;
    border: 2px solid #d4a574 !important;
    border-radius: 8px;
    padding: 5px 0;
    min-width: 180px;
    max-height: 400px;
    overflow-y: auto;
    display: none;
    z-index: 999999 !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

#langSwitch:hover #langDropdown, #langSwitch.open #langDropdown {
    display: block !important;
}

#langDropdown .lang-item {
    display: block;
    padding: 12px 18px;
    color: #f5f5dc !important;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
    white-space: nowrap;
    cursor: pointer;
}

#langDropdown .lang-item:hover {
    background: rgba(212, 165, 116, 0.2) !important;
    color: #d4a574 !important;
}

#langDropdown .lang-item.active {
    background: rgba(212, 165, 116, 0.3) !important;
    color: #d4a574 !important;
    font-weight: 600;
}

.hero-section {
    position: relative;
    height: 70vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('db449d62fb52dea259e00a0ea2488303.png');
    background-size: cover;
    background-position: center;
}

.hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(13, 27, 42, 0.8) 0%, rgba(13, 27, 42, 0.6) 50%, rgba(13, 27, 42, 0.9) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 0 20px;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 700;
    color: var(--accent-gold);
    margin-bottom: 15px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 30px;
    animation: fadeInUp 1s ease 0.2s;
    animation-fill-mode: both;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    animation: fadeInUp 1s ease 0.4s;
    animation-fill-mode: both;
}

.btn-primary {
    background: linear-gradient(135deg, #c99248 0%, #a67c42 100%);
    color: #000000 !important;
    padding: 15px 35px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 800;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(201, 146, 72, 0.5);
    text-shadow: none;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(212, 165, 116, 0.6);
}

.btn-secondary {
    background: rgba(0, 0, 0, 0.85);
    color: #ffd700;
    padding: 15px 35px;
    border: 2px solid #ffd700;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 800;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.btn-secondary:hover {
    background: rgba(212, 165, 116, 0.1);
    transform: translateY(-3px);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.main-content {
    padding: 60px 0;
}

.section-title {
    font-size: 2.5rem;
    color: var(--accent-gold);
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 30px;
}

.guide-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 25px;
}

.guide-card {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(212, 165, 116, 0.2);
}

.guide-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-gold);
    box-shadow: 0 10px 30px rgba(212, 165, 116, 0.2);
}

.guide-card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.guide-card:hover .guide-card-img {
    transform: scale(1.05);
}

.guide-card-content {
    padding: 20px;
}

.guide-card-category {
    display: inline-block;
    background: rgba(212, 165, 116, 0.2);
    color: var(--accent-gold);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 10px;
}

.guide-card-title {
    font-size: 1.25rem;
    color: var(--text-primary);
    margin-bottom: 10px;
    line-height: 1.4;
}

.guide-card-excerpt {
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: 15px;
}

.guide-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.guide-card-date {
    color: var(--text-muted);
    font-size: 13px;
}

.read-more {
    color: var(--accent-gold);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
}

.read-more:hover {
    color: var(--text-primary);
}

.read-more::after {
    content: ' →';
    transition: margin-left 0.3s ease;
}

.read-more:hover::after {
    margin-left: 5px;
}

.sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.sidebar-section {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 25px;
    border: 1px solid rgba(212, 165, 116, 0.2);
}

.sidebar-title {
    font-size: 1.25rem;
    color: var(--accent-gold);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.deal-card {
    background: rgba(139, 0, 0, 0.15);
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 15px;
    border-left: 3px solid var(--accent-red);
    transition: all 0.3s ease;
}

.deal-card:hover {
    background: rgba(139, 0, 0, 0.25);
    transform: translateX(5px);
}

.deal-title {
    color: var(--text-primary);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
}

.deal-price {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 10px;
}

.deal-current-price {
    font-size: 1.5rem;
    color: var(--accent-gold);
    font-weight: 700;
}

.deal-original-price {
    font-size: 14px;
    color: var(--text-muted);
    text-decoration: line-through;
}

.deal-discount {
    background: var(--accent-red);
    color: white;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
}

.deal-btn {
    display: block;
    width: 100%;
    background: linear-gradient(135deg, var(--accent-red) 0%, var(--accent-red-dark) 100%);
    color: white;
    padding: 10px;
    text-align: center;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.deal-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(139, 0, 0, 0.4);
}

.price-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.price-table th {
    background: var(--primary-blue);
    color: var(--accent-gold);
    padding: 12px 15px;
    text-align: left;
    font-weight: 600;
    border-bottom: 2px solid var(--accent-gold);
}

.price-table td {
    padding: 12px 15px;
    border-bottom: 1px solid rgba(212, 165, 116, 0.1);
    color: var(--text-primary);
}

.price-table tr:hover {
    background: rgba(212, 165, 116, 0.05);
}

.price-table a {
    color: var(--accent-gold);
    text-decoration: none;
    font-weight: 500;
}

.price-table a:hover {
    text-decoration: underline;
}

.price-tag {
    background: var(--accent-red);
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
}

.price-tag.good {
    background: #2ecc71;
}

.price-tag.moderate {
    background: #f39c12;
}

.featured-section {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-dark) 100%);
    padding: 60px 0;
    margin: 60px 0;
    border-radius: 12px;
    overflow: hidden;
}

.featured-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.featured-img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.featured-title {
    font-size: 2.25rem;
    color: var(--accent-gold);
    margin-bottom: 20px;
}

.featured-description {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 25px;
    line-height: 1.8;
}

.featured-list {
    list-style: none;
    margin-bottom: 30px;
}

.featured-list li {
    color: var(--text-primary);
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
}

.featured-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-gold);
    font-weight: 700;
}

.footer {
    background: var(--primary-dark);
    padding: 60px 0 30px;
    border-top: 1px solid rgba(212, 165, 116, 0.2);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-title {
    font-size: 1.25rem;
    color: var(--accent-gold);
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--accent-gold);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #e8c08a;
}

.footer-info {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.8;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(212, 165, 116, 0.1);
    color: var(--text-muted);
    font-size: 14px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(212, 165, 116, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-gold);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--accent-gold);
    color: var(--primary-dark);
    transform: translateY(-3px);
}

.guide-header {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-blue) 100%);
    padding: 40px 0;
    margin-bottom: 40px;
}

.guide-header h1 {
    font-size: 2.5rem;
    color: var(--accent-gold);
    margin-bottom: 15px;
}

.guide-meta {
    display: flex;
    gap: 20px;
    color: var(--text-muted);
    font-size: 14px;
}

.guide-content {
    max-width: 800px;
    margin: 0 auto;
}

.guide-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 20px 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.guide-content h2 {
    color: var(--accent-gold);
    margin: 30px 0 15px;
    font-size: 1.75rem;
}

.guide-content h3 {
    color: var(--text-primary);
    margin: 20px 0 10px;
    font-size: 1.35rem;
}

.guide-content p {
    color: var(--text-secondary);
    margin-bottom: 15px;
    font-size: 1.05rem;
    line-height: 1.8;
}

.guide-content ul,
.guide-content ol {
    color: var(--text-secondary);
    margin-bottom: 20px;
    padding-left: 25px;
}

.guide-content li {
    margin-bottom: 10px;
}

.guide-content blockquote {
    background: rgba(212, 165, 116, 0.1);
    border-left: 4px solid var(--accent-gold);
    padding: 20px;
    margin: 20px 0;
    color: var(--text-primary);
    font-style: italic;
    border-radius: 0 8px 8px 0;
}

.buy-section {
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.15) 0%, rgba(13, 27, 42, 0.9) 100%);
    border-radius: 12px;
    padding: 30px;
    margin-top: 40px;
    border: 1px solid rgba(139, 0, 0, 0.3);
}

.buy-section h3 {
    color: var(--accent-gold);
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.buy-table {
    width: 100%;
    border-collapse: collapse;
}

.buy-table th {
    background: var(--primary-blue);
    color: #e8c08a;
    padding: 12px;
    text-align: center;
    font-weight: 700;
}

.buy-table td {
    padding: 12px;
    text-align: center;
    border-bottom: 1px solid rgba(212, 165, 116, 0.1);
    color: var(--text-primary);
}

.buy-table .platform {
    font-weight: 600;
    color: var(--text-primary);
}

.buy-table .price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--accent-gold);
}

.buy-table a {
    color: var(--accent-gold);
    text-decoration: none;
    font-weight: 500;
}

.buy-table a:hover {
    color: #e8c08a;
    text-decoration: underline;
}

.buy-btn {
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-dark) 100%);
    color: #1a1a1a !important;
    padding: 8px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-block;
}

.buy-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(212, 165, 116, 0.4);
}

.buy-btn.red {
    background: linear-gradient(135deg, var(--accent-red) 0%, var(--accent-red-dark) 100%);
    color: white;
}

.page-content {
    max-width: 800px;
    margin: 0 auto;
}

.page-content h1 {
    font-size: 2.5rem;
    color: var(--accent-gold);
    margin-bottom: 20px;
}

.page-content h2 {
    color: var(--accent-gold);
    margin: 30px 0 15px;
    font-size: 1.75rem;
}

.page-content p {
    color: var(--text-secondary);
    margin-bottom: 15px;
    font-size: 1.05rem;
    line-height: 1.8;
}

.contact-form {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    border-radius: 12px;
    padding: 40px;
    margin-top: 30px;
    border: 1px solid rgba(212, 165, 116, 0.2);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    color: var(--text-primary);
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid rgba(212, 165, 116, 0.3);
    border-radius: 8px;
    background: rgba(13, 27, 42, 0.5);
    color: var(--text-primary);
    font-size: 14px;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 3px rgba(212, 165, 116, 0.2);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.breadcrumb {
    background: var(--primary-blue);
    padding: 15px 0;
    margin-bottom: 30px;
}

.breadcrumb a {
    color: var(--accent-gold);
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.breadcrumb span {
    color: var(--text-muted);
    margin: 0 5px;
}

.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--accent-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-dark);
    font-size: 20px;
    text-decoration: none;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(212, 165, 116, 0.4);
}

.scroll-top.active {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(212, 165, 116, 0.6);
}

@media (max-width: 992px) {
    .content-grid {
        grid-template-columns: 1fr;
    }
    
    .sidebar {
        position: static;
    }
    
    .featured-content {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .nav-links {
        display: none;
    }
    
    .guide-cards {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
}