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

body {
    font-family: 'Arial', sans-serif;
    background-color: #fff;
    color: #111;
    line-height: 1.4;
}


.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}


.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #ffffff;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.header-body {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: 60px;
}


.icon-menu_kera {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 30px;
    height: 22px;
    cursor: pointer;
    gap: 5px;
}

.icon-menu_kera span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: #333;
    border-radius: 2px;
    transition: all 0.3s ease;
}


.menu_kera__body {
    position: fixed;
    top: 60px;
    left: 0;
    width: 100%;
    height: calc(100vh - 60px);
    background-color: #fff;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.menu_kera__list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.menu_kera__link {
    text-decoration: none;
    color: #111;
    font-size: 18px;
    font-weight: 500;
    transition: color 0.2s ease;
}

.menu_kera__link:hover {
    color: #007bff;
}


.menu-open .menu_kera__body {
    transform: translateX(0);
}

.menu-open .icon-menu_kera span:nth-child(1) {
    transform: rotate(45deg) translateY(8px);
}

.menu-open .icon-menu_kera span:nth-child(2) {
    opacity: 0;
}

.menu-open .icon-menu_kera span:nth-child(3) {
    transform: rotate(-45deg) translateY(-8px);
}


@media (min-width: 768px) {
    .icon-menu_kera {
        display: none;
    }

    .menu_kera__body {
        position: static;
        height: auto;
        transform: none;
        flex-direction: row;
        background: transparent;
        padding: 0;
    }

    .menu_kera__list {
        flex-direction: row;
        gap: 30px;
    }

    .menu_kera__link {
        font-size: 16px;
    }
}


.bun {
    padding: 100px 0 60px;
    background-color: #f5f7fa;
    position: relative;
}

.bun__row {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.bun__column {
    flex: 1;
}

.bun__content {
    text-align: center;
}

.bun__pretitle {
    font-size: 16px;
    color: #007bff;
    font-weight: 600;
    margin-bottom: 15px;
}

.bun__title {
    font-size: 32px;
    font-weight: 700;
    color: #111;
    margin-bottom: 20px;
    line-height: 1.2;
}

.bun__subtitle {
    display: block;
    font-size: 18px;
    color: #333;
    margin-bottom: 30px;
}

.bun__btn {
    display: inline-block;
    background-color: #007bff;
    color: #fff;
    padding: 12px 28px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.bun__btn:hover {
    background-color: #0056b3;
}

.bun__image {
    display: flex;
    justify-content: center;
}

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


@media (min-width: 768px) {
    .bun__row {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .bun__content {
        text-align: left;
        padding-right: 30px;
    }

    .bun__title {
        font-size: 42px;
    }

    .bun__subtitle {
        font-size: 20px;
    }
}

@media (min-width: 1024px) {
    .bun {
        padding: 140px 0 100px;
    }

    .bun__title {
        font-size: 52px;
    }

    .bun__subtitle {
        font-size: 22px;
    }

    .bun__btn {
        font-size: 18px;
        padding: 14px 36px;
    }
}


.about {
    padding: 80px 0;
    background-color: #ffffff;
}

.about h2 {
    font-size: 32px;
    text-align: center;
    margin-bottom: 40px;
    color: #111;
}


.about__row {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.about__column {
    flex: 1;
}


.about__left {
    font-size: 16px;
    color: #333;
    line-height: 1.6;
}

.about__left h5 {
    font-size: 20px;
    font-weight: 600;
    margin: 25px 0 15px;
    color: #111;
}


.about__right {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.rightabout__item h6 {
    font-size: 18px;
    font-weight: 600;
    color: #007bff;
    margin-bottom: 6px;
}

.rightabout__item p {
    font-size: 15px;
    color: #444;
    line-height: 1.5;
}


.about__bot {
    margin-top: 60px;
}

.about__bot h5 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #111;
}

.about__bot .bigpt {
    font-size: 18px;
    font-weight: 500;
    margin: 15px 0;
    color: #222;
}

.about__bot p {
    font-size: 16px;
    color: #444;
    line-height: 1.6;
    margin-bottom: 10px;
}


.botabout__row {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 30px;
}

.botabout__col {
    flex: 1;
}

.botabout__item {
    background-color: #f7f9fc;
    padding: 20px;
    border-radius: 10px;
    border: 1px solid #e0e6ed;
}

.botabout__item h6 {
    font-size: 17px;
    font-weight: 600;
    color: #007bff;
    margin-bottom: 8px;
}

.botabout__item p {
    font-size: 15px;
    color: #333;
    line-height: 1.5;
}


@media (min-width: 768px) {
    .about__row {
        flex-direction: row;
        gap: 40px;
    }

    .botabout__row {
        flex-direction: row;
        gap: 24px;
    }
}


.kasinos {
    padding: 60px 0;
    background-color: #f8fafd;
}

.kasinos__item {
    border: 1px solid #e0e6ed;
    border-radius: 12px;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
}


.kasinos__row {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}


.kasinos__column {
    flex: 1;
    text-align: center;
}

.kasinos__column span {
    text-align: center;
}


.rightkasinos__img img {
    max-width: 200px;
    height: auto;
    display: block;
    margin: 0 auto;
}


.kascent h5 {
    font-size: 18px;
    color: #111;
    font-weight: 600;
}


.kasraft__rait {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin-bottom: 6px;
}

.kasraft__rait img {
    width: 20px;
    height: 20px;
}

.kasinos__column span {
    font-size: 14px;
    display: block;
    color: #888;
}


.kasraft__row {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.kasraft__Col h3 {
    font-size: 26px;
    font-weight: 700;
    color: #28a745;
    margin: 0;
}

.kasinos__btn a {
    display: inline-block;
    padding: 10px 20px;
    background-color: #007bff;
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    border-radius: 6px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.kasinos__btn a:hover {
    background-color: #0056b3;
}


@media (min-width: 768px) {
    .kasinos__row {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        text-align: left;
    }

    .kasraft__row {
        flex-direction: row;
        gap: 16px;
        align-items: center;
        justify-content: flex-end;
    }

    .kasinos__column {
        text-align: left;
    }

    .kasinos__btn a {
        font-size: 15px;
        padding: 12px 28px;
    }
}


.footer {
    background-color: #111827;
    color: #f1f5f9;
    padding: 80px 20px 60px;
    font-size: 15px;
    line-height: 1.6;
}

.footer h5 {
    font-size: 20px;
    color: #ffffff;
    font-weight: 700;
    margin: 30px 0 10px;
}

.footer h6 {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 6px;
}

.footer .bigp,
.footer .paddl {
    font-size: 16px;
    font-weight: 500;
    color: #e2e8f0;
    margin-top: 10px;
}

.footer span,
.footer p {
    color: #d1d5db;
    margin-bottom: 10px;
}


.footer__row {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-bottom: 60px;
}

.footer__column {
    flex: 1;
}


.footer__item {
    margin-bottom: 20px;
}


.botfoot__row {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 30px;
}

.botfoot__col {
    flex: 1;
}


.infobot {
    margin: 40px 0 20px;
}

.infobot__col h5 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.infobot__col p {
    font-size: 15px;
    color: #cbd5e1;
}


.rightfooter__logos {
    margin-top: 20px;
}

.rightfooter__row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
}

.rightfooter__col img {
    width: 60px;
    height: auto;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.rightfooter__col img:hover {
    opacity: 1;
}


.footer h5:last-of-type {
    font-size: 16px;
    text-align: center;
    margin-top: 40px;
    color: #fcd34d;
    line-height: 1.5;
}


.footer p.paddl {
    text-align: center;
    max-width: 900px;
    margin: 30px auto 20px;
    font-size: 14px;
    color: #9ca3af;
}


.rightfooter__links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 20px;
}

.rightfooter__links a {
    color: #60a5fa;
    font-size: 14px;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.rightfooter__links a:hover {
    color: #93c5fd;
}


@media (min-width: 768px) {
    .footer__row {
        flex-direction: row;
        gap: 60px;
    }

    .botfoot__row {
        flex-direction: row;
        gap: 40px;
    }

    .infobot__row {
        display: flex;
        justify-content: space-between;
        gap: 30px;
    }

    .rightfooter__row {
        justify-content: center;
        gap: 24px;
    }
}
.content-section {
  background-color: #ffffff;
  padding: 80px 20px 60px;
  color: #1f2937;
  font-size: 16px;
  line-height: 1.7;
}

.content-section h1 {
  font-size: 32px;
  margin-bottom: 30px;
  font-weight: 800;
  color: #111827;
}

.content-section h2 {
  font-size: 24px;
  margin-top: 40px;
  margin-bottom: 15px;
  color: #111;
  font-weight: 700;
}

.content-section h3 {
  font-size: 20px;
  margin-top: 25px;
  margin-bottom: 10px;
  color: #1e3a8a;
  font-weight: 600;
}

.content-section p {
  margin-bottom: 16px;
  color: #374151;
}

.content-section ul {
  padding-left: 20px;
  margin-bottom: 20px;
}

.content-section ul li {
  margin-bottom: 12px;
  color: #374151;
}

.content-section ul li strong {
  color: #111827;
}


.content-section a {
  color: #2563eb;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.content-section a:hover {
  color: #1e40af;
}


.content-section ul li a {
  word-break: break-word;
}


@media (min-width: 768px) {
  .content-section {
    padding: 100px 40px 80px;
    font-size: 17px;
  }

  .content-section h1 {
    font-size: 36px;
  }

  .content-section h2 {
    font-size: 26px;
  }

  .content-section h3 {
    font-size: 22px;
  }
}
