/* ==================== Global Styles ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #ff6b35;
    --secondary-color: #f7931e;
    --dark-bg: #1a1a2e;
    --light-bg: #16213e;
    --text-light: #ffffff;
    --text-gray: #b4b4b4;
    --accent-blue: #0f3460;
    --success-green: #28a745;
    --border-radius: 12px;
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--light-bg) 100%);
    color: var(--text-light);
    line-height: 1.6;
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ==================== Header ==================== */
.header {
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(10px);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid rgba(255, 107, 53, 0.2);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

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

.logo-img {
    height: 50px;
    width: auto;
}

.logo-text {
    font-size: 24px;
    font-weight: bold;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.nav-list a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-list a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.nav-list a:hover::after {
    width: 100%;
}

.nav-list a:hover {
    color: var(--primary-color);
}

.header-buttons {
    display: flex;
    gap: 10px;
}

/* ==================== Buttons ==================== */
.btn {
    padding: 12px 24px;
    border: none;
    border-radius: var(--border-radius);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--text-light);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.5);
}

.btn-secondary {
    background: transparent;
    color: var(--text-light);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
}

.btn-large {
    padding: 16px 32px;
    font-size: 18px;
}

.btn-download {
    width: 100%;
    padding: 16px;
    font-size: 18px;
}

/* ==================== Mobile Menu ==================== */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-light);
    transition: var(--transition);
    border-radius: 3px;
}

/* ==================== Hero Section ==================== */
.hero {
    padding: 100px 0;
    text-align: center;
    background: radial-gradient(circle at center, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
}

.hero-content h1 {
    font-size: 56px;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 24px;
    color: var(--text-gray);
    margin-bottom: 20px;
}

.hero-description {
    font-size: 18px;
    color: var(--text-gray);
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.hero-image {
    max-width: 900px;
    margin: 40px auto;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ==================== Download Section ==================== */
.download-section {
    padding: 80px 0;
}

.download-section.alt {
    background: rgba(255, 255, 255, 0.02);
}

.download-section h2 {
    font-size: 40px;
    margin-bottom: 50px;
    text-align: center;
}

.download-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.download-info h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.download-info ul,
.download-info ol {
    margin-left: 20px;
    margin-bottom: 30px;
}

.download-info li {
    margin-bottom: 10px;
    color: var(--text-gray);
}

.download-card {
    background: linear-gradient(135deg, var(--accent-blue), var(--light-bg));
    padding: 40px;
    border-radius: var(--border-radius);
    text-align: center;
    border: 2px solid rgba(255, 107, 53, 0.2);
    transition: var(--transition);
}

.download-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

.download-card h3 {
    font-size: 28px;
    margin-bottom: 15px;
}

.download-card .version {
    color: var(--text-gray);
    margin-bottom: 10px;
}

.download-card .size {
    color: var(--text-gray);
    margin-bottom: 30px;
}

/* ==================== Screenshots Slider ==================== */
.screenshots-slider {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.02);
}

.screenshots-slider h2 {
    font-size: 40px;
    margin-bottom: 50px;
    text-align: center;
}

.slider-wrapper {
    position: relative;
    max-width: 500px;
    margin: 0 auto;
    padding: 0 60px;
}

.slider-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: var(--border-radius);
}

.slide {
    display: none;
    animation: fadeSlide 0.5s ease-in-out;
}

.slide.active {
    display: block;
}

.slide img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    border: 3px solid rgba(255, 107, 53, 0.3);
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    font-size: 36px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}

.slider-btn:hover {
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.6);
}

.slider-btn.prev {
    left: 0;
}

.slider-btn.next {
    right: 0;
}

.slider-dots {
    text-align: center;
    margin-top: 30px;
}

.dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    margin: 0 8px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

.dot:hover {
    background: rgba(255, 107, 53, 0.6);
}

.dot.active {
    background: var(--primary-color);
    width: 14px;
    height: 14px;
}

.slider-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
    flex-wrap: wrap;
}

@keyframes fadeSlide {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* ==================== Features Section ==================== */
.features {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.02);
}

.features h2 {
    font-size: 40px;
    margin-bottom: 50px;
    text-align: center;
}

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

.feature-card {
    background: linear-gradient(135deg, var(--accent-blue), var(--light-bg));
    padding: 30px;
    border-radius: var(--border-radius);
    border: 2px solid rgba(255, 107, 53, 0.1);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.2);
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.feature-card p {
    color: var(--text-gray);
    line-height: 1.6;
}

/* ==================== Bonuses Section ==================== */
.bonuses {
    padding: 80px 0;
}

.bonuses h2 {
    font-size: 40px;
    margin-bottom: 50px;
    text-align: center;
}

.bonuses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.bonus-card {
    background: linear-gradient(135deg, var(--accent-blue), var(--light-bg));
    padding: 40px;
    border-radius: var(--border-radius);
    text-align: center;
    border: 2px solid rgba(255, 107, 53, 0.2);
    transition: var(--transition);
    position: relative;
}

.bonus-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

.bonus-card.featured {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.2), var(--accent-blue));
}

.badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--primary-color);
    color: var(--text-light);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: bold;
}

.bonus-card h3 {
    font-size: 24px;
    margin-bottom: 20px;
}

.bonus-amount {
    font-size: 56px;
    font-weight: bold;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
}

.bonus-card p {
    color: var(--text-gray);
    margin-bottom: 25px;
}

/* ==================== How to Play Section ==================== */
.how-to-play {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.02);
}

.how-to-play h2 {
    font-size: 40px;
    margin-bottom: 50px;
    text-align: center;
}

.game-image-wrapper {
    max-width: 900px;
    margin: 0 auto 50px;
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.step {
    text-align: center;
    padding: 30px;
}

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    font-weight: bold;
    margin: 0 auto 20px;
}

.step h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.step p {
    color: var(--text-gray);
    line-height: 1.6;
}

/* ==================== Reviews Section ==================== */
.reviews {
    padding: 80px 0;
}

.reviews h2 {
    font-size: 40px;
    margin-bottom: 50px;
    text-align: center;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.review-card {
    background: linear-gradient(135deg, var(--accent-blue), var(--light-bg));
    padding: 25px;
    border-radius: var(--border-radius);
    border: 2px solid rgba(255, 107, 53, 0.1);
    transition: var(--transition);
}

.review-card:hover {
    transform: translateY(-3px);
    border-color: var(--primary-color);
}

.review-card h4 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.review-text {
    color: var(--text-gray);
    margin-bottom: 15px;
    line-height: 1.6;
}

.review-meta {
    font-size: 13px;
    color: #888;
    font-style: italic;
}

.review-cta {
    text-align: center;
}

/* ==================== FAQ Section ==================== */
.faq {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.02);
}

.faq h2 {
    font-size: 40px;
    margin-bottom: 50px;
    text-align: center;
}

.faq-items {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: linear-gradient(135deg, var(--accent-blue), var(--light-bg));
    border-radius: var(--border-radius);
    margin-bottom: 15px;
    border: 2px solid rgba(255, 107, 53, 0.1);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: var(--primary-color);
}

.faq-question {
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
}

.faq-question span {
    font-size: 18px;
    font-weight: 500;
}

.faq-icon {
    width: 24px;
    height: 24px;
    fill: var(--text-light);
    transition: var(--transition);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding: 0 25px 20px;
    color: var(--text-gray);
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

/* ==================== Footer ==================== */
.footer {
    background: rgba(26, 26, 46, 0.95);
    padding: 60px 0 30px;
    border-top: 2px solid rgba(255, 107, 53, 0.2);
}

.footer-menu {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-menu-column h3 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--primary-color);
    font-weight: 600;
}

.footer-menu-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu-column li {
    margin-bottom: 12px;
}

.footer-menu-column a {
    color: var(--text-gray);
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
}

.footer-menu-column a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.footer .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-social h3,
.footer-lang h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.social-buttons {
    display: flex;
    gap: 15px;
}

.social-btn {
    width: 50px;
    height: 50px;
    background: var(--accent-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    text-decoration: none;
}

.social-btn:hover {
    transform: translateY(-3px) scale(1.1);
}

.social-btn svg {
    width: 40px;
    height: 40px;
}

.lang-select {
    width: 100%;
    padding: 12px;
    background: var(--accent-blue);
    color: var(--text-light);
    border: 2px solid rgba(255, 107, 53, 0.2);
    border-radius: var(--border-radius);
    font-size: 16px;
    cursor: pointer;
    transition: var(--transition);
}

.lang-select:hover,
.lang-select:focus {
    border-color: var(--primary-color);
    outline: none;
}

.footer-copy {
    grid-column: 1 / -1;
    padding-top: 30px;
}

.footer-copy p {
    color: var(--text-gray);
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 15px;
}

/* ==================== Modal ==================== */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: linear-gradient(135deg, var(--accent-blue), var(--light-bg));
    padding: 40px;
    border-radius: var(--border-radius);
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    border: 2px solid var(--primary-color);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 32px;
    font-weight: bold;
    color: var(--text-light);
    cursor: pointer;
    transition: var(--transition);
}

.modal-close:hover {
    color: var(--primary-color);
}

.modal-content h2 {
    margin-bottom: 30px;
    font-size: 32px;
}

.review-form .form-group {
    margin-bottom: 20px;
}

.review-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.review-form input,
.review-form textarea {
    width: 100%;
    padding: 12px;
    background: rgba(26, 26, 46, 0.5);
    border: 2px solid rgba(255, 107, 53, 0.2);
    border-radius: var(--border-radius);
    color: var(--text-light);
    font-size: 16px;
    transition: var(--transition);
}

.review-form input:focus,
.review-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.review-form textarea {
    resize: vertical;
    font-family: inherit;
}

/* ==================== Responsive Design ==================== */
@media (max-width: 968px) {
    .nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav.mobile-active {
        display: block;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(26, 26, 46, 0.98);
        padding: 20px;
    }
    
    .nav.mobile-active .nav-list {
        flex-direction: column;
        gap: 15px;
    }
    
    .header-buttons {
        display: none;
    }
    
    .download-content {
        grid-template-columns: 1fr;
    }
    
    .hero-content h1 {
        font-size: 40px;
    }
    
    .hero-subtitle {
        font-size: 20px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-menu {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer .container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .hero-content h1 {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .download-section h2,
    .features h2,
    .bonuses h2,
    .how-to-play h2,
    .reviews h2,
    .faq h2 {
        font-size: 32px;
    }
    
    .modal-content {
        padding: 25px;
    }
    
    .bonuses-grid {
        grid-template-columns: 1fr;
    }
    
    .slider-wrapper {
        padding: 0 50px;
    }
    
    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 28px;
    }
}

/* ==================== Smooth Animations ==================== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-card,
.review-card,
.bonus-card,
.step {
    animation: fadeIn 0.6s ease forwards;
}

/* ==================== Scrollbar Styling ==================== */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--dark-bg);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-color);
}

/* ==================== Content Images ==================== */
.content-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 107, 53, 0.2);
    transition: var(--transition);
}

.content-image:hover {
    transform: scale(1.02);
    border-color: var(--primary-color);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.4);
}

/* ==================== Article Styles ==================== */
.article-content {
    padding: 80px 0;
    background: var(--dark-bg);
}

.article {
    background: linear-gradient(135deg, var(--accent-blue), var(--light-bg));
    padding: 50px;
    border-radius: var(--border-radius);
    border: 2px solid rgba(255, 107, 53, 0.2);
    margin-bottom: 40px;
}

.article h1 {
    font-size: 40px;
    margin-bottom: 30px;
    color: var(--text-light);
    line-height: 1.3;
}

.article h2 {
    font-size: 32px;
    margin-top: 50px;
    margin-bottom: 25px;
    color: var(--primary-color);
    line-height: 1.4;
}

.article h3 {
    font-size: 24px;
    margin-top: 35px;
    margin-bottom: 20px;
    color: var(--text-light);
}

.article p {
    margin-bottom: 20px;
    color: var(--text-gray);
    font-size: 17px;
    line-height: 1.8;
}

.article ul,
.article ol {
    margin: 25px 0;
    padding-left: 30px;
}

.article li {
    margin-bottom: 12px;
    color: var(--text-gray);
    line-height: 1.7;
}

.article strong {
    color: var(--text-light);
    font-weight: 600;
}

.article-intro {
    background: rgba(255, 107, 53, 0.1);
    padding: 25px;
    border-left: 4px solid var(--primary-color);
    border-radius: var(--border-radius);
    margin-bottom: 40px;
}

.article-intro p {
    margin: 0;
    font-size: 18px;
}

.download-cta-box {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.2), rgba(247, 147, 30, 0.2));
    padding: 35px;
    border-radius: var(--border-radius);
    text-align: center;
    margin: 40px 0;
    border: 2px solid var(--primary-color);
}

.download-cta-box h3 {
    margin-top: 0;
    margin-bottom: 15px;
    color: var(--text-light);
}

.download-cta-box p {
    margin-bottom: 25px;
}

.info-table {
    overflow-x: auto;
    margin: 30px 0;
}

.info-table table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
}

.info-table th,
.info-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.info-table th {
    background: rgba(255, 107, 53, 0.2);
    color: var(--text-light);
    font-weight: 600;
}

.info-table td {
    color: var(--text-gray);
}

.important-note {
    background: rgba(255, 107, 53, 0.15);
    padding: 25px;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--primary-color);
    margin: 40px 0;
}

.important-note h3 {
    margin-top: 0;
    color: var(--primary-color);
}

.related-links {
    background: linear-gradient(135deg, var(--accent-blue), var(--light-bg));
    padding: 30px;
    border-radius: var(--border-radius);
    border: 2px solid rgba(255, 107, 53, 0.2);
}

.related-links h3 {
    margin-top: 0;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.related-links ul {
    list-style: none;
    padding: 0;
}

.related-links li {
    margin-bottom: 12px;
}

.related-links a {
    color: var(--text-gray);
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
}

.related-links a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

@media (max-width: 768px) {
    .article {
        padding: 30px 20px;
    }
    
    .article h1 {
        font-size: 28px;
    }
    
    .article h2 {
        font-size: 24px;
    }
    
    .article h3 {
        font-size: 20px;
    }
}

/* ==================== Review Styles ==================== */
.rating-summary {
    background: rgba(255, 107, 53, 0.1);
    padding: 30px;
    border-radius: var(--border-radius);
    margin: 40px 0;
    text-align: center;
}

.rating-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.rating-score {
    font-size: 56px;
    font-weight: bold;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.rating-stars {
    font-size: 32px;
    color: var(--secondary-color);
}

.review-item {
    background: rgba(255, 255, 255, 0.03);
    padding: 30px;
    border-radius: var(--border-radius);
    margin-bottom: 30px;
    border: 2px solid rgba(255, 107, 53, 0.1);
    transition: var(--transition);
}

.review-item:hover {
    border-color: rgba(255, 107, 53, 0.3);
    transform: translateY(-3px);
}

.review-header {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    align-items: flex-start;
}

.review-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-color);
}

.review-info h3 {
    margin: 0 0 8px 0;
    color: var(--text-light);
    font-size: 20px;
}

.review-rating {
    color: var(--secondary-color);
    font-size: 18px;
    margin-bottom: 5px;
}

.review-date {
    color: var(--text-gray);
    font-size: 14px;
    margin: 0;
}

.review-item h4 {
    font-size: 22px;
    color: var(--primary-color);
    margin: 20px 0 15px 0;
}

.review-item p {
    line-height: 1.8;
    color: var(--text-gray);
}

.review-meta {
    display: flex;
    gap: 20px;
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14px;
    color: #888;
}

@media (max-width: 768px) {
    .review-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .review-meta {
        flex-direction: column;
        gap: 8px;
    }
}


