/* Base Styles */
:root {
    --primary: #0066ff;
    --primary-dark: #0052cc;
    --primary-light: #4d94ff;
    --success: #10b981;
    --success-dark: #059669;
    --danger: #ef4444;
    --warning: #f59e0b;
    --info: #3b82f6;
    --dark: #0d1117;
    --darker: #0a0e14;
    --gray-dark: #1f2937;
    --gray: #374151;
    --gray-light: #6b7280;
    --gray-lighter: #9ca3af;
    --white: #ffffff;
    --purple: #8b5cf6;
    --purple-dark: #7c3aed;
    --green: #10b981;
    --green-dark: #059669;
    --yellow: #f59e0b;
    --yellow-dark: #d97706;
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--dark);
    color: var(--white);
    line-height: 1.6;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

/* Improved Typography */
h2 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--white);
}

h3 {
    font-size: 1.35rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    color: var(--white);
}

p {
    margin-bottom: 1.25rem;
    line-height: 1.7;
}

p:last-child {
    margin-bottom: 0;
}

/* Lists Styling */
.content-section ul:not(.nav-menu):not(.mobile-menu-items):not(.footer-links ul) {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.content-section ul:not(.nav-menu):not(.mobile-menu-items):not(.footer-links ul) li {
    margin-bottom: 0.85rem;
    line-height: 1.7;
}

/* Content Sections */
.content-section > .container > div[id] {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.content-section > .container > div[id]:last-child {
    border-bottom: none;
}

/* Links in Content */
.content-section a:not(.btn) {
    color: var(--primary-light);
    text-decoration: none;
    transition: color 0.2s ease;
}

.content-section a:not(.btn):hover {
    color: var(--primary);
    text-decoration: underline;
}

/* Last updated info */
.content-section > .container > div:last-of-type:not([id]) {
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    border-radius: 0.375rem;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
}

.btn-primary {
    background-color: var(--success);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--success-dark);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary);
    border: 1px solid var(--primary);
}

.btn-outline:hover {
    background-color: rgba(0, 102, 255, 0.1);
}

.btn-blue {
    background-color: var(--primary);
    color: var(--white);
}

.btn-blue:hover {
    background-color: var(--primary-dark);
}

.btn-success {
    background-color: var(--success);
    color: var(--white);
}

.btn-success:hover {
    background-color: var(--success-dark);
}

.btn-light {
    background-color: var(--white);
    color: var(--green-dark);
}

.btn-light:hover {
    background-color: #f3f4f6;
}

.btn-lg {
    padding: 0.75rem 2rem;
    font-size: 1.125rem;
}

.btn-block {
    display: block;
    width: 100%;
}

.btn-app {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
}

.btn-app i {
    font-size: 1.25rem;
}

/* Header Styles */
header {
    background-color: var(--darker);
    border-bottom: 1px solid #1a2233;
}

.top-bar {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left, .top-bar-right {
    display: flex;
    align-items: center;
}

.promo-badge {
    display: flex;
    align-items: center;
    background: linear-gradient(to right, var(--yellow), var(--yellow-dark));
    color: #000;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
}

.promo-badge i {
    margin-right: 0.25rem;
}

.top-link {
    display: flex;
    align-items: center;
    color: var(--white);
    margin-right: 1rem;
    font-size: 0.875rem;
}

.top-link i {
    margin-right: 0.25rem;
}

.language-selector {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.language-btn {
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    padding: 0;
    border: none;
    cursor: pointer;
    background: none;
}

.language-btn.active {
    box-shadow: 0 0 0 2px var(--primary);
}

.language-btn img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.main-nav {
    padding: 0.75rem 0;
}

.main-nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-left {
    display: flex;
    align-items: center;
}

.logo {
    margin-right: 2rem;
}

.logo img {
    height: 2.5rem;
}

.nav-menu {
    display: flex;
    gap: 1.5rem;
}

.nav-menu li a {
    display: flex;
    align-items: center;
    color: var(--white);
    font-weight: 500;
    transition: color 0.2s ease;
}

.nav-menu li a:hover {
    color: var(--primary-light);
}

.nav-menu li a i {
    margin-right: 0.25rem;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

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

.mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background-color: var(--darker);
    z-index: 1000;
    transition: left 0.3s ease;
    overflow-y: auto;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    padding: 1.5rem;
}

.mobile-menu.active {
    left: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.mobile-logo {
    height: 2rem;
}

.mobile-menu-close {
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.25rem;
    cursor: pointer;
}

.mobile-menu-items {
    margin-bottom: 2rem;
}

.mobile-menu-items li {
    margin-bottom: 1rem;
}

.mobile-menu-items li a {
    display: flex;
    align-items: center;
    padding: 0.5rem 1rem;
    color: var(--white);
    font-weight: 500;
    border-radius: 0.375rem;
    transition: background-color 0.2s ease;
}

.mobile-menu-items li a:hover {
    background-color: var(--gray-dark);
}

.mobile-menu-items li a i {
    margin-right: 0.75rem;
    color: var(--primary);
}

.mobile-menu-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

/* Hero Banner Styles */
.hero-banner {
    position: relative;
    background: linear-gradient(to right, var(--primary-dark), var(--primary));
    height: 400px;
    overflow: hidden;
}

.hero-banner .container {
    height: 100%;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 500px;
}

.hero-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--white);
}

.hero-content p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.hero-image {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem; /* Добавляет отступ внутри контейнера */
}

.hero-image img {
    max-height: 90%; /* Уменьшаем высоту с 100% до 90% */
    max-width: 90%; /* Добавляем ограничение ширины */
    object-fit: contain;
    border-radius: 20px; /* Добавляет закругленные края */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); /* Добавляет легкую тень для лучшего визуального эффекта */
}

.carousel-controls {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 3;
}

.carousel-btn {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.5);
    color: var(--white);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s ease;
}

.carousel-btn:hover {
    background-color: rgba(0, 0, 0, 0.7);
}

.decorative-circle {
    position: absolute;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    filter: blur(30px);
}

.circle-1 {
    width: 150px;
    height: 150px;
    top: 25%;
    left: 30%;
}

.circle-2 {
    width: 200px;
    height: 200px;
    bottom: 25%;
    left: 50%;
}

/* Categories Styles */
.categories {
    padding-top: 1em;
}

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

.category-card {
    border-radius: 0.5rem;
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    overflow: hidden;
}

.blue-gradient {
    background: linear-gradient(to right, #1a365d, #2563eb);
}

.purple-gradient {
    background: linear-gradient(to right, #4a1d96, #8b5cf6);
}

.green-gradient {
    background: linear-gradient(to right, #065f46, #10b981);
}

.category-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.category-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
}

.category-icon i {
    font-size: 2.5rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Section Headers */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.section-header h2 {
    font-size: 1.5rem;
    font-weight: 700;
}

.view-all {
    color: var(--primary-light);
    font-size: 0.875rem;
    transition: color 0.2s ease;
}

.view-all:hover {
    color: var(--primary);
}

/* Content Sections */
.intro-section, .content-section {
    padding: 3rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.intro-section h2, .content-section h2 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.intro-content p {
    margin-bottom: 2rem;
    font-size: 1.125rem;
}

.content-nav {
    background-color: var(--gray-dark);
    border-radius: 0.5rem;
    padding: 1.5rem;
}

.content-nav h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.content-nav ul {
    list-style: none;
}

.content-nav ul li {
    margin-bottom: 0.75rem;
}

.content-nav ul li a {
    color: var(--primary-light);
    transition: color 0.2s ease;
}

.content-nav ul li a:hover {
    color: var(--primary);
    text-decoration: underline;
}

.steps-container {
    margin: 2rem 0;
}

.step-item {
    display: flex;
    margin-bottom: 1.5rem;
}

.step-number {
    width: 2.5rem;
    height: 2.5rem;
    background-color: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-right: 1rem;
    flex-shrink: 0;
}

.step-content h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.note {
    background-color: rgba(16, 185, 129, 0.1);
    border-left: 4px solid var(--green);
    padding: 1rem;
    border-radius: 0.25rem;
    margin: 1.5rem 0;
}

.options-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.option-card {
    background-color: var(--gray-dark);
    border-radius: 0.5rem;
    padding: 1.5rem;
    display: flex;
    align-items: flex-start;
}

.option-icon {
    width: 3rem;
    height: 3rem;
    background-color: rgba(0, 102, 255, 0.1);
    color: var(--primary);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-right: 1rem;
    flex-shrink: 0;
}

.option-content h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.table-container {
    overflow-x: auto;
    margin: 2rem 0;
}

.bonus-table, .payment-table {
    width: 100%;
    border-collapse: collapse;
}

.bonus-table th, .payment-table th {
    background-color: var(--primary);
    color: var(--white);
    text-align: left;
    padding: 0.75rem 1rem;
}

.bonus-table td, .payment-table td {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.bonus-table tr:nth-child(even), .payment-table tr:nth-child(even) {
    background-color: rgba(255, 255, 255, 0.05);
}

.cta-container {
    margin: 2rem 0;
    text-align: center;
}

.app-container {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin: 2rem 0;
}

.app-content {
    flex: 1;
}

.app-content p {
    margin-bottom: 1.5rem;
}

.app-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.app-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.app-image img {
    max-width: 100%;
    height: auto;
    border-radius: 0.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.advantages-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.advantage-card {
    background-color: var(--gray-dark);
    border-radius: 0.5rem;
    padding: 1.5rem;
}

.advantage-icon {
    width: 3rem;
    height: 3rem;
    background-color: rgba(0, 102, 255, 0.1);
    color: var(--primary);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.advantage-content h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.live-games-container {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 2rem 0;
}

.live-game-card {
    background-color: var(--gray-dark);
    border-radius: 0.5rem;
    padding: 1.5rem;
    text-align: center;
    width: calc(20% - 0.8rem);
}

.live-game-icon {
    width: 3rem;
    height: 3rem;
    background-color: rgba(0, 102, 255, 0.1);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 1rem;
}

.live-game-card h4 {
    font-size: 1.125rem;
    font-weight: 600;
}

.faq-container {
    margin: 2rem 0;
}

.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 1rem;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    cursor: pointer;
}

.faq-question h4 {
    font-size: 1.125rem;
    font-weight: 600;
}

.faq-answer {
    padding: 0 0 1rem;
    display: none;
}

.faq-answer.active {
    display: block;
}

/* Tabs Styles */
.tabs {
    margin-bottom: 2rem;
}

.tab-header {
    display: flex;
    background-color: var(--gray-dark);
    border-radius: 0.375rem;
    margin-bottom: 1.5rem;
    overflow: hidden;
}

.tab-btn {
    padding: 0.75rem 1.5rem;
    background: none;
    border: none;
    color: var(--white);
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.tab-btn.active {
    background-color: var(--primary);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

/* Tournament Styles */
.tournaments {
    padding: 3rem 0;
}

.tournament-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1rem;
}

.tournament-card {
    background-color: var(--gray-dark);
    border-radius: 0.5rem;
    padding: 1.25rem;
    position: relative;
}

.tournament-card.special {
    border: 2px solid var(--yellow);
}

.special-badge {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to right, var(--yellow), var(--yellow-dark));
    color: #000;
    text-align: center;
    padding: 0.25rem;
    font-size: 0.75rem;
    font-weight: 600;
}

.tournament-card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.tournament-info {
    margin-bottom: 1.25rem;
}

.info-item {
    display: flex;
    align-items: center;
    color: var(--gray-lighter);
    margin-bottom: 0.5rem;
}

.info-item i {
    width: 1rem;
    margin-right: 0.5rem;
}

.info-item i.prize {
    color: var(--yellow);
}

/* Poker School Styles */

.course-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.course-card {
    background-color: var(--gray-dark);
    border-radius: 0.5rem;
    overflow: hidden;
}

.course-image {
    height: 180px;
    overflow: hidden;
}

.course-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.course-content {
    padding: 1.25rem;
}

.course-content h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.course-content p {
    color: var(--gray-lighter);
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.course-meta {
    display: flex;
    gap: 1rem;
}

.meta-item {
    display: flex;
    align-items: center;
    color: var(--gray-lighter);
    font-size: 0.75rem;
}

.meta-item i {
    margin-right: 0.25rem;
}

/* Responsible Gaming Styles */
.responsible-gaming {
    padding: 3rem 0;
}
.responsible-card {
    background: linear-gradient(to right, #065f46, #10b981);
    border-radius: 0.5rem;
    padding: 2rem;
    display: flex;
    flex-direction: column; /* Меняем на вертикальное расположение для мобильных */
    align-items: center;
}
.responsible-content {
    width: 100%; /* На мобильных занимает всю ширину */
    margin-bottom: 1.5rem; /* Отступ от контента до иконки */
}
.responsible-content h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}
.responsible-content p {
    margin-bottom: 1rem;
}
.responsible-list {
    list-style: disc;
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}
.responsible-list li {
    margin-bottom: 0.25rem;
}
.responsible-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 1rem;
}
.responsible-icon i {
    font-size: 4rem; /* Немного уменьшаем размер иконки на мобильных */
    color: rgba(255, 255, 255, 0.8);
}

/* Медиа-запрос для планшетов и десктопов */
@media (min-width: 768px) {
    .responsible-card {
        flex-direction: row; /* Возвращаем горизонтальное расположение */
        align-items: center;
    }
    .responsible-content {
        flex: 2;
        width: auto; /* Снимаем ограничение ширины */
        margin-bottom: 0; /* Убираем нижний отступ */
    }
    .responsible-icon {
        flex: 1;
        margin-top: 0;
    }
    .responsible-icon i {
        font-size: 5rem; /* Возвращаем оригинальный размер иконки */
    }
}

/* Footer Styles */
footer {
    background-color: var(--darker);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 3rem 0 1.5rem;
}

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

.footer-logo {
    height: 2.5rem;
    margin-bottom: 1rem;
}

.footer-about p {
    color: var(--gray-lighter);
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

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

.social-link {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background-color: var(--gray-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-lighter);
    transition: all 0.2s ease;
}

.social-link:hover {
    background-color: var(--primary);
    color: var(--white);
}

.footer-links h3,
.footer-contact h3,
.footer-responsible h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
}

.footer-links ul li {
    margin-bottom: 0.75rem;
}

.footer-links ul li a {
    color: var(--gray-lighter);
    transition: color 0.2s ease;
}

.footer-links ul li a:hover {
    color: var(--primary-light);
}

.footer-contact ul li {
    display: flex;
    align-items: flex-start;
    color: var(--gray-lighter);
    margin-bottom: 0.75rem;
}

.footer-contact ul li i {
    color: var(--primary);
    margin-right: 0.5rem;
    margin-top: 0.25rem;
}

.responsible-info {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.responsible-info i {
    color: var(--green);
    margin-right: 0.5rem;
    margin-top: 0.25rem;
}

.responsible-info p {
    color: var(--gray-lighter);
    font-size: 0.875rem;
}

.certification-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.certification-logos img {
    height: 2.5rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 1.5rem;
    text-align: center;
    color: var(--gray-lighter);
    font-size: 0.875rem;
}

.footer-legal {
    display: flex;
    justify-content: center;
    gap: 1rem;
}
.footer-legal a {
    color: var(--gray-lighter);
    transition: color 0.2s ease;
}

.footer-legal a:hover {
    color: var(--primary-light);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .responsible-card {
        flex-direction: column;
    }
    
    .responsible-icon {
        margin-top: 1.5rem;
    }
    
    .app-container {
        flex-direction: column;
    }
    
    .live-game-card {
        width: calc(33.33% - 0.67rem);
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero-banner {
        height: auto;
        padding: 3rem 0;
    }
    
    .hero-image {
        display: none;
    }
    
    .hero-content {
        max-width: 100%;
    }
    
    .categories-grid,
    .tournament-grid,
    .course-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-legal {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .hide-mobile {
        display: none;
    }
    
    .live-game-card {
        width: calc(50% - 0.5rem);
    }
    
    /* Responsive typography adjustments */
    h2 {
        font-size: 1.5rem;
        margin-bottom: 1.25rem;
    }
    
    h3 {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }
    
    .content-section > .container > div[id] {
        margin-bottom: 2rem;
        padding-bottom: 1.5rem;
    }
    
    .content-section ul:not(.nav-menu):not(.mobile-menu-items):not(.footer-links ul) {
        margin-left: 1rem;
    }
}

@media (max-width: 576px) {
    .tab-btn {
        padding: 0.5rem 1rem;
        font-size: 0.875rem;
    }
    
    .app-buttons {
        flex-direction: column;
    }
    
    .live-game-card {
        width: 100%;
    }
}

.hero-banner.poker-school {
    background: linear-gradient(to right, #4a1d96, #8b5cf6);
}

.skill-level {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
}

.skill-level-indicator {
    display: flex;
    margin-left: 0.5rem;
}

.skill-dot {
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 50%;
    margin-right: 0.25rem;
}

.skill-dot.filled {
    background-color: var(--primary);
}

.skill-dot.empty {
    border: 1px solid var(--primary);
}

.learning-path {
    position: relative;
    padding-left: 2rem;
    margin: 3rem 0;
}

.path-line {
    position: absolute;
    left: 0.75rem;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: var(--purple);
}

.path-item {
    position: relative;
    margin-bottom: 2.5rem;
}

.path-item:last-child {
    margin-bottom: 0;
}

.path-marker {
    position: absolute;
    left: -2rem;
    top: 0;
    width: 1.5rem;
    height: 1.5rem;
    background-color: var(--purple);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 0.75rem;
}

.path-content {
    background-color: var(--gray-dark);
    border-radius: 0.5rem;
    padding: 1.5rem;
}

.path-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.resource-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.resource-card {
    background-color: var(--gray-dark);
    border-radius: 0.5rem;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.resource-icon {
    width: 3rem;
    height: 3rem;
    background-color: rgba(139, 92, 246, 0.1);
    color: var(--purple);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.resource-content {
    flex: 1;
}

.resource-content h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.resource-content p {
    color: var(--gray-lighter);
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.resource-link {
    color: var(--purple);
    display: flex;
    align-items: center;
    font-weight: 500;
    margin-top: auto;
}

.resource-link i {
    margin-left: 0.25rem;
    transition: transform 0.2s ease;
}

.resource-link:hover i {
    transform: translateX(3px);
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.poker-card {
    background-color: var(--white);
    color: var(--dark);
    border-radius: 0.5rem;
    padding: 1rem;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.poker-card.spades, .poker-card.clubs {
    color: #000;
}

.poker-card.hearts, .poker-card.diamonds {
    color: #e53e3e;
}

.card-symbol {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.card-value {
    font-size: 1.5rem;
    font-weight: 700;
}

.hand-ranking {
    display: flex;
    align-items: center;
    background-color: var(--gray-dark);
    border-radius: 0.5rem;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.hand-image {
    width: 150px;
    height: 100px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    margin-right: 1.5rem;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hand-image img {
    max-width: 100%;
    max-height: 100%;
}

.hand-info h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.hand-info p {
    color: var(--gray-lighter);
}

.betting-rounds {
    display: flex;
    justify-content: space-between;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.betting-round {
    background-color: var(--gray-dark);
    border-radius: 0.5rem;
    padding: 1.5rem;
    width: calc(25% - 1rem);
    text-align: center;
    position: relative;
}

.round-arrow {
    position: absolute;
    top: 50%;
    right: -1rem;
    transform: translateY(-50%);
    color: var(--gray-lighter);
    font-size: 1.5rem;
    z-index: 1;
}

.betting-round:last-child .round-arrow {
    display: none;
}

.round-name {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.poker-term {
    background-color: var(--gray-dark);
    border-radius: 0.5rem;
    padding: 1.5rem;
    margin-bottom: 1rem;
}

.term-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.term-header h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0;
}

.term-content {
    margin-top: 1rem;
    display: none;
}

.term-content.active {
    display: block;
}

.strategy-tip {
    background-color: rgba(139, 92, 246, 0.1);
    border-left: 4px solid var(--purple);
    padding: 1rem;
    border-radius: 0.25rem;
    margin: 1.5rem 0;
}

.strategy-tip h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

.strategy-tip h4 i {
    margin-right: 0.5rem;
    color: var(--purple);
}

@media (max-width: 992px) {
    .betting-round {
        width: calc(50% - 0.5rem);
        margin-bottom: 1rem;
    }
    
    .round-arrow {
        display: none;
    }
}

@media (max-width: 768px) {
    .hand-ranking {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .hand-image {
        margin-right: 0;
        margin-bottom: 1rem;
        width: 100%;
    }
    
    .betting-round {
        width: 100%;
    }
    
    .card-grid {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    }
}

/* SVG Hand Combinations */
.hand-combinations {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.hand-svg {
    background-color: var(--gray-dark);
    border-radius: 0.5rem;
    padding: 1.5rem;
    text-align: center;
}

.hand-svg h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
}

.hand-svg svg {
    max-width: 100%;
    height: auto;
    margin: 0 auto;
}

/* Interactive Test Styles */
.poker-test {
    background-color: var(--gray-dark);
    border-radius: 0.5rem;
    padding: 2rem;
    margin: 2rem 0;
}

.poker-test h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-align: center;
}

.test-cards {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.test-options {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.test-option {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0.5rem;
    padding: 1rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.test-option:hover {
    background-color: rgba(255, 255, 255, 0.15);
}

.test-option.selected {
    background-color: var(--purple);
    border-color: var(--purple);
}

.test-option.correct {
    background-color: var(--green);
    border-color: var(--green);
}

.test-option.incorrect {
    background-color: var(--danger);
    border-color: var(--danger);
}

.test-result {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    padding: 1rem;
    text-align: center;
    margin-bottom: 1.5rem;
    display: none;
}

.test-result.correct {
    background-color: rgba(16, 185, 129, 0.2);
    border: 1px solid var(--green);
}

.test-result.incorrect {
    background-color: rgba(239, 68, 68, 0.2);
    border: 1px solid var(--danger);
}

.test-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.hero-banner.app-hero {
    background: linear-gradient(135deg, #1a365d 0%, #2563eb 100%);
    height: 500px;
}

.app-features {
    padding: 4rem 0;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.feature-card {
    background-color: var(--gray-dark);
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-icon {
    width: 4rem;
    height: 4rem;
    background-color: rgba(37, 99, 235, 0.1);
    color: var(--primary);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.download-section {
    background-color: var(--gray-dark);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.download-container {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.download-content {
    flex: 1;
}

.download-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.download-steps {
    margin: 2rem 0;
}

.download-step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.step-icon {
    width: 3rem;
    height: 3rem;
    background-color: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.step-content h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.download-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.download-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background-color: var(--white);
    color: var(--dark);
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    transition: all 0.2s ease;
}

.download-btn:hover {
    background-color: var(--gray-lighter);
}

.download-btn i {
    font-size: 1.5rem;
}

.download-qr {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-top: 2rem;
    padding: 1.5rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 0.75rem;
}

.qr-code {
    width: 8rem;
    height: 8rem;
    background-color: var(--white);
    border-radius: 0.5rem;
    padding: 0.5rem;
    flex-shrink: 0;
}

.qr-code img {
    width: 100%;
    height: 100%;
}

.qr-content h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.app-image {
    flex: 1;
    position: relative;
}

.phone-mockup {
    width: 280px;
    border-radius: 2rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.phone-1 {
    top: 0;
    left: 0;
    z-index: 3;
    transform: rotate(-5deg);
}

.phone-2 {
    top: 50px;
    left: 200px;
    z-index: 2;
    transform: rotate(5deg);
}

.testimonial-section {
    padding: 4rem 0;
}

.testimonial-slider {
    margin: 2rem 0;
    position: relative;
}

.testimonial-card {
    background-color: var(--gray-dark);
    border-radius: 1rem;
    padding: 2rem;
    margin: 1rem;
}

.testimonial-content {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: var(--gray-lighter);
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-avatar {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 1rem;
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-info h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.testimonial-info p {
    font-size: 0.875rem;
    color: var(--gray-lighter);
}

.testimonial-rating {
    display: flex;
    margin-top: 0.5rem;
}

.testimonial-rating i {
    color: var(--yellow);
    margin-right: 0.25rem;
}

.faq-section {
    padding: 4rem 0;
}

.app-screenshots {
    padding: 4rem 0;
    background-color: var(--gray-dark);
}

.screenshots-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

.screenshot-item {
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.screenshot-item img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.screenshot-item:hover img {
    transform: scale(1.05);
}

@media (max-width: 992px) {
    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .download-container {
        flex-direction: column;
    }
    
    .app-image {
        height: 400px;
        margin-top: 2rem;
    }
    
    .phone-1 {
        left: 50%;
        transform: translateX(-50%) rotate(-5deg);
    }
    
    .phone-2 {
        left: 50%;
        transform: translateX(-20%) rotate(5deg);
    }
    
    .screenshots-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .feature-grid {
        grid-template-columns: 1fr;
    }
    
    .download-buttons {
        flex-direction: column;
    }
    
    .download-qr {
        flex-direction: column;
        text-align: center;
    }
    
    .qr-code {
        margin: 0 auto 1rem;
    }
}