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

body {
    font-family: 'Inter', sans-serif;
    background-color: #141414;
    color: #ffffff;
    line-height: 1.6;
}

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


.header {
    background-color: #1e1e1e;
    padding: 20px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-img {
    width: 150px;
    filter: drop-shadow(0 0 10px rgba(236, 190, 125, 0.3));
}

.logo h2 {
    color: #ecbe7d;
    font-size: 28px;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(236, 190, 125, 0.3);
}

.header-buttons {
    display: flex;
    gap: 15px;
}


.btn {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.btn-login {
    background-color: #272727;
    color: #ffffff;
}

.btn-login:hover {
    background-color: #3a3a3a;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(39, 39, 39, 0.4);
}

.btn-register {
    background-color: #ecbe7d;
    color: #141414;
    animation: pulse 2s infinite;
}

.btn-register:hover {
    background-color: #f0c78a;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(236, 190, 125, 0.4);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(236, 190, 125, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(236, 190, 125, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(236, 190, 125, 0);
    }
}


.hero {
    background: linear-gradient(135deg, #1e1e1e 0%, #141414 100%);
    padding: 80px 0 60px;
    margin-top: 80px;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-text h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
    background: linear-gradient(45deg, #ffffff, #ecbe7d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 18px;
    color: #cccccc;
    margin-bottom: 25px;
    line-height: 1.6;
}

.bonus-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

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

.step-number {
    background: linear-gradient(45deg, #ecbe7d, #d4a76a);
    color: #141414;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    box-shadow: 0 4px 15px rgba(236, 190, 125, 0.3);
}

.step-text {
    color: #ecbe7d;
    font-weight: 600;
    font-size: 16px;
    text-align: center;
}

.step-arrow {
    color: #ecbe7d;
    font-size: 24px;
    font-weight: 700;
    animation: pulse 2s infinite;
}

.bonus-details {
    background: rgba(236, 190, 125, 0.1);
    border: 1px solid rgba(236, 190, 125, 0.3);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 30px;
    text-align: center;
}

.bonus-details p {
    color: #ecbe7d;
    font-size: 18px;
    font-weight: 500;
    margin: 0;
    line-height: 1.5;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.bonus-card {
    background: linear-gradient(135deg, #ecbe7d, #d4a76a);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(236, 190, 125, 0.3);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

.bonus-icon {
    font-size: 60px;
    color: #141414;
    margin-bottom: 20px;
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

.bonus-text {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.bonus-amount {
    font-size: 36px;
    font-weight: 700;
    color: #141414;
}

.bonus-label {
    font-size: 18px;
    color: #141414;
    opacity: 0.8;
}

.bonus-steps-visual {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(20, 20, 20, 0.2);
}

.step-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    font-size: 14px;
    color: #141414;
    font-weight: 600;
}

.step-visual span:nth-child(2n+1) {
    background: rgba(20, 20, 20, 0.1);
    padding: 8px 12px;
    border-radius: 8px;
    border: 1px solid rgba(20, 20, 20, 0.2);
}

.step-visual span:nth-child(2n) {
    color: #d4a76a;
    font-weight: 700;
}


.section-title {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #ecbe7d;
    text-shadow: 0 0 20px rgba(236, 190, 125, 0.3);
}


.games {
    padding: 35px 0;
    background-color: #1e1e1e;
}


.game-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    background: linear-gradient(135deg, #141414, #2a2a2a);
    border: 2px solid #2a2a2a;
    border-radius: 25px;
    padding: 12px 20px;
    color: #cccccc;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 140px;
    justify-content: center;
}

.filter-btn:hover {
    border-color: #ecbe7d;
    background: linear-gradient(135deg, #1e1e1e, #2a2a2a);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(236, 190, 125, 0.2);
}

.filter-btn.active {
    background: linear-gradient(135deg, #ecbe7d, #d4a76a);
    border-color: #ecbe7d;
    color: #141414;
    box-shadow: 0 5px 20px rgba(236, 190, 125, 0.3);
}

.filter-btn.active:hover {
    background: linear-gradient(135deg, #f0c78a, #ecbe7d);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(236, 190, 125, 0.4);
}

.filter-emoji {
    font-size: 18px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.filter-text {
    font-weight: 600;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.game-card {
    background-color: #141414;
    border-radius: 16px;
    transition: all 0.3s ease;
    border: 1px solid #2a2a2a;
}

.game-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border-color: #ecbe7d;
}

.game-image-placeholder {
    background: linear-gradient(135deg, #1e1e1e, #2a2a2a);
    border: 2px dashed #ecbe7d;
    border-radius: 12px;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
}

.game-image-placeholder:hover {
    border-color: #d4a76a;
    background: linear-gradient(135deg, #2a2a2a, #1e1e1e);
}

.game-image-placeholder i {
    font-size: 60px;
    color: #ecbe7d;
    opacity: 0.7;
}

.game-image-placeholder span {
    color: #888888;
    font-size: 14px;
    text-align: center;
    line-height: 1.4;
}

.game-img {
    width: 100%;
    object-fit: cover;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    transition: all 0.3s ease;
}

.game-img:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}


.game-image {
    position: relative;
    overflow: hidden;
}

.game-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(3px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
    border-radius: 12px;
}

.game-card:hover .game-overlay {
    opacity: 1;
}

.play-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ecbe7d, #d4a76a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(236, 190, 125, 0.4);
    transform: scale(0.8);
    transition: all 0.3s ease;
}

.game-card:hover .play-icon {
    transform: scale(1);
}

.play-icon i {
    color: #141414;
    font-size: 32px;
    font-weight: 700;
    margin-left: 4px;

}

.game-info h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #ffffff;
    text-align: center;
}

.game-stats-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    padding: 15px 0;
    border-top: 1px solid #2a2a2a;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
}

.stat-item i {
    color: #ecbe7d;
    font-size: 18px;
    margin-bottom: 5px;
}


.bonuses {
    padding: 35px 0;
    background-color: #1e1e1e;
}

.bonuses-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.bonus-card-item {
    background-color: #141414;
    border-radius: 16px;
    padding: 25px;
    transition: all 0.3s ease;
    border: 1px solid #2a2a2a;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.bonus-card-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border-color: #ecbe7d;
}

.bonus-card-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ecbe7d, #d4a76a);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.bonus-card-item:hover::before {
    transform: scaleX(1);
}

.bonus-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.bonus-icon-large {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ecbe7d, #d4a76a);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(236, 190, 125, 0.3);
}

.bonus-icon-large i {
    font-size: 28px;
    color: #141414;
}

.bonus-badge {
    background: linear-gradient(135deg, #272727, #3a3a3a);
    color: #ecbe7d;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.bonus-card-content h3 {
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 15px;
}

.bonus-amount-large {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.bonus-value {
    font-size: 28px;
    font-weight: 700;
    color: #ecbe7d;
}

.bonus-plus {
    font-size: 20px;
    color: #ecbe7d;
    font-weight: 600;
}

.bonus-freespins {
    font-size: 18px;
    color: #d4a76a;
    font-weight: 600;
}

.bonus-label {
    font-size: 16px;
    color: #cccccc;
    font-weight: 500;
}

.bonus-card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.bonus-card-content p {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 20px;
}

.bonus-features {
    list-style: none;
    margin-bottom: 25px;
    flex: 1;
}

.bonus-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #cccccc;
    margin-bottom: 8px;
    font-size: 14px;
}

.bonus-features li i {
    color: #ecbe7d;
    font-size: 12px;
}

.bonus-card-footer {
    text-align: center;
}

.btn-bonus {
    background: linear-gradient(135deg, #ecbe7d, #d4a76a);
    color: #141414;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    width: 100%;
}

.btn-bonus:hover {
    background: linear-gradient(135deg, #f0c78a, #ecbe7d);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(236, 190, 125, 0.4);
}


.advantages {
    padding: 35px 0;
    background-color: #141414;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.advantage-card {
    text-align: center;
    padding: 40px 20px;
    background-color: #1e1e1e;
    border-radius: 16px;
    transition: all 0.3s ease;
    border: 1px solid #2a2a2a;
}

.advantage-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border-color: #ecbe7d;
}

.advantage-icon {
    font-size: 50px;
    color: #ecbe7d;
    margin-bottom: 20px;
}

.advantage-card .advantage-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #ffffff;
}

.advantage-card p {
    color: #cccccc;
    line-height: 1.6;
}


.payment-methods {
    padding: 35px 0;
    background-color: #1e1e1e;
}

.payment-carousel {
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 0 auto;
}

.carousel-btn {
    background: linear-gradient(135deg, #141414, #2a2a2a);
    border: 2px solid #2a2a2a;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #cccccc;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.carousel-btn:hover {
    border-color: #ecbe7d;
    background: linear-gradient(135deg, #1e1e1e, #2a2a2a);
    color: #ecbe7d;
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(236, 190, 125, 0.2);
}

.carousel-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.payment-carousel-container {
    overflow: hidden;
    flex: 1;
    position: relative;
}

.payment-carousel-track {
    display: flex;
    gap: 20px;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.payment-item {
    flex-shrink: 0;
    width: 120px;
    height: 80px;
    background: #141414;
    border: 2px solid #2a2a2a;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.payment-item:hover {
    border-color: #ecbe7d;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(236, 190, 125, 0.2);
}

.payment-icon {
    width: 100px;
    height: 40px;
    object-fit: contain;
    filter: grayscale(100%) brightness(0.7);
    transition: all 0.3s ease;
}

.payment-item:hover .payment-icon {
    filter: grayscale(0%) brightness(1);
    transform: scale(1.1);
}


.footer {
    background-color: #141414;
    padding: 60px 0 20px;
    border-top: 1px solid #2a2a2a;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column .footer-title {
    color: #ecbe7d;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #ecbe7d;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #2a2a2a;
}

.footer-bottom p {
    color: #888888;
    font-size: 14px;
}


@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    .header-content {
        flex-direction: column;
        gap: 20px;
    }

    .hero {
        padding: 100px 0 60px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 36px;
    }

    .hero-text p {
        font-size: 18px;
    }

    .bonus-steps {
        gap: 15px;
    }

    .step-number {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }

    .step-text {
        font-size: 14px;
    }

    .bonus-details {
        padding: 15px;
    }

    .bonus-details p {
        font-size: 16px;
    }

    .bonus-card {
        padding: 30px 20px;
    }

    .bonus-icon {
        font-size: 50px;
    }

    .bonus-amount {
        font-size: 28px;
    }

    .section-title {
        font-size: 28px;
    }

    .games-grid {
        grid-template-columns: repeat(1, 1fr);
        gap: 10px;
    }

    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .bonuses-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .payment-carousel {
        max-width: 800px;
        gap: 15px;
    }

    .carousel-btn {
        width: 45px;
        height: 45px;
        font-size: 16px;
    }

    .payment-item {
        width: 100px;
        height: 70px;
    }

    .payment-icon {
        width: 65px;
        height: 35px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 28px;
    }

    .hero-text p {
        font-size: 16px;
    }

    .btn {
        padding: 10px 20px;
        font-size: 14px;
    }

    .bonus-card {
        padding: 25px 15px;
    }

    .bonus-icon {
        font-size: 40px;
    }

    .bonus-amount {
        font-size: 24px;
    }

    .section-title {
        font-size: 24px;
    }


    .bonus-steps {
        flex-direction: column;
        gap: 10px;
    }

    .step-arrow {
        transform: rotate(90deg);
    }


    .stat-item i {
        margin-bottom: 0;
    }

    .advantages-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .filter-btn {
        min-width: 120px;
        padding: 10px 15px;
        font-size: 14px;
    }

    .filter-emoji {
        font-size: 16px;
    }

    .game-filters {
        gap: 10px;
    }

    .filter-btn {
        min-width: 110px;
        padding: 8px 12px;
    }

    .payment-carousel {
        max-width: 100%;
        gap: 10px;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }

    .payment-item {
        width: 80px;
        height: 60px;
    }

}


html {
    scroll-behavior: smooth;
}


::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #1e1e1e;
}

::-webkit-scrollbar-thumb {
    background: #ecbe7d;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #d4a76a;
}


.btn {
    position: relative;
    overflow: hidden;
}

.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: scale(0);
    animation: ripple-animation 0.6s linear;
    pointer-events: none;
}

@keyframes ripple-animation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

.stat-value {
    color: #ecbe7d;
    font-weight: 700;
}


@media (max-width: 768px) {
    .bonuses-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .bonus-card-item {
        padding: 20px;
    }

    .bonus-icon-large {
        width: 50px;
        height: 50px;
    }

    .bonus-icon-large i {
        font-size: 24px;
    }

    .bonus-value {
        font-size: 24px;
    }

    .bonus-plus {
        font-size: 18px;
    }

    .bonus-freespins {
        font-size: 16px;
    }

    .bonus-label {
        font-size: 14px;
    }

    .bonus-card-content h3 {
        font-size: 18px;
    }

    .bonus-card-content p {
        font-size: 14px;
    }

    .bonus-features li {
        font-size: 13px;
    }

    .btn-bonus {
        padding: 10px 20px;
        font-size: 14px;
    }

    .games-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .game-info h3 {
        font-size: 18px;
    }

    .game-stats-row {
        gap: 10px;
        padding: 12px 0;
    }

    .stat-item span {
        font-size: 13px;
    }

    .play-icon {
        width: 60px;
        height: 60px;
    }

    .play-icon i {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .bonuses-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .bonus-card-item {
        padding: 18px 15px;
    }

    .bonus-icon-large {
        width: 45px;
        height: 45px;
    }

    .bonus-icon-large i {
        font-size: 22px;
    }

    .bonus-value {
        font-size: 22px;
    }

    .bonus-plus {
        font-size: 16px;
    }

    .bonus-freespins {
        font-size: 15px;
    }

    .bonus-label {
        font-size: 13px;
    }

    .bonus-card-content h3 {
        font-size: 17px;
    }

    .bonus-card-content p {
        font-size: 13px;
    }

    .bonus-features li {
        font-size: 12px;
    }

    .btn-bonus {
        padding: 8px 16px;
        font-size: 13px;
    }

    .games-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .game-info h3 {
        font-size: 16px;
    }

    .game-stats-row {
        flex-direction: column;
        gap: 8px;
        padding: 10px 0;
    }

    .stat-item {
        flex-direction: row;
        justify-content: center;
        gap: 8px;
    }

    .stat-item span {
        font-size: 12px;
    }

    .play-icon {
        width: 50px;
        height: 50px;
    }

    .play-icon i {
        font-size: 20px;
    }

    .game-filters {
        gap: 8px;
    }

    .filter-btn {
        min-width: 100px;
        padding: 6px 10px;
        font-size: 13px;
    }

    .filter-emoji {
        font-size: 14px;
    }
}



.hero-highlight {
    background: linear-gradient(135deg, rgba(236, 190, 125, 0.1), rgba(212, 167, 106, 0.1));
    border: 1px solid rgba(236, 190, 125, 0.3);
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.highlight-text {
    font-size: 24px;
    font-weight: 700;
    color: #ecbe7d;
}

.highlight-label {
    font-size: 14px;
    color: #cccccc;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background: linear-gradient(135deg, #ecbe7d, #d4a76a);
    color: #141414;
    font-weight: 700;
    padding: 15px 30px;
    font-size: 18px;
    box-shadow: 0 8px 25px rgba(236, 190, 125, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #f0c78a, #ecbe7d);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(236, 190, 125, 0.4);
}

.btn-slots {
    background: linear-gradient(135deg, #272727, #3a3a3a);
    color: #ffffff;
    border: 2px solid #ecbe7d;
    font-weight: 600;
    padding: 15px 30px;
    font-size: 18px;
    transition: all 0.3s ease;
}

.btn-slots:hover {
    background: linear-gradient(135deg, #ecbe7d, #d4a76a);
    color: #141414;
    border-color: #ecbe7d;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(236, 190, 125, 0.4);
}


.hero-buttons {
    justify-content: center;
    gap: 25px;
}

.hero-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
}

.hero-btn .btn {
    padding: 12px 24px;
    font-size: 16px;
}


@media (max-width: 768px) {
    .hero {
        padding: 60px 0 40px;
    }

    .hero-text h1 {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .highlight-text {
        font-size: 20px;
    }

    .highlight-label {
        font-size: 12px;
    }

    .hero-btn {
        display: flex;
        align-items: center;
        gap: 10px;
        justify-content: center;
    }

    .hero-btn .btn {
        padding: 10px 20px;
        font-size: 14px;
    }

}

@media (max-width: 480px) {
    .hero {
        padding: 80px 0 30px;
    }

    .hero-text h1 {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 15px;
    }

    .highlight-text {
        font-size: 18px;
    }

    .highlight-label {
        font-size: 11px;
    }

    .hero-highlight {
        padding: 15px;
        margin-bottom: 25px;
    }

}

.text {
    padding: 35px 0;
    max-width: 100%;
    width: 1200px;
    margin: 0 auto;
}

.text .contaner {
    margin: 0 auto;
    padding: 0 15px;
    max-width: 100%;
}

.text h2 {
    font-size: 24px;
    font-weight: 700;
    color: #ecbe7d;
    text-align: center;
    margin-top: 10px;
    margin-bottom: 10px;
}

.text h3 {
    font-size: 20px;
    font-weight: 700;
    color: #ecbe7d;
    margin-top: 5px;
    margin-bottom: 5px;
}

.text p {
    font-size: 16px;
    color: #cccccc;
}

.text ul {
    list-style: disc;
    padding-left: 20px;
}

.text ul li {
    font-size: 16px;
    color: #cccccc;
}

.text ol {
    list-style: decimal;
    padding-left: 20px;
}

.text ol li {
    font-size: 16px;
    color: #cccccc;
}