/* BassBet CSS - Complete Stylesheet */
/* Import Montserrat font from Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;700;900&display=swap');



/* CSS Variables for Button Gradients */
:root {
    /* Color variables */
    --stb-black: 0 0 0;
    --stb-white: 255 255 255;
    --stb-neutral-10: 252 254 255;
    --stb-neutral-50: 242 244 248;
    --stb-neutral-100: 220 231 245;
    --stb-neutral-150: 195 215 255;
    --stb-neutral-200: 195 204 216;
    --stb-neutral-250: 199 222 245;
    --stb-neutral-300: 172 196 229;
    --stb-neutral-400: 133 196 255;
    --stb-neutral-500: 112 179 255;
    --stb-neutral-600: 120 159 210;
    --stb-neutral-650: 112 153 194;
    --stb-neutral-700: 89 158 255;
    --stb-neutral-750: 83 120 156;
    --stb-neutral-800: 60 98 179;
    --stb-neutral-850: 26 42 77;
    --stb-neutral-900: 11 23 47;
    --stb-neutral-950: 0 10 33;
    
    --stb-brand-50: 124 210 255;
    --stb-brand-100: 35 215 255;
    --stb-brand-150: 28 187 255;
    --stb-brand-170: 6 162 210;
    --stb-brand-200: 0 156 255;
    --stb-brand-250: 0 117 255;
    --stb-brand-300: 0 96 229;
    --stb-brand-400: 13 83 171;
    --stb-brand-500: 0 81 155;
    --stb-brand-600: 16 60 159;
    --stb-brand-700: 8 55 175;
    --stb-brand-750: 0 57 113;
    --stb-brand-800: 0 49 123;
    --stb-brand-850: 2 29 105;
    --stb-brand-900: 0 30 89;
    --stb-brand-930: 4 20 68;
    --stb-brand-950: 0 13 67;
    --stb-brand-1000: 0 28 82;
    
    --stb-green-50: 0 255 255;
    --stb-green-100: 0 255 204;
    --stb-green-150: 124 255 130;
    --stb-green-200: 0 255 140;
    --stb-green-300: 0 255 85;
    --stb-green-400: 71 247 43;
    --stb-green-500: 37 200 49;
    --stb-green-600: 0 153 51;
    --stb-green-700: 0 128 75;
    --stb-green-800: 0 113 74;
    --stb-green-850: 0 102 94;
    --stb-green-900: 0 51 17;
    
    --stb-yellow-50: 227 255 125;
    --stb-yellow-100: 255 248 115;
    --stb-yellow-150: 255 242 130;
    --stb-yellow-200: 255 255 0;
    --stb-yellow-300: 255 230 6;
    --stb-yellow-400: 245 223 11;
    --stb-yellow-500: 255 212 0;
    --stb-yellow-600: 255 195 39;
    --stb-yellow-700: 255 184 0;
    --stb-yellow-800: 219 162 0;
    --stb-yellow-850: 175 138 0;
    
    --stb-orange-50: 232 217 179;
    --stb-orange-100: 216 212 201;
    --stb-orange-400: 255 145 16;
    --stb-orange-500: 230 113 5;
    --stb-orange-600: 197 130 0;
    --stb-orange-700: 192 121 38;
    --stb-orange-800: 188 98 16;
    --stb-orange-850: 135 81 2;
    --stb-orange-900: 98 58 0;
    --stb-orange-950: 101 34 13;
    
    /* Text colors */
    --stb-text-primary: rgb(var(--stb-white));
    --stb-text-secondary: rgb(var(--stb-neutral-400));
    --stb-text-contrast-primary: rgb(var(--stb-neutral-900));
    --stb-text-contrast-secondary: rgb(var(--stb-neutral-850));
    --stb-text-accent: rgb(var(--stb-green-100));
    
    /* Button gradients */
    --stb-button-primary: linear-gradient(rgb(var(--stb-green-300)), rgb(var(--stb-green-600)) 50%, rgb(var(--stb-green-700)) 60%, rgb(var(--stb-green-850)));
    --stb-button-secondary: linear-gradient(rgb(var(--stb-yellow-400)), rgb(var(--stb-yellow-800)) 50%, rgb(var(--stb-orange-700)) 60%, rgb(var(--stb-orange-400)));
    --stb-button-tertiary: linear-gradient(rgb(var(--stb-brand-170)), rgb(var(--stb-brand-400)) 50%, rgb(var(--stb-brand-600)) 60%, rgb(var(--stb-brand-850)));
    
    /* Button text strokes */
    --stb-button-text-primary-stroke: linear-gradient(rgb(var(--stb-green-800)), rgb(var(--stb-green-850)));
    --stb-button-text-secondary-stroke: linear-gradient(rgb(var(--stb-orange-500)), rgb(var(--stb-orange-900)));
    --stb-button-text-tertiary-stroke: linear-gradient(rgb(var(--stb-brand-850)), rgb(var(--stb-brand-950)));
    
    /* Button configuration */
    --stb-button-loading-dimension: 30px;
    --stb-button-font-size: 1rem;
    --stb-button-font-weight: 900;
    --stb-button-line-height: 1.2;
    --stb-button-min-height: 44px;
    --stb-button-border-radius: 8px;
    --stb-button-box-shadow-size: 2px;
    
    /* Transform */
    --stb-skew-angle-negative: -5deg;
    --stb-text-transform-style: uppercase;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background-color: #02102b;
    overflow-x: hidden;
}

/* Typography */
h1 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    line-height: 1.2;
}

h2 {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 0.8rem;
    color: #ffffff;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.6rem;
    color: #ffffff;
}

p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

a {
    color: rgb(89, 158, 255);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #ffffff;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background-color: #052966;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 40px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: #ffffff;
    font-weight: 500;
    transition: color 0.3s ease;
    border-radius: 6px;
    padding: 8px 16px;
}

.nav-menu a:hover {
    color: rgb(227, 255, 125);
}

/* Активная страница в навигации */
.nav-menu a.active {
    color: rgb(227, 255, 125);
    background: rgba(227, 255, 125, 0.1);
    position: relative;
}
/* Мобильная версия активной страницы */
.mobile-menu a.active {
    color: rgb(227, 255, 125);
    background: rgba(227, 255, 125, 0.1);
    border-radius: 6px;
    font-weight: 700;
    border-left: 3px solid rgb(227, 255, 125);
    padding-left: 15px;
}

.header-buttons {
    display: flex;
    gap: 1rem;
}

/* Button styles based on the provided design system */
.button--tertiary {
    --stb-button-box-shadow-color: rgb(var(--stb-brand-750));
    --stb-button-inner-text-stroke: linear-gradient(rgb(var(--stb-brand-850)), rgb(var(--stb-brand-950)));
    --stb-button-bg-gradient-1: radial-gradient(50% 20% at 50% 0%, rgb(var(--stb-neutral-500) / .8), rgb(var(--stb-neutral-500) / 0));
    --stb-button-bg-gradient-2: radial-gradient(40% 16% at 50% 100%, rgb(var(--stb-neutral-500) / .8), rgb(var(--stb-neutral-500) / 0));
    --stb-button-bg-gradient-3: linear-gradient(rgb(var(--stb-brand-170)), rgb(var(--stb-brand-400)) 50%, rgb(var(--stb-brand-600)) 60%, rgb(var(--stb-brand-850)));
    --stb-button-border-color: linear-gradient(90deg, rgb(var(--stb-brand-200)), rgb(var(--stb-green-150)) 50%, rgb(var(--stb-brand-200)));
    --stb-icon-background: linear-gradient(177.07deg, rgb(var(--stb-white) / .6) 38.11%, rgba(var(--stb-neutral-500) / .6) 73.78%), linear-gradient(0deg, rgb(var(--stb-white)), rgb(var(--stb-white)));
}

.button {
    --stb-button-loading-dimension: 30px;
    position: relative;
    display: inline-grid;
    grid-auto-flow: column;
    justify-items: center;
    align-items: center;
    justify-content: center;
    grid-column-gap: 8px;
    text-align: center;
    font-size: var(--stb-button-font-size);
    font-weight: var(--stb-button-font-weight, 900);
    font-style: italic;
    line-height: var(--stb-button-line-height, 1.2);
    color: var(--stb-text-primary);
    text-transform: var(--stb-text-transform-style);
    text-decoration: none;
    min-height: var(--stb-button-min-height);
    border-radius: var(--stb-button-border-radius);
    border: 2px solid transparent;
    background: 
        var(--stb-button-bg-gradient-1) padding-box,
        var(--stb-button-bg-gradient-2) padding-box,
        var(--stb-button-bg-gradient-3) padding-box,
        var(--stb-button-border-color) border-box;
    box-shadow: 
        0 var(--stb-button-box-shadow-size, 2px) 0 var(--stb-button-box-shadow-color),
        0 5px 5px rgb(var(--stb-black)/.5);
    transform: skew(var(--stb-skew-angle-negative));
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 12px 24px;
}

.button:hover {
    transform: skew(var(--stb-skew-angle-negative)) translateY(-2px);
    box-shadow: 
        0 calc(var(--stb-button-box-shadow-size, 2px) + 1px) 0 var(--stb-button-box-shadow-color),
        0 8px 15px rgb(var(--stb-black)/.7);
}

.button:active {
    transform: skew(var(--stb-skew-angle-negative)) translateY(0);
    box-shadow: 
        0 1px 0 var(--stb-button-box-shadow-color),
        0 3px 8px rgb(var(--stb-black)/.6);
}

/* Обратная совместимость для старых классов кнопок */
.btn {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    -webkit-text-stroke: 1px  rgba(0, 0, 0, .1);
    cursor: pointer;
    min-height: 44px;
    font-weight: bold;
    font-style: italic;
    text-transform: uppercase ;
    backdrop-filter: blur(10px);
    font-size: 1rem;
    box-shadow: 2px 4px 8px rgb( 0 57 113 );
    transform: skew(var(--stb-skew-angle-negative));
}

header .container {
    max-width: unset;
}

.btn-primary {
    background: linear-gradient(0deg, rgba(10, 218, 79, .2) 10%, rgb(10, 218, 79) 100%);
    color: #fff;
    border: 2px solid rgb(227, 255, 125);
}

.btn-primary:hover {
        background: linear-gradient(0deg, rgba(0, 255, 85, .2) 0%, rgba(0, 255, 85, 1) 100%);
        color: #fff;
}

.btn-secondary {
    background: linear-gradient(    0deg, rgba(30, 58, 138, 0) 0%, rgba(59, 130, 246, .2) 40%, rgba(96, 165, 250, 1) 100%);
    color: #fff;
    border: 2px solid #3b82f6;
    position: relative;
    overflow: hidden;
    letter-spacing: 1px;
}

.btn-secondary:hover {
    background: linear-gradient(    0deg, rgba(30, 58, 138, 0) 0%, rgba(59, 130, 246, .2) 20%, rgba(96, 165, 250, 1) 100%);
    color: #fff;
}

/* Новый стиль в соответствии с дизайн-системой */
.btn-tertiary {
    /* Наследуем стили от .button */
    --stb-button-loading-dimension: 30px;
    position: relative;
    display: inline-grid;
    grid-auto-flow: column;
    justify-items: center;
    align-items: center;
    justify-content: center;
    grid-column-gap: 8px;
    text-align: center;
    font-size: var(--stb-button-font-size);
    font-weight: var(--stb-button-font-weight, 900);
    font-style: italic;
    line-height: var(--stb-button-line-height, 1.2);
    color: var(--stb-text-primary);
    text-transform: var(--stb-text-transform-style);
    text-decoration: none;
    min-height: var(--stb-button-min-height);
    border-radius: var(--stb-button-border-radius);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 12px 24px;
    transform: skew(var(--stb-skew-angle-negative));
    
    /* Наследуем стили от .button--tertiary */
    --stb-button-box-shadow-color: rgb(var(--stb-brand-750));
    --stb-button-inner-text-stroke: linear-gradient(rgb(var(--stb-brand-850)), rgb(var(--stb-brand-950)));
    --stb-button-bg-gradient-1: radial-gradient(50% 20% at 50% 0%, rgb(var(--stb-neutral-500) / .8), rgb(var(--stb-neutral-500) / 0));
    --stb-button-bg-gradient-2: radial-gradient(40% 16% at 50% 100%, rgb(var(--stb-neutral-500) / .8), rgb(var(--stb-neutral-500) / 0));
    --stb-button-bg-gradient-3: linear-gradient(rgb(var(--stb-brand-170)), rgb(var(--stb-brand-400)) 50%, rgb(var(--stb-brand-600)) 60%, rgb(var(--stb-brand-850)));
    --stb-button-border-color: linear-gradient(90deg, rgb(var(--stb-brand-200)), rgb(var(--stb-green-150)) 50%, rgb(var(--stb-brand-200)));
    
    background: 
        var(--stb-button-bg-gradient-1) padding-box,
        var(--stb-button-bg-gradient-2) padding-box,
        var(--stb-button-bg-gradient-3) padding-box,
        var(--stb-button-border-color) border-box;
    box-shadow: 
        0 var(--stb-button-box-shadow-size, 2px) 0 var(--stb-button-box-shadow-color),
        0 5px 5px rgb(var(--stb-black)/.5);
}

.btn-tertiary:hover {
    transform: skew(var(--stb-skew-angle-negative)) translateY(-2px);
    box-shadow: 
        0 calc(var(--stb-button-box-shadow-size, 2px) + 1px) 0 var(--stb-button-box-shadow-color),
        0 8px 15px rgb(var(--stb-black)/.7);
}

.btn-tertiary:active {
    transform: skew(var(--stb-skew-angle-negative)) translateY(0);
    box-shadow: 
        0 1px 0 var(--stb-button-box-shadow-color),
        0 3px 8px rgb(var(--stb-black)/.6);
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 1.5rem;
    cursor: pointer;
}

.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #093EB2;
    flex-direction: column;
    padding: 1rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.mobile-menu.active {
    display: flex;
}

.mobile-menu a {
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

/* Hero Section */
.hero {
    background-image: url('banner/banner-hero-section.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 24, 72, 0.7);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 2rem;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Main Content */
.main-content {
    padding: 4rem 0;
}

.section {
    margin-bottom: 4rem;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    color: rgb(89, 158, 255);
}

/* Cards */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid rgba(89, 158, 255, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(89, 158, 255, 0.3);
}

.card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.card h3 {
    color: rgb(89, 158, 255);
    margin-bottom: 1rem;
}

/* Tables */
.table-container {
    overflow-x: auto;
    margin: 2rem 0;
}

table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    overflow: hidden;
}

th, td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid rgba(89, 158, 255, 0.2);
}

th {
    background: rgba(9, 62, 178, 0.5);
    font-weight: bold;
    color: rgb(227, 255, 125);
}

tr:hover {
    background: rgba(89, 158, 255, 0.1);
}

/* Lists */
.feature-list {
    list-style: none;
    margin: 2rem 0;
}

.feature-list li {
    padding: 0.8rem 0;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(89, 158, 255, 0.1);
}

.feature-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: rgb(227, 255, 125);
    margin-right: 1rem;
}

/* FAQ */
.faq-section {
    margin: 3rem 0;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    margin-bottom: 1rem;
    border: 1px solid rgba(89, 158, 255, 0.2);
}

.faq-question {
    padding: 1.5rem;
    font-weight: bold;
    color: #fff;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question:hover {
    background: rgba(89, 158, 255, 0.1);
}

.faq-answer {
    padding: 0 1.5rem 1.5rem;
    display: none;
}

.faq-answer p {
    margin-bottom: 0;
    margin-top: 10px;
}

.faq-answer.active {
    display: block;
}

.faq-icon {
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

/* Footer */
.footer {
    background: #162954;
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: rgb(227, 255, 125);
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #ffffff;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: rgb(227, 255, 125);
}

.payment-methods {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
}

.payment-methods i {
    font-size: 2rem;
    color: #ffffff;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1rem;
    text-align: center;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.disclaimer {
    background: rgba(255, 193, 7, 0.1);
    border-left: 4px solid #ffc107;
    padding: 1rem;
    margin: 2rem 0;
    border-radius: 4px;
}

.disclaimer strong {
    color: #ffc107;
}

@media (max-width: 1600px) {
    .nav-menu {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
}

/* Responsive Design */
@media (max-width: 768px) {

    .hero {
        background-image: url('banner/hero-banner-mobile.webp');
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cards-grid {
        grid-template-columns: 1fr;
    }

    .header-buttons .btn {
        padding: 0.5rem 1rem;
        font-size: 13px;
    }
    
    .table-container {
        font-size: 0.9rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .payment-methods {
        justify-content: center;
    }
}

@media (max-width: 520px) {
    .header-buttons {
        width: 100%;
        justify-content: center;
        order: 3;
        margin-top: 10px;
    }

    .header-content {
        flex-wrap: wrap;
    }

    .cards-grid {
        margin: 2rem -20px;
    }
}

@media (max-width: 1024px) and (min-width: 769px) {
    .cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.pulse {
    animation: pulse 2s infinite;
}

/* Loading Animation */
.loading {
    opacity: 0;
    animation: fadeIn 0.5s ease-in forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* Special Elements */
.highlight {
    background: linear-gradient(45deg, rgb(227, 255, 125), rgb(89, 158, 255));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: bold;
}

.icon-text {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.icon-text i {
    color: rgb(227, 255, 125);
    width: 20px;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.mb-1 {
    margin-bottom: 1rem;
}

.mb-2 {
    margin-bottom: 2rem;
}

.mb-3 {
    margin-bottom: 3rem;
}

.mt-1 {
    margin-top: 1rem;
}

.mt-2 {
    margin-top: 2rem;
}

.mt-3 {
    margin-top: 3rem;
}

.d-flex {
    display: flex;
}

.align-center {
    align-items: center;
}

.justify-center {
    justify-content: center;
}

.gap-1 {
    gap: 1rem;
}

.gap-2 {
    gap: 2rem;
}

/* Highlight Section - для выделенного контента после hero */
.highlight-section {
    background: linear-gradient(135deg, #001848 0%, #003366 100%);
    padding: 3rem 0;
    margin: 0;
    position: relative;
    overflow: hidden;
}

.highlight-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(227,255,125,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>') center/cover;
    opacity: 0.3;
}

.highlight-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.highlight-text {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2.5rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(227, 255, 125, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    margin-bottom: 2rem;
}

.highlight-text p {
    font-size: 1.3rem;
    line-height: 1.8;
    color: #ffffff;
    margin: 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.highlight-icon-text {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    background: rgba(227, 255, 125, 0.1);
    border-radius: 50px;
    padding: 1.5rem 3rem;
    border: 2px solid rgba(227, 255, 125, 0.3);
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.highlight-icon-text:hover {
    background: rgba(227, 255, 125, 0.2);
    border-color: rgba(227, 255, 125, 0.5);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(227, 255, 125, 0.2);
}

.highlight-icon-text i {
    color: rgb(227, 255, 125);
    font-size: 1.8rem;
    width: auto;
    text-shadow: 0 0 10px rgba(227, 255, 125, 0.5);
}

.highlight-icon-text span {
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 600;
    text-align: center;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Адаптивность для highlight section */
@media (max-width: 768px) {
    .highlight-section {
        padding: 2rem 0;
    }
    
    .highlight-content {
        padding: 0 1rem;
    }
    
    .highlight-text {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .highlight-text p {
        font-size: 1.1rem;
        line-height: 1.6;
    }
    
    .highlight-icon-text {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem 2rem;
        gap: 0.8rem;
    }
    
    .highlight-icon-text i {
        font-size: 1.5rem;
    }
    
    .highlight-icon-text span {
        font-size: 1rem;
    }
}