:root {
    --primary-red: #e53e3e;
    --dark-red: #c53030;
    --darker-red: #9b2c2c;
    --deep-red: #742a2a;
    --black-red: #2d1b1b;
    --accent-gold: #f6ad55;
    --text-light: #f7fafc;
    --text-gray: #dfdfdf;
    --bg-dark: #1a202c;
    --bg-darker: #0f1419;
    --gradient-primary: linear-gradient(135deg, var(--primary-red), var(--dark-red));
    --gradient-dark: linear-gradient(135deg, var(--dark-red), var(--darker-red));
    --shadow-card: 0 10px 25px rgba(229, 62, 62, 0.15);
    --shadow-hover: 0 20px 40px rgba(229, 62, 62, 0.25);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg-darker);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
    padding-top: 80px;

}



.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    box-sizing: border-box;
    padding-left: 10px;
    padding-right: 10px;
}


.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    min-width: 100vw;
    background: rgba(26, 32, 44, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(229, 62, 62, 0.2);
    z-index: 1000;
    transition: all 0.3s ease;
}

.site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}

.logo {
    display: flex;
}

.logo img {
    max-height: 50px;
    object-fit: contain;
}

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
}

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

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

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

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

.user-controls {
    display: flex;
    gap: 1rem;
}

.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--text-light);
    box-shadow: var(--shadow-card);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

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

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

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 1.5rem;
    cursor: pointer;
}


.language-switcher {
    display: flex;
    margin: 0 2rem;
}

.lang-dropdown {
    position: relative;
    z-index: 1001;
}

.lang-dropdown-btn {
    background: rgba(26, 32, 44, 0.8);
    border: 1px solid rgba(229, 62, 62, 0.3);
    color: var(--text-light);
    padding: 0.6rem 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    backdrop-filter: blur(10px);
    min-width: 120px;
}

.lang-dropdown-btn:hover {
    border-color: var(--primary-red);
    background: rgba(26, 32, 44, 0.9);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(229, 62, 62, 0.2);
}

.lang-dropdown-btn.active {
    border-color: var(--primary-red);
    background: rgba(229, 62, 62, 0.1);
}

.lang-flag {
    font-size: 1.2rem;
}

.lang-text {
    font-weight: 600;
}

.lang-arrow {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
    margin-left: auto;
}

.lang-dropdown-btn.active .lang-arrow {
    transform: rotate(180deg);
}

.lang-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(26, 32, 44, 0.95);
    border: 1px solid rgba(229, 62, 62, 0.2);
    border-radius: 8px;
    backdrop-filter: blur(15px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 10000;
    margin-top: 0.5rem;
}

.lang-dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-option {
    padding: 0.8rem 1rem;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    border-bottom: 1px solid rgba(229, 62, 62, 0.1);
    text-decoration: none;
    color: var(--text-light);
}

.lang-option:last-child {
    border-bottom: none;
}

.lang-option:hover {
    background: rgba(229, 62, 62, 0.1);
}

.lang-option.active {
    background: rgba(229, 62, 62, 0.2);
    color: var(--primary-red);
}

.lang-option .lang-flag {
    font-size: 1.1rem;
}

.lang-option .lang-text {
    font-size: 0.9rem;
    font-weight: 500;
}

.mobile-language-switcher {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 2rem;
    border-bottom: 1px solid rgba(229, 62, 62, 0.1);
    margin-bottom: 1rem;
}

.mobile-language-switcher span {
    color: var(--text-gray);
    font-size: 0.9rem;
    font-weight: 500;
}

.mobile-lang-dropdown {
    position: relative;
    flex: 1;
    z-index: 10000;
}

.mobile-lang-dropdown-btn {
    background: rgba(26, 32, 44, 0.8);
    border: 1px solid rgba(229, 62, 62, 0.3);
    color: var(--text-light);
    padding: 0.5rem 0.8rem;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
}

.mobile-lang-dropdown-btn:hover {
    border-color: var(--primary-red);
    background: rgba(26, 32, 44, 0.9);
}

.mobile-lang-dropdown-btn.active {
    border-color: var(--primary-red);
    background: rgba(229, 62, 62, 0.1);
}

.mobile-lang-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(26, 32, 44, 0.95);
    border: 1px solid rgba(229, 62, 62, 0.2);
    border-radius: 6px;
    backdrop-filter: blur(15px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 10000;
    margin-top: 0.5rem;
}

.mobile-lang-dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mobile-menu {
    display: none;
}





.hero {
    padding-top: 0px;
    background: linear-gradient(135deg, var(--bg-darker) 0%, var(--black-red) 50%, var(--deep-red) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(229,62,62,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}


.hero::after {
    content: '';
    position: absolute;
    top: 70%;
    right: 0%;
    width: 700px;
    height: 350px;
    background: url('/img/aviator.png') no-repeat center;
    background-size: contain;
    transform: translateY(-50%);
    animation: floatPlane 3s ease-in-out infinite;
    z-index: 1;
}

@keyframes floatPlane {

    0%,
    100% {
        transform: translateY(-50%) translateY(0px);
    }

    50% {
        transform: translateY(-50%) translateY(-15px);
    }
}

@keyframes floatPlaneMobile {

    0%,
    100% {
        transform: translateX(50%) translateY(-50%) translateY(0px);
    }

    50% {
        transform: translateX(50%) translateY(-50%) translateY(-15px);
    }
}

@keyframes trailEffect {

    0%,
    100% {
        opacity: 0.3;
    }

    50% {
        opacity: 0.5;
    }
}


.hero::after {
    filter: drop-shadow(0 0 10px rgba(229, 62, 62, 0.3));
    transition: all 0.3s ease;
}

.hero::after:hover {
    filter: drop-shadow(0 0 20px rgba(246, 173, 85, 0.5));
}

.hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 4rem 0;
}

.hero__content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--text-light), var(--accent-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero__content p {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.hero__stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin: 3rem 0;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-red);
}

.stat-label {
    color: var(--text-gray);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}


section {
    padding: 1rem 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    background: linear-gradient(135deg, var(--text-light), var(--primary-red));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.card {
    background: rgba(26, 32, 44, 0.8);
    border: 1px solid rgba(229, 62, 62, 0.2);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-red);
}

.card h3 {
    color: var(--primary-red);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

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

.img-text {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    margin: 1.5rem 0;
}

.img-text img {
    max-width: 70%;
    border-radius: 16px;
    margin: 10px auto;
    display: block;
}

.img-text h2,
.text-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.img-text h3,
.text-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.img-text p,
.text-content p {
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

.img-text ul,
.text-content ul {
    margin-bottom: 1rem;
    padding-left: 1rem;
}

.img-text ol,
.text-content ol {
    margin-bottom: 1rem;
    padding-left: 1rem;
}

.img-text li,
.text-content li {
    margin-bottom: 0.5rem;
    color: var(--text-gray);
}

.img-text .btn-primary {
    margin: 0px auto;
    display: block;
}

.img-text {
    max-width: 100%;
}

.table-container {
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
    background-color: #1a1f2c;
    color: #d1d5db;
    margin-bottom: 1rem;
}

table th,
table td {
    border: 1px solid rgba(229, 62, 62, 0.3);
    padding: 12px 16px;
    text-align: left;
}

table tr:first-child td {
    background-color: rgba(229, 62, 62, 0.3);
    font-weight: bold;
}


table tr:nth-child(even) {
    background-color: #232837;
}

.table tr:hover {
    background-color: #2f3548;
}

table p {
    margin-bottom: 0px;
}

.text-left {
    flex-direction: row;
}

.text-right {
    flex-direction: row-reverse !important;
}

.text-center {
    flex-direction: column;
    width: 100%;
}

.text-left img,
.text-right img {
    max-width: 50%;
}

@media (max-width: 768px) {
    .text-left {
        flex-direction: column;
    }

    .text-right {
        flex-direction: column !important;
    }

    .text-center {
        flex-direction: column;
    }

    .text-left img,
    .text-right img,
    .text-center img {
        max-width: 100%;
    }

    .img-text div {
        width: 100%;
        max-width: 100%;
    }
}


.game-preview {
    background: var(--bg-dark);
    position: relative;
}


.casino-showcase {
    background: linear-gradient(135deg, var(--bg-darker) 0%, var(--black-red) 100%);
    padding: 1rem 0;
    position: relative;
    overflow: hidden;
}

.casino-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="casinoGrid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="rgba(229,62,62,0.05)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23casinoGrid)"/></svg>');
    opacity: 0.3;
}

.casino-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 1rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.casino-card {
    background: rgba(26, 32, 44, 0.9);
    border: 1px solid rgba(229, 62, 62, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.casino-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(229, 62, 62, 0.2);
    border-color: rgba(229, 62, 62, 0.4);
}

.casino-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 10;
    animation: badgePulse 2s ease-in-out infinite;
}

.casino-badge.new {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.casino-badge.top {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

@keyframes badgePulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}


.casino-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(229, 62, 62, 0.3);
    border-color: var(--primary-red);
}


.casino-image {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    min-width: 80px;
    flex-shrink: 0;
    width: 250px;
}

.casino-logo-img {
    max-width: 250px;
    border-radius: 12px;
    object-fit: cover;
}

.casino-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex: 1;
    min-width: 200px;
}

.casino-info p {
    color: var(--text-light);
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0;
}

.casino-bonus {
    color: var(--primary-red);
    font-size: 1rem;
    font-weight: 600;
}

.casino-right {
    display: flex;
    align-items: center;
    gap: 2rem;
    min-width: 300px;
    flex-shrink: 0;
}

.casino-features {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    min-width: 180px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-gray);
    font-size: 0.85rem;
}

.feature-icon {
    font-size: 1rem;
    width: 16px;
    text-align: center;
}

.casino-action {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 100px;
}

.casino-btn {
    background: var(--primary-red);
    color: white;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.casino-btn:hover {
    background: var(--dark-red);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(229, 62, 62, 0.3);
}

.casino-rating {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.stars {
    color: var(--accent-gold);
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.rating-score {
    color: var(--text-gray);
    font-weight: 600;
    font-size: 0.8rem;
}


.bonus-amount {
    color: var(--text-light);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    position: relative;
    z-index: 1;
}

.bonus-text {
    color: var(--accent-gold);
    font-size: 0.8rem;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.casino-btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    white-space: nowrap;
    min-width: 100px;
}

.casino-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.casino-btn:hover::before {
    left: 100%;
}

.casino-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(229, 62, 62, 0.4);
}


@keyframes shine {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}


.site-footer {
    background: var(--black-red);
    border-top: 1px solid rgba(229, 62, 62, 0.2);
    padding: 3rem 0 1rem;
}

.footer-cols {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-col h3 {
    color: var(--primary-red);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 0.5rem;
}

.footer-col a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: var(--primary-red);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-link {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: var(--primary-red);
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    color: var(--text-light);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-card);
}

.copyright {
    text-align: center;
    color: var(--text-gray);
    font-size: 0.9rem;
    border-top: 1px solid rgba(229, 62, 62, 0.2);
    padding-top: 1rem;
}

.copyright a {
    color: var(--primary-red);
    text-decoration: none;
    transition: all 0.3s ease;
}

.text-img {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 2rem 0;
}


@media (max-width: 768px) {
    .main-nav {
        display: none;
    }

    .language-switcher {
        display: none;
    }

    .user-controls {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .mobile-menu {
        display: none;
        background: rgba(26, 32, 44, 0.98);
        backdrop-filter: blur(10px);
        border-top: 1px solid rgba(229, 62, 62, 0.2);
        padding: 1rem 0;
    }

    .mobile-menu.active {
        display: block;
    }

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

    .mobile-menu li {
        border-bottom: 1px solid rgba(229, 62, 62, 0.1);
    }

    .mobile-menu li:last-child {
        border-bottom: none;
    }

    .mobile-menu a {
        display: block;
        padding: 1rem 2rem;
        color: var(--text-light);
        text-decoration: none;
        font-weight: 500;
        transition: all 0.3s ease;
    }

    .mobile-menu a:hover {
        background: rgba(229, 62, 62, 0.1);
        color: var(--primary-red);
    }

    .mobile-menu .btn {
        margin: 1rem 2rem;
        text-align: center;
        display: block;
        width: calc(100% - 4rem);
    }

    .mobile-menu .btn:hover {
        transform: none;
    }

    .hero__content h1 {
        font-size: 2.5rem;
    }

    .hero__stats {
        gap: 1.5rem;
        padding-top: 100px;
    }

    .hero {
        padding-top: 30px;
    }


    .hero::after {
        top: 80%;
        right: 50%;
        transform: translateX(50%) translateY(-50%);
        width: 400px;
        height: 200px;
        animation: floatPlaneMobile 3s ease-in-out infinite;

    }

    .hero__content {
        padding: 0;
        padding-bottom: 10rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .site-header .container {
        max-width: 100%;
    }


    .casino-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1.5rem;
        overflow-x: visible;
        padding-bottom: 0;
    }

    .casino-card {
        min-width: auto;
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
        padding: 1rem;
    }

    .casino-image {
        order: 1;
        justify-content: space-between;
        width: 100%;
        min-width: auto;
        flex-shrink: 0;
    }


    .casino-info {
        order: 2;
        min-width: auto;
        flex: 1;
    }

    .casino-info p {
        font-size: 1.1rem;
    }

    .casino-right {
        order: 3;
        min-width: auto;
        flex-shrink: 0;
        flex-direction: column;
        gap: 1rem;
    }

    .casino-features {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 0.75rem;
        margin-bottom: 0;
        min-width: auto;
    }

    .feature-item {
        font-size: 0.8rem;
    }

    .casino-action {
        width: 100%;
        justify-content: center;
    }

    .casino-btn {
        width: 100%;
        max-width: 200px;
    }
}

@media (max-width: 480px) {
    .container {
        width: 100%;
    }

    .site-header .container {
        padding-left: 15px;
        padding-right: 15px;
    }

    .hero__content h1 {
        font-size: 2rem;
    }

    .card-grid {
        grid-template-columns: 1fr;
    }


    .hero::after {
        width: 300px;
        height: 200px;
        animation: floatPlaneMobile 3s ease-in-out infinite;

    }
}


.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.dropdown-toggle:hover {
    color: var(--primary-red);
}

.dropdown-toggle .arrow {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--bg-dark);
    border: 1px solid rgba(229, 62, 62, 0.3);
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    padding: 0.5rem 0;
    margin-top: 5px;
    display: flex;
    flex-direction: column;
    gap: 0px;
}

.dropdown-menu {
    gap: 0px !important;
}

.dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a:hover::after {
    content: '';
    background: none;

}

.dropdown-menu li {
    list-style: none;
    width: 100%;
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1rem;
    color: var(--text-light);
    text-decoration: none;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
    width: 100%;
    box-sizing: border-box;
}

.dropdown-menu a:hover {
    background: rgba(229, 62, 62, 0.1);
    color: var(--primary-red);
    border-left-color: var(--primary-red);
}


.mobile-dropdown {
    position: relative;
}

.mobile-dropdown-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 1rem 0;
    color: var(--text-light);
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
}

.mobile-dropdown-toggle .arrow {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.mobile-dropdown-menu {
    background: rgba(229, 62, 62, 0.05);
    border-left: 3px solid var(--primary-red);
    margin-left: 1rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    display: flex;
    flex-direction: column;
}

.mobile-dropdown-menu.show {
    max-height: 500px;
}

.mobile-dropdown-menu li {
    list-style: none;
    width: 100%;
}

.mobile-dropdown-menu a {
    display: block;
    padding: 0.75rem 1rem;
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    width: 100%;
    box-sizing: border-box;
}

.mobile-dropdown-menu a:hover {
    color: var(--primary-red);
    background: rgba(229, 62, 62, 0.1);
}


@media (max-width: 768px) {
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: transparent;
        border: none;
        box-shadow: none;
        padding: 0;
        margin-left: 1rem;
        border-left: 3px solid var(--primary-red);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        display: flex;
        flex-direction: column;
    }

    .dropdown-menu.show {
        max-height: 500px;
    }

    .dropdown-toggle {
        justify-content: space-between;
        width: 100%;
        padding: 1rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
}

.text-content {
    max-width: 100%;
    width: 100%;
    margin-bottom: 1rem;
}

.text-content img {
    max-width: 70%;
    margin: 10px auto;
    display: block;
    border-radius: 16px;
}

@media (max-width: 768px) {
    .text-content img {
        max-width: 100%;
    }

    .footer-cols {
        display: flex;
        flex-wrap: wrap;
    }
}

.text-content .play {
    display: flex;
    justify-content: center;
    margin-top: 1rem;
}