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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: #071f3e;
    color: #ffffff;
    line-height: 1.6;
}

.header {
    background-color: #0a2647;
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.header__logo {
    flex-shrink: 0;
}

.header__logo-img {
    height: 2.5rem;
    width: auto;
    display: block;
}

.header__nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.header__nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.header__nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 0.25rem;
    transition: all 0.3s ease;
    position: relative;
}

.header__nav-link:hover {
    color: #f87702;
    background-color: rgba(248, 119, 2, 0.1);
}

.header__nav-link:focus {
    outline: 2px solid #f87702;
    outline-offset: 2px;
}

.header__burger {
    display: none;
    background: none;
    border: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 2rem;
    height: 2rem;
    cursor: pointer;
    padding: 0;
}

.header__burger-line {
    width: 1.25rem;
    height: 2px;
    background-color: #ffffff;
    margin: 2px 0;
    transition: all 0.3s ease;
    border-radius: 1px;
    transform-origin: center;
}

.header__burger--active .header__burger-line:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.header__burger--active .header__burger-line:nth-child(2) {
    opacity: 0;
}

.header__burger--active .header__burger-line:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

.header__actions {
    flex-shrink: 0;
}

.header__play-btn {
    background-color: #f87702;
    color: #ffffff;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border-radius: 0.375rem;
    font-weight: 700;
    font-size: 0.875rem;
    letter-spacing: 0.025em;
    transition: all 0.3s ease;
    display: inline-block;
    text-transform: uppercase;
}

.header__play-btn:hover {
    background-color: #e66a00;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(248, 119, 2, 0.3);
}

.header__play-btn:focus {
    outline: 2px solid #ffffff;
    outline-offset: 2px;
}

.header__play-btn:active {
    transform: translateY(0);
}

.hero {
    background-image: url('images/wazamba-bg.webp');
    background-size: cover;
    background-position: 50% center;
    background-repeat: no-repeat;
    min-height: 70vh;
    display: flex;
    align-items: center;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(7, 31, 62, 0.7);
    z-index: 1;
}

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

.hero__content {
    max-width: 600px;
    color: #ffffff;
}

.hero__heading {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero__text {
    font-size: 1.125rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.hero__cta {
    background-color: #f87702;
    color: #ffffff;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.025em;
    transition: all 0.3s ease;
    display: inline-block;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(248, 119, 2, 0.3);
}

.hero__cta:hover {
    background-color: #e66a00;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(248, 119, 2, 0.4);
}

.hero__cta:focus {
    outline: 2px solid #ffffff;
    outline-offset: 2px;
}

.hero__cta:active {
    transform: translateY(0);
}

.info-section {
    padding: 4rem 0;
    background-color: #071f3e;
}

.info-section__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-areas: 
        "table content"
        "image-section image-section";
    gap: 3rem;
    align-items: start;
}

.info-table {
    grid-area: table;
    width: 100%;
    border-collapse: collapse;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.info-section__content {
    grid-area: content;
}

.info-section__image-content {
    grid-area: image-section;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-top: 1rem;
}

.info-section__image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.info-section__img {
    max-width: 100%;
    height: auto;
    border-radius: 0.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

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

.info-table tbody tr {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.info-table tbody tr:last-child {
    border-bottom: none;
}

.info-table__label {
    padding: 1rem 1.5rem;
    font-weight: 600;
    color: #f87702;
    background-color: rgba(248, 119, 2, 0.1);
    width: 40%;
    vertical-align: top;
}

.info-table__value {
    padding: 1rem 1.5rem;
    color: #ffffff;
    vertical-align: top;
}

.info-section__content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-section__text {
    font-size: 1.125rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.login-section {
    padding: 4rem 0;
    background-color: #071f3e;
}

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

.login-section__heading {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 2rem;
    text-align: center;
}

.login-section__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 2rem;
}

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

.login-section__image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.login-section__img {
    max-width: 100%;
    height: auto;
    border-radius: 0.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.login-section__text-full {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.login-section__paragraph {
    font-size: 1.125rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.bonus-section {
    padding: 4rem 0;
    background-color: #071f3e;
}

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

.bonus-section__heading {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 2rem;
    text-align: center;
}

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

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

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

.bonus-section__img {
    max-width: 100%;
    height: auto;
    border-radius: 0.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

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

.bonus-section__subheading {
    font-size: 1.5rem;
    font-weight: 600;
    color: #f87702;
    margin: 1.5rem 0 1rem 0;
}

.bonus-section__subheading:first-child {
    margin-top: 0;
}

.bonus-section__paragraph {
    font-size: 1.125rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.withdrawal-section {
    padding: 4rem 0;
    background-color: #071f3e;
}

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

.withdrawal-section__heading {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 2rem;
    text-align: center;
}

.withdrawal-section__content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.withdrawal-section__paragraph {
    font-size: 1.125rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.withdrawal-section__methods {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 0.5rem;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.withdrawal-section__methods-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #f87702;
    margin-bottom: 2rem;
    text-align: center;
}

.withdrawal-section__methods-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.withdrawal-section__method-category {
    background-color: rgba(255, 255, 255, 0.03);
    border-radius: 0.375rem;
    padding: 1.5rem;
}

.withdrawal-section__category-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1rem;
}

.withdrawal-section__list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.withdrawal-section__list li {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    padding-left: 1rem;
    position: relative;
}

.withdrawal-section__list li::before {
    content: '•';
    color: #f87702;
    position: absolute;
    left: 0;
}

.withdrawal-section__info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    background-color: rgba(248, 119, 2, 0.1);
    border-radius: 0.375rem;
    padding: 1.5rem;
}

.withdrawal-section__info-item {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
}

.withdrawal-section__info-item strong {
    color: #f87702;
}

.pros-cons-section {
    padding: 4rem 0;
    background-color: #071f3e;
}

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

.pros-cons-section__heading {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 2rem;
    text-align: center;
}

.pros-cons-section__intro {
    font-size: 1.125rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    text-align: center;
}

.pros-cons-section__table-wrapper {
    margin-bottom: 3rem;
    overflow-x: auto;
}

.pros-cons-table {
    width: 100%;
    border-collapse: collapse;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.pros-cons-table__header {
    padding: 1.5rem;
    font-weight: 700;
    font-size: 1.125rem;
    text-align: center;
    color: #ffffff;
}

.pros-cons-table__header--pros {
    background-color: rgba(34, 197, 94, 0.8);
}

.pros-cons-table__header--cons {
    background-color: rgba(239, 68, 68, 0.8);
}

.pros-cons-table__cell {
    padding: 1rem 1.5rem;
    vertical-align: top;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 1rem;
    line-height: 1.6;
}

.pros-cons-table__cell--pros {
    background-color: rgba(34, 197, 94, 0.1);
    color: rgba(255, 255, 255, 0.9);
    position: relative;
}

.pros-cons-table__cell--pros::before {
    content: '✓';
    color: #22c55e;
    font-weight: bold;
    margin-right: 0.5rem;
}

.pros-cons-table__cell--cons {
    background-color: rgba(239, 68, 68, 0.1);
    color: rgba(255, 255, 255, 0.9);
    position: relative;
}

.pros-cons-table__cell--cons::before {
    content: '✗';
    color: #ef4444;
    font-weight: bold;
    margin-right: 0.5rem;
}

.pros-cons-table__cell--empty {
    background-color: rgba(255, 255, 255, 0.02);
}

.pros-cons-table tbody tr:last-child .pros-cons-table__cell {
    border-bottom: none;
}

.pros-cons-section__content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.pros-cons-section__paragraph {
    font-size: 1.125rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.footer {
    background-color: #0a2647;
    padding: 3rem 0 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.footer__logo {
    flex-shrink: 0;
}

.footer__logo-img {
    height: 2rem;
    width: auto;
    display: block;
}

.footer__content {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 800px;
}

.footer__copyright {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    margin: 0;
}

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

.footer__notice {
    font-size: 0.875rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.footer__notice--gambling {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.footer__age-badge {
    background-color: #f87702;
    color: #ffffff;
    font-weight: 700;
    font-size: 0.75rem;
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2rem;
}

.footer__notice--disclaimer {
    font-style: italic;
    color: rgba(255, 255, 255, 0.6);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1rem;
    font-size: 0.8rem;
}

.register-hero {
    background-color: #071f3e;
    padding: 3rem 0;
    text-align: center;
}

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

.register-hero__heading {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.register-hero__text {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.register-content {
    padding: 4rem 0;
    background-color: #071f3e;
}

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

.register-content__section {
    margin-bottom: 4rem;
}

.register-content__heading {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 2rem;
}

.register-content__subheading {
    font-size: 1.5rem;
    font-weight: 600;
    color: #f87702;
    margin: 2rem 0 1.5rem 0;
}

.register-content__paragraph {
    font-size: 1.125rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
}

.register-content__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 2rem;
}

.register-content__grid--reverse {
    grid-template-columns: 1fr 1fr;
}

.register-content__text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.register-content__image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.register-content__img {
    max-width: 100%;
    height: auto;
    border-radius: 0.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.register-content__list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.register-content__list li {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    padding-left: 1.5rem;
    position: relative;
}

.register-content__list li::before {
    content: '▶';
    color: #f87702;
    position: absolute;
    left: 0;
    font-size: 0.8rem;
}

.register-steps__list {
    list-style: none;
    counter-reset: step-counter;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.register-steps__item {
    counter-increment: step-counter;
    background-color: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 0.5rem;
    border-left: 4px solid #f87702;
    position: relative;
    padding-left: 4rem;
}

.register-steps__item::before {
    content: counter(step-counter);
    position: absolute;
    left: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    background-color: #f87702;
    color: #ffffff;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.875rem;
}

.register-steps__item strong {
    color: #f87702;
    display: block;
    margin-bottom: 0.5rem;
}

.verification-table__table,
.support-table__table {
    width: 100%;
    border-collapse: collapse;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    margin: 1.5rem 0;
}

.verification-table__header,
.support-table__header {
    background-color: rgba(248, 119, 2, 0.2);
    color: #ffffff;
    padding: 1rem;
    text-align: left;
    font-weight: 600;
    font-size: 0.95rem;
}

.verification-table__cell,
.support-table__cell {
    padding: 1rem;
    color: rgba(255, 255, 255, 0.9);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    line-height: 1.5;
}

.verification-table__table tbody tr:last-child .verification-table__cell,
.support-table__table tbody tr:last-child .support-table__cell {
    border-bottom: none;
}

.verification-steps__list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.verification-steps__item {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    padding-left: 1.5rem;
    position: relative;
}

.verification-steps__item::before {
    content: '✓';
    color: #22c55e;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.troubleshooting__item {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
    border-left: 4px solid #f87702;
}

.troubleshooting__title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #f87702;
    margin-bottom: 0.75rem;
}

.troubleshooting__solution {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.benefits-grid__item {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 0.5rem;
    text-align: center;
    border: 1px solid rgba(248, 119, 2, 0.2);
}

.benefits-grid__title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1rem;
}

.benefits-grid__text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.deposit-hero {
    background-color: #071f3e;
    padding: 3rem 0;
    text-align: center;
}

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

.deposit-hero__heading {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.deposit-hero__text {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.deposit-content {
    padding: 4rem 0;
    background-color: #071f3e;
}

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

.deposit-content__section {
    margin-bottom: 4rem;
}

.deposit-content__heading {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 2rem;
}

.deposit-content__subheading {
    font-size: 1.5rem;
    font-weight: 600;
    color: #f87702;
    margin: 2rem 0 1.5rem 0;
}

.deposit-content__paragraph {
    font-size: 1.125rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
}

.deposit-content__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 2rem;
}

.deposit-content__grid--reverse {
    grid-template-columns: 1fr 1fr;
}

.deposit-content__text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.deposit-content__image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.deposit-content__img {
    max-width: 100%;
    height: auto;
    border-radius: 0.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.deposit-content__list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.deposit-content__list li {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    padding-left: 1.5rem;
    position: relative;
}

.deposit-content__list li::before {
    content: '▶';
    color: #f87702;
    position: absolute;
    left: 0;
    font-size: 0.8rem;
}

.deposit-steps__list {
    list-style: none;
    counter-reset: step-counter;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.deposit-steps__item {
    counter-increment: step-counter;
    background-color: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 0.5rem;
    border-left: 4px solid #f87702;
    position: relative;
    padding-left: 4rem;
}

.deposit-steps__item::before {
    content: counter(step-counter);
    position: absolute;
    left: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    background-color: #f87702;
    color: #ffffff;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.875rem;
}

.deposit-steps__item strong {
    color: #f87702;
    display: block;
    margin-bottom: 0.5rem;
}

.payment-methods-table__table,
.verification-docs-table__table {
    width: 100%;
    border-collapse: collapse;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    margin: 1.5rem 0;
}

.payment-methods-table__header,
.verification-docs-table__header {
    background-color: rgba(248, 119, 2, 0.2);
    color: #ffffff;
    padding: 1rem;
    text-align: left;
    font-weight: 600;
    font-size: 0.95rem;
}

.payment-methods-table__cell,
.verification-docs-table__cell {
    padding: 1rem;
    color: rgba(255, 255, 255, 0.9);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    line-height: 1.5;
}

.payment-methods-table__table tbody tr:last-child .payment-methods-table__cell,
.verification-docs-table__table tbody tr:last-child .verification-docs-table__cell {
    border-bottom: none;
}

.limits-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    background-color: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 0.5rem;
    margin-bottom: 1.5rem;
}

.limits-info__item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.limits-info__item:last-child {
    border-bottom: none;
}

.limits-info__label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
}

.limits-info__value {
    color: #f87702;
    font-weight: 600;
    font-size: 1rem;
}

.verification-reasons__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 2rem 0;
}

.verification-reasons__item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background-color: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 0.5rem;
    border: 1px solid rgba(248, 119, 2, 0.2);
}

.verification-reasons__icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.verification-reasons__title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.verification-reasons__text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

.faq-section__item {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
    border-left: 4px solid #f87702;
}

.faq-section__question {
    font-size: 1.125rem;
    font-weight: 600;
    color: #f87702;
    margin-bottom: 0.75rem;
}

.faq-section__answer {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.wazamba-link {
    color: #f87702;
    text-decoration: none;
    font-weight: 600;
    position: relative;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
}

.wazamba-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #f87702;
    transition: width 0.3s ease;
}

.wazamba-link:hover {
    color: #ffffff;
    background-color: rgba(248, 119, 2, 0.15);
    padding: 0.2rem 0.4rem;
    border-radius: 0.25rem;
    transform: translateY(-1px);
}

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

.wazamba-link:focus {
    outline: 2px solid #f87702;
    outline-offset: 2px;
    border-radius: 0.25rem;
}

.wazamba-link:active {
    transform: translateY(0);
}

@media (max-width: 768px) {
    .header__container {
        position: relative;
    }
    
    .header__burger {
        display: flex;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .header__nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #0a2647;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: all 0.3s ease;
        z-index: 50;
    }
    
    .header__nav--active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    
    .header__nav-list {
        flex-direction: column;
        padding: 1rem;
        gap: 0.5rem;
    }
    
    .header__nav-link {
        display: block;
        text-align: center;
        padding: 0.75rem 1rem;
        border-radius: 0.25rem;
    }
    
    .header__logo-img {
        height: 2rem;
    }
    
         .header__play-btn {
         padding: 0.5rem 1rem;
         font-size: 0.75rem;
     }
     
     .hero {
         background-image: url('images/wazamba-bgm.webp');
         min-height: 60vh;
     }
     
     .hero__container {
         padding: 3rem 1rem;
     }
     
     .hero__heading {
         font-size: 2rem;
         margin-bottom: 1rem;
     }
     
     .hero__text {
         font-size: 1rem;
         margin-bottom: 1.5rem;
     }
     
     .hero__cta {
         padding: 0.875rem 1.75rem;
         font-size: 0.875rem;
     }
     
     .info-section {
         padding: 3rem 0;
     }
     
     .info-section__container {
         grid-template-columns: 1fr;
         grid-template-areas: 
             "table"
             "content"
             "image-section";
         gap: 2rem;
     }
     
     .info-section__image-content {
         grid-template-columns: 1fr;
         gap: 2rem;
     }
     
     .info-table__label,
     .info-table__value {
         padding: 0.875rem 1rem;
     }
     
     .info-section__text {
         font-size: 1rem;
     }
     
     .login-section {
         padding: 3rem 0;
     }
     
     .login-section__heading {
         font-size: 1.75rem;
         margin-bottom: 1.5rem;
     }
     
     .login-section__content {
         grid-template-columns: 1fr;
         gap: 2rem;
         margin-bottom: 1.5rem;
     }
     
     .login-section__paragraph {
         font-size: 1rem;
     }
     
     .bonus-section {
         padding: 3rem 0;
     }
     
     .bonus-section__heading {
         font-size: 1.75rem;
         margin-bottom: 1.5rem;
     }
     
     .bonus-section__content {
         grid-template-columns: 1fr;
         gap: 2rem;
         margin-bottom: 2rem;
     }
     
     .bonus-section__subheading {
         font-size: 1.25rem;
     }
     
     .bonus-section__paragraph {
         font-size: 1rem;
     }
     
     .withdrawal-section {
         padding: 3rem 0;
     }
     
     .withdrawal-section__heading {
         font-size: 1.75rem;
         margin-bottom: 1.5rem;
     }
     
     .withdrawal-section__content {
         margin-bottom: 2rem;
     }
     
     .withdrawal-section__paragraph {
         font-size: 1rem;
     }
     
     .withdrawal-section__methods {
         padding: 1.5rem;
     }
     
     .withdrawal-section__methods-title {
         font-size: 1.25rem;
         margin-bottom: 1.5rem;
     }
     
     .withdrawal-section__methods-grid {
         grid-template-columns: 1fr;
         gap: 1.5rem;
     }
     
     .withdrawal-section__method-category {
         padding: 1.25rem;
     }
     
     .withdrawal-section__category-title {
         font-size: 1rem;
     }
     
     .withdrawal-section__info {
         grid-template-columns: 1fr;
         padding: 1.25rem;
     }
     
     .pros-cons-section {
         padding: 3rem 0;
     }
     
     .pros-cons-section__heading {
         font-size: 1.75rem;
         margin-bottom: 1.5rem;
     }
     
     .pros-cons-section__intro {
         font-size: 1rem;
         margin-bottom: 1.5rem;
     }
     
     .pros-cons-section__table-wrapper {
         margin-bottom: 2rem;
     }
     
     .pros-cons-table__header {
         padding: 1rem;
         font-size: 1rem;
     }
     
     .pros-cons-table__cell {
         padding: 0.875rem 1rem;
         font-size: 0.95rem;
     }
     
     .pros-cons-section__paragraph {
         font-size: 1rem;
     }
     
     .footer {
         padding: 2rem 0 1.5rem;
     }
     
     .footer__container {
         gap: 1.5rem;
     }
     
     .footer__logo-img {
         height: 1.75rem;
     }
     
     .footer__content {
         gap: 1.25rem;
     }
     
     .footer__copyright {
         font-size: 0.9rem;
     }
     
     .footer__notice {
         font-size: 0.8rem;
     }
     
     .footer__age-badge {
         font-size: 0.7rem;
     }
     
     .register-hero {
         padding: 2rem 0;
     }
     
     .register-hero__heading {
         font-size: 2rem;
         margin-bottom: 1rem;
     }
     
     .register-hero__text {
         font-size: 1.125rem;
     }
     
     .register-content {
         padding: 3rem 0;
     }
     
     .register-content__section {
         margin-bottom: 3rem;
     }
     
     .register-content__heading {
         font-size: 1.75rem;
         margin-bottom: 1.5rem;
     }
     
     .register-content__subheading {
         font-size: 1.25rem;
         margin: 1.5rem 0 1rem 0;
     }
     
     .register-content__paragraph {
         font-size: 1rem;
         margin-bottom: 1.25rem;
     }
     
     .register-content__grid {
         grid-template-columns: 1fr;
         gap: 2rem;
         margin-bottom: 1.5rem;
     }
     
     .register-content__grid--reverse {
         grid-template-columns: 1fr;
     }
     
     .register-steps__item {
         padding: 1.25rem;
         padding-left: 3.5rem;
     }
     
     .register-steps__item::before {
         left: 1.25rem;
         width: 1.75rem;
         height: 1.75rem;
         font-size: 0.8rem;
     }
     
     .verification-table__header,
     .support-table__header {
         padding: 0.875rem;
         font-size: 0.875rem;
     }
     
     .verification-table__cell,
     .support-table__cell {
         padding: 0.875rem;
         font-size: 0.85rem;
     }
     
     .troubleshooting__item {
         padding: 1.25rem;
     }
     
     .troubleshooting__title {
         font-size: 1rem;
     }
     
     .benefits-grid {
         grid-template-columns: 1fr;
         gap: 1.5rem;
     }
     
     .benefits-grid__item {
         padding: 1.5rem;
     }
     
     .benefits-grid__title {
         font-size: 1.125rem;
     }
     
     .deposit-hero {
         padding: 2rem 0;
     }
     
     .deposit-hero__heading {
         font-size: 2rem;
         margin-bottom: 1rem;
     }
     
     .deposit-hero__text {
         font-size: 1.125rem;
     }
     
     .deposit-content {
         padding: 3rem 0;
     }
     
     .deposit-content__section {
         margin-bottom: 3rem;
     }
     
     .deposit-content__heading {
         font-size: 1.75rem;
         margin-bottom: 1.5rem;
     }
     
     .deposit-content__subheading {
         font-size: 1.25rem;
         margin: 1.5rem 0 1rem 0;
     }
     
     .deposit-content__paragraph {
         font-size: 1rem;
         margin-bottom: 1.25rem;
     }
     
     .deposit-content__grid {
         grid-template-columns: 1fr;
         gap: 2rem;
         margin-bottom: 1.5rem;
     }
     
     .deposit-content__grid--reverse {
         grid-template-columns: 1fr;
     }
     
     .deposit-steps__item {
         padding: 1.25rem;
         padding-left: 3.5rem;
     }
     
     .deposit-steps__item::before {
         left: 1.25rem;
         width: 1.75rem;
         height: 1.75rem;
         font-size: 0.8rem;
     }
     
     .payment-methods-table__header,
     .verification-docs-table__header {
         padding: 0.875rem;
         font-size: 0.875rem;
     }
     
     .payment-methods-table__cell,
     .verification-docs-table__cell {
         padding: 0.875rem;
         font-size: 0.85rem;
     }
     
     .limits-info {
         padding: 1.25rem;
     }
     
     .limits-info__item {
         flex-direction: column;
         align-items: flex-start;
         gap: 0.5rem;
     }
     
     .verification-reasons__grid {
         grid-template-columns: 1fr;
         gap: 1.5rem;
     }
     
     .verification-reasons__item {
         padding: 1.25rem;
     }
     
     .verification-reasons__title {
         font-size: 1rem;
     }
     
     .faq-section__item {
         padding: 1.25rem;
     }
     
     .faq-section__question {
         font-size: 1rem;
     }
 }
 
 @media (max-width: 480px) {
     .hero__heading {
         font-size: 1.75rem;
     }
     
     .hero__text {
         font-size: 0.9rem;
     }
     
     .hero__container {
         padding: 2rem 1rem;
     }
     
     .info-section {
         padding: 2rem 0;
     }
     
     .info-table__label,
     .info-table__value {
         padding: 0.75rem 0.875rem;
         font-size: 0.9rem;
     }
     
     .info-section__text {
         font-size: 0.95rem;
     }
     
     .info-section__image-content {
         margin-top: 0;
         gap: 1.5rem;
     }
     
     .login-section {
         padding: 2rem 0;
     }
     
     .login-section__heading {
         font-size: 1.5rem;
         margin-bottom: 1rem;
     }
     
     .login-section__content {
         gap: 1.5rem;
         margin-bottom: 1rem;
     }
     
     .login-section__paragraph {
         font-size: 0.95rem;
     }
     
     .bonus-section {
         padding: 2rem 0;
     }
     
     .bonus-section__heading {
         font-size: 1.5rem;
         margin-bottom: 1rem;
     }
     
     .bonus-section__content {
         gap: 1.5rem;
         margin-bottom: 1.5rem;
     }
     
     .bonus-section__subheading {
         font-size: 1.1rem;
         margin: 1rem 0 0.75rem 0;
     }
     
     .bonus-section__paragraph {
         font-size: 0.95rem;
     }
     
     .withdrawal-section {
         padding: 2rem 0;
     }
     
     .withdrawal-section__heading {
         font-size: 1.5rem;
         margin-bottom: 1rem;
     }
     
     .withdrawal-section__content {
         margin-bottom: 1.5rem;
     }
     
     .withdrawal-section__paragraph {
         font-size: 0.95rem;
     }
     
     .withdrawal-section__methods {
         padding: 1rem;
     }
     
     .withdrawal-section__methods-title {
         font-size: 1.1rem;
         margin-bottom: 1rem;
     }
     
     .withdrawal-section__methods-grid {
         gap: 1rem;
     }
     
     .withdrawal-section__method-category {
         padding: 1rem;
     }
     
     .withdrawal-section__category-title {
         font-size: 0.95rem;
     }
     
     .withdrawal-section__list li {
         font-size: 0.9rem;
     }
     
     .withdrawal-section__info {
         padding: 1rem;
     }
     
     .withdrawal-section__info-item {
         font-size: 0.85rem;
     }
     
     .pros-cons-section {
         padding: 2rem 0;
     }
     
     .pros-cons-section__heading {
         font-size: 1.5rem;
         margin-bottom: 1rem;
     }
     
     .pros-cons-section__intro {
         font-size: 0.95rem;
         margin-bottom: 1rem;
     }
     
     .pros-cons-section__table-wrapper {
         margin-bottom: 1.5rem;
     }
     
     .pros-cons-table__header {
         padding: 0.75rem;
         font-size: 0.9rem;
     }
     
     .pros-cons-table__cell {
         padding: 0.75rem;
         font-size: 0.875rem;
     }
     
     .pros-cons-section__paragraph {
         font-size: 0.95rem;
     }
     
     .footer {
         padding: 1.5rem 0 1rem;
     }
     
     .footer__container {
         gap: 1rem;
     }
     
     .footer__logo-img {
         height: 1.5rem;
     }
     
     .footer__content {
         gap: 1rem;
     }
     
     .footer__copyright {
         font-size: 0.85rem;
     }
     
     .footer__notice {
         font-size: 0.75rem;
     }
     
     .footer__notice--disclaimer {
         font-size: 0.7rem;
     }
     
     .footer__age-badge {
         font-size: 0.65rem;
         padding: 0.2rem 0.4rem;
     }
     
     .register-hero {
         padding: 1.5rem 0;
     }
     
     .register-hero__heading {
         font-size: 1.75rem;
         margin-bottom: 0.75rem;
     }
     
     .register-hero__text {
         font-size: 1rem;
     }
     
     .register-content {
         padding: 2rem 0;
     }
     
     .register-content__section {
         margin-bottom: 2rem;
     }
     
     .register-content__heading {
         font-size: 1.5rem;
         margin-bottom: 1rem;
     }
     
     .register-content__subheading {
         font-size: 1.125rem;
         margin: 1rem 0 0.75rem 0;
     }
     
     .register-content__paragraph {
         font-size: 0.95rem;
         margin-bottom: 1rem;
     }
     
     .register-content__grid {
         gap: 1.5rem;
         margin-bottom: 1rem;
     }
     
     .register-steps__item {
         padding: 1rem;
         padding-left: 3rem;
         font-size: 0.9rem;
     }
     
     .register-steps__item::before {
         left: 1rem;
         width: 1.5rem;
         height: 1.5rem;
         font-size: 0.75rem;
     }
     
     .verification-table__header,
     .support-table__header {
         padding: 0.75rem;
         font-size: 0.8rem;
     }
     
     .verification-table__cell,
     .support-table__cell {
         padding: 0.75rem;
         font-size: 0.8rem;
     }
     
     .troubleshooting__item {
         padding: 1rem;
     }
     
     .troubleshooting__title {
         font-size: 0.95rem;
         margin-bottom: 0.5rem;
     }
     
     .troubleshooting__solution {
         font-size: 0.9rem;
     }
     
     .benefits-grid {
         gap: 1rem;
     }
     
     .benefits-grid__item {
         padding: 1.25rem;
     }
     
     .benefits-grid__title {
         font-size: 1rem;
         margin-bottom: 0.75rem;
     }
     
     .benefits-grid__text {
         font-size: 0.875rem;
     }
     
     .deposit-hero {
         padding: 1.5rem 0;
     }
     
     .deposit-hero__heading {
         font-size: 1.75rem;
         margin-bottom: 0.75rem;
     }
     
     .deposit-hero__text {
         font-size: 1rem;
     }
     
     .deposit-content {
         padding: 2rem 0;
     }
     
     .deposit-content__section {
         margin-bottom: 2rem;
     }
     
     .deposit-content__heading {
         font-size: 1.5rem;
         margin-bottom: 1rem;
     }
     
     .deposit-content__subheading {
         font-size: 1.125rem;
         margin: 1rem 0 0.75rem 0;
     }
     
     .deposit-content__paragraph {
         font-size: 0.95rem;
         margin-bottom: 1rem;
     }
     
     .deposit-content__grid {
         gap: 1.5rem;
         margin-bottom: 1rem;
     }
     
     .deposit-steps__item {
         padding: 1rem;
         padding-left: 3rem;
         font-size: 0.9rem;
     }
     
     .deposit-steps__item::before {
         left: 1rem;
         width: 1.5rem;
         height: 1.5rem;
         font-size: 0.75rem;
     }
     
     .payment-methods-table__header,
     .verification-docs-table__header {
         padding: 0.75rem;
         font-size: 0.8rem;
     }
     
     .payment-methods-table__cell,
     .verification-docs-table__cell {
         padding: 0.75rem;
         font-size: 0.8rem;
     }
     
     .limits-info {
         padding: 1rem;
     }
     
     .limits-info__label,
     .limits-info__value {
         font-size: 0.9rem;
     }
     
     .verification-reasons__grid {
         gap: 1rem;
     }
     
     .verification-reasons__item {
         padding: 1rem;
         flex-direction: column;
         text-align: center;
     }
     
     .verification-reasons__title {
         font-size: 0.95rem;
         margin-bottom: 0.5rem;
     }
     
     .verification-reasons__text {
         font-size: 0.875rem;
     }
     
     .faq-section__item {
         padding: 1rem;
     }
     
     .faq-section__question {
         font-size: 0.95rem;
         margin-bottom: 0.5rem;
     }
     
     .faq-section__answer {
         font-size: 0.9rem;
     }
 } 