@font-face {
    font-family: "Oswald";
    src: url("./../fonts/Oswald/Oswald-Regular.ttf");
    font-weight: regular;
    font-style: normal;
}

@font-face {
    font-family: "Oswald";
    src: url("./../fonts/Oswald/Oswald-Bold.ttf");
    font-weight: bold;
    font-style: normal;
}

html {
    font-family: "Oswald", sans-serif;
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
}
:root {
    --bg-dark: #232b39;
    --bg-darker: #1a202c;
    --primary: #6c63ff;
    --secondary: #a259ff;
    --btn-blue: #3b82f6;
    --btn-purple: #a259ff;
    --text: #fff;
    --text-muted: #b0b8c1;
    --card-bg: #2d3748;
    --border-radius: 14px;
    --transition: 0.2s;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background: var(--bg-dark);
    color: var(--text);
    font-family: "Segoe UI", Arial, sans-serif;
    min-height: 100vh;
}

header {
    position: fixed;
    top: 0;
    width: 100%;
    background: #000;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

.logo {
    font-size: 1.4rem;
    font-weight: bold;
    color: var(--btn-blue);
    display: flex;
    align-items: center;
    justify-content: center;
}
.logo span {
    color: var(--secondary);
}

nav a {
    color: var(--text);
    text-decoration: none;
    margin: 0 16px;
    font-size: 1rem;
    transition: color var(--transition);
}
nav a:hover {
    color: var(--primary);
}
.header-actions {
    display: flex;
    flex-direction: row;
}
.header-actions .btn {
    margin-left: 10px;
    padding: 8px 18px;
    border: none;
    border-radius: 8px;
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: all var(--transition);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Login Button (Blue) */
.header-actions .login {
    background: var(--btn-blue);
    color: #fff;
}

.header-actions .login:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(59, 130, 246, 0.3);
}

.header-actions .login::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.7s ease;
    z-index: -1;
}

.header-actions .login:hover::before {
    left: 100%;
}

/* Register Button (Purple) */
.header-actions .register {
    background: var(--btn-purple);
    color: #fff;
}

.header-actions .register:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(162, 89, 255, 0.3);
    animation: pulse 1.5s infinite;
}

.header-actions .register::after {
    content: "";
    position: absolute;
    right: -15px;
    opacity: 0;
    transition: all 0.3s ease;
}

.header-actions .register:hover::after {
    right: 10px;
    opacity: 1;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(162, 89, 255, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(162, 89, 255, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(162, 89, 255, 0);
    }
}

/* Bonus: Active State */
.header-actions .btn:active {
    transform: translateY(1px);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

main {
    padding-top: 80px;
}

.hero {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    min-height: 420px;
    gap: 32px;
    margin-top: 32px;
}

.hero-text {
    flex: 1 1 350px;
    min-width: 300px;
}
.hero-text h1 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 18px;
    line-height: 1.1;
}
.hero-text h1 span {
    color: var(--primary);
}
.hero-text p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 28px;
}
.hero-buttons {
    display: flex;
    gap: 16px;
}
.hero-buttons .btn {
    padding: 12px 24px;
    font-size: 1rem;
    border-radius: 8px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition:
        background var(--transition),
        color var(--transition);
}
.hero-buttons .bonus {
    background: var(--btn-purple);
    color: #fff;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: all 0.4s cubic-bezier(0.42, 0, 0.58, 1);
}

.hero-buttons .bonus:hover {
    color: #fff;
    box-shadow: 0 5px 15px rgba(162, 89, 255, 0.4);
    transform: translateY(-2px);
}

.hero-buttons .bonus::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.42, 0, 0.58, 1);
    z-index: -1;
}

.hero-buttons .bonus:hover::before {
    width: 100%;
}

.hero-buttons .download {
    background: #444c5e;
    color: #fff;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: all 0.4s cubic-bezier(0.42, 0, 0.58, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-buttons .download:hover {
    background: #3a414f;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transform: translateY(-2px);
}

.hero-buttons .download::after {
    content: "→";
    position: absolute;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    transition: all 0.3s ease;
}

.hero-buttons .download:hover::after {
    right: 15px;
    opacity: 1;
}

.hero-image {
    min-width: 260px;
    position: relative;
    display: flex;
    justify-content: flex-end;
}
.hero-image img {
    width: 340px;
    height: 100%;
    object-fit: cover;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.18);
}
.live-label {
    position: absolute;
    left: 16px;
    bottom: 16px;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
}
.live-dot {
    background: #22c55e;
    color: #fff;
    font-size: 0.8rem;
    padding: 2px 8px;
    border-radius: 8px;
    margin-left: 8px;
    font-weight: bold;
}

.why-choose {
    background: var(--bg-darker);
    margin-top: 48px;
    padding: 48px 0 32px 0;
}
.why-choose h2 {
    text-align: center;
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 36px;
}
.why-choose h2 span {
    color: var(--primary);
}
.features {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
    margin: 30px auto 20px;
}
.feature {
    background: var(--card-bg);
    border-radius: var(--border-radius);
    padding: 28px 22px 22px 22px;
    flex: 1 1 220px;
    min-width: 220px;
    max-width: 270px;
    text-align: left;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.icon {
    font-size: 2rem;
    margin-bottom: 14px;
}
.icon.blue {
    color: var(--btn-blue);
}
.icon.purple {
    color: var(--btn-purple);
}
.icon.green {
    color: #22c55e;
}
.icon.gold {
    color: #fbbf24;
}

.feature h3 {
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: 8px;
}
.feature p {
    color: var(--text-muted);
    font-size: 1rem;
}

@media (max-width: 900px) {
    .hero {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }
    .hero-image {
        justify-content: center;
        width: 100%;
    }
    .hero-image img {
        width: 100%;
        max-width: 340px;
    }
    .features {
        flex-direction: column;
        align-items: center;
    }
    .feature {
        max-width: 100%;
        width: 100%;
    }
}

@media (max-width: 600px) {
    .header-content {
        height: auto;
        gap: 10px;
        padding: 10px 0;
    }
    .container {
        padding: 0 8px;
    }
    .hero-text h1 {
        font-size: 1.5rem;
    }
    .why-choose h2 {
        font-size: 1.2rem;
    }
}
/* Общие стили для новых секций */
.section-spacing {
    padding: 60px 24px;
}

.dark-section {
    background: var(--bg-darker);
}

.container h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 20px;
}

.section-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 40px;
    color: var(--text-muted);
    font-size: 1.1rem;
}

.login-steps .steps-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-bottom: 30px;
}

.login-steps .step {
    flex: 1 1 300px;
    background: var(--card-bg);
    border-radius: var(--border-radius);
    padding: 25px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    z-index: 1;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.login-steps .step:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(108, 99, 255, 0.15);
    border-left: 1px solid var(--primary);
}

.login-steps .step::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(108, 99, 255, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.login-steps .step:hover::before {
    opacity: 1;
}

.login-steps .step-number {
    background: var(--primary);
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.login-steps .step-content h3 {
    color: var(--primary);
    margin-bottom: 10px;
}

.note-box {
    background: rgba(108, 99, 255, 0.1);
    border-left: 4px solid var(--primary);
    padding: 15px 20px;
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
    max-width: 800px;
    margin: 0 auto;
}

/* Стили для секции Download App */
.download-platforms {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    margin-bottom: 40px;
}

.download-platforms .platform {
    flex: 1 1 350px;
    background: var(--card-bg);
    padding: 25px;
    border-radius: var(--border-radius);
    position: relative;
}

.platform-icon {
    font-family: "FontAwesome";
    font-size: 2.5rem;
    margin-bottom: 15px;
    max-width: 250px;
    margin: 0 auto 15px;
}
.platform-icon img {
    max-width: 100%;
    border-radius: 14px;
}
.platform-icon.android {
    color: #3ddc84;
}

.platform-icon.ios {
    color: #007aff;
}

.steps-list {
    padding-left: 20px;
}

.steps-list li {
    margin-bottom: 10px;
    position: relative;
}

.app-benefits {
    text-align: center;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
    padding: 15px;
    background: rgba(162, 89, 255, 0.1);
    border-radius: var(--border-radius);
}

/* Стили для секции Casino Games */
.game-types {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-bottom: 30px;
}

.game-types .game-type {
    flex: 1 1 250px;
    background: var(--card-bg);
    padding: 25px;
    border-radius: var(--border-radius);
    text-align: center;
}

.game-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.cta-box {
    text-align: center;
    margin-top: 30px;
}

.cta-box .btn {
    margin-top: 20px;
}

/* Стили для секции Bonuses */
.bonus-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-bottom: 30px;
}

.bonus-card {
    flex: 1 1 300px;
    background: var(--card-bg);
    padding: 25px;
    border-radius: var(--border-radius);
    position: relative;
    overflow: hidden;
}

.bonus-badge {
    position: absolute;
    top: 10px;
    right: -25px;
    background: var(--primary);
    color: white;
    padding: 3px 25px;
    transform: rotate(45deg);
    font-size: 0.8rem;
    width: 100px;
    text-align: center;
}

.bonus-card:nth-child(2) .bonus-badge {
    background: #fbbf24;
}

.bonus-card:nth-child(3) .bonus-badge {
    background: var(--secondary);
}

.promo-note {
    text-align: center;
    font-style: italic;
    max-width: 700px;
    margin: 0 auto;
}

/* Стили для секции Sports Betting */
.sports-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-bottom: 30px;
}

.sport-card {
    height: 220px;
    border-radius: var(--border-radius);
    display: flex;
    align-items: flex-end;
    padding: 15px;
    position: relative;
    overflow: hidden;
}

.sport-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
}

.sport-card h3 {
    position: relative;
    z-index: 1;
    color: white;
}

.sport-card.football {
    background: url("./../images/football.jpg") center/cover;
}

.sport-card.cricket {
    background: url("./../images/cricket.jpg") center/cover;
}

.sport-card.basketball {
    background: url("./../images/basketball.jpg") center/cover;
}

.sport-card.tennis {
    background: url("./../images/tennis.jpg") center/cover;
}

/* Стили для секции Mobile Experience */
.mobile-features {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-bottom: 30px;
}

.mobile-feature {
    flex: 1 1 250px;
    background: var(--card-bg);
    padding: 25px;
    border-radius: var(--border-radius);
    text-align: center;
}

.feature-icon {
    font-size: 2rem;
    margin-bottom: 15px;
}

.conclusion {
    text-align: center;
    font-size: 1.1rem;
}

/* Стили для секции Conclusion */
.conclusion-section {
    text-align: center;
}

.conclusion-content {
    max-width: 700px;
    margin: 0 auto;
}

.action-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin: 30px 0;
}

.primary-btn {
    background: var(--primary);
    color: white;
}

.secondary-btn {
    background: var(--secondary);
    color: white;
}

.final-note {
    font-style: italic;
    color: var(--text-muted);
}

/* Адаптивные стили */
@media (max-width: 768px) {
    .section-spacing {
        padding: 40px 10px;
    }

    .action-buttons {
        flex-direction: column;
        align-items: center;
    }

    .action-buttons .btn {
        width: 100%;
        max-width: 250px;
    }
    .logo {
        max-width: 100px;
    }
    .logo img {
        max-width: 100px;
    }
    .header-content {
        padding: 20px 10px;
    }
    .hero-buttons {
        flex-direction: column;
    }
}
/* Footer Styles */
.site-footer {
    background: var(--bg-darker);
    color: var(--text);
    padding: 60px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer-logo .logo {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.footer-slogan {
    color: var(--text-muted);
    margin-bottom: 25px;
}

.app-download p {
    margin-bottom: 15px;
    font-weight: 500;
}

.download-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.app-btn {
    display: flex;
    align-items: center;
    padding: 8px 15px;
    border-radius: 8px;
    text-decoration: none;
    transition: transform 0.2s;
}

.app-btn:hover {
    transform: translateY(-2px);
}

.app-btn .icon {
    font-size: 1.8rem;
    margin-right: 10px;
}

.app-btn .text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
    font-size: 0.9rem;
}

.app-btn .text span:first-child {
    font-size: 0.7rem;
}

.google-play {
    background: #000;
    color: #fff;
}

.app-store {
    background: #fff;
    color: #000;
}

.footer-links h3 {
    color: var(--primary);
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-links h3::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--primary);
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition:
        color 0.2s,
        padding-left 0.2s;
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.footer-contact h3 {
    color: var(--primary);
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-contact h3::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--primary);
}

.contact-info li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.contact-info .icon {
    margin-right: 10px;
    font-size: 1.2rem;
    color: var(--primary);
}

.social-media {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--card-bg);
    color: var(--text);
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s;
}

.social-icon:hover {
    transform: translateY(-3px);
}

.facebook:hover {
    background: #3b5998;
    color: white;
}

.twitter:hover {
    background: #1da1f2;
    color: white;
}

.instagram:hover {
    background: #e1306c;
    color: white;
}

.telegram:hover {
    background: #0088cc;
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    text-align: center;
}

.payment-methods {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.payment-icon {
    font-size: 1.8rem;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.payment-icon:hover {
    opacity: 1;
}

.visa {
    color: #1a1f71;
}

.mastercard {
    color: #eb001b;
}

.bitcoin {
    color: #f7931a;
}

.ethereum {
    color: #3c3c3d;
}

.paypal {
    color: #003087;
}

.copyright {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.responsible-gaming {
    margin-top: 10px;
}

.responsible-gaming a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s;
}

.responsible-gaming a:hover {
    color: var(--primary);
}

/* Адаптивность футера */
@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-links,
    .footer-contact {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding-bottom: 30px;
    }

    .download-buttons {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .app-btn {
        flex: 1 1 150px;
    }
}
.textcenter {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.ctabox {
    display: flex;
    justify-content: center;
}
.center-p {
    text-align: center;
}
.finalbox {
    display: flex;
    flex-direction: row;
    gap: 15px;
    align-items: center;
    justify-content: center;
    margin: 20px auto;
}
.simple-footer {
    background: #000;
    padding: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-content {
    margin: 0 auto;
}

.footer-brand .logo {
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary);
    margin-bottom: 15px;
    display: inline-block;
}

.footer-brand .logo span {
    color: var(--secondary);
}

.footer-description {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 25px;
    font-size: 0.95rem;
}

.copyright {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.copyright .year {
    color: var(--primary);
}

/* Небольшая анимация для логотипа */
.footer-brand .logo {
    transition: transform 0.3s ease;
}

.footer-brand .logo:hover {
    transform: scale(1.05);
}

/* Адаптивность */
@media (max-width: 768px) {
    .simple-footer {
        padding: 30px 0;
    }

    .footer-brand .logo {
        font-size: 1.8rem;
    }
}
.brand {
    font-family: "Oswald", sans-serif;
    font-weight: bold;
    font-size: 1.4em;
    color: var(--primary);
    text-transform: uppercase;
}

.brand span {
    color: var(--secondary);
}

.highlight {
    color: var(--primary);
    font-weight: 600;
    position: relative;
}

.highlight:after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--secondary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.highlight:hover:after {
    transform: scaleX(1);
}

.responsible {
    display: block;
    margin-top: 1rem;
    font-size: 0.9em;
    color: var(--text-muted);
    font-style: italic;
}
