/* CSS styles specific to the crazy-time page */

/* Hero section styles */
.hero--crazy-time {
    background: linear-gradient(135deg, #1E2761 0%, #FF9900 100%);
}

/* Game overview styles */
.game-overview {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 30px;
}

.game-overview__content {
    flex: 1;
}

.game-overview__content p {
    color: #666;
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.6;
}

.game-overview__features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.game-overview__feature {
    display: flex;
    align-items: flex-start;
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.game-overview__feature:hover {
    transform: translateY(-5px);
}

.game-overview__feature-icon {
    width: 50px;
    height: 50px;
    background-color: #FF9900;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-right: 15px;
    flex-shrink: 0;
}

.game-overview__feature:nth-child(1) .game-overview__feature-icon {
    background-color: #FF9900;
}

.game-overview__feature:nth-child(2) .game-overview__feature-icon {
    background-color: #2A9D8F;
}

.game-overview__feature:nth-child(3) .game-overview__feature-icon {
    background-color: #E63946;
}

.game-overview__feature:nth-child(4) .game-overview__feature-icon {
    background-color: #457B9D;
}

.game-overview__feature-content {
    flex: 1;
}

.game-overview__feature-title {
    margin-bottom: 5px;
    color: #1E2761;
    font-size: 1.1rem;
}

.game-overview__feature-text {
    color: #666;
    font-size: 0.95rem;
}

.game-overview__image {
    flex: 1;
    position: relative;
}

.game-overview__img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* How to play styles */
.how-to-play {
    max-width: 800px;
    margin: 0 auto 40px;
}

.how-to-play__step {
    display: flex;
    margin-bottom: 30px;
    position: relative;
}

.how-to-play__step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 50px;
    left: 25px;
    width: 2px;
    height: calc(100% + 30px);
    background-color: rgba(255, 255, 255, 0.2);
    z-index: 0;
}

.how-to-play__step-number {
    width: 50px;
    height: 50px;
    background-color: #FF9900;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin-right: 20px;
    position: relative;
    z-index: 1;
}

.how-to-play__step-content {
    flex: 1;
}

.how-to-play__step-title {
    margin-bottom: 10px;
    /* color: white; */
}



/* Bonus rounds styles */
.bonus-rounds {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.bonus-round {
    display: flex;
    align-items: center;
    gap: 40px;
    background-color: white;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.bonus-round:hover {
    transform: translateY(-10px);
}

.bonus-round:nth-child(even) {
    flex-direction: row-reverse;
}

.bonus-round__image {
    flex: 1;
    max-width: 45%;
}

.bonus-round__img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.bonus-round__content {
    flex: 1;
}

.bonus-round__title {
    color: #1E2761;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.bonus-round__text {
    color: #666;
    margin-bottom: 20px;
    font-size: 1rem;
    line-height: 1.6;
}

.bonus-round__info {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    background-color: #f9f9f9;
    padding: 15px;
    border-radius: 8px;
}

.bonus-round__info-item {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 150px;
}

.bonus-round__info-label {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.bonus-round__info-value {
    color: #FF9900;
    font-weight: bold;
    font-size: 1.2rem;
}

/* Strategies styles */
.strategies {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 30px;
}

.strategy {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.strategy__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: #f9f9f9;
    border-bottom: 1px solid #eee;
}

.strategy__title {
    margin: 0;
    color: #1E2761;
    font-size: 1.3rem;
}

.strategy__icon {
    width: 40px;
    height: 40px;
    background-color: #1E2761;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.strategy:nth-child(1) .strategy__icon {
    background-color: #FF9900;
}

.strategy:nth-child(2) .strategy__icon {
    background-color: #2A9D8F;
}

.strategy:nth-child(3) .strategy__icon {
    background-color: #E63946;
}

.strategy:nth-child(4) .strategy__icon {
    background-color: #457B9D;
}

.strategy__content {
    padding: 20px;
}

.strategy__text {
    color: #666;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.strategy__tips {
    background-color: #f9f9f9;
    padding: 15px;
    border-radius: 8px;
}

.strategy__tip {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    color: #666;
    font-size: 0.95rem;
}

.strategy__tip:last-child {
    margin-bottom: 0;
}

.strategy__tip-icon {
    color: #2A9D8F;
    margin-right: 10px;
}

.strategy-disclaimer {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    color: #666;
    font-size: 0.95rem;
    text-align: center;
}

/* Big wins styles */
.big-wins {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.big-win {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.big-win:hover {
    transform: translateY(-10px);
}

.big-win__multiplier {
    background-color: #FF9900;
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
    padding: 15px;
    text-align: center;
}

.big-win:nth-child(1) .big-win__multiplier {
    background-color: #FF9900;
}

.big-win:nth-child(2) .big-win__multiplier {
    background-color: #2A9D8F;
}

.big-win:nth-child(3) .big-win__multiplier {
    background-color: #E63946;
}

.big-win:nth-child(4) .big-win__multiplier {
    background-color: #457B9D;
}

.big-win:nth-child(5) .big-win__multiplier {
    background-color: #E76F51;
}

.big-win__details {
    padding: 15px;
    text-align: center;
}

.big-win__user {
    font-weight: bold;
    color: #1E2761;
    margin-bottom: 5px;
}

.big-win__amount {
    color: #FF9900;
    font-weight: bold;
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.big-win__bet {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.big-win__time {
    color: #999;
    font-size: 0.8rem;
}

/* Responsive styles */
@media (max-width: 992px) {
    .game-overview {
        flex-direction: column;
    }

    .game-overview__image {
        order: -1;
        margin-bottom: 30px;
    }

    .bonus-round {
        flex-direction: column !important;
        align-items: center;
    }

    .bonus-round__image {
        max-width: 100%;
        margin-bottom: 20px;
    }

    .strategies {
        grid-template-columns: 1fr;
    }

    .big-wins {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .game-overview__features {
        grid-template-columns: 1fr;
    }

    .big-wins {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .game-overview__feature {
        flex-direction: column;
        text-align: center;
    }

    .game-overview__feature-icon {
        margin: 0 auto 15px;
    }

    .how-to-play__step {
        flex-direction: column;
        text-align: center;
    }

    .how-to-play__step-number {
        margin: 0 auto 15px;
    }

    .how-to-play__step:not(:last-child)::after {
        left: 50%;
        top: 65px;
        height: 30px;
        width: 2px;
        transform: translateX(-50%);
    }
}

/* Animation styles */
@keyframes wheel-spin {
    0% {
        transform: rotate(0);
    }

    100% {
        transform: rotate(360deg);
    }
}

.hero__img {
    animation: wheel-spin 20s linear infinite;
    transform-origin: center;
}

.faq__answer {
    display: none;
    transition: max-height 0.3s ease;
}

.faq__item.active .faq__answer {
    display: block;
}