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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: #1a1a1a;
}

.header {
    background: linear-gradient(to bottom, #3b313a, #39292c);
    padding: 0.75rem 1.5rem;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

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

.header__search-toggle {
    display: none;
    background: none;
    border: none;
    color: #ffffff;
    cursor: pointer;
    padding: 0.5rem;
    flex-shrink: 0;
}

.header__search-toggle:hover {
    opacity: 0.8;
}

.header__search {
    flex: 1;
    max-width: 600px;
    margin: 0 auto;
}

.header__search-input {
    width: 100%;
    padding: 0.75rem 1.25rem;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    color: #ffffff;
    font-size: 0.95rem;
    outline: none;
    transition: all 0.3s ease;
}

.header__search-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.header__search-input:focus {
    background-color: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
}

.header__nav {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.header__button {
    display: inline-block;
    padding: 0.65rem 2rem;
    background-image: url('img/button-image.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    border-radius: 8px;
    transition: transform 0.2s ease, opacity 0.2s ease;
    text-align: center;
    white-space: nowrap;
}

.header__button:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

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

@media (max-width: 768px) {
    .header {
        padding: 0.75rem 1rem;
    }

    .header__container {
        gap: 1rem;
        position: relative;
    }

    .header__search-toggle {
        display: block;
    }

    .header__search {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        padding: 1rem;
        background: linear-gradient(to bottom, #3b313a, #39292c);
        margin: 0;
        max-width: none;
    }

    .header__search.active {
        display: block;
    }

    .header__logo img {
        height: 35px;
    }

    .header__button {
        padding: 0.5rem 1.25rem;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .header {
        padding: 0.5rem 0.75rem;
    }

    .header__container {
        gap: 0.5rem;
    }

    .header__nav {
        gap: 0.5rem;
    }

    .header__button {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }

    .header__logo img {
        height: 30px;
    }
}

.hero {
    position: relative;
    min-height: 500px;
    background-image: url('img/dragonia-dbg.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 3rem 1.5rem;
}

.hero__content {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
}

.hero__badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background-color: rgba(218, 165, 32, 0.9);
    border: 2px solid #DAA520;
    border-radius: 25px;
    color: #000000;
    font-weight: bold;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.hero__title {
    display: block;
    color: #ffffff;
    font-size: 3.5rem;
    font-weight: bold;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero__subtitle {
    display: block;
    color: #ffffff;
    font-size: 2.5rem;
    font-weight: bold;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    margin-bottom: 1rem;
}

.hero__cta {
    display: inline-block;
    padding: 1rem 3rem;
    background-image: url('img/cta-button.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    border-radius: 10px;
    transition: transform 0.2s ease, opacity 0.2s ease;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8), 0 0 10px rgba(0, 0, 0, 0.6);
}

.hero__cta:hover {
    transform: translateY(-3px);
    opacity: 0.9;
}

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


@media (max-width: 768px) {
    .hero {
        background-image: url('img/dragonia-mbg.webp');
        min-height: 400px;
        height: 60vh;
        padding: 2rem 1rem;
    }

    .hero__content {
        align-items: center;
        text-align: center;
        padding-top: 2rem;
    }

    .hero__badge {
        font-size: 0.7rem;
        padding: 0.4rem 1rem;
    }

    .hero__title {
        font-size: 2rem;
    }

    .hero__subtitle {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }

    .hero__cta {
        padding: 0.85rem 2rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: 350px;
        padding: 1.5rem 0.75rem;
    }

    .hero__content {
        padding-top: 10rem;
    }

    .hero__badge {
        font-size: 0.65rem;
        padding: 0.35rem 0.85rem;
    }

    .hero__title {
        font-size: 1.75rem;
    }

    .hero__subtitle {
        font-size: 1.25rem;
    }

    .hero__cta {
        padding: 0.75rem 1.75rem;
        font-size: 0.9rem;
    }
}

.categories {
    background-color: #2a2a2a;
    background-image: url('img/categories-icon-bg.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 1rem 0;
}

.categories__container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 0.75rem;
    padding: 0 1.5rem;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

.categories__container::-webkit-scrollbar {
    display: none;
}

.categories__item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    text-decoration: none;
    transition: transform 0.2s ease, border-color 0.2s ease;
    white-space: nowrap;
}

.categories__item:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.4);
}

.categories__icon {
    width: 26px;
    height: 26px;
    flex-shrink: 0;
}

.categories__text {
    color: #ffffff;
    font-weight: bold;
    font-size: 0.8rem;
    letter-spacing: 0.3px;
}

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

    .categories__container {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding: 0 1rem;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
    }

    .categories__container::-webkit-scrollbar {
        display: none;
    }

    .categories__item {
        padding: 0.65rem 1.25rem;
        gap: 0.6rem;
    }

    .categories__icon {
        width: 28px;
        height: 28px;
    }

    .categories__text {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .categories {
        padding: 0.75rem 0;
    }

    .categories__container {
        padding: 0 0.75rem;
        gap: 0.75rem;
    }

    .categories__item {
        padding: 0.5rem 1rem;
        gap: 0.5rem;
    }

    .categories__icon {
        width: 24px;
        height: 24px;
    }

    .categories__text {
        font-size: 0.8rem;
    }
}

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

.slots__header {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.slots__title {
    color: #ffffff;
    font-size: 1.75rem;
    font-weight: bold;
}

.slots__view-all {
    color: #ff8c00;
    font-size: 0.95rem;
    font-weight: bold;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.slots__view-all:hover {
    opacity: 0.8;
}

.slots__wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.slots__nav {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.slots__nav:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
}

.slots__container {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.slots__container::-webkit-scrollbar {
    display: none;
}

.slots__card {
    position: relative;
    flex-shrink: 0;
    width: 240px;
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    transition: transform 0.2s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.slots__card:hover {
    transform: scale(1.05);
}

.slots__image {
    width: 100%;
    height: 330px;
    object-fit: cover;
    display: block;
}

.slots__badge {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    background-color: #00c853;
    color: #ffffff;
    font-size: 0.7rem;
    font-weight: bold;
    padding: 0.35rem 0.75rem;
    border-radius: 12px;
    text-transform: uppercase;
}

.slots__number {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(0, 0, 0, 0.7);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1rem;
}

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

    .slots__header {
        padding: 0 1rem;
        margin-bottom: 1rem;
    }

    .slots__title {
        font-size: 1.5rem;
    }

    .slots__view-all {
        font-size: 0.85rem;
    }

    .slots__wrapper {
        padding: 0;
    }

    .slots__nav {
        display: none;
    }

    .slots__container {
        padding: 0 1rem;
    }

    .slots__card {
        width: 210px;
    }

    .slots__image {
        height: 285px;
    }
}

@media (max-width: 480px) {
    .slots {
        padding: 1rem 0;
    }

    .slots__header {
        padding: 0 0.75rem;
    }

    .slots__title {
        font-size: 1.25rem;
    }

    .slots__view-all {
        font-size: 0.75rem;
    }

    .slots__container {
        padding: 0 0.75rem;
        gap: 0.75rem;
    }

    .slots__card {
        width: 180px;
    }

    .slots__image {
        height: 255px;
    }

    .slots__number {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
    }

    .slots__badge {
        font-size: 0.65rem;
        padding: 0.3rem 0.6rem;
    }
}

.content {
    background-color: #1a1a1a;
    padding: 3rem 0;
}

.content__container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.content__heading {
    color: #ffffff;
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.content__text {
    color: #cccccc;
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.content__table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 2rem;
    background-color: #252525;
    border-radius: 8px;
    overflow: hidden;
}

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

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

.content__table-label {
    color: #ffffff;
    font-weight: bold;
    font-size: 0.95rem;
    padding: 1rem 1.25rem;
    width: 40%;
    vertical-align: top;
}

.content__table-value {
    color: #cccccc;
    font-size: 0.95rem;
    padding: 1rem 1.25rem;
    width: 60%;
    vertical-align: top;
}

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

    .content__container {
        padding: 0 1rem;
    }

    .content__heading {
        font-size: 1.5rem;
        margin-bottom: 1.25rem;
    }

    .content__text {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }

    .content__table {
        margin-top: 1.5rem;
    }

    .content__table-label,
    .content__table-value {
        font-size: 0.85rem;
        padding: 0.85rem 1rem;
        display: block;
        width: 100%;
    }

    .content__table tbody tr {
        display: block;
        margin-bottom: 0;
    }

    .content__table-label {
        padding-bottom: 0.5rem;
    }

    .content__table-value {
        padding-top: 0;
    }
}

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

    .content__container {
        padding: 0 0.75rem;
    }

    .content__heading {
        font-size: 1.35rem;
    }

    .content__text {
        font-size: 0.9rem;
    }

    .content__table-label,
    .content__table-value {
        font-size: 0.8rem;
        padding: 0.75rem 0.85rem;
    }
}

.auth-guide {
    background-color: #252525;
    padding: 3rem 0;
}

.auth-guide__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.auth-guide__heading {
    color: #ffffff;
    font-size: 2rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 2.5rem;
}

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

.auth-guide__block {
    background-color: #1a1a1a;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.auth-guide__title {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 0 1.5rem 0;
}

.auth-guide__list {
    list-style-position: outside;
    padding-left: 1.5rem;
    margin: 0;
}

.auth-guide__item {
    color: #cccccc;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.auth-guide__item::marker {
    color: #ff8c00;
    font-weight: bold;
}

.auth-guide__info {
    background-color: #1a1a1a;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.auth-guide__text {
    color: #cccccc;
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.auth-guide__text:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .auth-guide {
        padding: 2rem 0;
    }

    .auth-guide__container {
        padding: 0 1rem;
    }

    .auth-guide__heading {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }

    .auth-guide__grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .auth-guide__block {
        padding: 1.5rem;
    }

    .auth-guide__title {
        font-size: 1.25rem;
        margin-bottom: 1.25rem;
    }

    .auth-guide__item {
        font-size: 0.95rem;
        margin-bottom: 0.85rem;
    }

    .auth-guide__info {
        padding: 1.5rem;
    }

    .auth-guide__text {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }
}

@media (max-width: 480px) {
    .auth-guide {
        padding: 1.5rem 0;
    }

    .auth-guide__container {
        padding: 0 0.75rem;
    }

    .auth-guide__heading {
        font-size: 1.35rem;
        margin-bottom: 1.5rem;
    }

    .auth-guide__grid {
        gap: 1rem;
        margin-bottom: 1rem;
    }

    .auth-guide__block {
        padding: 1.25rem;
    }

    .auth-guide__title {
        font-size: 1.15rem;
        margin-bottom: 1rem;
    }

    .auth-guide__item {
        font-size: 0.9rem;
        margin-bottom: 0.75rem;
    }

    .auth-guide__list {
        padding-left: 1.25rem;
    }

    .auth-guide__info {
        padding: 1.25rem;
    }

    .auth-guide__text {
        font-size: 0.9rem;
    }
}

.games-section {
    background-color: #1a1a1a;
    padding: 3rem 0;
}

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

.games-section__heading {
    color: #ffffff;
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

.games-section__subheading {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 2rem 0 1rem 0;
}

.games-section__text {
    color: #cccccc;
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.games-section__image-wrapper {
    margin: 2rem 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.games-section__image {
    width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 768px) {
    .games-section {
        padding: 2rem 0;
    }

    .games-section__container {
        padding: 0 1rem;
    }

    .games-section__heading {
        font-size: 1.5rem;
        margin-bottom: 1.25rem;
    }

    .games-section__subheading {
        font-size: 1.25rem;
        margin: 1.5rem 0 0.85rem 0;
    }

    .games-section__text {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }

    .games-section__image-wrapper {
        margin: 1.5rem 0;
    }
}

@media (max-width: 480px) {
    .games-section {
        padding: 1.5rem 0;
    }

    .games-section__container {
        padding: 0 0.75rem;
    }

    .games-section__heading {
        font-size: 1.35rem;
    }

    .games-section__subheading {
        font-size: 1.15rem;
        margin: 1.25rem 0 0.75rem 0;
    }

    .games-section__text {
        font-size: 0.9rem;
    }

    .games-section__image-wrapper {
        margin: 1.25rem 0;
    }
}

.bonuses {
    background-color: #252525;
    padding: 3rem 0;
}

.bonuses__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.bonuses__heading {
    color: #ffffff;
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

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

.bonuses__content {
    display: flex;
    flex-direction: column;
}

.bonuses__text {
    color: #cccccc;
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.bonuses__image-wrapper {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
    max-width: 66.67%;
    margin: 0 auto;
}

.bonuses__image {
    width: 100%;
    height: auto;
    display: block;
}

.bonuses__table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    background-color: #1a1a1a;
    border-radius: 8px;
    overflow: hidden;
}

.bonuses__table thead {
    background-color: #ff8c00;
}

.bonuses__table-header {
    color: #ffffff;
    font-weight: bold;
    font-size: 0.95rem;
    padding: 1rem;
    text-align: left;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.bonuses__table tbody tr {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: background-color 0.2s ease;
}

.bonuses__table tbody tr:hover {
    background-color: rgba(255, 140, 0, 0.1);
}

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

.bonuses__table-cell {
    color: #cccccc;
    font-size: 0.9rem;
    padding: 1rem;
    vertical-align: top;
}

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

    .bonuses__container {
        padding: 0 1rem;
    }

    .bonuses__heading {
        font-size: 1.5rem;
        margin-bottom: 1.25rem;
    }

    .bonuses__grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .bonuses__image-wrapper {
        max-width: 66.67%;
    }

    .bonuses__text {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }

    .bonuses__table {
        margin: 1.5rem 0;
        font-size: 0.85rem;
    }

    .bonuses__table-header,
    .bonuses__table-cell {
        padding: 0.75rem 0.5rem;
        font-size: 0.8rem;
    }
}

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

    .bonuses__container {
        padding: 0 0.75rem;
    }

    .bonuses__heading {
        font-size: 1.35rem;
    }

    .bonuses__grid {
        gap: 1rem;
        margin-bottom: 1rem;
    }

    .bonuses__text {
        font-size: 0.9rem;
    }

    .bonuses__table {
        display: block;
        overflow-x: auto;
        margin: 1.25rem -0.75rem;
        border-radius: 0;
    }

    .bonuses__table-header,
    .bonuses__table-cell {
        padding: 0.65rem 0.4rem;
        font-size: 0.75rem;
    }
}

.mobile {
    background-color: #1a1a1a;
    padding: 3rem 0;
}

.mobile__container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.mobile__heading {
    color: #ffffff;
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

.mobile__text {
    color: #cccccc;
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

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

    .mobile__container {
        padding: 0 1rem;
    }

    .mobile__heading {
        font-size: 1.5rem;
        margin-bottom: 1.25rem;
    }

    .mobile__text {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }
}

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

    .mobile__container {
        padding: 0 0.75rem;
    }

    .mobile__heading {
        font-size: 1.35rem;
    }

    .mobile__text {
        font-size: 0.9rem;
    }
}

.faq {
    background-color: #252525;
    padding: 3rem 0;
}

.faq__container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.faq__heading {
    color: #ffffff;
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 2rem;
    text-align: center;
}

.faq__item {
    background-color: #1a1a1a;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    transition: border-color 0.2s ease;
}

.faq__item:hover {
    border-color: rgba(255, 140, 0, 0.3);
}

.faq__question {
    color: #ff8c00;
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: 0.75rem;
}

.faq__answer {
    color: #cccccc;
    font-size: 1rem;
    line-height: 1.6;
}

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

    .faq__container {
        padding: 0 1rem;
    }

    .faq__heading {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .faq__item {
        padding: 1.25rem;
    }

    .faq__question {
        font-size: 1rem;
        margin-bottom: 0.65rem;
    }

    .faq__answer {
        font-size: 0.95rem;
    }
}

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

    .faq__container {
        padding: 0 0.75rem;
    }

    .faq__heading {
        font-size: 1.35rem;
        margin-bottom: 1.25rem;
    }

    .faq__item {
        padding: 1rem;
        margin-bottom: 0.75rem;
    }

    .faq__question {
        font-size: 0.95rem;
        margin-bottom: 0.5rem;
    }

    .faq__answer {
        font-size: 0.9rem;
    }
}

.footer {
    background: linear-gradient(to bottom, #35272c, #271d21);
    padding: 3rem 0 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

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

.footer__column {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.footer__column-links {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.footer__column-title {
    color: #ffffff;
    font-weight: bold;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer__link {
    color: #999999;
    font-size: 0.85rem;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer__link:hover {
    color: #ff8c00;
}

.footer__bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__logo {
    display: block;
}

.footer__logo img {
    height: 40px;
    width: auto;
}

.footer__copyright {
    color: #666666;
    font-size: 0.85rem;
    text-align: center;
}

@media (max-width: 1024px) {
    .footer__nav {
        grid-template-columns: repeat(3, 1fr);
    }
}

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

    .footer__container {
        padding: 0 1rem;
    }

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

    .footer__column {
        gap: 0.5rem;
    }

    .footer__column-links {
        gap: 0.5rem;
    }

    .footer__column-title {
        font-size: 0.85rem;
    }

    .footer__link {
        font-size: 0.8rem;
    }

    .footer__logo img {
        height: 35px;
    }

    .footer__copyright {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 1.5rem 0 1rem;
    }

    .footer__container {
        padding: 0 0.75rem;
    }

    .footer__nav {
        grid-template-columns: 1fr;
        gap: 0;
        margin-bottom: 1.5rem;
    }

    .footer__column {
        gap: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .footer__column-title {
        font-size: 0.8rem;
        margin-bottom: 0;
        padding: 1rem 0;
        cursor: pointer;
        position: relative;
        user-select: none;
    }

    .footer__column-title::after {
        content: '+';
        position: absolute;
        right: 0;
        font-size: 1.2rem;
        transition: transform 0.3s ease;
    }

    .footer__column.active .footer__column-title::after {
        content: '−';
    }

    .footer__column-links {
        display: flex;
        flex-direction: column;
        gap: 0.4rem;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .footer__column.active .footer__column-links {
        max-height: 500px;
        padding-bottom: 1rem;
    }

    .footer__link {
        font-size: 0.75rem;
    }

    .footer__bottom {
        padding-top: 1.5rem;
    }

    .footer__logo img {
        height: 30px;
    }

    .footer__copyright {
        font-size: 0.75rem;
    }
}

