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

body {
    font-family: Arial, sans-serif;
    background-color: #1a0b03;
    color: #fff;
}

.header {
    background-color: #1f1107;
    border-bottom: 2px solid #ad7d5a;
    padding: 0.75rem 0;
}

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

.header__logo {
    flex-shrink: 0;
}

.header__logo-link {
    display: block;
}

.header__logo-img {
    height: 40px;
    width: auto;
}

.header__search {
    flex: 1;
    max-width: 500px;
}

.header__search-form {
    position: relative;
    display: flex;
    align-items: center;
    background-color: #2a1f0d;
    border: 1px solid #ad7d5a;
    border-radius: 4px;
    overflow: hidden;
}

.header__search-input {
    flex: 1;
    padding: 0.75rem 1rem;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 0.9rem;
    outline: none;
}

.header__search-input::placeholder {
    color: #999;
}

.header__search-btn {
    background: transparent;
    border: none;
    padding: 0.75rem;
    cursor: pointer;
    color: #ad7d5a;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header__search-icon {
    width: 20px;
    height: 20px;
}

.header__search-btn:hover {
    color: #fff;
}

.header__mobile-search-toggle {
    display: none;
    background: transparent;
    border: none;
    padding: 0.5rem;
    cursor: pointer;
    color: #ad7d5a;
    align-items: center;
    justify-content: center;
}

.header__mobile-search-icon {
    width: 24px;
    height: 24px;
}

.header__mobile-search-toggle:hover {
    color: #fff;
}

.header__actions {
    display: flex;
    gap: 0.5rem;
    flex-shrink: 0;
}

.header__btn {
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.85rem;
    border-radius: 4px;
    transition: all 0.3s ease;
    white-space: nowrap;
    text-align: center;
    display: inline-block;
}

.header__btn--login {
    background-color: transparent;
    color: #ad7d5a;
    border: 1px solid #ad7d5a;
}

.header__btn--login:hover {
    background-color: #ad7d5a;
    color: #1f1107;
}

.header__btn--register {
    background-color: #ad7d5a;
    color: #1f1107;
    border: 1px solid #ad7d5a;
}

.header__btn--register:hover {
    background-color: #c89768;
    border-color: #c89768;
}

@media (max-width: 768px) {
    .header__container {
        padding: 0 0.5rem;
        gap: 1rem;
        flex-wrap: wrap;
    }
    
    .header__search {
        display: none;
        width: 100%;
        order: 3;
        margin-top: 0.5rem;
    }
    
    .header__search.active {
        display: block;
    }
    
    .header__mobile-search-toggle {
        display: flex;
    }
    
    .header__logo-img {
        height: 35px;
    }
    
    .header__btn {
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .header__actions {
        gap: 0.25rem;
    }
    
    .header__btn {
        padding: 0.5rem 0.75rem;
        font-size: 0.75rem;
    }
}

.hero {
    background-image: url('images/wildrobin-d.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 500px;
    display: flex;
    align-items: center;
    position: relative;
}

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

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

.hero__content {
    max-width: 600px;
    text-align: left;
}

.hero__title {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.hero__description {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: #f0f0f0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.6);
}

.hero__cta {
    display: inline-block;
    background: linear-gradient(135deg, #4baf48 0%, #5bc659 100%);
    color: #fff;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: bold;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(75, 175, 72, 0.3);
}

.hero__cta:hover {
    background: linear-gradient(135deg, #5bc659 0%, #6bd36a 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(75, 175, 72, 0.4);
}

.game-categories {
    background-color: #1a0b03;
    padding: 1rem 0;
}

.game-categories__container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.game-categories__slider {
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 0 1rem;
}

.game-categories__slider::-webkit-scrollbar {
    display: none;
}

.game-categories__grid {
    display: flex;
    gap: 0.75rem;
    padding: 0.5rem 0;
    min-width: max-content;
}

.game-category {
    background: linear-gradient(135deg, #2a1f0d 0%, #1f1107 100%);
    border: 1px solid #ad7d5a;
    border-radius: 6px;
    padding: 0.5rem 0.75rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.5rem;
    min-width: auto;
    flex-shrink: 0;
    white-space: nowrap;
}

.game-category:hover {
    background: linear-gradient(135deg, #ad7d5a 0%, #c89768 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(173, 125, 90, 0.3);
}

.game-category:hover .game-category__label {
    color: #1f1107;
}

.game-category__icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.game-category__label {
    font-size: 0.7rem;
    font-weight: bold;
    color: #ad7d5a;
    line-height: 1.1;
    transition: color 0.3s ease;
}

@media (max-width: 768px) {
    .hero {
        background-image: url('images/wildrobin-m.webp');
        height: 60vh;
        text-align: center;
    }
    
    .hero__content {
        max-width: 100%;
        text-align: center;
    }
    
    .hero__title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .hero__description {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .hero__cta {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }
    
    .game-categories__slider {
        padding: 0 0.5rem;
    }
    
    .game-categories__grid {
        gap: 0.5rem;
    }
    
    .game-category {
        padding: 0.4rem 0.6rem;
    }
    
    .game-category__icon {
        width: 20px;
        height: 20px;
    }
    
    .game-category__label {
        font-size: 0.6rem;
    }
}

@media (max-width: 480px) {
    .hero__title {
        font-size: 1.75rem;
    }
    
    .game-categories__slider {
        padding: 0 0.25rem;
    }
    
    .game-categories__grid {
        gap: 0.4rem;
    }
    
    .game-category {
        padding: 0.3rem 0.5rem;
    }
    
    .game-category__icon {
        width: 16px;
        height: 16px;
    }
    
    .game-category__label {
        font-size: 0.55rem;
    }
}

.slots-section {
    background-color: #1a0b03;
    padding: 2rem 0;
}

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

.slots-section__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.slots-section__title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #fff;
    margin: 0;
}

.slots-section__view-all {
    color: #ad7d5a;
    text-decoration: none;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s ease;
}

.slots-section__view-all:hover {
    color: #c89768;
}

.slots-section__arrows {
    font-size: 1.2rem;
}

.slots-section__slider {
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.slots-section__slider::-webkit-scrollbar {
    display: none;
}

.slots-section__grid {
    display: flex;
    gap: 1rem;
    padding: 0.5rem 0;
    min-width: max-content;
}

.slot-card {
    flex-shrink: 0;
    cursor: pointer;
    transition: transform 0.3s ease;
    border-radius: 8px;
    overflow: hidden;
    width: 180px;
}

.slot-card:hover {
    transform: translateY(-5px);
}

.slot-card__image-container {
    position: relative;
    width: 100%;
    height: 240px;
    border-radius: 8px;
    overflow: hidden;
}

.slot-card__image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}



.slot-card__badge {
    position: absolute;
    top: 8px;
    right: 8px;
    padding: 0.25rem 0.5rem;
    font-size: 0.7rem;
    font-weight: bold;
    border-radius: 4px;
    text-transform: uppercase;
}

.slot-card__badge--new {
    background: #4CAF50;
    color: #fff;
}

.slot-card__badge--popular {
    background: #FF6B6B;
    color: #fff;
}

@media (max-width: 768px) {
    .slots-section {
        padding: 1.5rem 0;
    }
    
    .slots-section__container {
        padding: 0 0.5rem;
    }
    
    .slots-section__title {
        font-size: 1.25rem;
    }
    
    .slots-section__view-all {
        font-size: 0.8rem;
    }
    
    .slots-section__grid {
        gap: 0.75rem;
    }
    
    .slot-card {
        width: 160px;
    }
    
    .slot-card__image-container {
        height: 200px;
    }
    
    .slot-card__badge {
        font-size: 0.6rem;
        padding: 0.2rem 0.4rem;
    }
}

@media (max-width: 480px) {
    .slots-section__title {
        font-size: 1.1rem;
    }
    
    .slot-card {
        width: 140px;
    }
    
    .slot-card__image-container {
                 height: 180px;
     }
 }

.casino-info {
    background-color: #1a0b03;
    padding: 3rem 0;
}

.casino-info__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.casino-info__content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.casino-info__text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #f0f0f0;
    margin: 0;
}

.casino-info__table-wrapper {
    background: linear-gradient(135deg, #2a1f0d 0%, #1f1107 100%);
    border: 1px solid #ad7d5a;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.casino-info__table {
    width: 100%;
    border-collapse: collapse;
}

.casino-info__row {
    border-bottom: 1px solid rgba(173, 125, 90, 0.2);
}

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

.casino-info__label {
    padding: 0.75rem 0;
    font-size: 0.95rem;
    color: #f0f0f0;
    font-weight: 500;
    width: 60%;
}

.casino-info__value {
    padding: 0.75rem 0;
    font-size: 0.95rem;
    color: #ad7d5a;
    font-weight: bold;
    text-align: right;
    width: 40%;
}

@media (max-width: 768px) {
    .casino-info {
        padding: 2rem 0;
    }
    
    .casino-info__container {
        padding: 0 0.5rem;
    }
    
    .casino-info__text {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .casino-info__table-wrapper {
        padding: 1.25rem;
    }
    
    .casino-info__label,
    .casino-info__value {
        font-size: 0.9rem;
        padding: 0.6rem 0;
    }
}

@media (max-width: 480px) {
    .casino-info__container {
        padding: 0 0.25rem;
    }
    
    .casino-info__text {
        font-size: 0.95rem;
    }
    
    .casino-info__table-wrapper {
        padding: 1rem;
    }
    
    .casino-info__label,
    .casino-info__value {
        font-size: 0.85rem;
        padding: 0.5rem 0;
    }
    
    .casino-info__label {
        width: 65%;
    }
    
    .casino-info__value {
                 width: 35%;
     }
 }

.games-section {
    background-color: #1a0b03;
    padding: 4rem 0;
}

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

.games-section__title {
    font-size: 2.25rem;
    font-weight: bold;
    color: #fff;
    text-align: center;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.games-section__intro {
    text-align: center;
    margin-bottom: 3rem;
}

.games-section__text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #f0f0f0;
    margin-bottom: 1.5rem;
}

.games-section__content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.games-section__subsection {
    background: linear-gradient(135deg, rgba(42, 31, 13, 0.6) 0%, rgba(31, 17, 7, 0.6) 100%);
    border: 1px solid rgba(173, 125, 90, 0.3);
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.games-section__subtitle {
    font-size: 1.75rem;
    font-weight: bold;
    color: #ad7d5a;
    margin-bottom: 1.5rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.games-section__slots-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    align-items: start;
}

.games-section__slots-image {
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.games-section__image {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.games-section__list-title {
    font-size: 1.2rem;
    font-weight: bold;
    color: #c89768;
    margin: 2rem 0 1rem 0;
    display: block;
}

.games-section__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.games-section__list li {
    position: relative;
    padding: 0.75rem 0 0.75rem 2rem;
    color: #f0f0f0;
    font-size: 1rem;
    line-height: 1.6;
    border-bottom: 1px solid rgba(173, 125, 90, 0.1);
}

.games-section__list li:last-child {
    border-bottom: none;
}

.games-section__list li::before {
    content: "🎯";
    position: absolute;
    left: 0;
    top: 0.75rem;
    font-size: 1rem;
}

.games-section__live-features {
    margin-top: 1.5rem;
}

@media (max-width: 968px) {
    .games-section__slots-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .games-section__slots-image {
        order: -1;
    }
    
    .games-section__image {
        max-width: 250px;
    }
}

@media (max-width: 768px) {
    .games-section {
        padding: 3rem 0;
    }
    
    .games-section__container {
        padding: 0 0.5rem;
    }
    
    .games-section__title {
        font-size: 1.75rem;
        margin-bottom: 1.5rem;
    }
    
    .games-section__subtitle {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .games-section__subsection {
        padding: 2rem;
    }
    
    .games-section__text {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .games-section__list-title {
        font-size: 1.1rem;
        margin: 1.5rem 0 0.75rem 0;
    }
    
    .games-section__list li {
        font-size: 0.95rem;
        padding: 0.6rem 0 0.6rem 1.8rem;
    }
    
    .games-section__list li::before {
        top: 0.6rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .games-section {
        padding: 2rem 0;
    }
    
    .games-section__container {
        padding: 0 0.25rem;
    }
    
    .games-section__title {
        font-size: 1.5rem;
    }
    
    .games-section__subtitle {
        font-size: 1.3rem;
    }
    
    .games-section__subsection {
        padding: 1.5rem;
    }
    
    .games-section__content {
        gap: 2rem;
    }
    
    .games-section__image {
                 max-width: 200px;
     }
 }

.sports-section {
    background-color: #1a0b03;
    padding: 4rem 0;
}

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

.sports-section__title {
    font-size: 2.25rem;
    font-weight: bold;
    color: #fff;
    text-align: center;
    margin-bottom: 3rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.sports-section__content {
    background: linear-gradient(135deg, rgba(42, 31, 13, 0.6) 0%, rgba(31, 17, 7, 0.6) 100%);
    border: 1px solid rgba(173, 125, 90, 0.3);
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.sports-section__text-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.sports-section__text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #f0f0f0;
    margin: 0;
}

.sports-section__subtitle {
    font-size: 1.5rem;
    font-weight: bold;
    color: #ad7d5a;
    margin: 2rem 0 1rem 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.sports-section__image-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.sports-section__image {
    width: 100%;
    max-width: 280px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.sports-section__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sports-section__list li {
    position: relative;
    padding: 0.75rem 0 0.75rem 2rem;
    color: #f0f0f0;
    font-size: 1.1rem;
    line-height: 1.7;
    border-bottom: 1px solid rgba(173, 125, 90, 0.1);
}

.sports-section__list li:last-child {
    border-bottom: none;
}

.sports-section__list li::before {
    content: "⚽";
    position: absolute;
    left: 0;
    top: 0.75rem;
    font-size: 1rem;
}

.sports-section__mobile {
    background: linear-gradient(135deg, rgba(42, 31, 13, 0.6) 0%, rgba(31, 17, 7, 0.6) 100%);
    border: 1px solid rgba(173, 125, 90, 0.3);
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    margin-top: 2rem;
}

@media (max-width: 968px) {
    .sports-section__content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .sports-section__image-container {
        justify-content: center;
    }
    
    .sports-section__image {
        max-width: 250px;
    }
}

@media (max-width: 768px) {
    .sports-section {
        padding: 3rem 0;
    }
    
    .sports-section__container {
        padding: 0 0.5rem;
    }
    
    .sports-section__title {
        font-size: 1.75rem;
        margin-bottom: 2rem;
    }
    
    .sports-section__content {
        padding: 2rem;
    }
    
    .sports-section__text {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .sports-section__list li {
        font-size: 1rem;
        padding: 0.6rem 0 0.6rem 1.8rem;
    }
    
    .sports-section__list li::before {
        top: 0.6rem;
        font-size: 0.9rem;
    }
    
    .sports-section__subtitle {
        font-size: 1.3rem;
        margin: 1.5rem 0 1rem 0;
    }
    
    .sports-section__image {
        max-width: 220px;
    }
    
    .sports-section__mobile {
        padding: 2rem;
        margin-top: 1.5rem;
    }
}

@media (max-width: 480px) {
    .sports-section {
        padding: 2rem 0;
    }
    
    .sports-section__container {
        padding: 0 0.25rem;
    }
    
    .sports-section__title {
        font-size: 1.5rem;
    }
    
    .sports-section__content {
        padding: 1.5rem;
    }
    
    .sports-section__subtitle {
        font-size: 1.2rem;
    }
    
    .sports-section__text {
        font-size: 0.95rem;
    }
    
    .sports-section__list li {
        font-size: 0.95rem;
        padding: 0.5rem 0 0.5rem 1.6rem;
    }
    
    .sports-section__list li::before {
        top: 0.5rem;
        font-size: 0.8rem;
    }
    
    .sports-section__image {
        max-width: 180px;
    }
    
    .sports-section__mobile {
        padding: 1.5rem;
                 margin-top: 1rem;
     }
 }

.bonus-section {
    background-color: #1a0b03;
    padding: 4rem 0;
}

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

.bonus-section__title {
    font-size: 2.25rem;
    font-weight: bold;
    color: #fff;
    text-align: center;
    margin-bottom: 3rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.bonus-section__intro {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
    margin-bottom: 3rem;
}

.bonus-section__text-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.bonus-section__text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #f0f0f0;
    margin: 0;
}

.bonus-section__image-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.bonus-section__image {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.bonus-section__content {
    background: linear-gradient(135deg, rgba(42, 31, 13, 0.6) 0%, rgba(31, 17, 7, 0.6) 100%);
    border: 1px solid rgba(173, 125, 90, 0.3);
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.bonus-section__subtitle {
    font-size: 1.75rem;
    font-weight: bold;
    color: #ad7d5a;
    margin-bottom: 1.5rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.bonus-section__table-wrapper {
    margin: 2rem 0;
    overflow-x: auto;
}

.bonus-section__table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(26, 11, 3, 0.8);
    border-radius: 8px;
    overflow: hidden;
}

.bonus-section__header-row {
    background: linear-gradient(135deg, #ad7d5a 0%, #c89768 100%);
}

.bonus-section__header {
    padding: 1rem;
    font-size: 1rem;
    font-weight: bold;
    color: #1f1107;
    text-align: left;
    border-bottom: 2px solid rgba(31, 17, 7, 0.3);
}

.bonus-section__row {
    border-bottom: 1px solid rgba(173, 125, 90, 0.2);
}

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

.bonus-section__row:nth-child(even) {
    background: rgba(42, 31, 13, 0.3);
}

.bonus-section__cell {
    padding: 0.875rem 1rem;
    font-size: 0.95rem;
    color: #f0f0f0;
    border-right: 1px solid rgba(173, 125, 90, 0.1);
}

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

.bonus-section__cell--type {
    font-weight: bold;
    color: #ad7d5a;
}

.bonus-section__disclaimer {
    font-size: 0.9rem;
    color: #c89768;
    font-style: italic;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(173, 125, 90, 0.3);
}

@media (max-width: 968px) {
    .bonus-section__intro {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .bonus-section__image {
        max-width: 250px;
    }
    
    .bonus-section__table-wrapper {
        overflow-x: scroll;
    }
    
    .bonus-section__header,
    .bonus-section__cell {
        padding: 0.75rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .bonus-section {
        padding: 3rem 0;
    }
    
    .bonus-section__container {
        padding: 0 0.5rem;
    }
    
    .bonus-section__title {
        font-size: 1.75rem;
        margin-bottom: 2rem;
    }
    
    .bonus-section__subtitle {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .bonus-section__content {
        padding: 2rem;
    }
    
    .bonus-section__text {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .bonus-section__image {
        max-width: 220px;
    }
    
    .bonus-section__header,
    .bonus-section__cell {
        padding: 0.6rem 0.75rem;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .bonus-section {
        padding: 2rem 0;
    }
    
    .bonus-section__container {
        padding: 0 0.25rem;
    }
    
    .bonus-section__title {
        font-size: 1.5rem;
    }
    
    .bonus-section__subtitle {
        font-size: 1.3rem;
    }
    
    .bonus-section__content {
        padding: 1.5rem;
    }
    
    .bonus-section__text {
        font-size: 0.95rem;
    }
    
    .bonus-section__image {
        max-width: 180px;
    }
    
    .bonus-section__header,
    .bonus-section__cell {
        padding: 0.5rem;
        font-size: 0.8rem;
    }
}

.registration-section {
    background-color: #1a0b03;
    padding: 4rem 0;
}

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

.registration-section__title {
    font-size: 2.25rem;
    font-weight: bold;
    color: #fff;
    text-align: center;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.registration-section__intro {
    text-align: center;
    margin-bottom: 3rem;
}

.registration-section__text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #f0f0f0;
    margin: 0 0 1.5rem 0;
}

.registration-section__content {
    background: linear-gradient(135deg, rgba(42, 31, 13, 0.6) 0%, rgba(31, 17, 7, 0.6) 100%);
    border: 1px solid rgba(173, 125, 90, 0.3);
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.registration-section__column {
    display: flex;
    flex-direction: column;
}

.registration-section__subtitle {
    font-size: 1.5rem;
    font-weight: bold;
    color: #ad7d5a;
    margin-bottom: 1.5rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.registration-section__list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    counter-reset: step-counter;
}

.registration-section__step {
    position: relative;
    padding: 1rem 0 1rem 3rem;
    color: #f0f0f0;
    font-size: 1rem;
    line-height: 1.6;
    border-bottom: 1px solid rgba(173, 125, 90, 0.1);
    counter-increment: step-counter;
}

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

.registration-section__step::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 1rem;
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #ad7d5a 0%, #c89768 100%);
    color: #1f1107;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: bold;
}

.registration-section__support {
    background: rgba(173, 125, 90, 0.1);
    border: 1px solid rgba(173, 125, 90, 0.2);
    border-radius: 8px;
    padding: 1.5rem;
    margin-top: 1rem;
}

.registration-section__support-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.registration-section__support-list li {
    padding: 0.5rem 0;
    color: #f0f0f0;
    font-size: 1rem;
    border-bottom: 1px solid rgba(173, 125, 90, 0.1);
}

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

@media (max-width: 968px) {
    .registration-section__content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem;
    }
    
    .registration-section__step {
        padding: 0.875rem 0 0.875rem 2.5rem;
        font-size: 0.95rem;
    }
    
    .registration-section__step::before {
        width: 20px;
        height: 20px;
        top: 0.875rem;
        font-size: 0.8rem;
    }
}

@media (max-width: 768px) {
    .registration-section {
        padding: 3rem 0;
    }
    
    .registration-section__container {
        padding: 0 0.5rem;
    }
    
    .registration-section__title {
        font-size: 1.75rem;
        margin-bottom: 1.5rem;
    }
    
    .registration-section__subtitle {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }
    
    .registration-section__text {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .registration-section__support {
        padding: 1.25rem;
    }
    
    .registration-section__support-list li {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .registration-section {
        padding: 2rem 0;
    }
    
    .registration-section__container {
        padding: 0 0.25rem;
    }
    
    .registration-section__title {
        font-size: 1.5rem;
    }
    
    .registration-section__subtitle {
        font-size: 1.2rem;
    }
    
    .registration-section__content {
        padding: 1.5rem;
    }
    
    .registration-section__text {
        font-size: 0.95rem;
    }
    
    .registration-section__step {
        padding: 0.75rem 0 0.75rem 2.25rem;
        font-size: 0.9rem;
    }
    
    .registration-section__step::before {
        width: 18px;
        height: 18px;
        top: 0.75rem;
        font-size: 0.75rem;
    }
    
    .registration-section__support {
        padding: 1rem;
    }
    
    .registration-section__support-list li {
        font-size: 0.9rem;
    }
}

.footer {
    background-color: #1f1107;
    border-top: 2px solid #ad7d5a;
    padding: 2rem 0;
    margin-top: 2rem;
}

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

.footer__content {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
}

.footer__logo {
    flex-shrink: 0;
}

.footer__logo-img {
    height: 50px;
    width: auto;
}

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

.footer__copyright {
    font-size: 1rem;
    color: #ad7d5a;
    font-weight: bold;
    margin: 0;
}

.footer__disclaimer {
    font-size: 0.9rem;
    color: #f0f0f0;
    line-height: 1.6;
    margin: 0;
}

.footer__disclaimer strong {
    color: #ad7d5a;
}

@media (max-width: 768px) {
    .footer {
        padding: 1.5rem 0;
    }
    
    .footer__container {
        padding: 0 0.5rem;
    }
    
    .footer__content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1.5rem;
    }
    
    .footer__logo-img {
        height: 40px;
    }
    
    .footer__copyright {
        font-size: 0.95rem;
    }
    
    .footer__disclaimer {
        font-size: 0.85rem;
        line-height: 1.5;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 1rem 0;
    }
    
    .footer__container {
        padding: 0 0.25rem;
    }
    
    .footer__content {
        gap: 1rem;
    }
    
    .footer__logo-img {
        height: 35px;
    }
    
    .footer__copyright {
        font-size: 0.9rem;
    }
    
    .footer__disclaimer {
        font-size: 0.8rem;
    }
}

.content-cta {
    text-align: center;
    margin-top: 2rem;
}

.content-cta__button {
    display: inline-block;
    background: linear-gradient(135deg, #4baf48 0%, #5bc659 100%);
    color: #fff;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: bold;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(75, 175, 72, 0.3);
}

.content-cta__button:hover {
    background: linear-gradient(135deg, #5bc659 0%, #6bd36a 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(75, 175, 72, 0.4);
}

@media (max-width: 768px) {
    .content-cta {
        margin-top: 1.5rem;
    }
    
    .content-cta__button {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .content-cta {
        margin-top: 1rem;
    }
    
    .content-cta__button {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
} 