* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
}

.header {
    background: linear-gradient(135deg, #fb7b21 0%, #ff5722 50%, #e65100 100%);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.header__logo {
    flex-shrink: 0;
}

.header__logo-img {
    height: 50px;
    width: auto;
    transition: transform 0.3s ease;
}

.header__logo-img:hover {
    transform: scale(1.05);
}

.header__nav {
    flex: 1;
}

.header__nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
    justify-content: center;
}

.header__nav-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    position: relative;
}

.header__nav-link:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.header__nav-link:focus {
    outline: 2px solid white;
    outline-offset: 2px;
}

.header__buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.header__btn {
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    text-align: center;
    min-width: 100px;
}

.header__btn--login {
    background-color: transparent;
    color: white;
    border-color: white;
}

.header__btn--login:hover {
    background-color: white;
    color: #fb7b21;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

.header__btn--register {
    background-color: white;
    color: #fb7b21;
    border-color: white;
}

.header__btn--register:hover {
    background-color: #f5f5f5;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.4);
}

.header__btn:focus {
    outline: 2px solid white;
    outline-offset: 2px;
}

@media (max-width: 768px) {
    .header__container {
        padding: 1rem;
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .header__logo {
        order: 1;
    }
    
    .header__buttons {
        order: 2;
        gap: 0.5rem;
    }
    
    .header__nav {
        order: 3;
        width: 100%;
    }
    
    .header__nav-list {
        justify-content: center;
        gap: 1rem;
    }
    
    .header__btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
        min-width: 80px;
    }
    
    .header__logo-img {
        height: 40px;
    }
}

@media (max-width: 480px) {
    .header__container {
        padding: 0.75rem;
    }
    
    .header__nav-list {
        gap: 0.5rem;
    }
    
    .header__nav-link {
        font-size: 0.9rem;
        padding: 0.4rem 0.8rem;
    }
    
    .header__btn {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
        min-width: 70px;
    }
}

.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('images/wazamba-bg.webp');
    background-size: cover;
    background-position: 50% center;
    background-repeat: no-repeat;
    min-height: 100vh;
    display: flex;
    align-items: center;
    color: white;
    position: relative;
}

.hero__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    width: 100%;
}

.hero__content {
    max-width: 800px;
    text-align: center;
    margin: 0 auto;
}

.hero__title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.hero__description {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    color: #f0f0f0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero__cta {
    display: inline-block;
    background: linear-gradient(135deg, #fb7b21 0%, #ff5722 50%, #e65100 100%);
    color: white;
    text-decoration: none;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(251, 123, 33, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    animation: subtleGlow 3s ease-in-out infinite;
}

.hero__cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(251, 123, 33, 0.6);
    background: linear-gradient(135deg, #ff5722 0%, #fb7b21 50%, #d84315 100%);
}

.hero__cta:focus {
    outline: 3px solid white;
    outline-offset: 3px;
}

@keyframes subtleGlow {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(251, 123, 33, 0.4);
    }
    50% {
        box-shadow: 0 4px 20px rgba(251, 123, 33, 0.6);
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: 80vh;
        padding: 2rem 0;
        background-position: 70% center;
    }
    
    .hero__container {
        padding: 1rem;
    }
    
    .hero__title {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .hero__description {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .hero__cta {
        padding: 0.9rem 2rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: 70vh;
    }
    
    .hero__title {
        font-size: 2rem;
        line-height: 1.3;
    }
    
    .hero__description {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
         .hero__cta {
         padding: 0.8rem 1.5rem;
         font-size: 0.95rem;
     }
 }

.casino-info {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 4rem 0;
    position: relative;
}

.casino-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #fb7b21 0%, #ff5722 50%, #e65100 100%);
}

.casino-info__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.casino-info__content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
    margin-bottom: 3rem;
}

.casino-info__table {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    border: 1px solid #e0e0e0;
}

.casino-info__row {
    display: grid;
    grid-template-columns: 40px 1fr 2fr;
    align-items: center;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #f0f0f0;
    transition: background-color 0.3s ease;
}

.casino-info__row:last-child {
    border-bottom: none;
}

.casino-info__row:hover {
    background-color: #fafafa;
}

.casino-info__icon {
    font-size: 1.2rem;
    text-align: center;
}

.casino-info__label {
    font-weight: 600;
    color: #333;
    font-size: 0.95rem;
}

.casino-info__value {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.4;
}

.casino-info__image {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    position: sticky;
    top: 2rem;
}

.casino-info__img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(251, 123, 33, 0.2);
    transition: transform 0.3s ease;
}

.casino-info__img:hover {
    transform: scale(1.05);
}

.casino-info__description {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #fb7b21;
}

.casino-info__paragraph {
    font-size: 1rem;
    line-height: 1.7;
    color: #444;
    margin-bottom: 1.5rem;
    text-align: justify;
}

.casino-info__paragraph:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .casino-info {
        padding: 2rem 0;
    }
    
    .casino-info__container {
        padding: 0 1rem;
    }
    
    .casino-info__content {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 2rem;
    }
    
    .casino-info__row {
        grid-template-columns: 35px 1fr;
        padding: 0.8rem 1rem;
        row-gap: 0.5rem;
    }
    
    .casino-info__label {
        font-size: 0.9rem;
        grid-column: 2;
    }
    
    .casino-info__value {
        font-size: 0.85rem;
        grid-column: 1 / -1;
        margin-top: 0.3rem;
        margin-left: 35px;
    }
    
    .casino-info__image {
        position: static;
    }
    
    .casino-info__description {
        padding: 1.5rem;
    }
    
    .casino-info__paragraph {
        font-size: 0.95rem;
        margin-bottom: 1rem;
        text-align: left;
    }
}

@media (max-width: 480px) {
    .casino-info__container {
        padding: 0 0.75rem;
    }
    
    .casino-info__row {
        padding: 0.6rem 0.8rem;
    }
    
    .casino-info__label {
        font-size: 0.85rem;
    }
    
    .casino-info__value {
        font-size: 0.8rem;
        margin-left: 30px;
    }
    
    .casino-info__description {
        padding: 1rem;
    }
    
         .casino-info__paragraph {
         font-size: 0.9rem;
     }
 }

.bonuses {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 4rem 0;
    position: relative;
}

.bonuses::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #fb7b21 0%, #ff5722 50%, #e65100 100%);
}

.bonuses__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.bonuses__title {
    font-size: 2.5rem;
    color: #333;
    text-align: center;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.bonuses__intro {
    font-size: 1.1rem;
    color: #666;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

.bonuses__content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
    margin-bottom: 3rem;
}

.bonuses__table-wrapper {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    border: 1px solid #e0e0e0;
}

.bonuses__table {
    width: 100%;
    border-collapse: collapse;
}

.bonuses__table th {
    background: linear-gradient(135deg, #fb7b21 0%, #ff5722 100%);
    color: white;
    padding: 1rem;
    text-align: left;
    font-weight: 600;
    font-size: 0.95rem;
}

.bonuses__table td {
    padding: 1rem;
    border-bottom: 1px solid #f0f0f0;
    font-size: 0.9rem;
    color: #555;
    line-height: 1.4;
}

.bonuses__table tbody tr:hover {
    background-color: #fafafa;
}

.bonuses__table tbody tr:last-child td {
    border-bottom: none;
}

.bonuses__image {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    position: sticky;
    top: 2rem;
}

.bonuses__img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(251, 123, 33, 0.2);
    transition: transform 0.3s ease;
}

.bonuses__img:hover {
    transform: scale(1.05);
}

.bonuses__details {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #fb7b21;
}

.bonuses__subtitle {
    font-size: 1.4rem;
    color: #333;
    margin-bottom: 1rem;
    margin-top: 2rem;
    font-weight: 600;
    position: relative;
}

.bonuses__subtitle:first-child {
    margin-top: 0;
}

.bonuses__subtitle::before {
    content: '';
    position: absolute;
    left: -2rem;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 100%;
    background: linear-gradient(135deg, #fb7b21 0%, #ff5722 100%);
    border-radius: 2px;
}

.bonuses__description {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 1.5rem;
    text-align: justify;
}

.bonuses__list {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.bonuses__list li {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 0.5rem;
    position: relative;
}

.bonuses__list li::marker {
    color: #fb7b21;
}

.banner {
    width: 100%;
    margin: 0;
    padding: 0;
}

.banner__link {
    display: block;
    width: 100%;
    transition: opacity 0.3s ease;
}

.banner__link:hover {
    opacity: 0.95;
}

.banner__img {
    width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 768px) {
    .bonuses {
        padding: 2rem 0;
    }
    
    .bonuses__container {
        padding: 0 1rem;
    }
    
    .bonuses__title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .bonuses__intro {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .bonuses__content {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 2rem;
    }
    
    .bonuses__table-wrapper {
        overflow-x: auto;
    }
    
    .bonuses__table {
        min-width: 600px;
    }
    
    .bonuses__table th,
    .bonuses__table td {
        padding: 0.75rem;
        font-size: 0.85rem;
    }
    
    .bonuses__image {
        position: static;
        order: -1;
    }
    
    .bonuses__details {
        padding: 1.5rem;
    }
    
    .bonuses__subtitle {
        font-size: 1.2rem;
        margin-top: 1.5rem;
    }
    
    .bonuses__description {
        font-size: 0.95rem;
        text-align: left;
        margin-bottom: 1rem;
    }
    
    .bonuses__list li {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .bonuses__container {
        padding: 0 0.75rem;
    }
    
    .bonuses__title {
        font-size: 1.75rem;
    }
    
    .bonuses__intro {
        font-size: 0.95rem;
    }
    
    .bonuses__table {
        min-width: 500px;
    }
    
    .bonuses__table th,
    .bonuses__table td {
        padding: 0.6rem;
        font-size: 0.8rem;
    }
    
    .bonuses__details {
        padding: 1rem;
    }
    
    .bonuses__subtitle {
        font-size: 1.1rem;
    }
    
         .bonuses__description {
         font-size: 0.9rem;
     }
 }

.mobile-play {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 4rem 0;
    position: relative;
}

.mobile-play::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #fb7b21 0%, #ff5722 50%, #e65100 100%);
}

.mobile-play__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.mobile-play__content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.mobile-play__text {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #fb7b21;
}

.mobile-play__title {
    font-size: 2.2rem;
    color: #333;
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
}

.mobile-play__description {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    text-align: justify;
    margin: 0;
}

.mobile-play__image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.mobile-play__img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(251, 123, 33, 0.2);
    transition: transform 0.3s ease;
}

.mobile-play__img:hover {
    transform: scale(1.05);
}

.safety {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 4rem 0;
    position: relative;
}

.safety::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #fb7b21 0%, #ff5722 50%, #e65100 100%);
}

.safety__container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 3rem;
    border-left: 4px solid #fb7b21;
}

.safety__title {
    font-size: 2.2rem;
    color: #333;
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
}

.safety__description {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    text-align: justify;
    margin: 0;
}

@media (max-width: 768px) {
    .mobile-play {
        padding: 2rem 0;
    }
    
    .mobile-play__container {
        padding: 0 1rem;
    }
    
    .mobile-play__content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .mobile-play__text {
        padding: 2rem;
        order: 2;
    }
    
    .mobile-play__title {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }
    
    .mobile-play__description {
        font-size: 0.95rem;
        text-align: left;
    }
    
    .mobile-play__image {
        order: 1;
    }
    
    .safety {
        padding: 2rem 0;
    }
    
    .safety__container {
        margin: 0 1rem;
        padding: 2rem;
    }
    
    .safety__title {
        font-size: 1.8rem;
        margin-bottom: 1rem;
        text-align: left;
    }
    
    .safety__description {
        font-size: 0.95rem;
        text-align: left;
    }
}

@media (max-width: 480px) {
    .mobile-play__container {
        padding: 0 0.75rem;
    }
    
    .mobile-play__text {
        padding: 1.5rem;
    }
    
    .mobile-play__title {
        font-size: 1.6rem;
    }
    
    .mobile-play__description {
        font-size: 0.9rem;
    }
    
    .safety__container {
        margin: 0 0.75rem;
        padding: 1.5rem;
    }
    
    .safety__title {
        font-size: 1.6rem;
    }
    
         .safety__description {
         font-size: 0.9rem;
     }
 }

.payments {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 4rem 0;
    position: relative;
}

.payments::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #fb7b21 0%, #ff5722 50%, #e65100 100%);
}

.payments__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.payments__title {
    font-size: 2.5rem;
    color: #333;
    text-align: center;
    margin-bottom: 2rem;
    font-weight: 700;
    line-height: 1.2;
}

.payments__intro {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
    border-left: 4px solid #fb7b21;
}

.payments__description {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 1rem;
    text-align: justify;
}

.payments__description:last-child {
    margin-bottom: 0;
}

.payments__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.payments__methods {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #fb7b21;
}

.payments__subtitle {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.payments__list {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.payments__item {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 1rem;
    padding: 0.75rem;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 3px solid #fb7b21;
    transition: background-color 0.3s ease;
}

.payments__item:hover {
    background-color: #f0f1f2;
}

.payments__item strong {
    color: #333;
    font-weight: 600;
}

.payments__note {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #666;
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 8px;
    border-left: 3px solid #fb7b21;
    margin: 0;
}

.payments__table-wrapper {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    border: 1px solid #e0e0e0;
}

.payments__table {
    width: 100%;
    border-collapse: collapse;
}

.payments__table th {
    background: linear-gradient(135deg, #fb7b21 0%, #ff5722 100%);
    color: white;
    padding: 1rem;
    text-align: left;
    font-weight: 600;
    font-size: 1rem;
}

.payments__table td {
    padding: 1rem;
    border-bottom: 1px solid #f0f0f0;
    font-size: 0.95rem;
    color: #555;
    line-height: 1.4;
    vertical-align: top;
}

.payments__table tbody tr:hover {
    background-color: #fafafa;
}

.payments__table tbody tr:last-child td {
    border-bottom: none;
}

.payments__table td:first-child {
    font-weight: 600;
    color: #333;
}

.payments__footer {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #fb7b21;
}

.payments__important {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 1rem;
    padding: 1rem;
    background: #fff3e0;
    border-radius: 8px;
    border-left: 3px solid #ff9800;
}

.payments__conclusion {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    margin: 0;
    text-align: justify;
}

@media (max-width: 768px) {
    .payments {
        padding: 2rem 0;
    }
    
    .payments__container {
        padding: 0 1rem;
    }
    
    .payments__title {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }
    
    .payments__intro {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .payments__description {
        font-size: 0.95rem;
        text-align: left;
        margin-bottom: 0.75rem;
    }
    
    .payments__content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .payments__methods {
        padding: 1.5rem;
    }
    
    .payments__subtitle {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }
    
    .payments__item {
        font-size: 0.95rem;
        margin-bottom: 0.75rem;
        padding: 0.6rem;
    }
    
    .payments__note {
        font-size: 0.9rem;
        padding: 0.75rem;
    }
    
    .payments__table-wrapper {
        overflow-x: auto;
    }
    
    .payments__table {
        min-width: 500px;
    }
    
    .payments__table th,
    .payments__table td {
        padding: 0.75rem;
        font-size: 0.9rem;
    }
    
    .payments__footer {
        padding: 1.5rem;
    }
    
    .payments__important {
        font-size: 0.95rem;
        padding: 0.75rem;
        margin-bottom: 0.75rem;
    }
    
    .payments__conclusion {
        font-size: 0.95rem;
        text-align: left;
    }
}

@media (max-width: 480px) {
    .payments__container {
        padding: 0 0.75rem;
    }
    
    .payments__title {
        font-size: 1.75rem;
    }
    
    .payments__intro {
        padding: 1rem;
    }
    
    .payments__description {
        font-size: 0.9rem;
    }
    
    .payments__methods {
        padding: 1rem;
    }
    
    .payments__subtitle {
        font-size: 1.1rem;
    }
    
    .payments__item {
        font-size: 0.9rem;
        padding: 0.5rem;
    }
    
    .payments__note {
        font-size: 0.85rem;
        padding: 0.6rem;
    }
    
    .payments__table {
        min-width: 450px;
    }
    
    .payments__table th,
    .payments__table td {
        padding: 0.6rem;
        font-size: 0.85rem;
    }
    
    .payments__footer {
        padding: 1rem;
    }
    
    .payments__important {
        font-size: 0.9rem;
        padding: 0.6rem;
    }
    
         .payments__conclusion {
         font-size: 0.9rem;
     }
 }

.support {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 4rem 0;
    position: relative;
}

.support::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #fb7b21 0%, #ff5722 50%, #e65100 100%);
}

.support__container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
}

.support__title {
    font-size: 2.5rem;
    color: #333;
    text-align: center;
    margin-bottom: 2rem;
    font-weight: 700;
    line-height: 1.2;
}

.support__content {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #fb7b21;
}

.support__description {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 1.5rem;
    text-align: justify;
}

.support__description:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .support {
        padding: 2rem 0;
    }
    
    .support__container {
        padding: 0 1rem;
    }
    
    .support__title {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }
    
    .support__content {
        padding: 2rem;
    }
    
    .support__description {
        font-size: 0.95rem;
        text-align: left;
        margin-bottom: 1rem;
    }
}

@media (max-width: 480px) {
    .support__container {
        padding: 0 0.75rem;
    }
    
    .support__title {
        font-size: 1.75rem;
    }
    
    .support__content {
        padding: 1.5rem;
    }
    
         .support__description {
         font-size: 0.9rem;
         margin-bottom: 0.75rem;
     }
 }

.footer {
    background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 100%);
    padding: 2rem 0;
    margin-top: 2rem;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #fb7b21 0%, #ff5722 50%, #e65100 100%);
}

.footer__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer__content {
    text-align: center;
}

.footer__copyright {
    font-size: 1.1rem;
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 1rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.footer__notice {
    font-size: 0.9rem;
    color: #cccccc;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
    background: rgba(251, 123, 33, 0.1);
    padding: 1rem 1.5rem;
    border-radius: 8px;
    border: 1px solid rgba(251, 123, 33, 0.3);
}

@media (max-width: 768px) {
    .footer {
        padding: 1.5rem 0;
        margin-top: 1.5rem;
    }
    
    .footer__container {
        padding: 0 1rem;
    }
    
    .footer__copyright {
        font-size: 1rem;
        margin-bottom: 0.75rem;
    }
    
    .footer__notice {
        font-size: 0.85rem;
        padding: 0.75rem 1rem;
    }
}

@media (max-width: 480px) {
    .footer__container {
        padding: 0 0.75rem;
    }
    
    .footer__copyright {
        font-size: 0.95rem;
    }
    
         .footer__notice {
         font-size: 0.8rem;
         padding: 0.6rem 0.8rem;
     }
 }

.privacy-policy {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 4rem 0;
    position: relative;
}

.privacy-policy::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #fb7b21 0%, #ff5722 50%, #e65100 100%);
}

.privacy-policy__container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
}

.privacy-policy__title {
    font-size: 2.5rem;
    color: #333;
    text-align: center;
    margin-bottom: 2rem;
    font-weight: 700;
    line-height: 1.2;
}

.privacy-policy__intro {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
    border-left: 4px solid #fb7b21;
}

.privacy-policy__description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
    margin: 0;
    text-align: center;
    font-weight: 500;
}

.privacy-policy__content {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #fb7b21;
    overflow: hidden;
}

.privacy-policy__section {
    padding: 2rem;
    border-bottom: 1px solid #f0f0f0;
}

.privacy-policy__section:last-child {
    border-bottom: none;
}

.privacy-policy__subtitle {
    font-size: 1.4rem;
    color: #333;
    margin-bottom: 1rem;
    font-weight: 600;
    position: relative;
}

.privacy-policy__subtitle::before {
    content: '';
    position: absolute;
    left: -2rem;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 100%;
    background: linear-gradient(135deg, #fb7b21 0%, #ff5722 100%);
    border-radius: 2px;
}

.privacy-policy__text {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 1rem;
    text-align: justify;
}

.privacy-policy__text:last-child {
    margin-bottom: 0;
}

.privacy-policy__list {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.privacy-policy__list li {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 0.5rem;
}

.privacy-policy__list li::marker {
    color: #fb7b21;
}

.privacy-policy__important {
    background: #fff3e0;
    padding: 1rem;
    border-radius: 8px;
    border-left: 3px solid #ff9800;
    margin-top: 1rem;
    font-size: 1rem;
    color: #555;
}

.privacy-policy__link {
    color: #fb7b21;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.privacy-policy__link:hover {
    color: #e65100;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .privacy-policy {
        padding: 2rem 0;
    }
    
    .privacy-policy__container {
        padding: 0 1rem;
    }
    
    .privacy-policy__title {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }
    
    .privacy-policy__intro {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .privacy-policy__description {
        font-size: 1rem;
        text-align: left;
    }
    
    .privacy-policy__section {
        padding: 1.5rem;
    }
    
    .privacy-policy__subtitle {
        font-size: 1.2rem;
    }
    
    .privacy-policy__text {
        font-size: 0.95rem;
        text-align: left;
    }
    
    .privacy-policy__list li {
        font-size: 0.95rem;
    }
    
    .privacy-policy__important {
        padding: 0.75rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .privacy-policy__container {
        padding: 0 0.75rem;
    }
    
    .privacy-policy__title {
        font-size: 1.75rem;
    }
    
    .privacy-policy__intro {
        padding: 1rem;
    }
    
    .privacy-policy__description {
        font-size: 0.95rem;
    }
    
    .privacy-policy__section {
        padding: 1rem;
    }
    
    .privacy-policy__subtitle {
        font-size: 1.1rem;
    }
    
    .privacy-policy__text {
        font-size: 0.9rem;
    }
    
    .privacy-policy__list li {
        font-size: 0.9rem;
    }
    
    .privacy-policy__important {
        padding: 0.6rem;
        font-size: 0.9rem;
    }
}

.terms-of-service {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 4rem 0;
    position: relative;
}

.terms-of-service::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #fb7b21 0%, #ff5722 50%, #e65100 100%);
}

.terms-of-service__container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
}

.terms-of-service__title {
    font-size: 2.5rem;
    color: #333;
    text-align: center;
    margin-bottom: 2rem;
    font-weight: 700;
    line-height: 1.2;
}

.terms-of-service__intro {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
    border-left: 4px solid #fb7b21;
}

.terms-of-service__description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
    margin: 0;
    text-align: center;
    font-weight: 500;
}

.terms-of-service__content {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #fb7b21;
    overflow: hidden;
}

.terms-of-service__section {
    padding: 2rem;
    border-bottom: 1px solid #f0f0f0;
}

.terms-of-service__section:last-child {
    border-bottom: none;
}

.terms-of-service__subtitle {
    font-size: 1.4rem;
    color: #333;
    margin-bottom: 1rem;
    font-weight: 600;
    position: relative;
}

.terms-of-service__subtitle::before {
    content: '';
    position: absolute;
    left: -2rem;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 100%;
    background: linear-gradient(135deg, #fb7b21 0%, #ff5722 100%);
    border-radius: 2px;
}

.terms-of-service__text {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 1rem;
    text-align: justify;
}

.terms-of-service__text:last-child {
    margin-bottom: 0;
}

.terms-of-service__list {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.terms-of-service__list li {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 0.5rem;
}

.terms-of-service__list li::marker {
    color: #fb7b21;
}

.terms-of-service__important {
    background: #fff3e0;
    padding: 1rem;
    border-radius: 8px;
    border-left: 3px solid #ff9800;
    margin-top: 1rem;
    font-size: 1rem;
    color: #555;
}

.terms-of-service__link {
    color: #fb7b21;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.terms-of-service__link:hover {
    color: #e65100;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .terms-of-service {
        padding: 2rem 0;
    }
    
    .terms-of-service__container {
        padding: 0 1rem;
    }
    
    .terms-of-service__title {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }
    
    .terms-of-service__intro {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .terms-of-service__description {
        font-size: 1rem;
        text-align: left;
    }
    
    .terms-of-service__section {
        padding: 1.5rem;
    }
    
    .terms-of-service__subtitle {
        font-size: 1.2rem;
    }
    
    .terms-of-service__text {
        font-size: 0.95rem;
        text-align: left;
    }
    
    .terms-of-service__list li {
        font-size: 0.95rem;
    }
    
    .terms-of-service__important {
        padding: 0.75rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .terms-of-service__container {
        padding: 0 0.75rem;
    }
    
    .terms-of-service__title {
        font-size: 1.75rem;
    }
    
    .terms-of-service__intro {
        padding: 1rem;
    }
    
    .terms-of-service__description {
        font-size: 0.95rem;
    }
    
    .terms-of-service__section {
        padding: 1rem;
    }
    
    .terms-of-service__subtitle {
        font-size: 1.1rem;
    }
    
    .terms-of-service__text {
        font-size: 0.9rem;
    }
    
    .terms-of-service__list li {
        font-size: 0.9rem;
    }
    
    .terms-of-service__important {
        padding: 0.6rem;
        font-size: 0.9rem;
    }
} 