:root {
    --primary-color: #007bff;
    --text-color: #ffffff;
    --dark-bg: #121212;
    --highlight-color: #10c767;
    --dark-navy: #1a2230;
}

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

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--dark-bg);
}

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

.site-header {
    background-color: rgba(18, 18, 18, 0.95);
    padding: 20px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
    max-width: 1600px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: auto;
    width: 120px;
    object-fit: contain;
}

.mobile-menu-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: var(--text-color);
    transition: all 0.3s ease-in-out;
}

.main-navigation {
    flex: 1;
    margin-left: 40px;
}

.nav-menu {
    display: flex;
    list-style: none;
    justify-content: flex-end;
    gap: 30px;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: var(--text-color);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 5px 0;
    transition: color 0.3s ease;
    text-transform: uppercase;
}

.has-dropdown .nav-link::after {
    content: "+";
    margin-left: 5px;
    font-size: 18px;
    vertical-align: middle;
}

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

.highlight {
    color: var(--highlight-color);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 0;
    margin-top: 0;
    overflow: hidden;
    background-color: var(--dark-bg);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(16, 199, 103, 0.05) 0%, transparent 70%);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding-top: 100px;
}

.hero-text {
    max-width: 600px;
    padding-right: 20px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s forwards 0.5s;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 30px;
    letter-spacing: 1px;
}

.hero h1 .highlight {
    display: inline-block;
    position: relative;
}

.hero-image {
    position: absolute;
    right: 15%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
}

.hero-image img {
    width: 500px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 25px rgba(16, 199, 103, 0.4));
}

@keyframes float {
    0% {
        transform: translateY(-50%) translateX(0) rotate(0deg);
    }
    50% {
        transform: translateY(-50%) translateX(-10px) translateY(-10px) rotate(3deg);
    }
    100% {
        transform: translateY(-50%) translateX(0) rotate(0deg);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Starry background effect */
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(1px 1px at 25% 10%, rgba(255, 255, 255, 0.7) 0%, transparent 100%),
        radial-gradient(1px 1px at 75% 20%, rgba(255, 255, 255, 0.5) 0%, transparent 100%),
        radial-gradient(1px 1px at 10% 50%, rgba(255, 255, 255, 0.4) 0%, transparent 100%),
        radial-gradient(1px 1px at 90% 60%, rgba(255, 255, 255, 0.6) 0%, transparent 100%),
        radial-gradient(1px 1px at 30% 95%, rgba(255, 255, 255, 0.5) 0%, transparent 100%),
        radial-gradient(1px 1px at 85% 85%, rgba(255, 255, 255, 0.4) 0%, transparent 100%);
    z-index: 0;
}

/* Content Block */
.content-block {
    padding: 100px 0;
    background-color: var(--dark-bg);
}

.content-title {
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 30px;
    color: var(--text-color);
}

.content-subtitle {
    font-size: 1.6rem;
    font-weight: 600;
    margin: 40px 0 25px;
    color: var(--text-color);
}

.content-text {
    max-width: 900px;
}

.content-text p {
    margin-bottom: 20px;
    font-size: 17px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
}

.text-link {
    color: var(--highlight-color);
    text-decoration: none;
    position: relative;
    transition: all 0.3s ease;
}

.text-link:hover {
    text-decoration: underline;
}

.text-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--highlight-color);
    transition: width 0.3s ease;
}

.text-link:hover::after {
    width: 100%;
}

/* Responsive styles */
@media (max-width: 992px) {
    .mobile-menu-toggle {
        display: block;
    }
    
    .main-navigation {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        margin-left: 0;
        padding: 60px 15px 30px;
        background-color: var(--dark-bg);
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
        transition: right 0.3s ease-in-out;
        z-index: 1000;
        overflow-y: auto;
    }
    
    .main-navigation.active {
        right: 0;
    }
    
    .mobile-menu-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .mobile-menu-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .header-inner {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
    
    .nav-menu {
        flex-direction: column;
        width: 100%;
        margin-top: 10px;
        gap: 0;
    }
    
    .nav-item {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding: 8px 0;
    }

    .nav-link {
        font-size: 13px;
        padding: 3px 0;
    }

    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 80px;
    }

    .hero-text {
        max-width: 100%;
        padding-right: 0;
        margin-bottom: 60px;
    }

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

    .hero-image {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        margin-top: 40px;
        animation: float-mobile 6s ease-in-out infinite, fadeIn 1s forwards;
    }
    
    @keyframes float-mobile {
        0% {
            transform: translateY(0) rotate(0deg);
        }
        50% {
            transform: translateY(-10px) rotate(3deg);
        }
        100% {
            transform: translateY(0) rotate(0deg);
        }
    }
    
    .content-block {
        padding: 50px 0;
    }
    
    .content-title {
        font-size: 1.8rem;
    }
    
    .content-subtitle {
        font-size: 1.4rem;
    }
}

body.menu-open {
    overflow: hidden;
}

body.menu-open::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
}

/* Info Block */
.info-block {
    background-color: var(--dark-bg);
    padding-bottom: 20px;
    position: relative;
    overflow: hidden;
}

.info-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: none;
    z-index: 0;
}

.info-block .container {
    position: relative;
    z-index: 2;
}

.info-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 50px;
    color: var(--text-color);
    text-align: center;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.info-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 30%;
    width: 40%;
    height: 3px;
    background: var(--highlight-color);
    border-radius: 3px;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.info-card {
    background-color: rgba(16, 199, 103, 0.05);
    border-radius: 12px;
    padding: 30px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(16, 199, 103, 0.15);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s forwards;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.info-card::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 100px;
    height: 100px;
    background: rgba(16, 199, 103, 0.1);
    border-radius: 50%;
    z-index: 0;
}

.info-card:nth-child(odd) {
    transform: translateY(30px);
}

.info-card:nth-child(1) {
    animation-delay: 0.1s;
}

.info-card:nth-child(2) {
    animation-delay: 0.25s;
}

.info-card:nth-child(3) {
    animation-delay: 0.4s;
}

.info-card:nth-child(4) {
    animation-delay: 0.55s;
}

.info-card:nth-child(5) {
    animation-delay: 0.7s;
}

.info-card:nth-child(6) {
    animation-delay: 0.85s;
}

.info-card:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    border-color: rgba(16, 199, 103, 0.4);
    background-color: rgba(16, 199, 103, 0.08);
}

.card-label {
    color: var(--highlight-color);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    z-index: 1;
}

.card-value {
    color: var(--text-color);
    font-size: 26px;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(16, 199, 103, 0.2);
    position: relative;
    z-index: 1;
}

@media (max-width: 992px) {
    .info-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .info-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 576px) {
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    .info-block {
        padding: 50px 0;
    }
    
    .card-value {
        font-size: 20px;
    }
}

/* Team Block */
.team-block {
    background-color: var(--dark-bg);
    position: relative;
    padding: 60px 0;
}

.team-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 60px;
    color: var(--text-color);
    position: relative;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 25px;
    max-width: 1400px;
    margin: 0 auto;
}

.team-member {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    background-color: #1a2230;
    transition: all 0.4s ease;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.member-photo {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 120%;
    overflow: hidden;
}

.photo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(26, 34, 48, 0.1), rgba(26, 34, 48, 0.7));
    z-index: 1;
}

.member-photo img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    filter: grayscale(100%) brightness(0.8) sepia(0.2) hue-rotate(100deg);
    transition: all 0.4s ease;
}

.team-member:hover .member-photo img {
    filter: grayscale(70%) brightness(0.9) sepia(0.1) hue-rotate(100deg);
    transform: scale(1.05);
}

.member-name {
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
    color: var(--text-color);
    margin: 0;
    padding: 20px 15px 5px;
    line-height: 1.3;
}

.member-position {
    font-size: 12px;
    font-weight: 600;
    text-align: center;
    color: var(--highlight-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0 15px 20px;
}

@media (max-width: 1200px) {
    .team-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .team-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 480px) {
    .team-grid {
        grid-template-columns: 1fr;
        max-width: 280px;
        margin: 0 auto;
    }
}

/* Footer Styles */
.site-footer {
    background-color: #0A0A0A;
    padding: 60px 0;
    color: #fff;
}

.site-footer .container {
    display: flex;
    flex-direction: column;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.footer-logo {
    margin-bottom: 0;
}

.footer-logo img {
    max-width: 120px;
    height: auto;
    object-fit: contain;
}

.footer-navigation {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 20px 40px;
    padding-left: 0;
}

.footer-nav-column {
    margin-bottom: 15px;
    margin-right: 0;
}

.footer-nav-title {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: color 0.3s ease;
}

.footer-nav-title:hover {
    color: var(--highlight-color);
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    transition: background-color 0.3s ease;
}

.social-link:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.social-icon {
    width: 20px;
    height: 20px;
    fill: #fff;
}

@media (max-width: 992px) {
    .footer-navigation {
        gap: 15px 30px;
    }
}

@media (max-width: 768px) {
    .footer-top {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .footer-logo {
        margin-bottom: 20px;
    }
    
    .social-links {
        margin-top: 20px;
    }
    
    .footer-navigation {
        flex-wrap: wrap;
        margin-top: 20px;
        gap: 12px 25px;
    }
}

@media (max-width: 576px) {
    .footer-navigation {
        gap: 12px 20px;
    }
    
    .footer-nav-title {
        font-size: 13px;
    }
}

/* Newsletter Section */
.newsletter-section {
    background-color: #0A0A0A;
    padding: 60px 0;
    position: relative;
}

.newsletter-container {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 800px;
    margin: 0 auto;
}

.newsletter-content {
    text-align: center;
    width: 100%;
}

.newsletter-content h3 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #fff;
}

.newsletter-content p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    justify-content: center;
    max-width: 400px;
    margin: 0 auto;
}

.newsletter-form input {
    width: 100%;
    height: 50px;
    padding: 0 20px;
    border-radius: 30px;
    border: none;
    background-color: #000;
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
    outline: none;
    transition: all 0.3s ease;
}

.newsletter-form input:focus {
    border-color: var(--highlight-color);
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.btn-subscribe {
    width: 100%;
    height: 50px;
    padding: 0 30px;
    border: none;
    border-radius: 30px;
    background-color: var(--highlight-color);
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-subscribe:hover {
    background-color: #0eaf5b;
}

@media (max-width: 768px) {
    .newsletter-form {
        max-width: 400px;
    }
    
    .newsletter-form input {
        height: 70px;
        font-size: 18px;
        padding: 0 25px;
        border-radius: 35px;
    }
    
    .btn-subscribe {
        height: 70px;
        font-size: 18px;
        border-radius: 35px;
    }
    
    .newsletter-section {
        padding: 40px 0;
    }
    
    .newsletter-content h3 {
        font-size: 24px;
    }
} 

/* CMS Block Styles */
.cms-block {
    background-color: var(--dark-bg);
    padding: 80px 0;
    position: relative;
}

.cms-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.cms-info {
    flex: 1;
    max-width: 600px;
}

.cms-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 40px;
    color: #fff;
    position: relative;
    text-transform: uppercase;
    display: inline-block;
}

.cms-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--highlight-color);
}

.cms-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.cms-feature-card {
    background-color: rgba(17, 26, 34, 0.8);
    border-radius: 12px;
    padding: 25px;
    transition: all 0.3s ease;
}

.cms-feature-card .feature-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #fff;
}

.cms-feature-card .feature-description {
    font-size: 15px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.7);
}

.cms-image {
    flex: 1;
    max-width: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
    align-self: center;
}

.cms-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
}

@media (max-width: 992px) {
    .cms-content {
        flex-direction: column;
        align-items: center;
    }
    
    .cms-info {
        max-width: 100%;
    }
    
    .cms-title {
        font-size: 36px;
    }
    
    .cms-features-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .cms-image {
        margin-top: 50px;
        order: 2;
    }
}

@media (max-width: 768px) {
    .cms-block {
        padding: 60px 0;
    }
    
    .cms-title {
        font-size: 28px;
    }
    
    .cms-feature-card {
        padding: 20px;
    }
    
    .cms-feature-card .feature-title {
        font-size: 18px;
    }
} 

/* Live Casino Tables Styles */
.live-casino-tables {
    background-color: var(--dark-bg);
    padding: 80px 0;
    position: relative;
}

.live-tables-content {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
}

.live-tables-info {
    flex: 1;
    max-width: 500px;
}

.live-tables-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 40px;
    color: #fff;
    position: relative;
    text-transform: uppercase;
    line-height: 1.2;
}

.live-tables-title .highlight {
    color: var(--highlight-color);
    font-size: 48px;
}

.live-tables-features {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.live-tables-feature {
    position: relative;
    padding-left: 20px;
    border-left: 3px solid var(--highlight-color);
}

.live-tables-feature .feature-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #fff;
}

.live-tables-feature .feature-description {
    font-size: 15px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.7);
}

.live-tables-image {
    flex: 1;
    max-width: 550px;
    display: flex;
    justify-content: center;
    align-self: center;
}

.live-tables-image img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
}

@media (max-width: 1200px) {
    .live-tables-content {
        align-items: center;
    }
}

@media (max-width: 992px) {
    .live-tables-content {
        flex-direction: column;
        align-items: center;
    }
    
    .live-tables-info {
        max-width: 100%;
        text-align: center;
    }
    
    .live-tables-title {
        font-size: 36px;
        text-align: center;
    }
    
    .live-tables-title .highlight {
        font-size: 42px;
    }
    
    .live-tables-features {
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .live-casino-tables {
        padding: 60px 0;
    }
    
    .live-tables-title {
        font-size: 30px;
    }
    
    .live-tables-title .highlight {
        font-size: 36px;
    }
    
    .live-tables-feature .feature-title {
        font-size: 18px;
    }
} 

/* SPORT GAMIFICATION SECTION */
.sport-gamification {
    background-color: var(--dark-bg);
    position: relative;
}

.sport-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.sport-info {
    flex: 1;
    max-width: 550px;
}

.sport-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 40px;
    color: #fff;
    position: relative;
    text-transform: uppercase;
    line-height: 1.2;
}

.sport-title .highlight {
    color: var(--highlight-color);
}

.sport-features {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.sport-feature {
    position: relative;
    padding-left: 20px;
    border-left: 3px solid var(--highlight-color);
}

.feature-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #fff;
}

.feature-description {
    font-size: 15px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.7);
}

.sport-image {
    flex: 1;
    max-width: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    align-self: center;
}

.sport-image img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
}

@media (max-width: 992px) {
    .sport-content {
        flex-direction: column;
        align-items: center;
    }
    
    .sport-info {
        max-width: 100%;
        text-align: center;
    }
    
    .sport-title {
        font-size: 36px;
        text-align: center;
    }
    
    .sport-features {
        max-width: 600px;
        margin: 0 auto;
    }
    
    .sport-image {
        margin-top: 40px;
        max-width: 300px;
    }
}

@media (max-width: 768px) {
    .sport-gamification {
        padding: 60px 0;
    }
    
    .sport-title {
        font-size: 30px;
    }
    
    .feature-title {
        font-size: 18px;
    }
} 

/* KYC SECTION */
.kyc-block {
    background-color: var(--dark-bg);
    position: relative;
    overflow: hidden;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.kyc-block::before {
    content: none;
}

.kyc-block .container {
    position: relative;
    z-index: 2;
}

.kyc-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.kyc-info {
    flex: 1;
    max-width: 60%;
}

.kyc-title {
    font-size: 42px;
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 40px;
    position: relative;
}

.kyc-title .highlight {
    color: #10c767;
}

.kyc-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 60px;
}

.kyc-stat {
    display: flex;
    flex-direction: column;
    max-width: 400px;
}

.stat-label {
    font-size: 18px;
    color: #111a22;
    margin-bottom: 10px;
}

.stat-value {
    font-size: 24px;
    font-weight: 600;
    color: #10c767;
    margin-bottom: 5px;
}

.stat-description {
    font-size: 18px;
    color: #111a22;
}

.kyc-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.kyc-feature-card {
    background-color: rgba(17, 26, 34, 0.6);
    border-left: 3px solid #10c767;
    padding: 25px 30px;
    transition: all 0.3s ease;
}

.kyc-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.kyc-feature-card .feature-title {
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 15px;
}

.kyc-feature-card .feature-description {
    font-size: 15px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.7);
}

.kyc-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 40%;
}

.kyc-image img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(16, 199, 103, 0.2));
}

ul { 
    padding-left: 1rem;
}

@media (max-width: 1200px) {
    .kyc-info {
        max-width: 55%;
    }
    
    .kyc-image {
        max-width: 45%;
    }
    
    .kyc-image img {
        max-width: 350px;
    }
}

@media (max-width: 992px) {
    .kyc-content {
        flex-direction: column;
    }
    
    .kyc-info {
        max-width: 100%;
    }
    
    .kyc-features {
        grid-template-columns: 1fr;
    }
    
    .kyc-image {
        justify-content: center;
        max-width: 100%;
        margin-top: 40px;
    }
    
    .kyc-title {
        font-size: 42px;
    }
}

@media (max-width: 768px) {
    .kyc-block {
        padding: 60px 0;
    }
    
    .kyc-stats {
        flex-direction: column;
        gap: 30px;
    }
    
    .kyc-title {
        font-size: 36px;
    }
    
    .stat-value {
        font-size: 20px;
    }
    
    .kyc-image img {
        max-width: 280px;
    }
} 

.kyc-summary {
    margin-bottom: 60px;
}

.kyc-summary p {
    font-size: 20px;
    line-height: 1.5;
    color: #fff;
    max-width: 600px;
}

.kyc-summary .bold {
    font-weight: 700;
    color: #10c767;
}

/* RESPONSIBLE GAMING SECTION */
.responsible-gaming {
    background-color: var(--dark-bg);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    min-height: 600px;
}

.responsible-title {
    text-align: left;
    margin-bottom: 60px;
}

.responsible-title h2 {
    font-size: 56px;
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
    line-height: 1.2;
}

.responsible-title .highlight {
    color: var(--highlight-color);
}

.responsible-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.responsible-feature {
    background-color: rgba(17, 26, 34, 0.6);
    border-left: 3px solid var(--highlight-color);
    padding: 30px;
    transition: all 0.3s ease;
}

.responsible-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.responsible-feature .feature-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #fff;
}

.responsible-feature .feature-description {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 992px) {
    .responsible-features {
        grid-template-columns: 1fr;
    }
    
    .responsible-title h2 {
        font-size: 42px;
    }
    
    .responsible-feature .feature-title {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .responsible-gaming {
        padding: 60px 0;
    }
    
    .responsible-title h2 {
        font-size: 36px;
    }
    
    .responsible-title {
        margin-bottom: 40px;
    }
    
    .responsible-features {
        gap: 30px;
    }
    
    .responsible-feature {
        padding: 25px;
    }
    
    .responsible-feature .feature-title {
        font-size: 18px;
        margin-bottom: 10px;
    }
    
    .responsible-feature .feature-description {
        font-size: 15px;
    }
} 

/* FRAUD PREVENTION SECTION */
.fraud-prevention {
    background-color: var(--dark-bg);
    padding: 100px 0 40px 0;
    position: relative;
    overflow: hidden;
}

.fraud-title {
    text-align: left;
    margin-bottom: 60px;
    max-width: 600px;
    float: left;
    width: 40%;
}

.fraud-title h2 {
    font-size: 56px;
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
    line-height: 1.1;
}

.fraud-title .highlight {
    color: var(--highlight-color);
}

.fraud-features {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 55%;
    float: right;
    margin-top: 0;
}

.fraud-feature {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.feature-number {
    font-size: 28px;
    font-weight: 600;
    color: var(--highlight-color);
    background-color: rgba(16, 199, 103, 0.1);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-content {
    flex: 1;
    padding-top: 10px;
}

.feature-content p {
    font-size: 22px;
    line-height: 1.4;
    color: #fff;
}

.feature-content .bold {
    font-weight: 700;
    color: var(--highlight-color);
}

@media (max-width: 1200px) {
    .fraud-features {
        margin-left: 0;
    }
}

@media (max-width: 992px) {
    .fraud-title {
        float: none;
        width: 100%;
        max-width: 100%;
        margin-bottom: 40px;
    }
    
    .fraud-features {
        float: none;
        max-width: 100%;
    }
    
    .fraud-title h2 {
        font-size: 42px;
    }
    
    .feature-content p {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .fraud-prevention {
        padding: 60px 0;
    }
    
    .fraud-title h2 {
        font-size: 36px;
    }
    
    .fraud-title {
        margin-bottom: 40px;
    }
    
    .fraud-features {
        gap: 30px;
    }
    
    .fraud-feature {
        gap: 20px;
    }
    
    .feature-number {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
    
    .feature-content p {
        font-size: 18px;
    }
} 

.text-link {
    color:#36ce68
}

.faq-block {
    background-color: var(--dark-bg);
    padding: 0px 0;
    position: relative;
}

.faq-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    color: var(--text-color);
    position: relative;
}

.faq-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--highlight-color);
    border-radius: 3px;
}

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

.faq-item {
    margin-bottom: 15px;
    border-radius: 8px;
    background-color: rgba(17, 26, 34, 0.6);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-question {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    position: relative;
}

.question-text {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-color);
}

.question-icon {
    width: 24px;
    height: 24px;
    position: relative;
}

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

.question-icon::before {
    width: 16px;
    height: 2px;
    top: 11px;
    left: 4px;
}

.question-icon::after {
    width: 2px;
    height: 16px;
    top: 4px;
    left: 11px;
}

.faq-item.active .question-icon::after {
    transform: rotate(90deg);
    opacity: 0;
}

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

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

.faq-answer p {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 992px) {
    .faq-title {
        font-size: 2rem;
    }
    
    .question-text {
        font-size: 16px;
    }
    
    .faq-answer p {
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    .faq-block {
        padding: 60px 0;
    }
    
    .faq-title {
        font-size: 1.8rem;
        margin-bottom: 40px;
    }
    
    .faq-item {
        margin-bottom: 10px;
    }
    
    .faq-question {
        padding: 15px;
    }
    
    .question-text {
        font-size: 15px;
    }
} 

/* Licenses Block */
.licenses-block {
    background-color: var(--dark-bg);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.licenses-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 30%, rgba(16, 199, 103, 0.03) 0%, transparent 70%);
    z-index: 0;
}

.licenses-block .container {
    position: relative;
    z-index: 2;
}

.licenses-block h2 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.2;
}

.licenses-block p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 60px;
    letter-spacing: 0.5px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.licenses-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    gap: 20px;
}

.license-item {
    background-color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    padding: 20px;
    width: calc(20% - 20px);
    min-width: 160px;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.license-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    border-color: var(--highlight-color);
}

.license-logo {
    max-width: 100%;
    max-height: 60px;
    object-fit: contain;
    transition: all 0.3s ease;
}

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

.table-wrapper {
    width: 100%;
    overflow-x: auto;
}

.stats-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-family: Arial, sans-serif;
}

.stats-table th, .stats-table td {
    padding: 12px 15px;
    text-align: left;
    border: 1px solid #36ce68;
}

.stats-table th {
    color: white; 
    font-weight: bold;
}

.stats-table strong {
    font-size: 1.1em;
}


@media (max-width: 992px) {
    .license-item {
        width: calc(25% - 20px);
    }
    
    .licenses-block h2 {
        font-size: 2.5rem;
    }
    
    .licenses-block p {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .license-item {
        width: calc(33.333% - 20px);
    }
    
    .licenses-block {
        padding: 70px 0;
    }
    
    .licenses-block h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .license-item {
        width: calc(50% - 20px);
        min-width: 120px;
        height: 80px;
    }
    
    .license-logo {
        max-height: 40px;
    }
} 