/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700;800&family=Cinzel+Decorative:wght@400;700;900&family=Open+Sans:wght@400;500;600&display=swap');

/* Reset */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    zoom: 1.2;
}

body {
    font-family: 'Open Sans', sans-serif;
    background-color: #0a0608;
    color: #c4b59d;
    min-height: 100vh;
    overflow-x: hidden;
}

/* ===================================
   BACKGROUND
   =================================== */
.main-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/mainbg.png') top center no-repeat;
    background-size: cover;
    z-index: -1;
}

/* ===================================
   HEADER / NAVIGATION
   =================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: url('../images/header.png') top center no-repeat;
    background-size: 100% 100%;
    padding: 15px 0;
    min-height: 50px;
    transition: all 0.3s ease;
}

.header.header-scrolled {
    background: rgba(10, 6, 8, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
    padding: 10px 0;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: rgba(20, 15, 12, 0.9);
    border: 1px solid rgba(201, 168, 108, 0.4);
    cursor: pointer;
    z-index: 101;
    transition: all 0.3s ease;
}

.mobile-menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: #c9a86c;
    transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
    border-color: rgba(201, 168, 108, 0.8);
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.header-container {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    position: relative;
}

/* Online Status */
.online-status {
    position: absolute;
    left: 30px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.online-dot {
    width: 10px;
    height: 10px;
    background: #00ff00;
    border-radius: 50%;
    box-shadow: 0 0 10px #00ff00, 0 0 20px #00ff00, 0 0 30px #00ff00;
    animation: pulseDot 2s ease-in-out infinite;
}

@keyframes pulseDot {

    0%,
    100% {
        box-shadow: 0 0 10px #00ff00, 0 0 20px #00ff00;
    }

    50% {
        box-shadow: 0 0 15px #00ff00, 0 0 30px #00ff00, 0 0 40px #00ff00;
    }
}

.online-text {
    font-family: 'Cinzel', serif;
    font-size: 12px;
    font-weight: 600;
    color: #00ff00;
    text-shadow: 0 0 10px rgba(0, 255, 0, 0.5), 0 0 20px rgba(0, 255, 0, 0.3);
}

/* Language Selector */
.language-selector {
    position: absolute;
    right: 30px;
}

.lang-current {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(20, 15, 10, 0.9);
    border: 1px solid rgba(201, 168, 108, 0.4);
    color: #c9a86c;
    font-family: 'Cinzel', serif;
    font-size: 12px;
    font-weight: 600;
    padding: 8px 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.lang-current:hover {
    border-color: rgba(201, 168, 108, 0.8);
    background: rgba(40, 30, 20, 0.95);
    box-shadow: 0 0 15px rgba(255, 50, 50, 0.3);
}

.lang-flag {
    font-size: 14px;
}

.lang-code {
    font-size: 12px;
}

.lang-arrow {
    font-size: 8px;
    transition: transform 0.3s ease;
}

.language-selector:hover .lang-arrow {
    transform: rotate(180deg);
}

.lang-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 5px;
    background: rgba(20, 15, 10, 0.95);
    border: 1px solid rgba(201, 168, 108, 0.4);
    min-width: 140px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.language-selector:hover .lang-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 10px 15px;
    background: transparent;
    border: none;
    color: #8a8078;
    font-family: 'Cinzel', serif;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
}

.lang-option:hover {
    background: rgba(201, 168, 108, 0.1);
    color: #c9a86c;
}

.lang-option.active {
    color: #c9a86c;
    background: rgba(201, 168, 108, 0.15);
    text-shadow: 0 0 10px rgba(255, 50, 50, 0.4);
}

.header-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
}

.nav-link {
    font-family: 'Cinzel', serif;
    font-size: 13px;
    font-weight: 500;
    color: #8a8078;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    padding: 5px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #c9a86c, transparent);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover {
    color: #d4c4a8;
    text-shadow: 0 0 10px rgba(201, 168, 108, 0.5);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link.active {
    color: #c9a86c;
    text-shadow: 0 0 15px rgba(201, 168, 108, 0.6);
    font-size: 15px;
    transform: scale(1.05);
}

.nav-link.active::after {
    width: 80%;
    box-shadow: 0 0 10px rgba(201, 168, 108, 0.5);
}

/* ===================================
   HERO SECTION
   =================================== */
.hero-section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 80px;
    position: relative;
}

.hero-logo {
    margin-bottom: 20px;
}

.hero-logo img {
    max-width: 400px;
    height: auto;
    animation: logoFloat 4s ease-in-out infinite, logoGlow 3s ease-in-out infinite;
    filter: drop-shadow(0 0 25px rgba(255, 50, 50, 0.5)) drop-shadow(0 0 50px rgba(200, 30, 30, 0.3));
    transition: all 0.3s ease;
}

.hero-logo img:hover {
    filter: drop-shadow(0 0 40px rgba(255, 60, 60, 0.8)) drop-shadow(0 0 70px rgba(220, 40, 40, 0.5)) drop-shadow(0 0 100px rgba(180, 20, 20, 0.3));
    transform: scale(1.05);
}

@keyframes logoGlow {

    0%,
    100% {
        filter: drop-shadow(0 0 25px rgba(255, 50, 50, 0.5)) drop-shadow(0 0 50px rgba(200, 30, 30, 0.3));
    }

    50% {
        filter: drop-shadow(0 0 35px rgba(255, 60, 60, 0.7)) drop-shadow(0 0 60px rgba(220, 40, 40, 0.4));
    }
}

@keyframes logoFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Welcome Box */
.welcome-box {
    text-align: center;
    padding: 30px 50px;
    margin-bottom: 30px;
}

.welcome-title {
    font-family: 'Cinzel Decorative', serif;
    font-size: 24px;
    font-weight: 700;
    color: #c9a86c;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
    text-shadow: 0 0 15px rgba(255, 50, 50, 0.6), 0 0 30px rgba(200, 30, 30, 0.4);
    animation: titleGlow 3s ease-in-out infinite;
}

@keyframes titleGlow {

    0%,
    100% {
        text-shadow: 0 0 15px rgba(255, 50, 50, 0.6), 0 0 30px rgba(200, 30, 30, 0.4);
    }

    50% {
        text-shadow: 0 0 30px rgba(255, 60, 60, 0.9), 0 0 50px rgba(220, 40, 40, 0.6), 0 0 70px rgba(180, 20, 20, 0.4);
    }
}

.welcome-text-box {
    max-width: 500px;
    margin: 0 auto 25px;
    background: linear-gradient(180deg,
            rgba(20, 15, 12, 0.3) 0%,
            rgba(15, 10, 8, 0.5) 50%,
            rgba(20, 15, 12, 0.3) 100%);
    border-top: 1px solid rgba(201, 168, 108, 0.15);
    border-bottom: 1px solid rgba(201, 168, 108, 0.15);
    padding: 25px 40px;
}

.welcome-text {
    font-size: 12px;
    color: #9a918a;
    line-height: 1.8;
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn-download,
.btn-register {
    display: inline-block;
    padding: 12px 35px;
    font-family: 'Cinzel', serif;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    background: url('../images/main_button.png') center center no-repeat;
    background-size: 100% 100%;
    color: #e8dcc8;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 160px;
    text-align: center;
    text-shadow: 0 0 5px rgba(232, 220, 200, 0.3);
}

.btn-download:hover,
.btn-register:hover {
    filter: brightness(1.3);
    transform: translateY(-3px);
    text-shadow: 0 0 15px rgba(232, 220, 200, 0.8);
    box-shadow: 0 10px 30px rgba(139, 0, 0, 0.4);
}

/* Hero Stats */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 80px;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 10px;
}

.stat-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: all 0.3s ease;
    filter: drop-shadow(0 0 5px rgba(201, 168, 108, 0.3));
}

.stat-item:hover .stat-icon img {
    transform: scale(1.2);
    filter: drop-shadow(0 0 15px rgba(201, 168, 108, 0.7));
}

.stat-number {
    display: block;
    font-family: 'Cinzel', serif;
    font-size: 28px;
    font-weight: 700;
    color: #c9a86c;
    margin-bottom: 5px;
    text-shadow: 0 0 15px rgba(255, 50, 50, 0.6), 0 0 30px rgba(200, 30, 30, 0.4);
    transition: all 0.3s ease;
}

.stat-item:hover .stat-number {
    text-shadow: 0 0 25px rgba(255, 60, 60, 0.9), 0 0 45px rgba(220, 40, 40, 0.6), 0 0 60px rgba(180, 20, 20, 0.4);
    color: #e0c080;
}

.stat-label {
    font-size: 12px;
    color: #8a8078;
    text-transform: capitalize;
    transition: all 0.3s ease;
}

.stat-item:hover .stat-label {
    color: #b0a090;
}

/* Stats Line */
.stats-line {
    width: 100%;
    max-width: 900px;
    margin: 50px auto 0;
}

.stats-line img {
    width: 100%;
    height: auto;
}

/* ===================================
   SECTION COMMON STYLES
   =================================== */
.section-divider {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.divider-line {
    width: 100%;
    max-width: 600px;
}

.divider-ornament {
    width: 50px;
    height: auto;
}

.section-title {
    font-family: 'Cinzel Decorative', serif;
    font-size: 28px;
    font-weight: 700;
    color: #c9a86c;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 10px;
    text-shadow: 0 0 20px rgba(255, 50, 50, 0.7), 0 0 40px rgba(220, 40, 40, 0.5), 0 0 60px rgba(180, 20, 20, 0.3);
}

.section-subtitle {
    font-size: 13px;
    color: #7a7268;
    text-align: center;
    margin-bottom: 40px;
}

/* ===================================
   LAST UPDATES SECTION
   =================================== */
.updates-section {
    padding: 60px 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.updates-slider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.slider-arrow {
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    transition: all 0.3s ease;
}

.slider-arrow img {
    width: 30px;
    height: auto;
    opacity: 0.6;
    transition: all 0.3s ease;
    filter: drop-shadow(0 0 5px rgba(201, 168, 108, 0.2));
}

.slider-arrow:hover img {
    opacity: 1;
    transform: scale(1.2);
    filter: drop-shadow(0 0 15px rgba(201, 168, 108, 0.6));
}

.updates-cards {
    display: flex;
    gap: 20px;
}

.update-card {
    position: relative;
    width: 280px;
    height: 220px;
    background: url('../images/frame1.png') center center no-repeat;
    background-size: 100% 100%;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.update-card-2 {
    position: relative;
    width: 280px;
    height: 220px;
    background: url('../images/frame2.png') center center no-repeat;
    background-size: 100% 100%;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.update-card-3 {
    position: relative;
    width: 280px;
    height: 220px;
    background: url('../images/frame3.png') center center no-repeat;
    background-size: 100% 100%;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.update-card-4 {
    position: relative;
    width: 280px;
    height: 220px;
    background: url('../images/frame4.png') center center no-repeat;
    background-size: 100% 100%;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.update-card:hover,
.update-card-2:hover,
.update-card-3:hover,
.update-card-4:hover {
    transform: translateY(-8px);
    filter: brightness(1.15);
    border-color: rgba(201, 168, 108, 0.5);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5), 0 0 20px rgba(201, 168, 108, 0.2);
}

.card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
}

.card-date {
    font-size: 10px;
    color: #6a6058;
}

.card-title {
    font-family: 'Cinzel', serif;
    font-size: 13px;
    font-weight: 700;
    color: #c9a86c;
    margin: 5px 0;
    text-transform: uppercase;
    transition: all 0.3s ease;
    text-shadow: 0 0 12px rgba(255, 50, 50, 0.5), 0 0 20px rgba(200, 30, 30, 0.3);
}

.update-card:hover,
.update-card-2:hover,
.update-card-3:hover,
.update-card-4:hover,
.card-title {
    text-shadow: 0 0 20px rgba(255, 60, 60, 0.9), 0 0 35px rgba(220, 40, 40, 0.6), 0 0 50px rgba(180, 20, 20, 0.4);
    color: #e0c080;
}

.card-text {
    font-size: 11px;
    color: #8a8078;
    line-height: 1.5;
}

/* ===================================
   WHY CHOOSE US / FEATURES SECTION
   =================================== */
.features-section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.features-wrapper {
    position: relative;
}

.features-grid {
    display: flex;
    justify-content: center;
    gap: 80px;
    flex-wrap: wrap;
    position: relative;
    padding-bottom: 0;
}

.feature-item {
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
}

.feature-item:hover {
    transform: translateY(-8px);
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
}

.feature-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0.7;
    transition: all 0.3s ease;
    filter: drop-shadow(0 0 5px rgba(201, 168, 108, 0.2));
}

.feature-item:hover .feature-icon img {
    opacity: 1;
    transform: scale(1.15);
    filter: drop-shadow(0 0 20px rgba(201, 168, 108, 0.6));
}

.feature-marker {
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 10px solid rgba(201, 168, 108, 0.5);
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.feature-item:hover .feature-marker {
    border-top-color: rgba(201, 168, 108, 0.9);
    filter: drop-shadow(0 0 5px rgba(201, 168, 108, 0.5));
}

.feature-label {
    font-family: 'Cinzel', serif;
    font-size: 12px;
    color: #8a8078;
    text-transform: capitalize;
    transition: all 0.3s ease;
    margin-top: 15px;
}

.feature-item:hover .feature-label {
    color: #c9a86c;
    text-shadow: 0 0 10px rgba(201, 168, 108, 0.5);
}

.features-line {
    display: flex;
    justify-content: center;
    margin-top: -25px;
    position: relative;
    z-index: 1;
}

.features-line img {
    width: 100%;
    max-width: 1000px;
    height: auto;
    opacity: 0.8;
}

/* ===================================
   FOOTER
   =================================== */
.footer {
    background: linear-gradient(180deg,
            transparent 0%,
            rgba(15, 10, 10, 0.9) 20%,
            rgba(10, 5, 5, 0.95) 100%);
    padding: 60px 40px 40px;
    margin-top: 60px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
}

.footer-about {
    flex: 1;
    max-width: 300px;
}

.footer-logo-text {
    font-family: 'Cinzel Decorative', serif;
    font-size: 24px;
    font-weight: 700;
    color: #c9a86c;
    margin-bottom: 15px;
    text-shadow: 0 0 20px rgba(255, 50, 50, 0.7), 0 0 40px rgba(220, 40, 40, 0.5);
}

.footer-description {
    font-size: 12px;
    color: #6a6058;
    line-height: 1.8;
}

.footer-logo {
    flex: 0 0 auto;
}

.footer-logo img {
    max-width: 200px;
    height: auto;
    opacity: 0.8;
    transition: all 0.3s ease;
    filter: drop-shadow(0 0 10px rgba(201, 168, 108, 0.2));
}

.footer-logo img:hover {
    opacity: 1;
    filter: drop-shadow(0 0 25px rgba(201, 168, 108, 0.5));
    transform: scale(1.05);
}

.footer-links {
    display: flex;
    gap: 60px;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-heading {
    font-family: 'Cinzel', serif;
    font-size: 14px;
    font-weight: 600;
    color: #c9a86c;
    margin-bottom: 10px;
    text-shadow: 0 0 15px rgba(255, 50, 50, 0.6), 0 0 30px rgba(200, 30, 30, 0.4);
}

.footer-column a {
    font-size: 12px;
    color: #6a6058;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.footer-column a:hover {
    color: #c9a86c;
    text-shadow: 0 0 10px rgba(201, 168, 108, 0.4);
    padding-left: 5px;
}

/* ===================================
   SCROLLBAR
   =================================== */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #1a1212;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #5a4030, #3a2820);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #6a5040, #4a3830);
}

/* ===================================
   RESPONSIVE
   =================================== */

/* Tablet and Small Desktop */
@media (max-width: 1200px) {
    html {
        zoom: 1;
    }

    .updates-cards {
        flex-wrap: wrap;
        justify-content: center;
    }

    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-about {
        max-width: 100%;
    }

    .footer-links {
        justify-content: center;
    }

    .hero-stats {
        gap: 50px;
    }
}

/* Tablet */
@media (max-width: 992px) {
    .header-container {
        padding: 0 20px;
    }

    .header-nav {
        gap: 25px;
    }

    .nav-link {
        font-size: 11px;
    }

    .online-status {
        left: 20px;
    }

    .language-selector {
        right: 20px;
    }

    .hero-logo img {
        max-width: 320px;
    }

    .welcome-text-box {
        padding: 20px 40px;
    }

    .update-card,
    .update-card-2,
    .update-card-3,
    .update-card-4 {
        width: 240px;
        height: 190px;
    }

    .features-grid {
        gap: 40px;
    }
}

/* Mobile Landscape and Small Tablet */
@media (max-width: 768px) {
    .header-container {
        justify-content: space-between;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .header-nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 280px;
        height: 100vh;
        background: rgba(10, 6, 8, 0.98);
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 80px 30px 30px;
        gap: 20px;
        transition: left 0.3s ease;
        border-right: 1px solid rgba(201, 168, 108, 0.3);
    }

    .header-nav.active {
        left: 0;
    }

    .nav-link {
        font-size: 14px;
        padding: 10px 0;
        width: 100%;
        border-bottom: 1px solid rgba(201, 168, 108, 0.1);
    }

    .nav-link.active {
        font-size: 14px;
    }

    .online-status {
        position: relative;
        left: 0;
    }

    .language-selector {
        position: relative;
        right: 0;
    }

    .hero-section {
        padding-top: 100px;
    }

    .hero-logo img {
        max-width: 280px;
    }

    .welcome-title {
        font-size: 18px;
        letter-spacing: 2px;
    }

    .welcome-box {
        padding: 20px;
    }

    .welcome-text-box {
        padding: 20px;
    }

    .welcome-text {
        font-size: 11px;
    }

    .welcome-text br {
        display: none;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .btn-download,
    .btn-register {
        min-width: 200px;
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 30px;
        padding: 0 20px;
    }

    .stat-number {
        font-size: 22px;
    }

    .section-title {
        font-size: 22px;
        letter-spacing: 2px;
    }

    .updates-slider {
        flex-direction: column;
        gap: 15px;
    }

    .updates-cards {
        flex-direction: column;
        align-items: center;
    }

    .slider-arrow {
        display: none;
    }

    .features-grid {
        gap: 25px;
        padding: 0 20px;
    }

    .feature-item {
        flex: 0 0 calc(33.333% - 20px);
    }

    .feature-icon {
        width: 45px;
        height: 45px;
    }

    .feature-label {
        font-size: 10px;
    }

    .footer {
        padding: 40px 20px;
    }

    .footer-links {
        flex-direction: column;
        gap: 30px;
    }

    .footer-logo img {
        max-width: 150px;
    }
}

/* Mobile Portrait */
@media (max-width: 480px) {
    .header {
        padding: 10px 0;
    }

    .header-container {
        padding: 0 15px;
    }

    .online-text {
        font-size: 10px;
    }

    .lang-current {
        padding: 6px 10px;
        font-size: 10px;
    }

    .hero-section {
        padding-top: 80px;
    }

    .hero-logo img {
        max-width: 220px;
    }

    .welcome-title {
        font-size: 16px;
    }

    .welcome-text {
        font-size: 10px;
        line-height: 1.6;
    }

    .hero-stats {
        gap: 20px;
    }

    .stat-item {
        flex: 0 0 calc(33.333% - 15px);
    }

    .stat-icon {
        width: 30px;
        height: 30px;
    }

    .stat-number {
        font-size: 18px;
    }

    .stat-label {
        font-size: 9px;
    }

    .section-title {
        font-size: 18px;
    }

    .section-subtitle {
        font-size: 11px;
        padding: 0 15px;
    }

    .update-card,
    .update-card-2,
    .update-card-3,
    .update-card-4 {
        width: 260px;
        height: 200px;
    }

    .feature-item {
        flex: 0 0 calc(50% - 15px);
    }

    .footer-logo-text {
        font-size: 20px;
    }

    .footer-description {
        font-size: 11px;
    }
}