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

:root {
    --header-bg: #172333;
    --btn-register: #d0003e;
    --btn-play: #ecfd00;
    --text-light: #ffffff;
    --nav-hover: rgba(255, 255, 255, 0.1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
}

main {
    min-height: 100vh;
}

body.menu-open {
    overflow: hidden;
}

.site-header {
    background-color: var(--header-bg);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-logo {
    flex: 0 0 auto;
}

.header-logo a {
    display: block;
    line-height: 0;
}

.header-logo img {
    height: 65px;
    width: auto;
    display: block;
}

.burger-menu {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    position: relative;
    width: 35px;
    height: 35px;
    flex-shrink: 0;
}

.burger-menu:focus {
    outline: 2px solid var(--btn-play);
    outline-offset: 2px;
    border-radius: 4px;
}

.burger-line {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--text-light);
    transition: all 0.3s ease;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.burger-line:nth-child(1) {
    top: 8px;
}

.burger-line:nth-child(2) {
    top: 50%;
    transform: translate(-50%, -50%);
}

.burger-line:nth-child(3) {
    bottom: 8px;
}

.burger-menu.active .burger-line:nth-child(1) {
    top: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
}

.burger-menu.active .burger-line:nth-child(2) {
    opacity: 0;
}

.burger-menu.active .burger-line:nth-child(3) {
    top: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
}

.header-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-list {
    list-style: none;
    display: flex;
    gap: 3rem;
}

.nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.nav-link:hover {
    background-color: var(--nav-hover);
}

.nav-link:focus {
    outline: 2px solid var(--btn-play);
    outline-offset: 2px;
}

.header-actions {
    display: flex;
    gap: 1rem;
    flex: 0 0 auto;
}

.btn {
    padding: 0.75rem 2rem;
    text-decoration: none;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
    font-size: 1rem;
    border: 2px solid transparent;
}

.btn-register {
    background-color: var(--btn-register);
    color: var(--text-light);
}

.btn-register:hover {
    background-color: #b00035;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(208, 0, 62, 0.3);
}

.btn-register:focus {
    outline: 2px solid var(--btn-play);
    outline-offset: 2px;
}

.btn-play {
    background-color: var(--btn-play);
    color: #000;
}

.btn-play:hover {
    background-color: #d9e600;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(236, 253, 0, 0.3);
}

.btn-play:focus {
    outline: 2px solid var(--btn-register);
    outline-offset: 2px;
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--header-bg);
    padding: 1rem 0;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.mobile-nav.active {
    transform: translateY(-100%);
}

.mobile-nav-list {
    list-style: none;
    padding: 0 1rem;
}

.mobile-nav-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav-item:last-child {
    border-bottom: none;
}

.mobile-nav-link {
    display: block;
    color: var(--text-light);
    text-decoration: none;
    padding: 1rem;
    font-size: 1.1rem;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.mobile-nav-link:hover,
.mobile-nav-link:focus {
    background-color: var(--nav-hover);
}

@media (max-width: 768px) {
    .header-container {
        flex-wrap: nowrap;
        padding: 0 1rem;
    }
    
    .header-logo {
        flex: 0 0 auto;
    }
    
    .header-logo img {
        height: 50px;
    }
    
    .burger-menu {
        display: flex;
        align-items: center;
        justify-content: center;
        order: 2;
        flex: 0 0 auto;
        margin: 0 1rem;
    }
    
    .header-nav {
        display: none;
    }
    
    .header-actions {
        order: 3;
        flex: 0 0 auto;
        justify-content: flex-end;
    }
    
    .mobile-nav {
        display: block;
    }
    
    .btn {
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .header-container {
        padding: 0 0.75rem;
    }
    
    .header-logo img {
        height: 45px;
    }
    
    .header-actions {
        gap: 0.5rem;
    }
    
    .btn {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }
}

.hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('/assets/background.webp');
    background-size: cover;
    background-position: 35% center;
    background-repeat: no-repeat;
    z-index: 1;
}

.hero-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(23, 35, 51, 0.95) 0%, rgba(23, 35, 51, 0.85) 50%, rgba(208, 0, 62, 0.3) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
    padding: 4rem 0;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-text {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto 2.5rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-cta {
    display: inline-block;
    padding: 1rem 3rem;
    background-color: var(--btn-play);
    color: #000;
    text-decoration: none;
    font-size: 1.125rem;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(236, 253, 0, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-cta:hover {
    background-color: #d9e600;
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(236, 253, 0, 0.5);
}

.hero-cta:focus {
    outline: 2px solid var(--btn-register);
    outline-offset: 3px;
}

@media (max-width: 768px) {
    .hero {
        min-height: 500px;
    }
    
    .hero-background {
        background-position: 65% center;
    }
    
    .hero-content {
        padding: 3rem 0;
    }
    
    .hero-container {
        padding: 0 1.5rem;
    }
    
    .hero-title {
        font-size: 2rem;
        margin-bottom: 1.25rem;
    }
    
    .hero-text {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .hero-cta {
        padding: 0.875rem 2.5rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: 450px;
    }
    
    .hero-background {
        background-position: 60% center;
    }
    
    .hero-content {
        padding: 2.5rem 0;
    }
    
    .hero-container {
        padding: 0 1rem;
    }
    
    .hero-title {
        font-size: 1.5rem;
    }
    
    .hero-text {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .hero-cta {
        padding: 0.75rem 2rem;
        font-size: 0.95rem;
    }
}

.info-section {
    background-color: #131e2c;
    padding: 5rem 0;
}

.info-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.info-table-wrapper {
    display: flex;
    justify-content: center;
}

.info-table {
    width: 100%;
    max-width: 500px;
    border-collapse: separate;
    border-spacing: 0;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.info-table tbody tr {
    transition: background-color 0.3s ease;
}

.info-table tbody tr:hover {
    background-color: rgba(255, 255, 255, 0.08);
}

.info-table td {
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.info-table tr:last-child td {
    border-bottom: none;
}

.table-label {
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    text-align: left;
}

.table-value {
    color: var(--text-light);
    font-size: 1rem;
    text-align: right;
    font-weight: 500;
}

.info-image-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.info-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.info-image:hover {
    transform: scale(1.02);
}

@media (max-width: 768px) {
    .info-section {
        padding: 3rem 0;
    }
    
    .info-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 0 1.5rem;
    }
    
    .info-table-wrapper {
        order: 1;
    }
    
    .info-image-wrapper {
        order: 2;
    }
    
    .info-table {
        max-width: 100%;
    }
    
    .info-table td {
        padding: 1rem 1.25rem;
    }
    
    .table-label,
    .table-value {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .info-section {
        padding: 2.5rem 0;
    }
    
    .info-container {
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .info-table td {
        padding: 0.875rem 1rem;
    }
    
    .table-label,
    .table-value {
        font-size: 0.9rem;
    }
}

.registration-section {
    background-color: #172333;
    padding: 5rem 0;
}

.registration-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.registration-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 3rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.registration-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: start;
    margin-bottom: 3rem;
}

.registration-intro {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.registration-steps {
    list-style: none;
    counter-reset: step-counter;
    padding-left: 0;
}

.registration-steps li {
    position: relative;
    padding-left: 3rem;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    font-size: 1rem;
    counter-increment: step-counter;
}

.registration-steps li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 2rem;
    height: 2rem;
    background-color: var(--btn-play);
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.875rem;
}

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

.registration-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.registration-footer {
    margin-top: 3rem;
}

.registration-conclusion {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin-bottom: 3rem;
}

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

.registration-btn {
    display: inline-block;
    padding: 1rem 3rem;
    background-color: var(--btn-register);
    color: var(--text-light);
    text-decoration: none;
    font-size: 1.125rem;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(208, 0, 62, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.registration-btn:hover {
    background-color: #b00035;
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(208, 0, 62, 0.5);
}

.registration-btn:focus {
    outline: 2px solid var(--btn-play);
    outline-offset: 3px;
}

@media (max-width: 768px) {
    .registration-section {
        padding: 3rem 0;
    }
    
    .registration-container {
        padding: 0 1.5rem;
    }
    
    .registration-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .registration-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .registration-image {
        order: -1;
        margin-bottom: 1rem;
    }
    
    .registration-intro,
    .registration-conclusion {
        font-size: 1rem;
    }
    
    .registration-steps li {
        font-size: 0.95rem;
        padding-left: 2.5rem;
        margin-bottom: 1.25rem;
    }
    
    .registration-steps li::before {
        width: 1.75rem;
        height: 1.75rem;
        font-size: 0.75rem;
    }
    
    .registration-btn {
        padding: 0.875rem 2.5rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .registration-section {
        padding: 2.5rem 0;
    }
    
    .registration-container {
        padding: 0 1rem;
    }
    
    .registration-title {
        font-size: 1.5rem;
    }
    
    .registration-intro,
    .registration-conclusion {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .registration-steps li {
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    .registration-btn {
        padding: 0.75rem 2rem;
        font-size: 0.95rem;
    }
}

.bonuses-section {
    background-color: #131e2c;
    padding: 5rem 0;
}

.bonuses-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.bonuses-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 3rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.bonuses-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    align-items: center;
    margin-bottom: 3rem;
}

.bonuses-image {
    width: 100%;
    max-width: 600px;
}

.bonuses-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.bonuses-text {
    width: 100%;
}

.bonuses-intro {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.bonus-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.bonus-item {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--btn-play);
    transition: background-color 0.3s ease, transform 0.3s ease;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
}

.bonus-item:hover {
    background-color: rgba(255, 255, 255, 0.08);
    transform: translateX(5px);
}

.bonus-item strong {
    color: var(--text-light);
    font-weight: 600;
    font-size: 1.1rem;
}

.bonuses-conclusion {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin-top: 2.5rem;
}

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

.bonuses-btn {
    display: inline-block;
    padding: 1rem 3rem;
    background-color: var(--btn-play);
    color: #000;
    text-decoration: none;
    font-size: 1.125rem;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(236, 253, 0, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.bonuses-btn:hover {
    background-color: #d9e600;
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(236, 253, 0, 0.5);
}

.bonuses-btn:focus {
    outline: 2px solid var(--btn-register);
    outline-offset: 3px;
}

@media (max-width: 768px) {
    .bonuses-section {
        padding: 3rem 0;
    }
    
    .bonuses-container {
        padding: 0 1.5rem;
    }
    
    .bonuses-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .bonuses-content {
        gap: 2rem;
    }
    
    .bonuses-image {
        max-width: 100%;
    }
    
    .bonuses-intro,
    .bonuses-conclusion {
        font-size: 1rem;
    }
    
    .bonus-item {
        padding: 1.25rem;
        font-size: 0.95rem;
    }
    
    .bonus-item strong {
        font-size: 1rem;
    }
    
    .bonuses-btn {
        padding: 0.875rem 2.5rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .bonuses-section {
        padding: 2.5rem 0;
    }
    
    .bonuses-container {
        padding: 0 1rem;
    }
    
    .bonuses-title {
        font-size: 1.5rem;
    }
    
    .bonuses-intro,
    .bonuses-conclusion {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .bonus-item {
        padding: 1rem;
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    .bonus-item strong {
        font-size: 0.95rem;
    }
    
    .bonuses-btn {
        padding: 0.75rem 2rem;
        font-size: 0.95rem;
    }
}

.payment-section {
    background-color: #172333;
    padding: 5rem 0;
}

.payment-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.payment-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 3rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.payment-intro-wrapper {
    margin-bottom: 3rem;
}

.payment-intro {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin-bottom: 2rem;
}

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

.payment-image-center img {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.payment-list-full {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.payment-item {
    padding-left: 2rem;
    position: relative;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
}

.payment-item::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--btn-play);
    font-weight: bold;
    font-size: 1.2rem;
}

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

.payment-note-full {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    padding: 1rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border-left: 3px solid var(--btn-register);
    margin-bottom: 2rem;
}

.payment-conclusion {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin-bottom: 3rem;
}

.payment-table-wrapper {
    overflow-x: auto;
}

.payment-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.payment-table tbody tr {
    transition: background-color 0.3s ease;
}

.payment-table tbody tr:hover {
    background-color: rgba(255, 255, 255, 0.08);
}

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

.payment-table tr:last-child td {
    border-bottom: none;
}

.payment-icon {
    font-size: 1.5rem;
    text-align: center;
    width: 60px;
}

.payment-method {
    font-weight: 600;
    color: var(--text-light);
    font-size: 1rem;
    white-space: nowrap;
}

.payment-details {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .payment-section {
        padding: 3rem 0;
    }
    
    .payment-container {
        padding: 0 1.5rem;
    }
    
    .payment-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .payment-intro,
    .payment-conclusion {
        font-size: 1rem;
    }
    
    .payment-image-center img {
        max-width: 100%;
    }
    
    .payment-item {
        font-size: 0.95rem;
    }
    
    .payment-table td {
        padding: 1rem 0.75rem;
    }
    
    .payment-icon {
        font-size: 1.25rem;
    }
    
    .payment-method {
        font-size: 0.9rem;
    }
    
    .payment-details {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .payment-section {
        padding: 2.5rem 0;
    }
    
    .payment-container {
        padding: 0 1rem;
    }
    
    .payment-title {
        font-size: 1.5rem;
    }
    
    .payment-intro,
    .payment-conclusion {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .payment-item {
        font-size: 0.9rem;
        line-height: 1.6;
        padding-left: 1.5rem;
    }
    
    .payment-note-full {
        font-size: 0.9rem;
        padding: 0.75rem;
    }
    
    .payment-table td {
        padding: 0.75rem 0.5rem;
    }
    
    .payment-icon {
        font-size: 1rem;
        width: 40px;
    }
    
    .payment-method {
        font-size: 0.85rem;
    }
    
    .payment-details {
        font-size: 0.8rem;
    }
}

.games-section {
    background-color: #131e2c;
    padding: 5rem 0;
}

.games-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.games-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 3rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.games-intro-wrapper {
    margin-bottom: 3rem;
}

.games-intro {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
}

.games-image {
    display: flex;
    justify-content: center;
    margin-bottom: 3rem;
}

.games-image img {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.games-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.game-category {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--btn-play);
    transition: background-color 0.3s ease, transform 0.3s ease;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
}

.game-category:hover {
    background-color: rgba(255, 255, 255, 0.08);
    transform: translateX(5px);
}

.game-category strong {
    color: var(--text-light);
    font-weight: 600;
    font-size: 1.1rem;
}

.games-conclusion {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin-bottom: 3rem;
}

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

.games-btn {
    display: inline-block;
    padding: 1rem 3rem;
    background-color: var(--btn-register);
    color: var(--text-light);
    text-decoration: none;
    font-size: 1.125rem;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(208, 0, 62, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.games-btn:hover {
    background-color: #b00035;
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(208, 0, 62, 0.5);
}

.games-btn:focus {
    outline: 2px solid var(--btn-play);
    outline-offset: 3px;
}

@media (max-width: 768px) {
    .games-section {
        padding: 3rem 0;
    }
    
    .games-container {
        padding: 0 1.5rem;
    }
    
    .games-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .games-image img {
        max-width: 100%;
    }
    
    .games-intro,
    .games-conclusion {
        font-size: 1rem;
    }
    
    .game-category {
        padding: 1.25rem;
        font-size: 0.95rem;
    }
    
    .game-category strong {
        font-size: 1rem;
    }
    
    .games-btn {
        padding: 0.875rem 2.5rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .games-section {
        padding: 2.5rem 0;
    }
    
    .games-container {
        padding: 0 1rem;
    }
    
    .games-title {
        font-size: 1.5rem;
    }
    
    .games-intro,
    .games-conclusion {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .game-category {
        padding: 1rem;
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    .game-category strong {
        font-size: 0.95rem;
    }
    
    .games-btn {
        padding: 0.75rem 2rem;
        font-size: 0.95rem;
    }
}

.sports-section {
    background-color: #172333;
    padding: 5rem 0;
}

.sports-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.sports-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 3rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.sports-intro-wrapper {
    margin-bottom: 3rem;
}

.sports-intro {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
}

.sports-image {
    display: flex;
    justify-content: center;
    margin-bottom: 3rem;
}

.sports-image img {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.sports-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.sports-item {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--btn-register);
    transition: background-color 0.3s ease, transform 0.3s ease;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
}

.sports-item:hover {
    background-color: rgba(255, 255, 255, 0.08);
    transform: translateX(5px);
}

.sports-item strong {
    color: var(--text-light);
    font-weight: 600;
    font-size: 1.1rem;
}

.sports-conclusion {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
}

@media (max-width: 768px) {
    .sports-section {
        padding: 3rem 0;
    }
    
    .sports-container {
        padding: 0 1.5rem;
    }
    
    .sports-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .sports-image img {
        max-width: 100%;
    }
    
    .sports-intro,
    .sports-conclusion {
        font-size: 1rem;
    }
    
    .sports-item {
        padding: 1.25rem;
        font-size: 0.95rem;
    }
    
    .sports-item strong {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .sports-section {
        padding: 2.5rem 0;
    }
    
    .sports-container {
        padding: 0 1rem;
    }
    
    .sports-title {
        font-size: 1.5rem;
    }
    
    .sports-intro,
    .sports-conclusion {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .sports-item {
        padding: 1rem;
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    .sports-item strong {
        font-size: 0.95rem;
    }
}

.live-section {
    background-color: #131e2c;
    padding: 5rem 0;
}

.live-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.live-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 3rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.live-intro-wrapper {
    margin-bottom: 3rem;
}

.live-intro {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
}

.live-image {
    display: flex;
    justify-content: center;
    margin-bottom: 3rem;
}

.live-image img {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.live-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.live-item {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--btn-play);
    transition: background-color 0.3s ease, transform 0.3s ease;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
}

.live-item:hover {
    background-color: rgba(255, 255, 255, 0.08);
    transform: translateX(5px);
}

.live-item strong {
    color: var(--text-light);
    font-weight: 600;
    font-size: 1.1rem;
}

.live-conclusion {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
}

@media (max-width: 768px) {
    .live-section {
        padding: 3rem 0;
    }
    
    .live-container {
        padding: 0 1.5rem;
    }
    
    .live-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .live-image img {
        max-width: 100%;
    }
    
    .live-intro,
    .live-conclusion {
        font-size: 1rem;
    }
    
    .live-item {
        padding: 1.25rem;
        font-size: 0.95rem;
    }
    
    .live-item strong {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .live-section {
        padding: 2.5rem 0;
    }
    
    .live-container {
        padding: 0 1rem;
    }
    
    .live-title {
        font-size: 1.5rem;
    }
    
    .live-intro,
    .live-conclusion {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .live-item {
        padding: 1rem;
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    .live-item strong {
        font-size: 0.95rem;
    }
}

.horse-section {
    background-color: #172333;
    padding: 5rem 0;
}

.horse-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.horse-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 3rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.horse-intro-wrapper {
    margin-bottom: 3rem;
}

.horse-intro {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
}

.horse-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: start;
    margin-bottom: 3rem;
}

.horse-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.horse-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.horse-item {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--btn-register);
    transition: background-color 0.3s ease, transform 0.3s ease;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
}

.horse-item:hover {
    background-color: rgba(255, 255, 255, 0.08);
    transform: translateX(5px);
}

.horse-item strong {
    color: var(--text-light);
    font-weight: 600;
    font-size: 1.1rem;
}

.horse-conclusion {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
}

@media (max-width: 768px) {
    .horse-section {
        padding: 3rem 0;
    }
    
    .horse-container {
        padding: 0 1.5rem;
    }
    
    .horse-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .horse-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .horse-image {
        order: -1;
    }
    
    .horse-intro,
    .horse-conclusion {
        font-size: 1rem;
    }
    
    .horse-item {
        padding: 1.25rem;
        font-size: 0.95rem;
    }
    
    .horse-item strong {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .horse-section {
        padding: 2.5rem 0;
    }
    
    .horse-container {
        padding: 0 1rem;
    }
    
    .horse-title {
        font-size: 1.5rem;
    }
    
    .horse-intro,
    .horse-conclusion {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .horse-item {
        padding: 1rem;
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    .horse-item strong {
        font-size: 0.95rem;
    }
}

.support-section {
    background-color: #131e2c;
    padding: 5rem 0;
}

.support-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.support-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 3rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.support-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    align-items: center;
}

.support-description {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
}

.support-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .support-section {
        padding: 3rem 0;
    }
    
    .support-container {
        padding: 0 1.5rem;
    }
    
    .support-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .support-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .support-image {
        order: -1;
    }
    
    .support-description {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .support-section {
        padding: 2.5rem 0;
    }
    
    .support-container {
        padding: 0 1rem;
    }
    
    .support-title {
        font-size: 1.5rem;
    }
    
    .support-description {
        font-size: 0.95rem;
        line-height: 1.6;
    }
}

.faq-section {
    background-color: #172333;
    padding: 5rem 0;
}

.faq-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.faq-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 3rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.faq-intro-wrapper {
    margin-bottom: 3rem;
}

.faq-intro {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    margin-bottom: 1rem;
    padding-top: 1rem;
    transition: background-color 0.3s ease;
}

.faq-item:hover {
    background-color: rgba(255, 255, 255, 0.08);
}

.faq-question {
    width: 100%;
    background: transparent;
    border: none;
    padding: 1.5rem;
    padding-top: 0.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    transition: all 0.3s ease;
}

.faq-question h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-light);
    margin: 0;
    flex: 1;
}

.faq-icon {
    width: 24px;
    height: 24px;
    position: relative;
    flex-shrink: 0;
    margin-left: 1rem;
}

.faq-icon::before,
.faq-icon::after {
    content: '';
    position: absolute;
    background-color: var(--btn-play);
    transition: all 0.3s ease;
}

.faq-icon::before {
    width: 100%;
    height: 3px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.faq-icon::after {
    width: 3px;
    height: 100%;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.faq-question[aria-expanded="true"] .faq-icon::after {
    transform: translateX(-50%) rotate(90deg);
    opacity: 0;
}

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

.faq-answer p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    padding-bottom: 1.5rem;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 1.5rem;
}

.faq-item.active {
    background-color: rgba(255, 255, 255, 0.08);
}

@media (max-width: 768px) {
    .faq-section {
        padding: 3rem 0;
    }
    
    .faq-container {
        padding: 0 1.5rem;
    }
    
    .faq-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .faq-intro {
        font-size: 1rem;
    }
    
    .faq-question h3 {
        font-size: 1.125rem;
    }
    
    .faq-answer p {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .faq-section {
        padding: 2.5rem 0;
    }
    
    .faq-container {
        padding: 0 1rem;
    }
    
    .faq-title {
        font-size: 1.5rem;
    }
    
    .faq-intro {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .faq-question {
        padding: 1.25rem;
        padding-top: 0.5rem;
    }
    
    .faq-question h3 {
        font-size: 1rem;
    }
    
    .faq-answer p {
        font-size: 0.9rem;
        line-height: 1.6;
        padding-bottom: 1.25rem;
    }
}

.site-footer {
    background-color: #0f1823;
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.footer-logo {
    text-align: center;
    margin-bottom: 3rem;
}

.footer-logo a {
    display: inline-block;
    line-height: 0;
}

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

.footer-payment {
    text-align: center;
    margin-bottom: 3rem;
}

.payment-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.payment-methods {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.payment-methods img {
    height: 40px;
    width: auto;
    aspect-ratio: 2/1;
    object-fit: contain;
    filter: brightness(0.9);
    transition: filter 0.3s ease, transform 0.3s ease;
}

.payment-methods img:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
}

.footer-disclaimers {
    max-width: 900px;
    margin: 0 auto 3rem;
    padding: 2rem;
    background-color: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.disclaimer,
.responsible-gaming {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.disclaimer:last-child,
.responsible-gaming:last-child {
    margin-bottom: 0;
}

.disclaimer strong,
.responsible-gaming strong {
    color: var(--btn-play);
    font-weight: 600;
    display: block;
    margin-bottom: 0.5rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.copyright {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 768px) {
    .site-footer {
        padding: 3rem 0 1.5rem;
    }
    
    .footer-container {
        padding: 0 1.5rem;
    }
    
    .footer-logo {
        margin-bottom: 2rem;
    }
    
    .footer-logo img {
        height: 50px;
    }
    
    .payment-methods {
        gap: 1.5rem;
    }
    
    .payment-methods img {
        height: 35px;
    }
    
    .footer-disclaimers {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .disclaimer,
    .responsible-gaming {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .site-footer {
        padding: 2.5rem 0 1rem;
    }
    
    .footer-container {
        padding: 0 1rem;
    }
    
    .footer-logo img {
        height: 45px;
    }
    
    .payment-title {
        font-size: 1.125rem;
    }
    
    .payment-methods {
        gap: 1rem;
    }
    
    .payment-methods img {
        height: 30px;
    }
    
    .footer-disclaimers {
        padding: 1.25rem;
    }
    
    .disclaimer,
    .responsible-gaming {
        font-size: 0.85rem;
        line-height: 1.5;
    }
    
    .copyright {
        font-size: 0.85rem;
    }
}

.mobile-hero-section {
    background: linear-gradient(rgba(23, 35, 51, 0.85), rgba(23, 35, 51, 0.85)), url('/assets/background.webp') center/cover;
    background-position: 35% center;
    padding: 60px 20px;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.mobile-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.mobile-hero-section h1 {
    color: #ffffff;
    font-size: 2.5rem;
    margin-bottom: 30px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.mobile-intro-text {
    color: #ffffff;
    font-size: 1.1rem;
    line-height: 1.8;
    margin: 30px auto;
    max-width: 900px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.mobile-hero-image {
    margin-top: 40px;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.mobile-hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

.mobile-android-section {
    background-color: #131e2c;
    padding: 60px 20px;
}

.mobile-content-container {
    max-width: 1200px;
    margin: 0 auto;
}

.mobile-two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.mobile-ios-reverse {
    grid-template-columns: 1fr 1fr;
}

.mobile-android-image,
.mobile-ios-image {
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    max-width: 400px;
    margin: 0 auto;
}

.mobile-android-image img,
.mobile-ios-image img {
    width: 100%;
    height: auto;
    display: block;
}

.mobile-full-width-content {
    margin-top: 40px;
    max-width: 100%;
}

.mobile-full-width-content p {
    color: #ffffff;
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: left;
}

.intlink {
    color: var(--btn-play);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

.intlink:hover {
    color: #ffffff;
    text-shadow: 0 0 8px var(--btn-play);
    text-decoration: underline;
}

.intlink:focus {
    outline: 2px solid var(--btn-play);
    outline-offset: 2px;
    border-radius: 2px;
}

.mobile-android-section h2,
.mobile-ios-section h2,
.mobile-download-section h2 {
    color: #ffffff;
    font-size: 2rem;
    margin-bottom: 30px;
    font-weight: 600;
}

.mobile-text-content p {
    color: #ffffff;
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: left;
}

.mobile-ios-section {
    background-color: #172333;
    padding: 60px 20px;
}



.mobile-ios-content p {
    color: #ffffff;
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: left;
}

.mobile-cta-wrapper {
    text-align: center;
    margin-top: 40px;
}

.mobile-download-section {
    background-color: #131e2c;
    padding: 60px 20px;
}

.mobile-download-intro {
    color: #ffffff;
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 40px;
    text-align: left;
}

.mobile-download-platforms {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin: 40px 0;
}

.mobile-platform-item {
    background: rgba(23, 35, 51, 0.6);
    padding: 30px;
    border-radius: 10px;
    border-left: 4px solid var(--btn-play);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mobile-platform-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(236, 253, 0, 0.1);
}

.mobile-platform-item h3 {
    color: #ffffff;
    font-size: 1.5rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.mobile-platform-item p {
    color: #ffffff;
    font-size: 1rem;
    line-height: 1.8;
    text-align: left;
}

.mobile-download-conclusion {
    color: #ffffff;
    font-size: 1rem;
    line-height: 1.8;
    margin-top: 40px;
    text-align: left;
}

@media (max-width: 768px) {
    .mobile-hero-section {
        background-position: 65% center;
        min-height: 50vh;
    }
    
    .mobile-hero-section h1 {
        font-size: 2rem;
    }
    
    .mobile-intro-text {
        font-size: 1rem;
    }
    
    .mobile-two-column {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .mobile-ios-reverse {
        grid-template-columns: 1fr;
    }
    
    .mobile-android-section h2,
    .mobile-ios-section h2,
    .mobile-download-section h2 {
        font-size: 1.5rem;
    }
    
    .mobile-download-platforms {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .mobile-platform-item {
        padding: 20px;
    }
    
    .mobile-platform-item h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .mobile-hero-section {
        background-position: 70% center;
    }
}

.apuesta-hero-section {
    background: linear-gradient(rgba(23, 35, 51, 0.85), rgba(23, 35, 51, 0.85)), url('/assets/background.webp') center/cover;
    background-position: 35% center;
    padding: 60px 20px;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.apuesta-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.apuesta-hero-section h1 {
    color: #ffffff;
    font-size: 2.5rem;
    margin-bottom: 30px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.apuesta-intro-text {
    color: #ffffff;
    font-size: 1.1rem;
    line-height: 1.8;
    margin: 30px auto;
    max-width: 900px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.apuesta-registration-section {
    background-color: #131e2c;
    padding: 60px 20px;
}

.apuesta-content-container {
    max-width: 1200px;
    margin: 0 auto;
}

.apuesta-two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.apuesta-deposit-reverse {
    grid-template-columns: 1fr 1fr;
}

.apuesta-registration-section h2,
.apuesta-deposit-section h2,
.apuesta-betting-section h2,
.apuesta-support-section h2 {
    color: #ffffff;
    font-size: 2rem;
    margin-bottom: 30px;
    font-weight: 600;
}

.apuesta-text-content p,
.apuesta-deposit-content p,
.apuesta-betting-content p,
.apuesta-support-content p {
    color: #ffffff;
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: left;
}

.apuesta-registration-image,
.apuesta-deposit-image {
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    max-width: 400px;
    margin: 0 auto;
}

.apuesta-registration-image img,
.apuesta-deposit-image img {
    width: 100%;
    height: auto;
    display: block;
}

.apuesta-cta-wrapper {
    text-align: center;
    margin-top: 40px;
}

.apuesta-deposit-section {
    background-color: #172333;
    padding: 60px 20px;
}

.apuesta-betting-section {
    background-color: #131e2c;
    padding: 60px 20px;
}

.apuesta-betting-content {
    margin-bottom: 50px;
}

.apuesta-subsections {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.apuesta-subsection {
    background: rgba(23, 35, 51, 0.6);
    padding: 30px;
    border-radius: 10px;
    border-left: 4px solid var(--btn-play);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.apuesta-subsection:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(236, 253, 0, 0.1);
}

.apuesta-subsection h3 {
    color: #ffffff;
    font-size: 1.5rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.apuesta-subsection p {
    color: #ffffff;
    font-size: 1rem;
    line-height: 1.8;
    text-align: left;
}

.apuesta-support-section {
    background-color: #172333;
    padding: 60px 20px;
}

@media (max-width: 768px) {
    .apuesta-hero-section {
        background-position: 65% center;
        min-height: 50vh;
    }
    
    .apuesta-hero-section h1 {
        font-size: 2rem;
    }
    
    .apuesta-intro-text {
        font-size: 1rem;
    }
    
    .apuesta-two-column {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .apuesta-deposit-reverse {
        grid-template-columns: 1fr;
    }
    
    .apuesta-registration-section h2,
    .apuesta-deposit-section h2,
    .apuesta-betting-section h2,
    .apuesta-support-section h2 {
        font-size: 1.5rem;
    }
    
    .apuesta-subsections {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .apuesta-subsection {
        padding: 20px;
    }
    
    .apuesta-subsection h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .apuesta-hero-section {
        background-position: 70% center;
    }
} 