:root {
    --primary-color: #2041b8;
    --secondary-color: #1a3696;
    --background-color: #2041b8;
    --text-color: #fff;
    --button-text: #fff;
}

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

body {
    font-family: 'M PLUS Rounded 1c', Arial, sans-serif;
    margin: 0;
    line-height: 1.6;
    background-color: #1c3788;
    color: white;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Standard text styling for all paragraphs */
.text {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 0.75rem;
    font-weight: 400;
    opacity: 0.95;
    letter-spacing: 0.02em;
    color: rgba(255, 255, 255, 0.95);
}

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

@media (max-width: 768px) {
    .text {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .text {
        font-size: 1rem;
    }
}

.header {
    background: linear-gradient(90deg, #2a54d2 0%, #4786ee 50%, #2a54d2 100%);
    border-bottom: none;
    border-top: none;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    padding: 12px 0;
    position: relative;
}

.header::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.5), transparent);
}

.header::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
}

.header__container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0.5rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

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

.header__logo-img {
    height: 48px;
    width: auto;
    transform: translateY(-1px);
    margin-top: 3px;
}

.header__auth {
    display: flex;
    gap: 0.65rem;
    align-items: center;
    margin-left: auto;
    padding-left: 1rem;
}

/* Navigation Menu */
.header__nav {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.header__nav-link {
    color: white;
    text-decoration: none;
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.3s ease;
    opacity: 0.85;
    white-space: nowrap;
    padding: 0.4rem 0.75rem;
    position: relative;
}

.header__nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #ffb700, #ff9500);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.header__nav-link:hover {
    opacity: 1;
}

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

/* Mobile Login Button */
.header__mobile-login {
    display: none;
    text-decoration: none;
    padding: 0.35rem 1rem;
    border-radius: 18px;
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    transition: all 0.25s ease;
    background: linear-gradient(to bottom, #4dabf7 0%, #339af0 100%);
    color: #FFFFFF;
    text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.5);
    border: 1px solid #74c0fc;
    border-bottom: 3px solid #228be6;
    box-shadow: 
        0 1px 0 rgba(255, 255, 255, 0.4) inset,
        0 4px 12px rgba(0, 0, 0, 0.25);
    margin-right: 0.75rem;
    transform: translateY(2px);
}

.header__mobile-login:hover {
    background: linear-gradient(to bottom, #5cb6f8 0%, #4dabf7 100%);
    transform: translateY(1px);
    box-shadow: 
        0 1px 0 rgba(255, 255, 255, 0.4) inset,
        0 1px 1px rgba(0, 0, 0, 0.2);
}

.header__mobile-login:active {
    transform: translateY(3px);
    border-bottom: 1px solid #228be6;
}

/* Hamburger Menu */
.header__hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.header__hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 3px 0;
    transition: all 0.3s ease;
}

.header__hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.header__hamburger.active span:nth-child(2) {
    opacity: 0;
}

.header__hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

.header__button {
    text-decoration: none;
    padding: 0.5rem 1.3rem;
    border-radius: 0;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.8rem;
    position: relative;
    color: #FFFFFF;
    text-shadow: none;
    background: linear-gradient(135deg, #4dabf7 0%, #339af0 100%);
    border: none;
    box-shadow: 0 4px 15px rgba(77, 171, 247, 0.4);
    transition: all 0.3s ease;
    clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 100%, 8px 100%);
    overflow: hidden;
}

.header__button::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to bottom, rgba(255,255,255,0.2), transparent);
    pointer-events: none;
}

.header__button:hover {
    background: linear-gradient(to bottom, #5cb6f8 0%, #4dabf7 100%);
}

.header__button:active {
    transform: translateY(3px);
    box-shadow: 
        0 1px 0 rgba(255, 255, 255, 0.4) inset,
        0 1px 1px rgba(0, 0, 0, 0.2);
    border-bottom: 1px solid #228be6;
}

.header__button--login, .header__button--register {
    background: linear-gradient(to bottom, #4dabf7 0%, #339af0 100%);
}

.header__button--login:hover, .header__button--register:hover {
    background: linear-gradient(to bottom, #5cb6f8 0%, #4dabf7 100%);
}

.hero {
    position: relative;
    min-height: 550px;
    background: radial-gradient(circle at 75% 50%, rgba(20, 40, 100, 0.4) 0%, rgba(10, 20, 50, 0.95) 100%), 
                url(assets/pistolohero.webp);
    background-size: cover;
    background-position: center;
    color: white;
    display: flex;
    align-items: center;
    border-bottom: 5px solid #ffb700;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.4) 0%, transparent 100%);
    z-index: 1;
}

.hero__container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 3rem 2rem;
    width: 100%;
    position: relative;
    z-index: 2;
}

.hero__content {
    width: 100%;
    max-width: 650px;
    animation: slideInLeft 0.8s ease-out;
}

@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-30px); }
    to { opacity: 1; transform: translateX(0); }
}

.hero__title {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    color: white;
    text-transform: uppercase;
    line-height: 1.1;
    text-shadow: 0 4px 15px rgba(0,0,0,0.6);
    letter-spacing: -1px;
}

.hero__text {
    /* This class is now replaced by .text */
}

.hero__bonus {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 1.25rem 2rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-left: 6px solid #ffb700;
    box-shadow: 0 10px 30px rgba(0,0,0,0.25);
    transition: transform 0.3s ease;
}

.hero__bonus:hover {
    transform: translateX(5px);
    background: rgba(255, 255, 255, 0.15);
}

.hero__bonus-icon {
    font-size: 2.8rem;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3));
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.hero__bonus-text {
    font-size: 1.1rem;
    font-weight: 500;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 1px 2px rgba(0,0,0,0.5);
}

.hero__button {
    text-decoration: none;
    display: inline-block;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    border-radius: 0;
    font-weight: 800;
    text-transform: uppercase;
    position: relative;
    color: #FFFFFF;
    text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.5);
    background: linear-gradient(135deg, #4dabf7 0%, #339af0 100%);
    border: none;
    box-shadow: 0 8px 25px rgba(77, 171, 247, 0.4);
    transition: all 0.3s ease;
    clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 100%, 12px 100%);
    overflow: hidden;
}

.hero__button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
    transition: left 0.4s ease;
}

.hero__button:hover::before {
    left: 100%;
}

.hero__button:hover {
    background: linear-gradient(135deg, #5cb6f8 0%, #4dabf7 100%);
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(77, 171, 247, 0.5);
}

.hero__button:active {
    transform: translateY(1px);
    box-shadow: 0 4px 15px rgba(77, 171, 247, 0.4);
}

@media (max-width: 768px) {
    .hero {
        min-height: auto;
        padding: 4rem 0;
        background-position: 65% center;
        text-align: center;
    }

    .hero__container {
        padding: 0 1.5rem;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero__content {
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero__title {
        font-size: 2.25rem;
        margin-bottom: 1.5rem;
        text-shadow: 0 3px 8px rgba(0,0,0,0.7);
    }

    .hero__bonus {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        padding: 1.5rem;
        margin-bottom: 2rem;
        width: 100%;
        background: rgba(20, 30, 60, 0.6);
        border-left: none;
        border-top: 4px solid #ffb700;
    }

    .hero__bonus-icon {
        font-size: 3rem;
        margin-bottom: 0.5rem;
    }

    .hero__bonus-text {
        font-size: 1.05rem;
    }

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

/* Medium screens optimization */
@media (max-width: 1024px) and (min-width: 769px) {
    .header__nav {
        gap: 0.7rem;
    }
    
    .header__nav-link {
        font-size: 0.72rem;
    }
    
    .header__button {
        padding: 0.28rem 0.7rem;
        font-size: 0.75rem;
    }
    
    .header__auth {
        gap: 0.45rem;
        padding-left: 0.7rem;
    }
}

@media (max-width: 768px) {
    .header__hamburger {
        display: flex;
    }
    
    .header__mobile-login {
        display: block;
        margin-left: auto;
    }
    
    .header__container {
        display: flex;
        align-items: center;
    }
    
    .header__nav {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 280px;
        background: linear-gradient(to bottom, #4786ee 0%, #2a54d2 100%);
        flex-direction: column;
        align-items: flex-start;
        padding: 80px 30px 30px;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.3);
        transition: right 0.3s ease;
        z-index: 1000;
        overflow-y: auto;
    }
    
    .header__nav.active {
        right: 0;
    }
    
    .header__nav-link {
        width: 100%;
        padding: 0.75rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        font-size: 1rem;
    }
    
    .header__auth {
        width: 100%;
        flex-direction: column;
        margin-top: 2rem;
        padding-top: 2rem;
        border-top: 1px solid rgba(255, 255, 255, 0.2);
    }
    
    .header__button {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .header__nav {
        width: 100%;
    }
    
    .header__button {
        font-size: 0.9rem;
        padding: 0.5rem 1rem;
    }
}

.promotions {
    padding: 3.5rem 0;
    color: white;
    position: relative;
    overflow: hidden;
}

.promotions::before {
    content: '';
    position: absolute;
    top: 0;
    left: -10%;
    width: 120%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
}

.promotions::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: -10%;
    width: 120%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
}

.promotions__container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
}

.promotions__title {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    color: white;
}

.promotions__text {
    /* This class is now replaced by .text */
}

.promotions__offer-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    color: white;
}

.promotions__offer-text {
    /* This class is now replaced by .text */
}

.promotions__offer-text:last-child {
    /* This functionality is covered by .text:last-child */
}

@media (max-width: 768px) {
    .promotions {
        padding: 1.5rem 0;
    }

    .promotions__title {
        font-size: 1.75rem;
    }

    .promotions__offer-title {
        font-size: 1.25rem;
    }

    .promotions__text,
    .promotions__offer-text {
        font-size: 1rem;
    }
}

.bonus-banner {
    position: relative;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('assets/pistolobanner.webp');
    background-size: cover;
    background-position: center;
    padding: 4rem 0;
    color: white;
    text-align: center;
}

.bonus-banner__container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 1rem;
}

.bonus-banner__tagline {
    font-size: 1rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.bonus-banner__title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 2rem;
    color: #FFD700;
    text-transform: uppercase;
    letter-spacing: -0.01em;
}

.bonus-banner__button {
    display: inline-block;
    padding: 0.9rem 3.5rem;
    font-size: 1.1rem;
    border-radius: 25px;
    font-weight: 800;
    text-transform: uppercase;
    position: relative;
    color: #FFFFFF;
    text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.5);
    background: linear-gradient(to bottom, #ffb700 0%, #ff9500 100%);
    border: 1px solid #ffcc00;
    border-bottom: 3px solid #ff7e00;
    box-shadow: 
        0 1px 0 rgba(255, 255, 255, 0.4) inset,
        0 6px 20px rgba(255, 149, 0, 0.4);
    transition: all 0.2s ease;
    text-decoration: none;
    margin-bottom: 1.5rem;
}

.bonus-banner__button:hover {
    background: linear-gradient(to bottom, #ffc107 0%, #ffb700 100%);
}

.bonus-banner__button:active {
    transform: translateY(3px);
    box-shadow: 
        0 1px 0 rgba(255, 255, 255, 0.4) inset,
        0 1px 1px rgba(0, 0, 0, 0.2);
}

.bonus-banner__disclaimer {
    font-size: 0.8rem;
    opacity: 0.7;
    margin-top: 1rem;
}

@media (max-width: 768px) {
    .bonus-banner {
        padding: 3rem 0;
    }
    
    .bonus-banner__title {
        font-size: 2rem;
    }
    
    .bonus-banner__tagline {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .bonus-banner__title {
        font-size: 1.5rem;
    }
    
    .bonus-banner__button {
        width: 100%;
        padding: 0.8rem 1.5rem;
    }
}

.casino-bonus {
    padding: 0rem 0;
    color: white;
    background-color: #1c3788;
}

.casino-bonus__container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    align-items: center;
    gap: 3rem;
}

.casino-bonus__content {
    flex: 1;
}

.casino-bonus__title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: white;
    text-transform: uppercase;
}

.casino-bonus__text {
    /* This class is now replaced by .text */
}

.casino-bonus__text:last-of-type {
    /* This functionality is covered by .text:last-child */
}

.casino-bonus__button {
    display: inline-block;
    padding: 0.9rem 2.5rem;
    font-size: 1.1rem;
    border-radius: 25px;
    font-weight: 800;
    text-transform: uppercase;
    position: relative;
    color: #FFFFFF;
    text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.5);
    background: linear-gradient(to bottom, #4dabf7 0%, #339af0 100%);
    border: 1px solid #74c0fc;
    border-bottom: 3px solid #228be6;
    box-shadow: 
        0 1px 0 rgba(255, 255, 255, 0.4) inset,
        0 6px 20px rgba(77, 171, 247, 0.4);
    transition: all 0.2s ease;
    text-decoration: none;
}

.casino-bonus__button:hover {
    background: linear-gradient(to bottom, #5cb6f8 0%, #4dabf7 100%);
}

.casino-bonus__button:active {
    transform: translateY(3px);
    box-shadow: 
        0 1px 0 rgba(255, 255, 255, 0.4) inset,
        0 1px 1px rgba(0, 0, 0, 0.2);
    border-bottom: 1px solid #228be6;
}

.casino-bonus__image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.casino-bonus__img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
}

@media (max-width: 768px) {
    .casino-bonus {
        padding: 3rem 0;
    }

    .casino-bonus__container {
        flex-direction: column;
        gap: 2rem;
    }

    .casino-bonus__title {
        font-size: 1.75rem;
    }

    .casino-bonus__text {
        font-size: 1rem;
    }

    .casino-bonus__button {
        width: 100%;
        text-align: center;
    }
}

.quick-info {
    padding-bottom: 4rem;
    background-color: #1c3788;
    color: white;
}

.quick-info__container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 1rem;
}

.quick-info__title {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 2.5rem;
    text-align: center;
    color: white;
}

.quick-info__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.quick-info__card {
    background: linear-gradient(145deg, rgba(42, 84, 210, 0.5) 0%, rgba(71, 134, 238, 0.3) 100%);
    border-radius: 0;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.35);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
    border-bottom: 4px solid rgba(255, 183, 0, 0.5);
    position: relative;
    overflow: hidden;
    clip-path: polygon(0 10px, 10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%);
}

.quick-info__card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 40%, rgba(255,255,255,0.05) 50%, transparent 60%);
    background-size: 200% 200%;
    animation: cardShine 3s ease-in-out infinite;
}

@keyframes cardShine {
    0%, 100% { background-position: 200% 200%; }
    50% { background-position: 0% 0%; }
}

.quick-info__card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    border-bottom-color: rgba(255, 183, 0, 0.8);
}

.quick-info__label {
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.05em;
}

.quick-info__value {
    font-size: 1rem;
    font-weight: 800;
    color: white;
}

@media (max-width: 768px) {
    .quick-info__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .quick-info__title {
        font-size: 1.75rem;
    }
}

@media (max-width: 480px) {
    .quick-info__grid {
        grid-template-columns: 1fr;
    }
    
    .quick-info__card {
        padding: 1.25rem;
    }
}

.quick-info__card {
    padding: 1.25rem;
}

.bonus-cards {
    padding: 2.5rem 0;
    background-color: #1c3788;
    color: white;
}

.bonus-cards__container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 1rem;
}

.bonus-cards__wrapper {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.bonus-cards__text {
    flex: 0 0 460px;
    width: 460px;
}

.bonus-cards__heading {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    color: white;
    text-transform: uppercase;
}

.bonus-cards__paragraph {
    /* This class is now replaced by .text */
}

.bonus-cards__content {
    flex: 1;
}

.bonus-cards__title {
    font-size: 1.75rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    text-align: center;
    color: white;
}

.bonus-cards__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

.bonus-cards__card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.02) 100%);
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.35);
    border: none;
    border-left: 4px solid rgba(255, 183, 0, 0.6);
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.bonus-cards__card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, rgba(255, 183, 0, 0.8), transparent);
}

.bonus-cards__card:hover {
    transform: translateY(-10px) translateX(5px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.45);
    border-left-color: rgba(255, 183, 0, 1);
}

.bonus-cards__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bonus-cards__tag {
    position: absolute;
    top: 6px;
    right: 6px;
    background-color: #e74c3c;
    color: white;
    font-size: 0.65rem;
    font-weight: bold;
    padding: 0.15rem 0.5rem;
    border-radius: 3px;
    text-transform: uppercase;
    z-index: 1;
}

.bonus-cards__tag:nth-child(2) {
    background-color: #9b59b6;
}

.bonus-cards__label {
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    margin: 0.5rem 0.75rem 0.15rem;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.05em;
}

.bonus-cards__amount {
    font-size: 1.1rem;
    font-weight: 800;
    color: white;
    margin: 0 0.75rem 0.5rem;
    line-height: 1.2;
}

.bonus-cards__button {
    display: block;
    margin: 0 0.75rem 0.75rem;
    padding: 0.55rem 0.85rem;
    font-size: 0.8rem;
    border-radius: 18px;
    font-weight: 800;
    text-transform: uppercase;
    text-align: center;
    position: relative;
    color: #FFFFFF;
    text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.5);
    background: linear-gradient(to bottom, #ffb700 0%, #ff9500 100%);
    border: 1px solid #ffcc00;
    border-bottom: 3px solid #ff7e00;
    box-shadow: 
        0 1px 0 rgba(255, 255, 255, 0.4) inset,
        0 4px 12px rgba(255, 149, 0, 0.35);
    transition: all 0.2s ease;
    text-decoration: none;
}

.bonus-cards__button:hover {
    background: linear-gradient(to bottom, #ffc107 0%, #ffb700 100%);
}

.bonus-cards__button:active {
    transform: translateY(3px);
    box-shadow: 
        0 1px 0 rgba(255, 255, 255, 0.4) inset,
        0 1px 1px rgba(0, 0, 0, 0.2);
    border-bottom: 1px solid #ff7e00;
}

@media (max-width: 992px) {
    .bonus-cards__wrapper {
        flex-direction: column;
        gap: 2rem;
        align-items: center;
    }
    
    .bonus-cards__text {
        flex: 0 0 auto;
        width: 100%;
        max-width: 100%;
    }
    
    .welcome-bonus__content {
        flex: 0 0 auto;
        width: 100%;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .bonus-cards {
        padding: 2.5rem 0;
    }
    
    .bonus-cards__text {
        text-align: center;
        width: 100% !important;
        max-width: 500px !important;
        margin: 0 auto 2rem !important;
        flex: none !important;
    }
    
    .bonus-cards__heading {
        text-align: center;
        margin: 0 auto 0.75rem !important;
    }
    
    .bonus-cards__paragraph {
        text-align: center;
        margin: 0 auto !important;
    }
    
    .bonus-cards__content {
        width: 100% !important;
        max-width: 100% !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
    }
    
    .bonus-cards__grid {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1rem !important;
        width: 100% !important;
        max-width: 600px !important;
        margin: 0 auto !important;
    }
    
    .bonus-cards__card {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
    }
}

@media (max-width: 480px) {
    .bonus-cards__grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.75rem !important;
        max-width: 100% !important;
    }
    
    .bonus-cards__card {
        width: 100% !important;
    }
    
    .bonus-cards__image {
        height: 100px !important;
    }
    
    .bonus-cards__label {
        font-size: 0.7rem !important;
        margin: 0.5rem 0.5rem 0.15rem !important;
    }
    
    .bonus-cards__amount {
        font-size: 0.9rem !important;
        margin: 0 0.5rem 0.5rem !important;
    }
    
    .bonus-cards__button {
        font-size: 0.7rem !important;
        padding: 0.4rem 0.5rem !important;
        margin: 0 0.5rem 0.5rem !important;
    }
}

.bonus-cards__image {
    width: 100%;
    height: 150px;
    overflow: hidden;
    margin-bottom: 1rem;
}

.bonus-cards__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.welcome-bonus {
    padding: 4rem 0;
    background-color: #1c3788;
    color: white;
}

.welcome-bonus__container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    gap: 3rem;
}

.welcome-bonus__card {
    flex: 1;
    background: linear-gradient(160deg, #2a54d2 0%, #1e3c96 100%);
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
    border: none;
    position: relative;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%);
}

.welcome-bonus__card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ffb700, #ff9500, #ffb700);
}

.welcome-bonus__card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at top right, rgba(255, 183, 0, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.welcome-bonus__header {
    padding: 1.5rem;
    text-align: center;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.welcome-bonus__logo {
    max-width: 120px;
    margin-bottom: 0.5rem;
}

.welcome-bonus__title {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: white;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.welcome-bonus__options {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin: 1.5rem;
}

.welcome-bonus__option {
    background-color: #4786ee;
    border-radius: 14px;
    padding: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.85rem;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.2s;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.15);
}

.welcome-bonus__option:hover {
    background-color: #5791f0;
}

.welcome-bonus__option--selected {
    border-color: #ffb700;
}

.welcome-bonus__option-icon {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.welcome-bonus__icon-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 50%;
}

.welcome-bonus__icon-svg {
    width: 100%;
    height: 100%;
}

.welcome-bonus__option-text {
    flex-grow: 1;
}

.welcome-bonus__option-label {
    font-size: 0.75rem;
    font-weight: bold;
    color: rgba(255, 255, 255, 0.8);
}

.welcome-bonus__option-amount {
    font-size: 0.9rem;
    font-weight: bold;
    color: white;
}

.welcome-bonus__radio {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid white;
    background-color: transparent;
    flex-shrink: 0;
}

.welcome-bonus__radio--selected {
    background-color: #4cd137;
    border-color: #4cd137;
    position: relative;
}

.welcome-bonus__radio--selected::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: white;
}

.welcome-bonus__choose-button {
    display: block;
    width: calc(100% - 3rem);
    margin: 0 1.5rem 1.5rem;
    padding: 1.1rem;
    background: linear-gradient(to bottom, #ffb700 0%, #ff9500 100%);
    color: white;
    font-weight: 800;
    font-size: 1.1rem;
    text-align: center;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    text-transform: uppercase;
    box-shadow: 0 6px 20px rgba(255, 149, 0, 0.4);
    transition: all 0.2s ease;
    text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.5);
    border: 1px solid #ffcc00;
    border-bottom: 3px solid #ff7e00;
}

.welcome-bonus__choose-button:hover {
    background: linear-gradient(to bottom, #ffc107 0%, #ffb700 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.welcome-bonus__choose-button:active {
    transform: translateY(3px);
    box-shadow: 
        0 1px 0 rgba(255, 255, 255, 0.4) inset,
        0 1px 1px rgba(0, 0, 0, 0.2);
    border-bottom: 1px solid #ff7e00;
}

.welcome-bonus__content {
    flex: 0 0 460px;
    width: 460px;
}

.welcome-bonus__content-title {
    font-size: 1.75rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    color: white;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.welcome-bonus__content-icon {
    font-size: 1.5rem;
}

.welcome-bonus__text {
    /* This class is now replaced by .text */
}

.welcome-bonus__text:last-child {
    /* This functionality is covered by .text:last-child */
}

@media (max-width: 768px) {
    .welcome-bonus {
        padding: 3rem 0;
    }
    
    .welcome-bonus__container {
        flex-direction: column;
    }
    
    .welcome-bonus__content-title {
        font-size: 1.5rem;
    }
    
    .welcome-bonus__option {
        padding: 0.5rem;
    }
    
    .welcome-bonus__option-icon {
        width: 40px;
        height: 40px;
    }
    
    .welcome-bonus__emoji {
        font-size: 2rem;
    }
}

@media (max-width: 992px) {
    .bonus-cards__wrapper {
        flex-direction: column;
        gap: 2rem;
        align-items: center;
    }
    
    .bonus-cards__text {
        flex: 0 0 auto;
        width: 100%;
        max-width: 100%;
    }
    
    .welcome-bonus__content {
        flex: 0 0 auto;
        width: 100%;
        max-width: 100%;
    }
}

.tournament-card {
    max-width: 1000px;
    margin: 2rem auto;
    padding: 0 1rem;
}

.tournament-card__container {
    background: linear-gradient(135deg, #3a3a9e 0%, #2a2a7e 100%);
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
    border: none;
    position: relative;
    clip-path: polygon(20px 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%, 0 20px);
}

.tournament-card__container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #e91e63, #ff5722, #ffc107, #ff5722, #e91e63);
    z-index: 5;
}

.tournament-card__container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at top left, rgba(233, 30, 99, 0.2) 0%, transparent 40%),
        radial-gradient(ellipse at bottom right, rgba(255, 193, 7, 0.15) 0%, transparent 40%);
    pointer-events: none;
}

.tournament-card__content {
    display: flex;
    min-height: 250px;
    background: linear-gradient(to right, rgb(58 58 158 / 49%) 50%, transparent), url(assets/tournament.webp);
    background-size: cover;
    background-position: right center;
    padding: 2rem;
    position: relative;
}

.tournament-card__info {
    flex: 0 0 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: white;
    z-index: 1;
}

.tournament-card__title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.tournament-card__prize-label {
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.tournament-card__prize-amount {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffb700;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.tournament-card__details {
    display: flex;
    gap: 2rem;
    margin-top: 0.5rem;
}

.tournament-card__detail {
    display: flex;
    flex-direction: column;
}

.tournament-card__detail-label {
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.tournament-card__detail-value {
    font-size: 1.25rem;
    font-weight: 700;
}

#tournament-countdown {
    color: #ffb700;
    font-family: monospace;
    letter-spacing: 0.05em;
    transition: color 0.3s ease;
}

#tournament-countdown.ending-soon {
    color: #ff5500;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.7; }
    100% { opacity: 1; }
}

.tournament-card__tag {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: #e91e63;
    color: white;
    font-size: 0.8rem;
    font-weight: bold;
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    text-transform: uppercase;
    z-index: 1;
}

.tournament-card__footer {
    background-color: #2a54d2;
    padding: 1rem 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.tournament-card__action-button {
    display: inline-block;
    padding: 0.9rem 3rem;
    font-size: 0.9rem;
    border-radius: 25px;
    font-weight: 800;
    text-transform: uppercase;
    text-align: center;
    position: relative;
    color: #FFFFFF;
    text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.5);
    background: linear-gradient(to bottom, #ffb700 0%, #ff9500 100%);
    border: 1px solid #ffcc00;
    border-bottom: 3px solid #ff7e00;
    box-shadow: 
        0 1px 0 rgba(255, 255, 255, 0.4) inset,
        0 6px 20px rgba(255, 149, 0, 0.4);
    transition: all 0.2s ease;
    cursor: pointer;
}

.tournament-card__action-button:hover {
    background: linear-gradient(to bottom, #ffc107 0%, #ffb700 100%);
}

.tournament-card__action-button:active {
    transform: translateY(3px);
    box-shadow: 
        0 1px 0 rgba(255, 255, 255, 0.4) inset,
        0 1px 1px rgba(0, 0, 0, 0.2);
    border-bottom: 1px solid #ff7e00;
}

.tournament-card__button {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
}

.tournament-card__button-icon {
    font-size: 1.25rem;
    transition: transform 0.2s;
}

.text-link {
    color: #faa701;
}

/* Inline links within text content */
.text a {
    color: #faa701;
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-thickness: 1px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.text a:hover {
    color: #ffb733;
    text-decoration-thickness: 2px;
    text-shadow: 0 0 8px rgba(250, 167, 1, 0.3);
}

.tournament-card__button:hover .tournament-card__button-icon {
    transform: translateY(2px);
}

@media (max-width: 768px) {
    .tournament-card__content {
        flex-direction: column;
        background-size: cover;
        background-position: center;
        padding: 1.5rem;
    }
    
    .tournament-card__info {
        flex: 0 0 auto;
        width: 100%;
    }
    
    .tournament-card__title {
        font-size: 2rem;
    }
    
    .tournament-card__prize-amount {
        font-size: 2rem;
    }
    
    .tournament-card__details {
        gap: 1rem;
    }
    
    .tournament-card__footer {
        padding: 0.75rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .tournament-card__title {
        font-size: 1.75rem;
    }
    
    .tournament-card__prize-amount {
        font-size: 1.75rem;
    }
    
    .tournament-card__details {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .tournament-card__footer {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
}

.game-grid {
    padding: 2rem 0;
    background-color: #1c3788;
    color: white;
}

.game-grid__container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 1rem;
}

.game-grid__title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 2rem;
    color: white;
    text-transform: uppercase;
}

.game-grid__subtitle {
    /* This class is now replaced by .text */
}

.game-grid__games {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1rem;
}

.game-card {
    border-radius: 0;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    aspect-ratio: 3/4;
    border: none;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 15px), calc(100% - 15px) 100%, 0 100%);
}

.game-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.8) 100%);
    z-index: 1;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.game-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #ffb700, #ff9500);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
    z-index: 2;
}

.game-card:hover {
    transform: translateY(-15px) scale(1.05);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.6);
}

.game-card:hover::after {
    transform: scaleX(1);
}

.game-card__link {
    display: block;
    height: 100%;
    width: 100%;
    position: relative;
}

.game-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.game-card__overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
    padding: 1rem 0.5rem 0.5rem;
    text-align: center;
}

.game-card__title {
    font-size: 0.8rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.25rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.game-card__play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    background: linear-gradient(to bottom, #ffb700 0%, #ff9500 100%);
    color: white;
    font-size: 0.7rem;
    font-weight: 800;
    padding: 0.4rem 1.1rem;
    border-radius: 16px;
    text-transform: uppercase;
    opacity: 0;
    transition: opacity 0.25s ease, transform 0.25s ease;
    z-index: 2;
    text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.5);
    border: 1px solid #ffcc00;
    border-bottom: 2px solid #ff7e00;
    box-shadow: 
        0 1px 0 rgba(255, 255, 255, 0.4) inset,
        0 4px 12px rgba(255, 149, 0, 0.4);
    text-align: center;
    min-width: 80px;
    white-space: nowrap;
}

.game-card:hover .game-card__play {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
    background: linear-gradient(to bottom, #ffc107 0%, #ffb700 100%);
}

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

@media (max-width: 768px) {
    .game-grid__games {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .game-grid__title {
        font-size: 1.75rem;
    }
}

@media (max-width: 480px) {
    .game-grid__games {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    
    .game-card__title {
        font-size: 0.8rem;
    }
    
    .game-grid__subtitle {
        /* This class is now replaced by .text */
    }
}

.casino-info {
    padding: 2rem 0;
    background-color: #1c3788;
    color: white;
}

.casino-info__container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 1rem;
}

.casino-info__title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 2rem;
    color: white;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

ol {
    padding-left: 1.5rem;
    padding-bottom: 1rem;
    list-style-type: decimal;
}

ol li {
    margin-bottom: 0.75rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
}

ol li:last-child {
    margin-bottom: 0;
}

ul {
    padding-left: 1.5rem;
    padding-bottom: 1rem;
    list-style-type: disc;
}

ul li {
    margin-bottom: 0.75rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
}

ul li:last-child {
    margin-bottom: 0;
}

.promotions__container ul,
.promotions__container ol {
    margin-top: 1rem;
}

/* Registration Steps */
.registration-steps {
    counter-reset: reg-step;
    list-style: none;
    padding: 0;
    margin: 2rem 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.registration-steps li {
    counter-increment: reg-step;
    background: linear-gradient(90deg, rgba(71, 134, 238, 0.2) 0%, rgba(42, 84, 210, 0.1) 100%);
    border-radius: 0;
    padding: 1.25rem 1.5rem 1.25rem 5rem;
    margin-bottom: 0;
    position: relative;
    border-left: 4px solid rgba(255, 183, 0, 0.6);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.registration-steps li:hover {
    transform: translateX(10px);
    background: linear-gradient(90deg, rgba(71, 134, 238, 0.3) 0%, rgba(42, 84, 210, 0.15) 100%);
    border-left-color: rgba(255, 183, 0, 1);
}

.registration-steps li::before {
    content: counter(reg-step);
    position: absolute;
    left: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #ffb700, #ff9500);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1rem;
    color: white;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    box-shadow: 0 4px 15px rgba(255, 183, 0, 0.4);
}

.registration-steps li:last-child {
    border-bottom: none;
}

.casino-info__icon {
    font-size: 1.75rem;
}

.casino-info__icon-small {
    font-size: 1.25rem;
    margin-right: 0.5rem;
    display: inline-block;
    width: 1.5rem;
}

.casino-info__table {
    background-color: rgba(42, 84, 210, 0.2);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.casino-info__row {
    display: flex;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.casino-info__row:last-child {
    border-bottom: none;
}

.casino-info__row:nth-child(odd) {
    background-color: rgba(42, 84, 210, 0.3);
}

.casino-info__cell {
    padding: 1rem 1.5rem;
    font-size: 1rem;
}

.casino-info__cell--label {
    flex: 0 0 35%;
    font-weight: 700;
    display: flex;
    align-items: center;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    background-color: rgba(42, 84, 210, 0.2);
}

.casino-info__cell--value {
    flex: 1;
}

@media (max-width: 768px) {
    .casino-info {
        padding: 3rem 0;
    }
    
    .casino-info__title {
        font-size: 1.75rem;
    }
    
    .casino-info__row {
        display: flex;
        flex-wrap: wrap;
    }
    
    .casino-info__cell--label,
    .casino-info__cell--value {
        flex: 0 0 50%;
        border: none;
        padding: 0.75rem 1rem;
    }
    
    .casino-info__cell--label {
        font-size: 0.9rem;
        background-color: rgba(42, 84, 210, 0.2);
        border-right: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .casino-info__cell--value {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .casino-info__cell--label,
    .casino-info__cell--value {
        padding: 0.6rem 0.8rem;
        font-size: 0.85rem;
    }
    
    .casino-info__icon-small {
        font-size: 1rem;
        margin-right: 0.3rem;
        width: 1.2rem;
    }
}

.pros-cons {
    padding: 2rem 0;
    background-color: #1c3788;
    color: white;
}

.pros-cons__container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 1rem;
}

.pros-cons__title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 2rem;
    color: white;
    text-transform: uppercase;
}

.pros-cons__table {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.pros-cons__row {
    display: flex;
    gap: 1rem;
}

.pros-cons__cell {
    flex: 1;
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    min-height: 80px;
}

.pros-cons__cell--advantage {
    border: 1px solid rgba(76, 209, 55, 0.3);
}

.pros-cons__cell--disadvantage {
    border: 1px solid rgba(200, 200, 200, 0.3);
}

.pros-cons__icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    flex-shrink: 0;
    position: relative;
}

.pros-cons__icon--advantage {
    background-color: #4cd137;
}

.pros-cons__icon--advantage::before {
    content: "✓";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 16px;
    font-weight: bold;
}

.pros-cons__icon--disadvantage {
    background-color: #c8c8c8;
}

.pros-cons__icon--disadvantage::before {
    content: "✕";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #333;
    font-size: 16px;
    font-weight: bold;
}

.pros-cons__text {
    font-size: 1rem;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .pros-cons {
        padding: 3rem 0;
    }
    
    .pros-cons__title {
        font-size: 1.75rem;
        margin-bottom: 1.5rem;
    }
    
    .pros-cons__row {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .pros-cons__cell {
        padding: 1rem;
    }
}

.bonus-table {
    padding: 4rem 0;
    background: linear-gradient(180deg, #1c3788 0%, rgba(42, 84, 210, 0.2) 50%, #1c3788 100%);
    color: white;
    position: relative;
}

.bonus-table::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: 
        radial-gradient(ellipse at 0% 50%, rgba(71, 134, 238, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 100% 50%, rgba(71, 134, 238, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.bonus-table__container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.bonus-table__title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: white;
    text-transform: uppercase;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    letter-spacing: 0.05em;
    position: relative;
    display: inline-block;
    padding-bottom: 1rem;
}

.bonus-table__title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #ffb700, #ff9500);
}

.bonus-table__subtitle {
    /* This class is now replaced by .text */
}

.bonus-table__wrapper {
    background: linear-gradient(135deg, rgba(42, 84, 210, 0.3) 0%, rgba(28, 55, 136, 0.5) 100%);
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    border: none;
    border-top: 3px solid rgba(255, 183, 0, 0.5);
    position: relative;
}

.bonus-table__wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 48%, rgba(255,255,255,0.02) 50%, transparent 52%);
    background-size: 20px 20px;
    pointer-events: none;
}

.bonus-table__header {
    display: flex;
    background: linear-gradient(90deg, rgba(71, 134, 238, 0.4) 0%, rgba(42, 84, 210, 0.6) 50%, rgba(71, 134, 238, 0.4) 100%);
    color: white;
    font-weight: 700;
    text-transform: uppercase;
    border-bottom: 2px solid rgba(255, 183, 0, 0.3);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    position: relative;
}

.bonus-table__header-cell {
    padding: 1.2rem 1.5rem;
    font-size: 0.9rem;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    text-align: left;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.05em;
}

.bonus-table__header-cell:nth-child(1) {
    flex: 0 0 20%;
}

.bonus-table__header-cell:nth-child(2) {
    flex: 0 0 25%;
}

.bonus-table__header-cell:nth-child(3) {
    flex: 0 0 35%;
}

.bonus-table__header-cell:nth-child(4) {
    flex: 0 0 20%;
    border-right: none;
}

.bonus-table__row {
    display: flex;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: background-color 0.2s ease;
}

.bonus-table__row:last-child {
    border-bottom: none;
}

.bonus-table__row:nth-child(odd) {
    background-color: rgba(42, 84, 210, 0.3);
}

.bonus-table__row:hover {
    background-color: rgba(42, 84, 210, 0.5);
}

.bonus-table__cell {
    padding: 1.2rem 1.5rem;
    font-size: 0.9rem;
    line-height: 1.5;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.bonus-table__cell:nth-child(1) {
    flex: 0 0 20%;
}

.bonus-table__cell:nth-child(2) {
    flex: 0 0 25%;
}

.bonus-table__cell:nth-child(3) {
    flex: 0 0 35%;
}

.bonus-table__cell:nth-child(4) {
    flex: 0 0 20%;
}

.bonus-table__cell:last-child {
    border-right: none;
}

.bonus-table__cell--name,
.bonus-table__cell:nth-child(1) {
    font-weight: 700;
    color: #ffb700;
}

.bonus-table__cell--amount {
    flex: 0 0 25%;
}

.bonus-table__cell--conditions {
    flex: 0 0 35%;
}

.bonus-table__cell--rollover {
    flex: 0 0 20%;
}

.bonus-table__cell--type {
    flex: 0 0 30%;
}

.bonus-table__cell--benefit {
    flex: 0 0 50%;
}

@media (max-width: 992px) {
    .bonus-table__header,
    .bonus-table__row {
        flex-wrap: wrap;
    }
    
    .bonus-table__header-cell {
        flex: 1 0 50%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding: 0.8rem 1rem;
        position: relative;
    }
    
    .bonus-table__header-cell:nth-child(1),
    .bonus-table__header-cell:nth-child(2),
    .bonus-table__header-cell:nth-child(3),
    .bonus-table__header-cell:nth-child(4) {
        flex: 1 0 50%;
    }
    
    .bonus-table__header-cell:nth-child(even) {
        border-right: none;
    }
    
    .bonus-table__cell {
        flex: 1 0 50% !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding: 0.8rem 1rem;
    }
    
    .bonus-table__cell:nth-child(even) {
        border-right: none;
    }
    
    .bonus-table__row .bonus-table__cell:nth-last-child(-n+2) {
        border-bottom: none;
    }
    
    .bonus-table__cell--name,
    .bonus-table__cell--amount {
        font-weight: 700;
    }
}

@media (max-width: 768px) {
    .bonus-table {
        padding: 2.5rem 0;
    }
    
    .bonus-table__title {
        font-size: 1.75rem;
    }
    
    .bonus-table__subtitle {
        /* This class is now replaced by .text */
    }
    
    .bonus-table__row {
        padding: 0.75rem 0;
        flex-direction: column;
        flex-wrap: nowrap !important;
        gap: 0.5rem;
    }
    
    .bonus-table__header {
        display: none;
    }
    
    .bonus-table__cell {
        flex: 1 0 100% !important;
        border-right: none;
        border-bottom: none !important;
        padding: 0.5rem 1rem;
        display: flex;
        align-items: center;
        position: relative;
    }
    
    .bonus-table__cell::before {
        content: attr(data-label);
        font-weight: 700;
        font-size: 0.8rem;
        text-transform: uppercase;
        color: rgba(255, 255, 255, 0.8);
        flex: 0 0 80px;
        margin-right: 0.75rem;
    }
    
    .bonus-table__cell--name {
        font-size: 1rem;
        font-weight: 700;
        color: #ffb700;
        border-left: 3px solid #ffb700;
        background-color: rgba(255, 183, 0, 0.1);
    }
    
    .bonus-table__cell--amount {
        font-weight: 700;
        font-size: 0.95rem;
    }
    
    .bonus-table__cell--conditions {
        font-size: 0.85rem;
    }
    
    .bonus-table__cell--rollover {
        font-size: 0.85rem;
        font-style: italic;
    }
    
    .bonus-table__row:not(:last-child) {
        border-bottom: 2px dashed rgba(255, 255, 255, 0.1);
    }
}

@media (max-width: 480px) {
    .bonus-table__cell {
        padding: 0.5rem 0.7rem;
    }
    
    .bonus-table__cell::before {
        flex: 0 0 70px;
        font-size: 0.75rem;
    }
    
    .bonus-table__cell--name {
        font-size: 0.95rem;
    }
    
    .bonus-table__cell--amount {
        font-size: 0.9rem;
    }
    
    .bonus-table__cell--conditions,
    .bonus-table__cell--rollover {
        font-size: 0.8rem;
    }
}

.rwerjk-casino {
    padding: 3rem 0;
    background-color: #1c3788;
    color: white;
}

.rwerjk-casino__container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 1rem;
}

.rwerjk-casino h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: white;
    text-align: left;
}

.rwerjk-casino h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 2rem 0 1rem;
    color: white;
    line-height: 1.4;
    letter-spacing: 0.01em;
    text-align: left;
}

.rwerjk-casino__content {
    max-width: 900px;
    margin: 0;
}

.rwerjk-casino__text {
    /* This class is now replaced by .text */
}

.rwerjk-casino__link {
    color: #ffb700;
    text-decoration: none;
    transition: color 0.2s;
}

.rwerjk-casino__link:hover {
    color: #ffc107;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .rwerjk-casino {
        padding: 3rem 0;
    }
    
    .rwerjk-casino h2 {
        font-size: 2rem;
    }
    
    .rwerjk-casino h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .rwerjk-casino h2 {
        font-size: 1.75rem;
    }
    
    .rwerjk-casino h3 {
        font-size: 1.2rem;
    }
}

.welcome-bonus__emoji {
    font-size: 2.5rem;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

@media (max-width: 768px) {
    .welcome-bonus {
        padding: 3rem 0;
    }
    
    .welcome-bonus__container {
        flex-direction: column;
    }
    
    .welcome-bonus__content-title {
        font-size: 1.5rem;
    }
    
    .welcome-bonus__option {
        padding: 0.5rem;
    }
    
    .welcome-bonus__option-icon {
        width: 40px;
        height: 40px;
    }
    
    .welcome-bonus__emoji {
        font-size: 2rem;
    }
}

.faq {
    padding: 4rem 2rem;
    color: white;
    position: relative;
    background: linear-gradient(180deg, rgba(28, 55, 136, 0) 0%, rgba(42, 84, 210, 0.1) 50%, rgba(28, 55, 136, 0) 100%);
}

.faq::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(255,183,0,0.5), transparent);
}

.faq__container {
    max-width: 900px;
    margin: 0 auto;
}

.faq__title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: white;
    text-transform: uppercase;
    text-align: center;
    position: relative;
    padding-bottom: 1.5rem;
}

.faq__title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #ffb700, transparent);
}

.faq__accordion {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.faq__item {
    margin-bottom: 1rem;
    border-radius: 0;
    overflow: hidden;
    background: linear-gradient(90deg, rgba(42, 84, 210, 0.25) 0%, rgba(42, 84, 210, 0.1) 100%);
    box-shadow: none;
    border: none;
    border-left: 4px solid rgba(255, 183, 0, 0.4);
    transition: all 0.3s ease;
}

.faq__item:hover {
    transform: translateX(8px);
    border-left-color: rgba(255, 183, 0, 0.8);
    background: linear-gradient(90deg, rgba(42, 84, 210, 0.35) 0%, rgba(42, 84, 210, 0.15) 100%);
}

.faq__question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    cursor: pointer;
    transition: background-color 0.3s;
    background-color: rgba(42, 84, 210, 0.4);
    position: relative;
}

.faq__question:hover {
    background-color: rgba(71, 134, 238, 0.5);
}

.faq__question h3 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
}

.faq__icon {
    width: 1.25rem;
    height: 1.25rem;
    position: relative;
    transition: transform 0.3s;
}

.faq__icon::before, .faq__icon::after {
    content: '';
    position: absolute;
    background-color: #ffb700;
    transition: transform 0.3s;
}

.faq__icon::before {
    width: 100%;
    height: 3px;
    top: 50%;
    transform: translateY(-50%);
}

.faq__icon::after {
    width: 3px;
    height: 100%;
    left: 50%;
    transform: translateX(-50%);
}

.faq__item.active .faq__question {
    background: linear-gradient(to bottom, #4786ee 0%, #2a54d2 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.faq__item.active .faq__icon::after {
    transform: translateX(-50%) rotate(90deg);
}

.faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, padding 0.4s ease;
    background-color: rgba(42, 84, 210, 0.2);
    padding: 0 1.5rem;
}

.faq__item.active .faq__answer {
    max-height: 300px;
    padding: 1.5rem;
}

.faq__answer .text {
    margin: 0;
    color: rgba(255, 255, 255, 0.95);
}

@media (max-width: 768px) {
    .faq {
        padding: 1.5rem 1.5rem;
    }
    
    .faq__title {
        font-size: 1.75rem;
    }
    
    .faq__question h3 {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .faq {
        padding: 1.5rem 1rem;
    }
    
    .faq__title {
        font-size: 1.5rem;
    }
    
    .faq__question {
        padding: 1rem;
    }
    
    .faq__question h3 {
        font-size: 0.95rem;
    }
    
    .faq__item.active .faq__answer {
        padding: 1rem;
    }
}

/* Footer Styles */
.footer {
    background: linear-gradient(180deg, #1c3788 0%, #141e4a 100%);
    color: white;
    padding: 5rem 0 2rem;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #1c3788, #4786ee, #ffb700, #4786ee, #1c3788);
}

.footer::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -25%;
    width: 150%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(71, 134, 238, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.footer__container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
    gap: 3rem 4rem;
    position: relative;
    z-index: 1;
}

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

.footer__logo-img {
    height: auto;
    width: 150px;
    max-width: 100%;
}

.footer__content {
    max-width: 600px;
}

.footer__title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.footer__text {
    font-size: 0.9rem;
    line-height: 1.6;
    opacity: 0.8;
}

.footer__bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    border-top: none;
    padding-top: 2rem;
    grid-column: 1 / -1;
    position: relative;
}

.footer__bottom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
}

.footer__copyright {
    font-size: 0.8rem;
    margin: 0;
    opacity: 0.7;
}

.footer__links {
    display: flex;
    gap: 2rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.footer__link {
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    opacity: 0.8;
}

.footer__link:hover {
    color: #4dabf7;
    opacity: 1;
}

.footer__badges {
    display: flex;
    gap: 1.5rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
}

.footer__badge {
    height: 35px;
    width: auto;
    opacity: 0.8;
    transition: opacity 0.3s ease, transform 0.2s ease;
    filter: grayscale(20%);
}

.footer__badge:hover {
    opacity: 1;
    filter: grayscale(0%);
    transform: scale(1.05);
}

.footer__badge-link {
    display: inline-block;
    transition: transform 0.3s ease;
}

.footer__badge-link:hover {
    transform: translateY(-2px);
}

/* New page styles */
.main-content {
    flex-grow: 1;
}

.page-hero {
    background: linear-gradient(135deg, #1c3788 0%, #4dabf7 100%);
    color: white;
    padding: 2rem 0 4rem;
    text-align: center;
}

.page-hero__container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 1rem;
}

.page-hero__title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: white;
}

.page-hero__subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    margin: 0;
}

.content-section {
    padding: 4rem 0;
    background-color: #1c3788;
    color: white;
}

.content-section__container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 1rem;
}

.content-wrapper h2 {
    color: white;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 2rem;
    text-transform: uppercase;
}

.content-wrapper h3 {
    color: white;
    font-size: 1.6rem;
    font-weight: 700;
    margin: 2rem 0 1rem 0;
}

.content-wrapper h4 {
    color: white;
    font-size: 1.3rem;
    font-weight: 700;
    margin: 1.5rem 0 1rem 0;
}



.features-grid,
.tools-grid,
.usage-grid,
.sharing-grid,
.rights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.feature-card,
.tool-card,
.usage-card,
.sharing-card,
.right-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 2rem;
    border-radius: 0;
    border-left: none;
    border-bottom: 4px solid #4dabf7;
    color: #212529;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.feature-card::before,
.tool-card::before,
.usage-card::before,
.sharing-card::before,
.right-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: linear-gradient(180deg, #4dabf7, #ffb700);
    transition: height 0.3s ease;
}

.feature-card:hover,
.tool-card:hover,
.usage-card:hover,
.sharing-card:hover,
.right-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.feature-card:hover::before,
.tool-card:hover::before,
.usage-card:hover::before,
.sharing-card:hover::before,
.right-card:hover::before {
    height: 100%;
}

.feature-card h4,
.tool-card h4,
.usage-card h4,
.sharing-card h4,
.right-card h4 {
    color: #212529 !important;
    font-weight: 700;
    margin-bottom: 1rem;
}

.feature-card p,
.tool-card p,
.usage-card p,
.sharing-card p,
.right-card p {
    color: #212529 !important;
    margin: 0;
}

.feature-card h4,
.tool-card h4,
.usage-card h4,
.sharing-card h4,
.right-card h4 {
    color: #1c3788;
    margin-bottom: 0.5rem;
}

.warning-signs,
.data-list,
.legal-basis,
.security-measures,
.retention-list,
.usage-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.warning-signs li,
.data-list li,
.legal-basis li,
.security-measures li,
.retention-list li,
.usage-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.warning-signs li::before,
.data-list li::before,
.legal-basis li::before,
.security-measures li::before,
.retention-list li::before,
.usage-list li::before {
    content: "•";
    color: #4dabf7;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.steps-list {
    counter-reset: step-counter;
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.steps-list li {
    counter-increment: step-counter;
    padding: 1.25rem;
    margin: 0.75rem 0;
    background: #f8f9fa;
    border-radius: 14px;
    position: relative;
    padding-left: 3.5rem;
    color: #212529 !important;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.2s ease;
}

.steps-list li:hover {
    transform: translateX(5px);
}

.steps-list li::before {
    content: counter(step-counter);
    background: #4dabf7;
    color: white;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    position: absolute;
    left: 0.5rem;
    top: 50%;
    transform: translateY(-50%);
}

.help-organizations {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.help-card {
    background: #f8f9fa;
    padding: 1.75rem;
    border-radius: 16px;
    border: 2px solid #e9ecef;
    color: #212529 !important;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.help-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.help-card h4 {
    color: #212529 !important;
}

.help-card p {
    color: #212529 !important;
}

.help-card h4 {
    color: #1c3788;
    margin-bottom: 0.5rem;
}

.contact {
    font-weight: 600;
    color: #4dabf7;
    margin: 0.25rem 0;
}

.important-notice {
    background: #fff3cd;
    border: 2px solid #ffeaa7;
    border-radius: 16px;
    padding: 1.75rem;
    margin: 2rem 0;
    box-shadow: 0 4px 16px rgba(255, 234, 167, 0.3);
}

.important-notice h4 {
    color: #856404;
    margin-bottom: 0.5rem;
}

.cta-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 3.5rem;
    border-radius: 0;
    text-align: center;
    margin: 4rem 0;
    color: #212529 !important;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    position: relative;
    overflow: hidden;
    clip-path: polygon(0 20px, 20px 0, calc(100% - 20px) 0, 100% 20px, 100% calc(100% - 20px), calc(100% - 20px) 100%, 20px 100%, 0 calc(100% - 20px));
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #4dabf7, #ffb700, #4dabf7);
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(77, 171, 247, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.cta-section h3 {
    color: #212529 !important;
}

.cta-section p {
    color: #212529 !important;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #4dabf7 0%, #339af0 100%);
    color: white;
    text-decoration: none;
    padding: 1.1rem 3rem;
    border-radius: 0;
    font-weight: 700;
    margin-top: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(77, 171, 247, 0.5);
    clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 100%, 12px 100%);
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    background: linear-gradient(135deg, #5cb6f8 0%, #4dabf7 100%);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(77, 171, 247, 0.6);
}

.last-updated {
    background: #e3f2fd;
    padding: 1.25rem;
    border-radius: 14px;
    margin-bottom: 2rem;
    color: #212529 !important;
    border-left: 4px solid #4dabf7;
}

.contact-section {
    background: #f8f9fa;
    padding: 2.25rem;
    border-radius: 18px;
    margin: 2rem 0;
    color: #212529 !important;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.contact-section h3 {
    color: #212529 !important;
}

.contact-section p {
    color: #212529 !important;
}

.contact-info {
    margin: 1rem 0;
}

.contact-info p {
    margin: 0.5rem 0;
    font-weight: 600;
    color: #212529 !important;
}

/* Ensure all text in light backgrounds is dark and readable - override the global .text class */
.feature-card,
.feature-card *,
.feature-card p,
.feature-card .text,
.tool-card,
.tool-card *,
.tool-card p,
.tool-card .text,
.usage-card,
.usage-card *,
.usage-card p,
.usage-card .text,
.sharing-card,
.sharing-card *,
.sharing-card p,
.sharing-card .text,
.right-card,
.right-card *,
.right-card p,
.right-card .text,
.help-card,
.help-card *,
.help-card p,
.help-card .text,
.cta-section,
.cta-section *,
.cta-section p,
.cta-section .text,
.contact-section,
.contact-section *,
.contact-section p,
.contact-section .text,
.last-updated,
.last-updated *,
.last-updated p,
.last-updated .text,
.steps-list li,
.steps-list li *,
.steps-list li p,
.steps-list li .text {
    color: #212529 !important;
    opacity: 1 !important;
}

@media (max-width: 768px) {
    .page-hero__title {
        font-size: 2.5rem;
    }
    
    .content-wrapper h2 {
        font-size: 1.8rem;
    }
    
    .content-wrapper h3 {
        font-size: 1.5rem;
    }
    
    .features-grid,
    .tools-grid,
    .usage-grid,
    .sharing-grid,
    .rights-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .help-organizations {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .footer {
        padding: 2rem 0;
    }
    
    .footer__bottom {
        flex-direction: column;
        gap: 1.5rem;
        align-items: flex-start;
    }
}

@media (max-width: 768px) {
    .footer__links {
        gap: 1rem;
        margin-bottom: 1rem;
    }
    
    .footer__link {
        font-size: 0.85rem;
    }
    
    .footer__badges {
        gap: 0.8rem;
        margin-top: 1rem;
    }
    
    .footer__badge {
        height: 30px;
    }
}

@media (max-width: 480px) {
    .page-hero {
        padding: 1rem 0 2rem;
    }
    
    .page-hero__title {
        font-size: 2rem;
    }
    
    .page-hero__subtitle {
        font-size: 1rem;
    }
    
    .content-section {
        padding: 2rem 0;
    }
    
    .content-wrapper h2 {
        font-size: 1.5rem;
    }
    
    .content-wrapper h3 {
        font-size: 1.3rem;
    }
    
    .content-wrapper h4 {
        font-size: 1.1rem;
    }
    
    .cta-section {
        padding: 1.5rem;
    }
    
    .footer {
        padding: 1.5rem 0;
    }
    
    .footer__title {
        font-size: 1.1rem;
    }
    
    .footer__text {
        font-size: 0.85rem;
    }
    
    .footer__copyright {
        font-size: 0.75rem;
    }
    
    .footer__links {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .footer__badges {
        gap: 1rem;
        justify-content: center;
        margin-top: 1rem;
    }
    
    .footer__badge {
        height: 25px;
    }
}

/* Cookie Banner Styles */
#cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: linear-gradient(135deg, rgba(28, 55, 136, 0.98) 0%, rgba(42, 84, 210, 0.98) 100%);
    color: white;
    padding: 2rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    z-index: 10000;
    display: none;
    border-top: none;
    border-radius: 0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(20px);
    clip-path: polygon(15px 0, 100% 0, 100% calc(100% - 15px), calc(100% - 15px) 100%, 0 100%, 0 15px);
}

#cookie-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #4dabf7, #ffb700, #4dabf7);
}

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

.cookie-banner__content {
    flex: 1;
}

.cookie-banner__title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: white;
}

.cookie-banner__text {
    font-size: 0.95rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.cookie-banner__actions {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 0.85rem 2rem;
    border: none;
    border-radius: 0;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    white-space: nowrap;
    clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 100%, 10px 100%);
    position: relative;
    overflow: hidden;
}

.cookie-btn--primary {
    background: linear-gradient(to bottom, #4dabf7 0%, #339af0 100%);
    color: white;
    border: 1px solid #74c0fc;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.cookie-btn--primary:hover {
    background: linear-gradient(to bottom, #5cb6f8 0%, #4dabf7 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.cookie-btn--secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.cookie-btn--secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.cookie-btn--tertiary {
    background: transparent;
    color: rgba(255, 255, 255, 0.8);
    border: none;
    text-decoration: underline;
    padding: 0.7rem 1rem;
}

.cookie-btn--tertiary:hover {
    color: white;
}

/* Cookie Modal */
#cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10001;
    padding: 2rem;
}

.cookie-modal__content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 0;
    padding: 3rem;
    max-width: 600px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
    clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 20px 100%, 0 calc(100% - 20px));
}

.cookie-modal__content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #4dabf7, #ffb700, #4dabf7);
}

.cookie-modal__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #e9ecef;
}

.cookie-modal__title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1c3788;
    margin: 0;
}

.cookie-modal__close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #6c757d;
    padding: 0.5rem;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cookie-modal__close:hover {
    background: #f8f9fa;
    color: #1c3788;
}

.cookie-modal__text {
    color: #495057;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.cookie-category {
    margin-bottom: 1.5rem;
    padding: 1rem;
    border: 1px solid #e9ecef;
    border-radius: 8px;
}

.cookie-category__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.cookie-category__title {
    font-weight: 600;
    color: #1c3788;
    margin: 0;
}

.cookie-category__description {
    color: #6c757d;
    font-size: 0.9rem;
    margin: 0;
}

.cookie-toggle {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
}

.cookie-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.cookie-toggle__slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: 0.3s;
    border-radius: 24px;
}

.cookie-toggle__slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: 0.3s;
    border-radius: 50%;
}

.cookie-toggle input:checked + .cookie-toggle__slider {
    background-color: #4dabf7;
}

.cookie-toggle input:checked + .cookie-toggle__slider:before {
    transform: translateX(26px);
}

.cookie-toggle__slider.disabled {
    background-color: #28a745;
    cursor: not-allowed;
}

.cookie-modal__actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid #e9ecef;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .cookie-banner__container {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .cookie-banner__actions {
        flex-direction: column;
        width: 100%;
    }
    
    .cookie-btn {
        width: 100%;
    }
    
    #cookie-modal {
        padding: 1rem;
    }
    
    .cookie-modal__content {
        padding: 1.5rem;
    }
    
    .cookie-modal__actions {
        flex-direction: column;
    }
}

/* Page Hero Section */
.page-hero {
    background: linear-gradient(160deg, #2a54d2 0%, #1e3c96 50%, #141e4a 100%);
    padding: 4rem 0 5rem;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 20% 80%, rgba(71, 134, 238, 0.2) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(255, 183, 0, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.page-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to top, #1c3788, transparent);
    pointer-events: none;
}

.page-hero__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.page-hero__title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
    position: relative;
    display: inline-block;
}

.page-hero__title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #ffb700, transparent);
}

.page-hero__subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 800px;
    margin: 0 auto;
}

/* Main Content Section */
.main-content {
    background-color: #141826;
    min-height: 60vh;
}

.content-section {
    padding: 3rem 0;
    color: white;
}

.content-section__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.content-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.content-wrapper h2 {
    font-size: 2rem;
    font-weight: 700;
    margin: 2.5rem 0 1rem;
    color: white;
}

.content-wrapper h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 2rem 0 1rem;
    color: white;
}

.content-wrapper ul,
.content-wrapper ol {
    margin: 1rem 0;
    padding-left: 2rem;
}

.content-wrapper li {
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

.info-box {
    background: linear-gradient(135deg, rgba(71, 134, 238, 0.15) 0%, rgba(42, 84, 210, 0.08) 100%);
    border-left: 5px solid #ffb700;
    padding: 2rem 2.5rem;
    margin: 2.5rem 0;
    border-radius: 0;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
    position: relative;
    overflow: hidden;
}

.info-box::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(255, 183, 0, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.info-box::after {
    content: 'ℹ';
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 1.5rem;
    opacity: 0.3;
}

.info-box .text {
    margin-bottom: 0;
}

.pros-cons-section {
    margin: 3rem 0;
}

.pros-cons-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 2rem 0;
}

.pros-box,
.cons-box {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
    border-radius: 0;
    padding: 2.5rem 3rem;
    position: relative;
    box-shadow: none;
    border-left: 5px solid;
    backdrop-filter: blur(5px);
}

.pros-box {
    border: none;
    border-left: 5px solid #28a745;
    border-radius: 0 20px 20px 0;
}

.cons-box {
    border: none;
    border-left: 5px solid #ffc107;
    border-radius: 0 20px 20px 0;
}

.pros-cons-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.pros-box .pros-cons-title {
    color: #28a745;
}

.cons-box .pros-cons-title {
    color: #ffc107;
}

.pros-cons-title::before {
    content: '';
    display: inline-block;
    width: 28px;
    height: 28px;
    background-size: contain;
    background-repeat: no-repeat;
    flex-shrink: 0;
}

.pros-box .pros-cons-title::before {
    content: '✓';
    background: #28a745;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.2rem;
}

.cons-box .pros-cons-title::before {
    content: '!';
    background: #ffc107;
    color: #1c3788;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.2rem;
}

.pros-cons-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pros-cons-list li {
    margin-bottom: 1.25rem;
    padding-left: 0;
    line-height: 1.7;
}

.pros-cons-list li:last-child {
    margin-bottom: 0;
}

.pros-cons-list li strong {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 1.05rem;
}

@media (max-width: 992px) {
    .pros-cons-grid {
        flex-direction: column;
        gap: 1.25rem;
    }
    
    .pros-box,
    .cons-box {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .page-hero__title {
        font-size: 1.8rem;
    }
    
    .page-hero__subtitle {
        font-size: 1rem;
    }
    
    .page-hero {
        padding: 1.5rem 0 3rem;
    }
    
    .content-wrapper h2 {
        font-size: 1.3rem;
    }
    
    .content-wrapper h3 {
        font-size: 1.1rem;
    }
    
    /* General h2 on mobile */
    h2 {
        font-size: 1.35rem !important;
        line-height: 1.3;
    }
}

/* Content Images */
.content-images {
    text-align: center;
    margin: 3rem 0;
    position: relative;
    padding: 1.5rem;
}

.content-images::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 100%;
    background: linear-gradient(135deg, rgba(71, 134, 238, 0.1) 0%, transparent 50%, rgba(255, 183, 0, 0.05) 100%);
    border-radius: 20px;
    z-index: -1;
}

.content-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    border: none;
    transform: perspective(1000px) rotateX(2deg);
    transition: transform 0.4s ease;
}

.content-image:hover {
    transform: perspective(1000px) rotateX(0deg) scale(1.02);
}

.game-providers {
    background: rgba(0, 0, 0, 0.25);
    border-radius: 18px;
    padding: 1.75rem;
    margin-top: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.game-providers__title {
    font-size: 1rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
    text-transform: none;
}

.game-providers__scroll {
    display: flex;
    gap: 0.75rem;
    overflow-x: auto;
    padding-bottom: 0.5rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.2) transparent;
}

.game-providers__scroll::-webkit-scrollbar {
    height: 5px;
}

.game-providers__scroll::-webkit-scrollbar-track {
    background: transparent;
}

.game-providers__scroll::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
}

.game-providers__scroll::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.35);
}

.game-providers__badge {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.95);
    padding: 0.55rem 1.25rem;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
    flex-shrink: 0;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.game-providers__badge:hover {
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.25);
}

@media (max-width: 768px) {
    .game-providers {
        padding: 1.25rem;
        margin-top: 1.5rem;
    }
    
    .game-providers__title {
        font-size: 0.95rem;
    }
    
    .game-providers__badge {
        font-size: 0.8rem;
        padding: 0.45rem 0.95rem;
    }
}

.bonus-promo {
    background-color: #1c3788;
    padding: 2.5rem 0;
}

.bonus-promo__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.bonus-promo__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.bonus-promo__card {
    background: rgba(42, 84, 210, 0.3);
    border-radius: 18px;
    padding: 1.75rem 1.25rem;
    text-align: center;
    border: 2px solid rgba(71, 134, 238, 0.25);
    transition: all 0.25s ease;
}

.bonus-promo__card:hover {
    transform: translateY(-5px);
    border-color: rgba(71, 134, 238, 0.6);
    background: rgba(42, 84, 210, 0.5);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.4);
}

.bonus-promo__icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 1rem;
}

.bonus-promo__icon svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
}

.bonus-promo__title {
    font-size: 1rem;
    font-weight: 800;
    color: white;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.bonus-promo__text {
    font-size: 0.85rem;
    color: rgba(226, 232, 240, 0.9);
    line-height: 1.5;
    margin: 0;
}

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

.bonus-promo__button {
    display: inline-block;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: #1e293b;
    font-size: 1rem;
    font-weight: 800;
    text-transform: uppercase;
    padding: 0.85rem 3rem;
    border-radius: 25px;
    text-decoration: none;
    transition: all 0.25s ease;
    box-shadow: 0 8px 24px rgba(251, 191, 36, 0.45);
    letter-spacing: 0.03em;
}

.bonus-promo__button:hover {
    background: linear-gradient(135deg, #fcd34d 0%, #fbbf24 100%);
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(251, 191, 36, 0.6);
}

.bonus-promo__button:active {
    transform: translateY(0);
}

@media (max-width: 992px) {
    .bonus-promo__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }
    
    .bonus-promo__card:last-child {
        grid-column: 1 / -1;
        max-width: 450px;
        margin: 0 auto;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .bonus-promo {
        padding: 2rem 0;
    }
    
    .bonus-promo__grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .bonus-promo__card {
        padding: 1.25rem 1rem;
    }
    
    .bonus-promo__card:last-child {
        grid-column: auto;
        max-width: 100%;
    }
    
    .bonus-promo__icon {
        width: 90px;
        height: 90px;
        margin-bottom: 1rem;
    }
    
    .bonus-promo__title {
        font-size: 0.95rem;
    }
    
    .bonus-promo__text {
        font-size: 0.8rem;
    }
    
    .bonus-promo__button {
        font-size: 0.95rem;
        padding: 0.7rem 2rem;
        width: 100%;
        max-width: 280px;
    }
} 