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

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

.header {
    background: linear-gradient(to right, #0a1220, #08111f), url('assets/header-bg.svg');
    background-size: cover, cover;
    background-position: center, center;
    padding: 1rem 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: 32px;
    width: auto;
}

.header__search {
    position: relative;
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    width: 100%;
    max-width: 500px;
}

.header__search:focus-within {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.2);
}

.header__search-icon {
    color: rgba(255, 255, 255, 0.5);
    flex-shrink: 0;
    margin-right: 0.75rem;
}

.header__search-input {
    background: transparent;
    border: none;
    outline: none;
    color: #fff;
    font-size: 0.9rem;
    width: 100%;
}

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

.header__search-toggle {
    display: none;
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    padding: 0.5rem;
    transition: color 0.3s ease;
}

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

.header__actions {
    display: flex;
    gap: 0.75rem;
}

.header__btn {
    padding: 0.75rem 1.75rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    white-space: nowrap;
    background: linear-gradient(to bottom, #2aa0bc, #104c70);
    border: 2px solid #d4b586;
    color: #fff;
}

.header__btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(42, 160, 188, 0.4);
}

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

    .header__container {
        gap: 0.75rem;
    }

    .header__logo img {
        height: 24px;
    }

    .header__search {
        position: fixed;
        top: 70px;
        left: 1rem;
        right: 1rem;
        max-width: none;
        opacity: 0;
        pointer-events: none;
        transform: translateY(-10px);
        z-index: 999;
    }

    .header__search.active {
        opacity: 1;
        pointer-events: all;
        transform: translateY(0);
    }

    .header__search-toggle {
        display: block;
    }

    .header__actions {
        gap: 0.5rem;
    }

    .header__btn {
        padding: 0.55rem 1rem;
        font-size: 0.8rem;
    }
}

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

.hero__container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 1.5rem;
    width: 100%;
}

.hero__content {
    max-width: 500px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
  
.hero__title {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero__description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    margin: 0;
}

.hero__btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 1px;
    background: linear-gradient(to bottom, #47f8c2, #0b351a);
    border: 2px solid #d4b586;
    color: #fff;
    align-self: flex-start;
    transition: all 0.3s ease;
    animation: pulse 3.7s ease-in-out infinite;
}

.hero__btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(71, 248, 194, 0.4);
    animation: none;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(71, 248, 194, 0.7);
    }
    50% {
        box-shadow: 0 0 20px 10px rgba(71, 248, 194, 0);
    }
}

@media (max-width: 768px) {
    .hero {
        background-image: url('assets/millioner-bgm.webp');
        min-height: 400px;
        height: 60vh;
        justify-content: center;
    }

    .hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6));
        z-index: 1;
    }

    .hero__container {
        padding: 3rem 1rem;
        position: relative;
        z-index: 2;
        display: flex;
        justify-content: center;
    }

    .hero__content {
        align-items: center;
        text-align: center;
    }
  
    .hero__title {
        font-size: 2rem;
    }

    .hero__description {
        font-size: 0.95rem;
    }

    .hero__btn {
        padding: 0.85rem 2rem;
        font-size: 0.9rem;
        align-self: center;
    }
}

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

    .hero__title {
        font-size: 1.75rem;
    }

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

.categories {
    background: #080b16;
    padding: 2rem 2.5rem;
    overflow: hidden;
}

.categories__container {
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    flex-wrap: nowrap;
    gap: 0.5rem;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 0 0.5rem;
}

@media (min-width: 1500px) {
    .categories__container {
        justify-content: center;
    }
}

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

.categories__item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1rem;
    background: linear-gradient(to bottom, #185f82, #0d181f);
    border-radius: 25px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid transparent;
    background-clip: padding-box;
    flex-shrink: 0;
    justify-content: center;
    scroll-snap-align: start;
}

.categories__item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 25px;
    padding: 2px;
    background: linear-gradient(to bottom, #82adbc 0%, #82adbc 50%, #c1b4a6 50%, #c1b4a6 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    pointer-events: none;
}

.categories__item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(24, 95, 130, 0.4);
}

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

.categories__text {
    color: #fff;
    font-weight: 600;
    font-size: 0.75rem;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

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

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

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

.content-section {
    background: #0a1220;
    padding: 4rem 2rem;
}

.content-section__container {
    max-width: 1200px;
    margin: 0 auto;
}

.content-section__title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 2rem;
    line-height: 1.3;
}

.content-section__text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 1.5rem;
}

.content-link {
    color: #47f8c2;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
    padding-bottom: 2px;
}

.content-link:hover {
    color: #5fffd4;
    border-bottom-color: #47f8c2;
}

.info-table {
    margin-top: 3rem;
    display: grid;
    gap: 1rem;
}

.info-table__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    padding: 1.25rem 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
}

.info-table__row:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.12);
}

.info-table__label {
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
}

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

@media (max-width: 768px) {
    .content-section {
        padding: 3rem 1.5rem;
    }

    .content-section__title {
        font-size: 1.75rem;
    }

    .content-section__text {
        font-size: 1rem;
    }

    .info-table__row {
        grid-template-columns: 1fr;
        gap: 0.5rem;
        padding: 1rem;
    }

    .info-table__label {
        font-size: 0.9rem;
    }

    .info-table__value {
        font-size: 0.9rem;
        padding-left: 1.75rem;
    }
}

.content-section--alt {
    background: #080b16;
}

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

.guide-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.guide-column__title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1.5rem;
}

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

.guide-list__item {
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 1rem;
    padding-left: 0.5rem;
}

.guide-list__item::marker {
    color: #47f8c2;
    font-weight: 700;
}

.subsection {
    margin-bottom: 2.5rem;
}

.subsection__title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
}

.subsection__text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
}

@media (max-width: 768px) {
    .content-section__heading {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }

    .guide-columns {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .guide-column__title {
        font-size: 1.25rem;
    }

    .guide-list__item {
        font-size: 0.95rem;
    }

    .subsection__title {
        font-size: 1.25rem;
    }

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

.providers-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 2.5rem;
    align-items: start;
}

.providers-section__image {
    position: relative;
}

.providers-section__image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    display: block;
}

.providers-section__image .subsection__title {
    padding-top: 2rem;
}

.providers-section__subtitle {
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1.5rem;
}

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

.providers-list__item {
    padding: 1rem;
    margin-bottom: 0.75rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
}

.providers-list__item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.12);
}

.providers-list__name {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    color: #47f8c2;
    margin-bottom: 0.5rem;
}

.providers-list__games {
    display: block;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .providers-section {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .providers-section__subtitle {
        font-size: 1.1rem;
    }

    .providers-list__name {
        font-size: 0.95rem;
    }

    .providers-list__games {
        font-size: 0.85rem;
    }
}

.bonus-table {
    margin: 3rem 0;
    border-radius: 8px;
    overflow: hidden;
}

.bonus-table__header {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: linear-gradient(to bottom, #2aa0bc, #104c70);
    font-weight: 700;
}

.bonus-table__header .bonus-table__cell {
    padding: 1.25rem 1rem;
    color: #fff;
    font-size: 1rem;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

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

.bonus-table__row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: background 0.3s ease;
}

.bonus-table__row:hover {
    background: rgba(255, 255, 255, 0.05);
}

.bonus-table__row .bonus-table__cell {
    padding: 1.25rem 1rem;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.bonus-table__row .bonus-table__cell:first-child {
    font-weight: 600;
    color: #fff;
}

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

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

.bonus-highlight__image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    display: block;
}

@media (max-width: 1024px) {
    .bonus-table__header,
    .bonus-table__row {
        grid-template-columns: 1.5fr 1fr 1fr 0.8fr;
    }

    .bonus-table__header .bonus-table__cell,
    .bonus-table__row .bonus-table__cell {
        font-size: 0.85rem;
        padding: 1rem 0.75rem;
    }
}

@media (max-width: 768px) {
    .bonus-table {
        margin: 2rem 0;
    }

    .bonus-table__header {
        display: none;
    }

    .bonus-table__row {
        grid-template-columns: 1fr;
        margin-bottom: 1rem;
        border-radius: 8px;
        border: 1px solid rgba(255, 255, 255, 0.08);
    }

    .bonus-table__row .bonus-table__cell {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        padding: 0.75rem 1rem;
        display: flex;
        justify-content: space-between;
    }

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

    .bonus-table__row .bonus-table__cell::before {
        content: attr(data-label);
        font-weight: 600;
        color: #47f8c2;
        margin-right: 1rem;
    }

    .bonus-table__row .bonus-table__cell:nth-child(1)::before {
        content: 'Τύπος: ';
    }

    .bonus-table__row .bonus-table__cell:nth-child(2)::before {
        content: 'Ποσό: ';
    }

    .bonus-table__row .bonus-table__cell:nth-child(3)::before {
        content: 'Απαιτήσεις: ';
    }

    .bonus-table__row .bonus-table__cell:nth-child(4)::before {
        content: 'Διάρκεια: ';
    }

    .bonus-highlight {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.faq {
    margin-top: 3rem;
}

.faq__item {
    margin-bottom: 2rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
}

.faq__item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.12);
    transform: translateY(-2px);
}

.faq__question {
    font-size: 1.25rem;
    font-weight: 700;
    color: #47f8c2;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.faq__answer {
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
}

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

    .faq__item {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .faq__question {
        font-size: 1.1rem;
    }

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

.cta-section {
    text-align: center;
    margin-top: 3rem;
}

.cta-btn {
    display: inline-block;
    padding: 1.25rem 3rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 1px;
    background: linear-gradient(to bottom, #47f8c2, #0b351a);
    border: 2px solid #d4b586;
    color: #fff;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(71, 248, 194, 0.3);
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(71, 248, 194, 0.5);
}

@media (max-width: 768px) {
    .cta-section {
        margin-top: 2rem;
    }

    .cta-btn {
        padding: 1rem 2.5rem;
        font-size: 1rem;
    }
}

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

.bonus-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.bonus-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.bonus-card--featured {
    border-color: #47f8c2;
    background: rgba(71, 248, 194, 0.05);
}

.bonus-card--featured:hover {
    border-color: #47f8c2;
    box-shadow: 0 8px 24px rgba(71, 248, 194, 0.2);
}

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

.bonus-card__title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
}

.bonus-card__badge {
    font-size: 0.75rem;
    padding: 0.4rem 0.8rem;
    background: linear-gradient(to bottom, #2aa0bc, #104c70);
    border: 1px solid #d4b586;
    border-radius: 20px;
    color: #fff;
    font-weight: 600;
}

.bonus-card__value {
    font-size: 2.5rem;
    font-weight: 700;
    color: #47f8c2;
    margin-bottom: 1rem;
}

.bonus-card__text {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 1.5rem;
}

.bonus-card__features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.bonus-card__features li {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

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

.bonus-card__features li::before {
    content: "✓";
    color: #47f8c2;
    font-weight: 700;
    margin-right: 0.5rem;
}

@media (max-width: 1024px) {
    .bonus-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

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

.step-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2rem;
    position: relative;
    transition: all 0.3s ease;
}

.step-item:hover {
    border-color: #47f8c2;
    background: rgba(71, 248, 194, 0.05);
}

.step-item__number {
    position: absolute;
    top: -15px;
    left: 2rem;
    width: 50px;
    height: 50px;
    background: linear-gradient(to bottom, #47f8c2, #0b351a);
    border: 2px solid #d4b586;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
}

.step-item__title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    margin: 1.5rem 0 1rem 0;
}

.step-item__text {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
}

@media (max-width: 768px) {
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

.terms-accordion {
    margin: 2rem 0;
}

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

.feature-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-item:hover {
    border-color: #47f8c2;
    background: rgba(71, 248, 194, 0.05);
    transform: translateY(-4px);
}

.feature-item__icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.feature-item__title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 1rem 0;
}

.feature-item__text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
}

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

@media (max-width: 768px) {
    .account-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.footer {
    background: linear-gradient(to right, #0a1220, #08111f);
    padding: 3rem 2rem 2rem;
    margin-top: 4rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer__logo {
    margin-bottom: 2rem;
}

.footer__logo a {
    display: inline-block;
}

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

.footer__nav {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.footer__link {
    padding: 0.75rem 1.75rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    background: linear-gradient(to bottom, #2aa0bc, #104c70);
    border: 2px solid #d4b586;
    color: #fff;
}

.footer__link:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(42, 160, 188, 0.4);
}

.footer__content {
    max-width: 800px;
}

.footer__copyright {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
}

.footer__disclaimer {
    font-size: 0.85rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.5);
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    margin: 0;
}

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

    .footer__logo {
        margin-bottom: 1.5rem;
    }

    .footer__logo img {
        height: 32px;
    }

    .footer__nav {
        gap: 1rem;
        margin-bottom: 1.5rem;
    }

    .footer__link {
        padding: 0.65rem 1.5rem;
        font-size: 0.85rem;
    }

    .footer__copyright {
        font-size: 0.85rem;
        margin-bottom: 1rem;
    }

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

