/* style/index-why-choose-kubet.css */

.page-index-why-choose-kubet {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #E0E0E0; /* Light gray for general text on dark background */
    line-height: 1.6;
    background-color: #121A2C; /* Slightly lighter dark background for contrast */
}

.page-index-why-choose-kubet__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-index-why-choose-kubet__section {
    padding: 60px 0;
    text-align: center;
}

.page-index-why-choose-kubet__section-title {
    font-size: 2.8em;
    color: #FFD700; /* Gold for main titles */
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
}

.page-index-why-choose-kubet__section-subtitle {
    font-size: 1.2em;
    color: #C0C0C0; /* Lighter gray for subtitles */
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-index-why-choose-kubet .highlight {
    color: #FFD700;
}

/* Hero Section */
.page-index-why-choose-kubet__hero-section {
    background: linear-gradient(135deg, #1A2B47 0%, #0F172A 100%);
    padding: 100px 0;
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 60vh;
    position: relative;
    overflow: hidden;
}

.page-index-why-choose-kubet__hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('[GALLERY:bg:abstract,geometric,dark_pattern]') no-repeat center center/cover;
    opacity: 0.1;
    z-index: 0;
}

.page-index-why-choose-kubet__hero-section .page-index-why-choose-kubet__container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
    position: relative;
    z-index: 1;
}

.page-index-why-choose-kubet__hero-content {
    flex: 1;
    min-width: 300px;
}

.page-index-why-choose-kubet__hero-title {
    font-size: 4em;
    color: #FFFFFF;
    margin-bottom: 20px;
    font-weight: 800;
    line-height: 1.1;
}

.page-index-why-choose-kubet__hero-description {
    font-size: 1.3em;
    color: #E0E0E0;
    margin-bottom: 40px;
    max-width: 600px;
}

.page-index-why-choose-kubet__hero-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.page-index-why-choose-kubet__hero-image-wrapper {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-index-why-choose-kubet__hero-image {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
}

.page-index-why-choose-kubet__hero-image:hover {
    transform: translateY(-5px);
}

/* Buttons */
.page-index-why-choose-kubet__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
}

.page-index-why-choose-kubet__btn--primary {
    background-color: #FFD700;
    color: #1A2B47;
    border: 2px solid #FFD700;
}

.page-index-why-choose-kubet__btn--primary:hover {
    background-color: #E5C100;
    border-color: #E5C100;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.page-index-why-choose-kubet__btn--secondary {
    background-color: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
}

.page-index-why-choose-kubet__btn--secondary:hover {
    background-color: #FFD700;
    color: #1A2B47;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.2);
}

.page-index-why-choose-kubet__btn--small {
    padding: 10px 20px;
    font-size: 0.9em;
    border-radius: 6px;
}

.page-index-why-choose-kubet__btn--large {
    padding: 18px 35px;
    font-size: 1.2em;
    border-radius: 10px;
}

/* Advantages Section */
.page-index-why-choose-kubet__advantages {
    background-color: #1A2B47;
}

.page-index-why-choose-kubet__advantage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.page-index-why-choose-kubet__advantage-item {
    background-color: #0F172A;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index-why-choose-kubet__advantage-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
}

.page-index-why-choose-kubet__advantage-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
}

.page-index-why-choose-kubet__advantage-title {
    font-size: 1.8em;
    color: #FFD700;
    margin-bottom: 15px;
    font-weight: 600;
}

.page-index-why-choose-kubet__advantage-description {
    font-size: 1em;
    color: #C0C0C0;
}

/* Game Showcase Section */
.page-index-why-choose-kubet__game-showcase {
    background-color: #121A2C;
}

.page-index-why-choose-kubet__game-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.page-index-why-choose-kubet__game-item {
    background-color: #1A2B47;
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-index-why-choose-kubet__game-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
}

.page-index-why-choose-kubet__game-image {
    max-width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.page-index-why-choose-kubet__game-title {
    font-size: 1.6em;
    color: #FFD700;
    margin-bottom: 10px;
    font-weight: 600;
}

.page-index-why-choose-kubet__game-description {
    font-size: 0.95em;
    color: #C0C0C0;
    margin-bottom: 20px;
    flex-grow: 1;
}

.page-index-why-choose-kubet__view-more {
    margin-top: 50px;
}

/* Responsible Gambling Section */
.page-index-why-choose-kubet__responsible-gambling {
    background-color: #1A2B47;
    padding: 80px 0;
}

.page-index-why-choose-kubet__responsible-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
    text-align: left;
    margin-top: 50px;
}

.page-index-why-choose-kubet__responsible-text {
    flex: 2;
    min-width: 300px;
}

.page-index-why-choose-kubet__responsible-text p {
    font-size: 1.1em;
    color: #E0E0E0;
    margin-bottom: 20px;
}

.page-index-why-choose-kubet__responsible-image-wrapper {
    flex: 1;
    min-width: 250px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-index-why-choose-kubet__responsible-image {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* Final CTA Section */
.page-index-why-choose-kubet__cta-final {
    background: linear-gradient(90deg, #1A2B47, #0F172A);
    padding: 80px 0;
}

.page-index-why-choose-kubet__cta-content {
    text-align: center;
}

.page-index-why-choose-kubet__cta-title {
    font-size: 3em;
    color: #FFFFFF;
    margin-bottom: 20px;
    font-weight: 700;
}

.page-index-why-choose-kubet__cta-description {
    font-size: 1.4em;
    color: #C0C0C0;
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-index-why-choose-kubet__cta-actions {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .page-index-why-choose-kubet__hero-title {
        font-size: 3.2em;
    }
    .page-index-why-choose-kubet__section-title {
        font-size: 2.2em;
    }
    .page-index-why-choose-kubet__hero-section .page-index-why-choose-kubet__container {
        flex-direction: column;
        text-align: center;
    }
    .page-index-why-choose-kubet__hero-content {
        order: 2;
    }
    .page-index-why-choose-kubet__hero-image-wrapper {
        order: 1;
        margin-bottom: 40px;
    }
    .page-index-why-choose-kubet__hero-actions {
        justify-content: center;
    }
    .page-index-why-choose-kubet__responsible-content {
        flex-direction: column;
        text-align: center;
    }
    .page-index-why-choose-kubet__responsible-image-wrapper {
        margin-bottom: 30px;
    }
    .page-index-why-choose-kubet__cta-title {
        font-size: 2.5em;
    }
}

@media (max-width: 768px) {
    .page-index-why-choose-kubet__hero-title {
        font-size: 2.5em;
    }
    .page-index-why-choose-kubet__hero-description {
        font-size: 1.1em;
    }
    .page-index-why-choose-kubet__section-title {
        font-size: 1.8em;
    }
    .page-index-why-choose-kubet__section-subtitle {
        font-size: 1em;
    }
    .page-index-why-choose-kubet__advantage-grid,
    .page-index-why-choose-kubet__game-grid {
        grid-template-columns: 1fr;
    }
    .page-index-why-choose-kubet__cta-title {
        font-size: 2em;
    }
    .page-index-why-choose-kubet__cta-description {
        font-size: 1.2em;
    }
    .page-index-why-choose-kubet__btn--large {
        padding: 15px 25px;
        font-size: 1.1em;
    }
    .page-index-why-choose-kubet__hero-actions {
        flex-direction: column;
        gap: 15px;
    }
    .page-index-why-choose-kubet__btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .page-index-why-choose-kubet__hero-title {
        font-size: 2em;
    }
    .page-index-why-choose-kubet__section-title {
        font-size: 1.5em;
    }
    .page-index-why-choose-kubet__advantage-title,
    .page-index-why-choose-kubet__game-title {
        font-size: 1.5em;
    }
    .page-index-why-choose-kubet__cta-title {
        font-size: 1.8em;
    }
    .page-index-why-choose-kubet__cta-actions {
        flex-direction: column;
        gap: 15px;
    }
    .page-index-why-choose-kubet__btn {
        width: 100%;
    }
    .page-index-why-choose-kubet__hero-section,
    .page-index-why-choose-kubet__section,
    .page-index-why-choose-kubet__responsible-gambling,
    .page-index-why-choose-kubet__cta-final {
        padding: 40px 0;
    }
}