/* Основные стили для лендинга Gates of Olympus */
:root {
    --primary-color: #4A235A;     /* Темно-фиолетовый */
    --secondary-color: #5B2C6F;   /* Фиолетовый */
    --accent-color: #FFD700;      /* Золотой */
    --accent-dark: #FFA500;       /* Темно-золотой */
    --light-purple: #9B59B6;      /* Светло-фиолетовый */
    --dark-blue: #1A5276;         /* Темно-синий */
    --light-color: #F8F9FA;       /* Светлый фон */
    --dark-color: #2C3E50;        /* Темный текст */
    --white: #FFFFFF;             /* Белый */
    --gray: #E8E8E8;              /* Светло-серый */
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    --shadow-heavy: 0 20px 50px rgba(0, 0, 0, 0.25);
    --border-radius: 15px;
    --transition: all 0.3s ease;
    --container-width: 1200px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
    background-color: var(--white);
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3, h4 {
    font-family: 'Cinzel', serif;
    font-weight: 700;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
    font-size: 16px;
    line-height: 1.7;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 16px;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-play {
    background: linear-gradient(135deg, var(--accent-color), var(--accent-dark));
    color: var(--primary-color);
    font-weight: 700;
    padding: 16px 40px;
    font-size: 18px;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.btn-play:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-heavy);
    color: var(--primary-color);
}

.btn-play::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.7s ease;
}

.btn-play:hover::after {
    left: 100%;
}

.btn-demo {
    background-color: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.5);
    padding: 16px 40px;
    font-size: 18px;
    backdrop-filter: blur(5px);
}

.btn-demo:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
    border-color: var(--accent-color);
}

.btn-login {
    background-color: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 10px 24px;
}

.btn-login:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.6);
}

.btn-register {
    background-color: var(--accent-color);
    color: var(--primary-color);
    padding: 10px 24px;
    font-weight: 700;
}

.btn-register:hover {
    background-color: var(--accent-dark);
    transform: translateY(-2px);
}

.btn-cta {
    background: linear-gradient(135deg, var(--accent-color), var(--accent-dark));
    color: var(--primary-color);
    font-weight: 700;
    padding: 18px 45px;
    font-size: 20px;
    box-shadow: var(--shadow);
    margin-top: 20px;
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-heavy);
}

.btn-icon {
    margin-right: 10px;
    font-size: 1.2em;
}

/* Header & Navigation */
.header {
    background-color: rgba(26, 82, 118, 0.95);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo {
    display: flex;
    align-items: center;
    font-weight: 700;
    color: var(--white);
}

.logo-symbol {
    font-size: 36px;
    margin-right: 12px;
    color: var(--accent-color);
    font-weight: 900;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-main {
    font-size: 22px;
    font-weight: 800;
    letter-spacing: 1px;
}

.logo-sub {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 2px;
    opacity: 0.8;
}

.nav-menu {
    display: flex;
}

.nav-menu li {
    margin: 0 12px;
}

.nav-menu a {
    color: var(--white);
    font-weight: 500;
    padding: 8px 0;
    position: relative;
    font-size: 15px;
}

.nav-menu a:hover {
    color: var(--accent-color);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    bottom: 0;
    left: 0;
    transition: var(--transition);
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    padding: 0;
}

.menu-line {
    width: 100%;
    height: 3px;
    background-color: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}

.menu-toggle.active .menu-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.menu-toggle.active .menu-line:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active .menu-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--dark-blue) 0%, var(--primary-color) 100%);
    color: var(--white);
    padding: 180px 0 100px;
    margin-top: 80px;
    overflow: hidden;
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,0 L100,100 Z" fill="rgba(255,215,0,0.05)"/></svg>');
    background-size: cover;
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;

    /* было 900px — из-за этого игра никогда не станет широкой */
    max-width: var(--container-width);
    margin: 0 auto;
}

/* чтобы тексты не растягивались на всю ширину, а игра — да */
.hero-titles,
.hero-stats,
.hero-actions {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}


.hero-titles {
    margin-bottom: 40px;
}

.hero-title {
    font-size: 72px;
    color: var(--accent-color);
    margin-bottom: 10px;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
    letter-spacing: 3px;
}

.hero-subtitle {
    font-size: 32px;
    color: var(--white);
    margin-bottom: 25px;
    font-weight: 500;
    letter-spacing: 2px;
}

.hero-description {
    font-size: 20px;
    margin-bottom: 50px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
    min-width: 140px;
}

.stat-value {
    display: block;
    font-size: 42px;
    font-weight: 800;
    color: var(--accent-color);
    margin-bottom: 5px;
    font-family: 'Cinzel', serif;
}

.stat-label {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-actions {
    display: flex;
    gap: 25px;
    justify-content: center;
    margin-bottom: 60px;
}

.hero-game-image {
    margin-top: 30px;
    width: 100%;
}

.game-frame {
    width: 100%;
    display: block;              /* вместо inline-block */
    padding: 12px;               /* было 30px — съедало площадь */
    border-radius: 18px;
    overflow: hidden;            /* чтобы скругление работало и на iframe */
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 215, 0, 0.2);
    box-shadow: var(--shadow);
}

/* сам iframe растягиваем “под красную линию” по ширине контейнера */
.game-frame .game-iframe,
.game-frame #iframe {
    display: block;
    width: 100%;
    height: clamp(520px, 62vh, 760px); /* ключевая строка: высота на десктопе */
    border: 0;
    border-radius: 12px;
    background: #000; /* чтобы не было белых вспышек при загрузке */
}


.game-symbols {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: repeat(5, 1fr);
    gap: 15px;
    width: 400px;
    height: 300px;
}

.symbol {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    border: 1px solid rgba(255, 215, 0, 0.1);
    transition: var(--transition);
}

.symbol:hover {
    transform: scale(1.05);
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.3), rgba(255, 165, 0, 0.2));
}

.symbol-zeus {
    color: #FFD700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.symbol-athena {
    color: #9B59B6;
    text-shadow: 0 0 10px rgba(155, 89, 182, 0.5);
}

.symbol-poseidon {
    color: #3498DB;
    text-shadow: 0 0 10px rgba(52, 152, 219, 0.5);
}

.symbol-hera {
    color: #E74C3C;
    text-shadow: 0 0 10px rgba(231, 76, 60, 0.5);
}

/* Section Common Styles */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), var(--accent-dark));
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.section-subtitle {
    color: var(--secondary-color);
    font-size: 18px;
    margin-top: 25px;
    opacity: 0.8;
}

/* About Section */
.about-section {
    padding: 100px 0;
    background-color: var(--light-color);
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
}

.about-block {
    margin-bottom: 40px;
}

.block-title {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(74, 35, 90, 0.1);
}

.feature-list {
    margin: 20px 0;
    padding-left: 20px;
}

.feature-list li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
}

.feature-list li::before {
    content: '⚡';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.visual-card {
    background: linear-gradient(135deg, var(--white), #F8F9FA);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(74, 35, 90, 0.1);
}

.visual-title {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 25px;
    text-align: center;
}

.specs-table {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.spec-row {
    display: flex;
    justify-content: space-between;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(74, 35, 90, 0.1);
}

.spec-row:last-child {
    border-bottom: none;
}

.spec-name {
    font-weight: 600;
    color: var(--primary-color);
}

.spec-value {
    font-weight: 500;
    color: var(--secondary-color);
    text-align: right;
}

/* Mechanics Section */
.mechanics-section {
    padding: 100px 0;
    background-color: var(--white);
}

.mechanics-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 60px;
}

.multiplier-chart {
    background: linear-gradient(135deg, var(--white), #F8F9FA);
    border-radius: var(--border-radius);
    padding: 25px;
    margin: 25px 0;
    box-shadow: var(--shadow);
}

.chart-title {
    font-size: 18px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.chart-bars {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.chart-bar {
    height: 35px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 15px;
    color: var(--primary-color);
    font-weight: 600;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.chart-bar:hover {
    transform: translateX(5px);
}

.bar-label {
    z-index: 1;
}

.bar-value {
    font-size: 14px;
    z-index: 1;
}

.bonus-features {
    margin: 25px 0;
}

.bonus-feature {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
    padding: 20px;
    background: linear-gradient(135deg, rgba(155, 89, 182, 0.1), rgba(74, 35, 90, 0.05));
    border-radius: var(--border-radius);
    border-left: 4px solid var(--light-purple);
}

.bonus-icon {
    font-size: 32px;
    min-width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--light-purple), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.bonus-text h4 {
    font-size: 18px;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.bonus-text p {
    font-size: 14px;
    color: var(--secondary-color);
    margin-bottom: 0;
}

.probability-table {
    margin-top: 30px;
}

.probability-table h4 {
    font-size: 18px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.probability-table table {
    width: 100%;
    border-collapse: collapse;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.probability-table th {
    background-color: var(--primary-color);
    color: var(--white);
    font-weight: 600;
    padding: 15px;
    text-align: left;
}

.probability-table td {
    padding: 15px;
    border-bottom: 1px solid rgba(74, 35, 90, 0.1);
}

.probability-table tr:nth-child(even) {
    background-color: rgba(74, 35, 90, 0.05);
}

.probability-table tr:hover {
    background-color: rgba(255, 215, 0, 0.1);
}

.mechanics-diagram {
    margin-top: 80px;
}

.diagram-title {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 40px;
    text-align: center;
}

.diagram-container {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 40px;
    height: 300px;
    padding: 0 20px;
}

.diagram-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 120px;
}

.diagram-bar {
    width: 60px;
    border-radius: 5px 5px 0 0;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 10px;
    color: var(--white);
    font-weight: 600;
    position: relative;
    transition: var(--transition);
}

.diagram-bar:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.diagram-label {
    margin-top: 15px;
    text-align: center;
    font-weight: 600;
    color: var(--primary-color);
    font-size: 14px;
}

/* Comparison Section */
.comparison-section {
    padding: 100px 0;
    background-color: var(--light-color);
}

.comparison-table-container {
    overflow-x: auto;
    margin-bottom: 60px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 800px;
}

.comparison-table th {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    font-weight: 600;
    padding: 20px;
    text-align: left;
    font-size: 16px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.comparison-table th:last-child {
    border-right: none;
}

.comparison-table td {
    padding: 20px;
    border-bottom: 1px solid rgba(74, 35, 90, 0.1);
    border-right: 1px solid rgba(74, 35, 90, 0.1);
}

.comparison-table td:last-child {
    border-right: none;
}

.comparison-table tr:nth-child(even) {
    background-color: rgba(74, 35, 90, 0.05);
}

.comparison-table tr:hover {
    background-color: rgba(255, 215, 0, 0.1);
}

.comparison-table strong {
    color: var(--accent-dark);
    font-weight: 700;
}

.comparison-summary {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(155, 89, 182, 0.1));
    border-radius: var(--border-radius);
    padding: 40px;
    border: 2px solid rgba(255, 215, 0, 0.3);
}

.summary-title {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 30px;
    text-align: center;
}

.summary-points {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.summary-point {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.point-icon {
    font-size: 32px;
    min-width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-color), var(--accent-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    flex-shrink: 0;
}

.point-text h4 {
    font-size: 18px;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.point-text p {
    font-size: 14px;
    color: var(--secondary-color);
    margin-bottom: 0;
}

/* Features Section */
.features-section {
    padding: 100px 0;
    background-color: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.feature-card {
    background: linear-gradient(135deg, var(--white), #F8F9FA);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(74, 35, 90, 0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
    border-color: var(--accent-color);
}

.feature-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--white);
}

.feature-title {
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.feature-description {
    color: var(--secondary-color);
    line-height: 1.6;
    flex-grow: 1;
}

.features-cta {
    text-align: center;
    padding: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: var(--border-radius);
    color: var(--white);
}

.cta-title {
    font-size: 32px;
    color: var(--white);
    margin-bottom: 20px;
}

.cta-note {
    margin-top: 20px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

/* Reviews Section */
.reviews-section {
    padding: 100px 0;
    background-color: var(--light-color);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.review-card {
    background: linear-gradient(135deg, var(--white), #F8F9FA);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-heavy);
}

.review-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.review-avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-color), var(--accent-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--primary-color);
    font-weight: 700;
    margin-right: 15px;
    flex-shrink: 0;
}

.review-author {
    flex: 1;
}

.review-name {
    font-size: 18px;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.review-rating {
    color: var(--accent-color);
    font-size: 18px;
}

.star {
    margin-right: 2px;
}

.review-text {
    color: var(--secondary-color);
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 20px;
    border-left: 3px solid var(--accent-color);
    padding-left: 15px;
}

.review-footer {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid rgba(74, 35, 90, 0.1);
    padding-top: 15px;
    color: var(--secondary-color);
    font-size: 14px;
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background-color: var(--white);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 15px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid rgba(74, 35, 90, 0.1);
}

.faq-question {
    padding: 25px 30px;
    background: linear-gradient(135deg, var(--light-color), #F8F9FA);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
}

.faq-question:hover {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 165, 0, 0.05));
}

.faq-question h3 {
    font-size: 18px;
    color: var(--primary-color);
    margin: 0;
}

.faq-toggle {
    color: var(--accent-color);
    font-size: 24px;
    font-weight: 700;
    transition: var(--transition);
    min-width: 24px;
    text-align: center;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
    color: var(--accent-dark);
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background-color: var(--white);
}

.faq-item.active .faq-answer {
    padding: 30px;
    max-height: 500px;
}

.faq-answer p {
    margin: 0;
    color: var(--secondary-color);
    line-height: 1.6;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--dark-blue), var(--primary-color));
    color: var(--white);
    padding: 80px 0 40px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.footer-logo {
    flex: 1;
    min-width: 300px;
    margin-bottom: 30px;
    padding-right: 30px;
}

.footer-logo .logo {
    margin-bottom: 25px;
    display: inline-flex;
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 25px;
    line-height: 1.6;
    font-size: 15px;
}

.footer-links {
    flex: 2;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.footer-column {
    min-width: 180px;
    margin-bottom: 30px;
}

.footer-title {
    font-size: 18px;
    color: var(--accent-color);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 2px;
    background-color: var(--accent-color);
    bottom: 0;
    left: 0;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
    font-size: 15px;
}

.footer-column a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.footer-copyright {
    flex: 1;
    min-width: 300px;
    margin-bottom: 20px;
}

.footer-copyright p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    margin-bottom: 10px;
}

.footer-warning {
    display: flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
    margin-top: 15px;
}

.footer-payment {
    flex: 1;
    min-width: 300px;
    margin-bottom: 20px;
}

.payment-icons {
    display: flex;
    justify-content: flex-end;
    gap: 20px;
    font-size: 28px;
}

.payment-icon {
    opacity: 0.8;
    transition: var(--transition);
}

.payment-icon:hover {
    opacity: 1;
    transform: translateY(-3px);
    color: var(--accent-color);
}

