/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Lilita+One&family=Ubuntu:wght@300;400;500;700&display=swap');

/* Global styles */
:root {
    --primary-green: rgb(72, 181, 111);
    --primary-green-dark: rgb(57, 145, 89);
    --primary-green-light: rgb(92, 201, 131);
    --accent-blue: #00a0e9;
    --accent-green: #00c853;
    --gradient-green: linear-gradient(135deg, #00c853, #2d4a3e);
    --white: #ffffff;
    --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --hover-transform: translateY(-2px);
    --gold: #ffd700;
    --gold-light: #fff3b0;
    --gold-dark: #b8860b;
    --gold-gradient: linear-gradient(45deg, #b8860b, #ffd700);
}

body {
    font-family: 'Ubuntu', sans-serif;
    margin: 0;
    padding: 0;
    background: var(--primary-green);
    background-image: url('../img/back.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--white);
    min-height: 100vh;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../img/back.jpg') center/cover;
    z-index: -2;
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 200, 83, 0.2), rgba(45, 74, 62, 0.8));
    z-index: -1;
}

a {
    text-decoration: none;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 15px;
    position: relative;
}

/* Header styles */
.header {
    background: rgb(72, 181, 111);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.header__top {
    background: linear-gradient(to bottom, rgba(72, 181, 111, 0.98), rgba(57, 145, 89, 0.95));
    padding: 12px 0;
}

.header__wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
}

.header__logo-text {
    display: flex;
    flex-direction: column;
}

.header__logo-text span {
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.2;
}

.header__logo-sub {
    font-size: 11px !important;
    opacity: 0.8;
}

.header__logo-img {
    width: 42px;
    height: 42px;
}

.header__logo-text span {
    font-size: 11px;
    line-height: 1.2;
    font-weight: 600;
    text-transform: uppercase;
}

.header__age {
    background: #d32f2f;
    padding: 1px 3px;
    border-radius: 2px;
    font-size: 10px;
    font-weight: bold;
}

.header__menu {
    display: flex;
    gap: 30px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.header__link {
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: opacity 0.3s;
}

.header__link:hover {
    opacity: 0.8;
}

.header__alert {
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    text-align: center;
    padding: 8px;
    font-size: 11px;
}

.header__logo::after {
    content: '';
    position: absolute;
    inset: -10px;
    background: radial-gradient(circle, var(--gold) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s;
    z-index: -1;
}

.header__logo:hover::after {
    opacity: 0.1;
}

/* Footer styles */
.footer {
    background: linear-gradient(180deg, var(--primary-green) 0%, rgba(57, 145, 89, 0.95) 100%);
    position: relative;
    overflow: hidden;
    padding-top: 40px;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--gold-gradient);
    opacity: 0.3;
}

.footer__content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    padding: 20px 0 40px;
    position: relative;
}

.footer__content::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background: var(--gold-gradient);
    border-radius: 2px;
}

.footer__left {
    flex: 1;
    max-width: 60%;
}

.footer__right {
    flex: 0 0 auto;
    padding-top: 10px;
}

.footer__logo {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    color: #fff;
    margin-bottom: 20px;
}

.footer__logo-img {
    width: 50px;
    height: 50px;
}

.footer__logo-text {
    display: flex;
    flex-direction: column;
    font-weight: bold;
}

.footer__copyright {
    font-size: 12px;
    opacity: 0.7;
    line-height: 1.5;
    margin-bottom: 20px;
}

.footer__copy {
    font-size: 14px;
    opacity: 0.5;
}

.footer__title {
    font-size: 16px;
    margin-bottom: 15px;
}

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

.footer__menu li {
    margin-bottom: 10px;
}

.footer__menu a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.footer__menu a:hover {
    opacity: 1;
}

.footer__bottom {
    position: relative;
    padding: 30px 0;
    background: rgba(0, 0, 0, 0.1);
}

.footer__bottom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--gold-gradient);
    opacity: 0.2;
}

.footer__certifications {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    padding: 20px;
}

.footer__cert {
    height: 50px;
    width: auto;
    transition: all 0.3s ease;
}

.footer__cert:hover {
    transform: translateY(-2px);
    filter: brightness(1.2);
}

/* Responsive styles */
@media (max-width: 768px) {
    .header__menu {
        display: none;
    }
    
    .header__burger {
        display: block;
    }
    
    .footer__content {
        flex-direction: column;
        gap: 30px;
    }
    
    .footer__left {
        max-width: 100%;
    }
    
    .footer__certifications {
        flex-wrap: wrap;
    }
}

/* Main content styles */
.main {
    padding: 20px 0;
}

.main__title {
    text-align: center;
    font-size: 32px;
    margin: 40px 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
    color: #fff;
    font-weight: 700;
    letter-spacing: 1px;
    padding-bottom: 15px;
}

.main__title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: var(--gold-gradient);
    border-radius: 2px;
}

.main__title::before {
    content: '🏆';
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 36px;
    text-shadow: none;
}

/* Features styles */
.features {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: flex-end;
    gap: 8px;
    margin-bottom: 20px;
}

.features__item {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    background: linear-gradient(45deg, rgba(72, 181, 111, 0.9), rgba(72, 181, 111, 0.7));
    padding: 5px 12px;
    border-radius: 3px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.features__item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0, 160, 233, 0.1), rgba(0, 200, 83, 0.1));
    opacity: 0;
    transition: opacity 0.3s;
}

.features__item::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid var(--gold);
    opacity: 0;
    transition: all 0.3s;
}

.features__item:hover {
    transform: var(--hover-transform);
    box-shadow: var(--box-shadow);
}

.features__item:hover::before {
    opacity: 1;
}

.features__item:hover::after {
    opacity: 1;
    inset: -2px;
}

.features__item img {
    width: 12px;
    height: 12px;
}

.features__item .emoji {
    margin-right: 4px;
}

/* Offers styles */
.offers__nav {
    display: flex;
    background: linear-gradient(to right, rgba(72, 181, 111, 0.95), rgba(72, 181, 111, 0.85));
    border-radius: 8px 8px 0 0;
    padding: 2px;
    gap: 2px;
    position: relative;
}

.offers__nav::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gold-gradient);
}

.offers__nav a {
    color: #fff;
    text-decoration: none;
    padding: 12px 25px;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    flex: 1;
    text-align: center;
}

.offers__nav a:hover {
    background: rgba(255, 255, 255, 0.1);
}

.offers__nav a.active {
    background: rgba(255, 255, 255, 0.15);
    font-weight: 600;
}

.offers__nav a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gold-gradient);
}

.offers__item {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(72, 181, 111, 0.1);
    margin-bottom: 15px;
}

.offers__item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    border-color: var(--gold);
}

.offers__label {
    background: var(--gold-gradient);
    padding: 8px 20px;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    clip-path: polygon(0 0, 100% 0, 95% 100%, 0 100%);
    box-shadow: 0 2px 8px rgba(184, 134, 11, 0.2);
    letter-spacing: 0.5px;
}

.offers__content {
    display: grid;
    grid-template-columns: 50px 120px 1fr 180px 140px;
    gap: 20px;
    align-items: center;
    padding: 25px;
}

.offers__number {
    font-size: 24px;
    font-weight: bold;
    color: var(--gold-dark);
    text-align: center;
}

.offers__logo {
    max-width: 100px;
    margin: 0 auto;
}

.offers__features {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.offers__features span {
    color: #333;
    font-size: 13px;
    padding-left: 20px;
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
}

.offers__features span::before {
    content: '⭐';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-size: 14px;
}

.offers__bonus {
    background: linear-gradient(135deg, rgba(72, 181, 111, 0.1), rgba(255, 215, 0, 0.1));
    padding: 15px;
    border-radius: 6px;
    text-align: center;
}

.offers__percent {
    color: var(--primary-green);
    font-size: 14px;
    font-weight: 600;
}

.offers__amount {
    color: var(--primary-green);
    font-size: 32px;
    font-weight: bold;
    margin: 5px 0;
    letter-spacing: 1px;
}

.offers__text {
    color: #666;
    font-size: 12px;
}

.offers__action {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.btn-primary {
    background: var(--gold-gradient);
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
    box-shadow: 0 4px 10px rgba(184, 134, 11, 0.2);
    transition: all 0.3s ease;
    min-width: 140px;
    text-align: center;
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 15px rgba(184, 134, 11, 0.3);
}

.offers__terms {
    color: var(--primary-green);
    font-size: 11px;
    text-decoration: none;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.offers__terms:hover {
    opacity: 1;
    color: var(--gold-dark);
}

/* Advantages styles */
.advantages {
    position: relative;
    overflow: hidden;
    background: linear-gradient(45deg, rgba(72, 181, 111, 0.95), rgba(72, 181, 111, 0.85));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    padding: 20px;
    margin-top: 30px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.advantages::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(0, 160, 233, 0.1), transparent);
    transform: translateX(-100%);
    transition: transform 1s;
}

.advantages:hover::before {
    transform: translateX(100%);
}

.advantages__item {
    position: relative;
    padding: 15px 20px;
    border-left: 3px solid var(--gold);
    margin-left: 10px;
    transition: all 0.3s ease;
    margin-bottom: 15px;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border-radius: 0 4px 4px 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.advantages__item:hover {
    transform: translateX(5px);
    background: rgba(255, 255, 255, 0.15);
    border-left-color: var(--white);
}

.advantages__item h3 {
    font-size: 14px;
    color: var(--gold);
    margin-bottom: 5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.advantages__item p {
    font-size: 12px;
    line-height: 1.4;
    opacity: 0.8;
}

.advantages__title {
    color: var(--gold);
    font-size: 28px;
    margin-bottom: 15px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Decorative elements */
.decorative-line {
    position: absolute;
    top: 0;
    left: 50%;
    width: 1px;
    height: 100%;
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.1), transparent);
}

/* Main content styles */
.main::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    width: 100px;
    height: 100px;
    background: var(--gold);
    opacity: 0.1;
    filter: blur(40px);
    border-radius: 50%;
}

.main::after {
    content: '';
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 150px;
    height: 150px;
    background: var(--gold);
    opacity: 0.1;
    filter: blur(50px);
    border-radius: 50%;
}

/* Responsive styles */
@media (max-width: 768px) {
    .container {
        padding: 0 10px;
    }
    
    .offers__content {
        display: grid;
        grid-template-columns: 40px 1fr;
        grid-template-areas: 
            "number logo"
            "bonus bonus"
            "action action";
        gap: 15px;
        padding: 15px;
    }
    
    .offers__number {
        grid-area: number;
        align-self: center;
    }
    
    .offers__logo {
        grid-area: logo;
        max-width: 100px;
        justify-self: center;
    }
    
    .offers__features {
        display: none;
    }
    
    .offers__bonus {
        grid-area: bonus;
        padding: 12px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 10px;
    }
    
    .offers__action {
        grid-area: action;
        flex-direction: row;
        justify-content: space-between;
        width: 100%;
    }
    
    .offers__amount {
        font-size: 24px;
        margin: 0;
    }
    
    .offers__percent,
    .offers__text {
        font-size: 12px;
    }
    
    .btn-primary {
        padding: 8px 15px;
        min-width: auto;
        font-size: 11px;
    }
    
    .offers__terms {
        font-size: 10px;
    }
    
    .offers__label {
        font-size: 11px;
        padding: 6px 15px;
    }
    
    .offers__nav {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        padding: 0;
    }
    
    .offers__nav a {
        padding: 10px 15px;
        font-size: 12px;
        white-space: nowrap;
    }
    
    .offers__item {
        margin-bottom: 10px;
    }
    
    .offers__item:hover {
        transform: none;
    }
}

/* Для очень маленьких экранов */
@media (max-width: 375px) {
    .offers__content {
        gap: 10px;
        padding: 10px;
    }
    
    .offers__bonus {
        flex-direction: column;
        text-align: center;
        padding: 8px;
    }
    
    .offers__action {
        flex-direction: column;
        gap: 8px;
    }
    
    .btn-primary {
        width: 100%;
    }
    
    .offers__terms {
        text-align: center;
    }
}

/* Football page specific styles */
.football-page .offers__nav {
    background: linear-gradient(to right, rgba(0, 100, 0, 0.95), rgba(0, 150, 0, 0.85));
}

.football-page .offers__item {
    border-left: 3px solid var(--gold);
}

.football-page .offers__bonus {
    background: linear-gradient(135deg, rgba(0, 100, 0, 0.1), rgba(255, 215, 0, 0.1));
}

.football-page .offers__amount {
    font-family: 'Roboto Mono', monospace;
    letter-spacing: -1px;
}

.football-page .advantages {
    background: linear-gradient(45deg, rgba(0, 100, 0, 0.95), rgba(0, 150, 0, 0.85));
}

/* Match status indicator */
.match-status {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 3px;
    font-size: 11px;
    font-weight: 600;
    margin-left: 10px;
}

.match-status.live {
    background: #ff4444;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.7; }
    100% { opacity: 1; }
}

/* Basketball page specific styles */
.basketball-page .offers__nav {
    background: linear-gradient(to right, rgba(139, 69, 19, 0.95), rgba(205, 133, 63, 0.85));
}

.basketball-page .offers__item {
    border-left: 3px solid var(--gold);
}

.basketball-page .offers__bonus {
    background: linear-gradient(135deg, rgba(139, 69, 19, 0.1), rgba(255, 215, 0, 0.1));
}

.basketball-page .advantages {
    background: linear-gradient(45deg, rgba(139, 69, 19, 0.95), rgba(205, 133, 63, 0.85));
}

.basketball-page .offers__label {
    background: linear-gradient(to right, #8B4513, #CD853F);
}

.emoji {
    font-size: 16px;
    line-height: 1;
    display: inline-block;
    vertical-align: middle;
}

/* Info Sports page specific styles */
.infosports-page .offers__nav {
    background: linear-gradient(to right, rgba(0, 0, 139, 0.95), rgba(0, 0, 205, 0.85));
}

.infosports-page .offers__item {
    border-left: 3px solid var(--gold);
}

.infosports-page .offers__bonus {
    background: linear-gradient(135deg, rgba(0, 0, 139, 0.1), rgba(255, 215, 0, 0.1));
}

.infosports-page .advantages {
    background: linear-gradient(45deg, rgba(0, 0, 139, 0.95), rgba(0, 0, 205, 0.85));
}

.infosports-page .offers__label {
    background: linear-gradient(to right, #00008B, #0000CD);
}

.infosports-page .offers__amount {
    color: #ff4444;
    font-weight: 800;
    letter-spacing: 1px;
}

.infosports-page .offers__amount.live {
    animation: pulse 2s infinite;
}

/* Legal and Protection pages styles */
.legal-section,
.protection-section {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.legal-section h2,
.protection-section h2 {
    color: var(--gold);
    font-size: 20px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.legal-section ul,
.protection-section ul {
    list-style: none;
    padding: 0;
}

.legal-section li,
.protection-section li {
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
    color: #fff;
}

.legal-section li::before,
.protection-section li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--gold);
}

.alert {
    background: rgba(255, 193, 7, 0.1);
    border: 1px solid var(--gold);
    color: #fff;
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 4px;
}

.alert strong {
    color: var(--gold);
}

.protection-section {
    border-left: 3px solid var(--gold);
}

/* Certifications page styles */
.cert-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 20px 0;
}

.cert-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.cert-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
}

.cert-logo {
    height: 80px;
    margin-bottom: 15px;
    filter: brightness(1.2);
}

.cert-item h3 {
    color: var(--gold);
    font-size: 18px;
    margin-bottom: 10px;
}

.cert-item p {
    color: #fff;
    font-size: 14px;
    opacity: 0.8;
}

/* Mobile menu styles */
.header__burger {
    display: none;
    background: none;
    border: none;
    padding: 10px;
    cursor: pointer;
    position: relative;
    z-index: 1001;
}

.header__burger span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: #fff;
    margin: 5px 0;
    transition: all 0.3s ease;
}

.header__mobile {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(72, 181, 111, 0.98);
    z-index: 1000;
    padding-top: 80px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
}

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

.header__mobile-link {
    display: block;
    padding: 15px 20px;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.header__mobile-link:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Mobile menu active states */
.header--mobile-active .header__mobile {
    transform: translateX(0);
}

.header--mobile-active .header__burger span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.header--mobile-active .header__burger span:nth-child(2) {
    opacity: 0;
}

.header--mobile-active .header__burger span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Responsive styles */
@media (max-width: 768px) {
    .header__nav {
        display: none;
    }
    
    .header__burger {
        display: block;
    }
    
    .header__mobile {
        display: block;
    }
}

/* Additional typography adjustments */
.main__title {
    letter-spacing: 1px;
}

.advantages__title {
    font-size: 28px;
    margin-bottom: 15px;
}

.offers__nav a {
    font-size: 15px;
}

.offers__label {
    font-size: 14px;
    letter-spacing: 0.5px;
}

.offers__amount {
    font-size: 32px;
    letter-spacing: 1px;
}

/* Keep Ubuntu for regular text */
.offers__features span,
.offers__percent,
.offers__text,
.advantages__desc,
.advantages__item p,
.btn-primary,
.header__link,
.footer__text,
.legal-section p,
.protection-section p {
    font-family: 'Ubuntu', sans-serif;
}

/* Typography styles */
.main__title,
.advantages__title,
.features__title,
.offers__nav a,
.offers__label,
.offers__amount {
    font-family: 'Lilita One', cursive;
    text-transform: uppercase;
}

/* Additional typography adjustments */
.main__title {
    letter-spacing: 1px;
    font-size: 32px;
}

.advantages__title {
    font-size: 28px;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.offers__nav a {
    font-size: 15px;
    letter-spacing: 0.5px;
}

.offers__label {
    font-size: 14px;
    letter-spacing: 0.5px;
}

.offers__amount {
    font-size: 32px;
    letter-spacing: 1px;
}

/* Keep Ubuntu for regular text */
body,
.offers__features span,
.offers__percent,
.offers__text,
.advantages__desc,
.advantages__item p,
.btn-primary,
.header__link,
.footer__text,
.legal-section p,
.protection-section p {
    font-family: 'Ubuntu', sans-serif;
} 