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

html, body {
    height: 100%;
}

/* Base */
body {
    font-family: 'Open Sans', Arial, sans-serif;
    background-color: #141414;
    color: #e0e0e0;
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    color: #FFD700;
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: #FFCC00;
}

.x9m2k {
    display: none;
}

.qw7rt {
    visibility: hidden;
}

.p4l8n {
    position: absolute;
    left: -9999px;
}

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

/* Header */
.yx3m9-header {
    background-color: #000000;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(255, 215, 0, 0.1);
}

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

.r9t3x-logo img {
    max-height: 50px;
    width: auto;
}

.mn8k1-nav {
    display: flex;
    align-items: center;
    gap: 25px;
}

.mn8k1-nav a {
    color: #FFD700;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.v6j9l-auth-buttons {
    display: flex;
    gap: 10px;
    align-items: center;
}

.b3n7m-btn {
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 13px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
}

.b3n7m-btn-login {
    background-color: #FFD700;
    color: #000;
}

.b3n7m-btn-login:hover {
    background-color: #FFC700;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.b3n7m-btn-signup {
    background-color: #FFCC00;
    color: #000;
}

.b3n7m-btn-signup:hover {
    background-color: #FFB700;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 204, 0, 0.4);
}

.w8p4k-online-count {
    color: #4CAF50;
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.w8p4k-online-count::before {
    content: '●';
    color: #4CAF50;
    animation: blink 1.5s infinite;
}

@keyframes blink {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.3;
    }
}

/* Burger Menu */
.t5q8m-burger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.t5q8m-burger span {
    width: 25px;
    height: 3px;
    background-color: #FFD700;
    transition: 0.3s;
}

/* Hero */
.y2k9p-hero {
    padding: 60px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.y2k9p-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('/hero-banner.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.3;
    z-index: 0;
}

.m7x4n-hero-content {
    position: relative;
    z-index: 1;
}

.m7x4n-hero-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #FFD700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.m7x4n-hero-content p {
    font-size: 20px;
    margin-bottom: 30px;
    color: #e0e0e0;
}

.q1w8r-hero-btn {
    padding: 18px 45px;
    background: linear-gradient(135deg, #FFD700 0%, #FFCC00 100%);
    color: #000;
    font-size: 18px;
    font-weight: 700;
    border-radius: 30px;
    text-transform: uppercase;
    display: inline-block;
    transition: all 0.3s ease;
}

.q1w8r-hero-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.5);
}

/* Breadcrumbs */
.z3k7m-breadcrumbs {
    padding: 15px 0;
    font-size: 14px;
}

.z3k7m-breadcrumbs a {
    color: #FFD700;
}

.z3k7m-breadcrumbs span {
    color: #888;
    margin: 0 5px;
}

/* Content Blocks */
.l9p2x-content-block {
    background-color: #1a1a1a;
    border-radius: 15px;
    padding: 30px;
    margin: 30px 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.l9p2x-content-block:hover {
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.2);
    transform: translateY(-2px);
}

.n4m8k-block-title {
    font-size: 32px;
    color: #FFD700;
    margin-bottom: 25px;
    border-bottom: 2px solid #333;
    padding-bottom: 15px;
}

/* Table */
.c6v9t-info-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.c6v9t-info-table th,
.c6v9t-info-table td {
    padding: 15px;
    text-align: left;
    border: 1px solid #333;
}

.c6v9t-info-table th {
    background-color: #222;
    color: #FFD700;
    font-weight: 700;
    text-transform: uppercase;
}

.c6v9t-info-table tr:nth-child(even) {
    background-color: #1a1a1a;
}

.c6v9t-info-table tr:hover {
    background-color: #252525;
}

/* Winners Rating */
.h8k3m-winners-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px;
    margin: 20px 0;
}

.j5n2p-winner-item {
    background: linear-gradient(135deg, #222 0%, #1a1a1a 100%);
    padding: 15px;
    border-radius: 10px;
    border-left: 4px solid #FFD700;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.j5n2p-winner-item:hover {
    transform: translateX(5px);
    border-left-color: #FFCC00;
}

.t9v4k-winner-name {
    font-weight: 600;
    color: #e0e0e0;
}

.x2m7n-winner-amount {
    color: #4CAF50;
    font-weight: 700;
    font-size: 18px;
}

/* Video Block */
.p8k4m-video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 10px;
    margin: 20px 0;
}

.p8k4m-video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Bonuses */
.r5k9m-bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin: 25px 0;
}

.w7j3k-bonus-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #222 100%);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    border: 2px solid #333;
    transition: all 0.3s ease;
}

.w7j3k-bonus-card:hover {
    border-color: #FFD700;
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

.q9m5k-bonus-title {
    font-size: 24px;
    color: #FFD700;
    margin-bottom: 15px;
    font-weight: 700;
}

.l3x8k-bonus-amount {
    font-size: 36px;
    color: #FFCC00;
    font-weight: 900;
    margin: 20px 0;
}

.v4n7m-bonus-description {
    color: #aaa;
    font-size: 14px;
    margin-bottom: 20px;
    line-height: 1.5;
}

/* Slot Game */
.z8k3m-slot-game {
    background: linear-gradient(135deg, #222 0%, #1a1a1a 100%);
    border-radius: 15px;
    padding: 40px;
    text-align: center;
    border: 3px solid #FFD700;
}

.p2x7k-slot-reels {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 30px 0;
}

.m9k5n-reel {
    width: 100px;
    height: 100px;
    background-color: #000;
    border: 3px solid #FFD700;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    transition: all 0.3s ease;
}

.m9k5n-reel.spinning {
    animation: spin 0.5s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotateX(0deg);
    }
    100% {
        transform: rotateX(360deg);
    }
}

.t4k8m-spin-btn {
    padding: 15px 50px;
    background: linear-gradient(135deg, #FFD700 0%, #FFCC00 100%);
    color: #000;
    font-size: 20px;
    font-weight: 700;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.t4k8m-spin-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.5);
}

.t4k8m-spin-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.r6k9m-slot-result {
    margin-top: 25px;
    font-size: 24px;
    font-weight: 700;
    min-height: 60px;
}

.r6k9m-slot-result.win {
    color: #4CAF50;
}

.r6k9m-slot-result.lose {
    color: #f44336;
}

/* FAQ */
.y3k8m-faq-item {
    background-color: #1a1a1a;
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
    border: 1px solid #333;
}

.n7k4m-faq-question {
    padding: 20px;
    cursor: pointer;
    font-weight: 700;
    font-size: 18px;
    color: #FFD700;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.n7k4m-faq-question:hover {
    background-color: #222;
}

.n7k4m-faq-question::after {
    content: '+';
    font-size: 24px;
    transition: transform 0.3s ease;
}

.n7k4m-faq-question.active::after {
    transform: rotate(45deg);
}

.k5m9p-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 20px;
}

.k5m9p-faq-answer.active {
    max-height: 500px;
    padding: 20px;
}

/* Footer */
.x7k2m-footer {
    background-color: #000000;
    padding: 40px 20px 20px;
    margin-top: 50px;
}

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

.v5k8m-footer-section h3 {
    color: #FFD700;
    margin-bottom: 15px;
    font-size: 18px;
}

.v5k8m-footer-section ul {
    list-style: none;
}

.v5k8m-footer-section ul li {
    margin-bottom: 10px;
}

.v5k8m-footer-section ul li a {
    color: #aaa;
    font-size: 14px;
}

.v5k8m-footer-section ul li a:hover {
    color: #FFD700;
}

.m2k7n-payment-logos,
.p8k4x-provider-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 15px;
}

.m2k7n-payment-logos img,
.p8k4x-provider-logos img {
    height: 30px;
    width: auto;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.m2k7n-payment-logos img:hover,
.p8k4x-provider-logos img:hover {
    opacity: 1;
}

.t9k5m-copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #333;
    color: #666;
    font-size: 13px;
}

/* Widget */
.z5k9m-fixed-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: linear-gradient(135deg, #FFD700 0%, #FFCC00 100%);
    padding: 20px 30px;
    border-radius: 50px;
    box-shadow: 0 5px 25px rgba(255, 215, 0, 0.5);
    z-index: 999;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.z5k9m-fixed-widget:hover {
    transform: scale(1.1);
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 5px 25px rgba(255, 215, 0, 0.5);
    }
    50% {
        box-shadow: 0 5px 35px rgba(255, 215, 0, 0.8);
    }
}

.z5k9m-fixed-widget a {
    color: #000;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
}

/* Author Block */
.j8k3m-author-block {
    background-color: #222;
    border-radius: 10px;
    padding: 25px;
    margin: 30px 0;
    display: flex;
    gap: 20px;
    align-items: center;
    border-left: 4px solid #FFD700;
}

.k4m9p-author-info h4 {
    color: #FFD700;
    margin-bottom: 10px;
    font-size: 20px;
}

.k4m9p-author-info p {
    color: #aaa;
    font-size: 14px;
    line-height: 1.6;
}

/* Content Styles */
.x3k7m-content-wrapper h1,
.x3k7m-content-wrapper h2,
.x3k7m-content-wrapper h3 {
    color: #FFD700;
    margin-top: 30px;
    margin-bottom: 15px;
}

.x3k7m-content-wrapper h2 {
    font-size: 28px;
}

.x3k7m-content-wrapper h3 {
    font-size: 22px;
}

.x3k7m-content-wrapper p {
    margin-bottom: 15px;
    line-height: 1.8;
}

.x3k7m-content-wrapper ul,
.x3k7m-content-wrapper ol {
    margin: 15px 0;
    padding-left: 30px;
}

.x3k7m-content-wrapper li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.x3k7m-content-wrapper table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.x3k7m-content-wrapper table th,
.x3k7m-content-wrapper table td {
    padding: 12px;
    text-align: left;
    border: 1px solid #333;
}

.x3k7m-content-wrapper table th {
    background-color: #222;
    color: #FFD700;
}

.x3k7m-content-wrapper table tr:nth-child(even) {
    background-color: #1a1a1a;
}

.x3k7m-content-wrapper a {
    color: #FFD700;
    text-decoration: underline;
}

.x3k7m-content-wrapper strong {
    color: #FFCC00;
}

/* WordPress Fake Elements */
.wp-block-group {
    display: block;
}

.wp-site-blocks {
    display: block;
}

.post-template-default {
    display: none;
}

.postid-1 {
    visibility: hidden;
}

.elementor-widget-wrap {
    display: none;
}

#yoast-schema {
    display: none;
}

/* Responsive */
@media (max-width: 768px) {
    .t5q8m-burger {
        display: flex;
    }

    .mn8k1-nav {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background-color: #000;
        flex-direction: column;
        padding: 20px;
    }

    .mn8k1-nav.active {
        display: flex;
    }

    .kl4p2-header-wrapper {
        flex-wrap: wrap;
    }

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

    .r5k9m-bonus-grid {
        grid-template-columns: 1fr;
    }

    .h8k3m-winners-list {
        grid-template-columns: 1fr;
    }

    .c6v9t-info-table {
        font-size: 14px;
        overflow-x: auto;
        display: block;
    }

    .p2x7k-slot-reels {
        gap: 10px;
    }

    .m9k5n-reel {
        width: 70px;
        height: 70px;
        font-size: 32px;
    }

    .z5k9m-fixed-widget {
        bottom: 10px;
        right: 10px;
        padding: 15px 20px;
        border-radius: 30px;
    }

    .z5k9m-fixed-widget a {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .l9p2x-content-block {
        padding: 20px;
        margin: 20px 10px;
    }

    .n4m8k-block-title {
        font-size: 24px;
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mt-1 {
    margin-top: 10px;
}

.mt-2 {
    margin-top: 20px;
}

.mt-3 {
    margin-top: 30px;
}

.mb-1 {
    margin-bottom: 10px;
}

.mb-2 {
    margin-bottom: 20px;
}

.mb-3 {
    margin-bottom: 30px;
}

.wp-block-group {
    display: block;
}

.wp-site-blocks {
    display: block;
}

.elementor-widget-wrap {
    display: none;
}

#yoast-schema {
    display: none;
}

.wercn {
    max-width: 1120px;
    margin: 40px auto 80px;
    padding: 36px 32px;
    background: linear-gradient(180deg, rgba(26, 26, 26, 0.96) 0%, rgba(18, 18, 18, 0.98) 100%);
    border: 1px solid rgba(255, 215, 0, 0.14);
    border-radius: 24px;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
    color: #e7e7e7;
    line-height: 1.75;
}

.wercn h1,
.wercn h2,
.wercn h3,
.wercn h4,
.wercn h5,
.wercn h6 {
    color: #ffd54a;
    line-height: 1.28;
    font-weight: 700;
}

.wercn h1 {
    font-size: 42px;
    margin: 0 0 24px;
    color: #ffe27a;
}

.wercn h2 {
    font-size: 30px;
    margin: 40px 0 18px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 215, 0, 0.14);
}

.wercn h3 {
    font-size: 24px;
    margin: 28px 0 14px;
}

.wercn p,
.wercn ul,
.wercn ol,
.wercn table,
.wercn blockquote,
.wercn dl {
    margin-bottom: 18px;
}

.wercn p {
    font-size: 16px;
    color: #dfdfdf;
}

.wercn a {
    color: #ffd54a;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
    transition: color 0.25s ease, opacity 0.25s ease;
    word-break: break-word;
}

.wercn a:hover {
    color: #fff0a6;
    opacity: 1;
}

.wercn ul,
.wercn ol {
    padding-left: 24px;
}

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

.wercn ul li::marker,
.wercn ol li::marker {
    color: #ffd54a;
}

.wercn strong {
    color: #fff3b8;
    font-weight: 700;
}

.wercn blockquote {
    padding: 18px 20px;
    border-left: 4px solid #ffd54a;
    background: rgba(255, 215, 0, 0.06);
    border-radius: 14px;
    color: #f1f1f1;
}

.wercn table {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 215, 0, 0.14);
    border-radius: 18px;
    overflow: hidden;
    display: block;
    overflow-x: auto;
    white-space: normal;
}

.wercn table tbody,
.wercn table thead {
    width: 100%;
}

.wercn tr {
    background: transparent;
}

.wercn th,
.wercn td {
    padding: 14px 16px;
    text-align: left;
    border: 1px solid rgba(255, 215, 0, 0.1);
    vertical-align: top;
    min-width: 180px;
}

.wercn th {
    background: rgba(255, 215, 0, 0.1);
    color: #ffe27a;
    font-weight: 700;
}

.wercn td {
    color: #e6e6e6;
    background: transparent;
}

.wercn tr:nth-child(even) td {
    background: rgba(255, 255, 255, 0.02);
}

.wercn dl {
    display: grid;
    gap: 14px;
}

.wercn dt {
    color: #ffd54a;
    font-weight: 700;
    margin-bottom: 6px;
}

.wercn dd {
    margin-left: 0;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 215, 0, 0.08);
    border-radius: 14px;
    color: #e4e4e4;
}

.wercn hr {
    border: 0;
    height: 1px;
    background: rgba(255, 215, 0, 0.12);
    margin: 28px 0;
}

.wercn img {
    max-width: 100%;
    height: auto;
    border-radius: 16px;
}

@media (max-width: 991px) {
    .wercn {
        margin: 28px auto 64px;
        padding: 28px 22px;
        border-radius: 20px;
    }

    .wercn h1 {
        font-size: 34px;
    }

    .wercn h2 {
        font-size: 26px;
    }

    .wercn h3 {
        font-size: 22px;
    }

    .wercn th,
    .wercn td {
        min-width: 160px;
        padding: 13px 14px;
    }
}

@media (max-width: 767px) {
    .wercn {
        margin: 20px auto 56px;
        padding: 22px 16px;
        border-radius: 18px;
        line-height: 1.68;
    }

    .wercn h1 {
        font-size: 28px;
        margin-bottom: 18px;
    }

    .wercn h2 {
        font-size: 23px;
        margin-top: 30px;
        margin-bottom: 14px;
        padding-bottom: 10px;
    }

    .wercn h3 {
        font-size: 20px;
        margin-top: 24px;
        margin-bottom: 12px;
    }

    .wercn p,
    .wercn li,
    .wercn dd {
        font-size: 15px;
    }

    .wercn ul,
    .wercn ol {
        padding-left: 20px;
    }

    .wercn blockquote {
        padding: 16px 14px;
        border-radius: 12px;
    }

    .wercn table {
        font-size: 14px;
        border-radius: 14px;
    }

    .wercn th,
    .wercn td {
        min-width: 140px;
        padding: 12px 12px;
    }

    .wercn dl {
        gap: 12px;
    }

    .wercn dd {
        padding: 12px 13px;
        border-radius: 12px;
    }
}

@media (max-width: 480px) {
    .wercn {
        padding: 18px 14px;
    }

    .wercn h1 {
        font-size: 24px;
    }

    .wercn h2 {
        font-size: 21px;
    }

    .wercn h3 {
        font-size: 18px;
    }

    .wercn p,
    .wercn li,
    .wercn dd,
    .wercn dt {
        font-size: 14px;
    }

    .wercn table {
        font-size: 13px;
    }

    .wercn th,
    .wercn td {
        min-width: 125px;
        padding: 10px 10px;
    }
}

.y2k9p-hero {
    position: relative;
    min-height: 520px;
    padding: 80px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background-color: #0f0f0f;
    background-image: linear-gradient(135deg, rgba(0, 0, 0, 0.78) 0%, rgba(20, 20, 20, 0.62) 45%, rgba(0, 0, 0, 0.82) 100%),
    url('/banner-1xslot.png');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.y2k9p-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(255, 215, 0, 0.12) 0%, rgba(255, 215, 0, 0.03) 30%, rgba(0, 0, 0, 0) 65%);
    pointer-events: none;
}

.m7x4n-hero-content {
    position: relative;
    z-index: 2;
    max-width: 860px;
    width: 100%;
    padding: 36px 32px;
    border-radius: 24px;
    background: rgba(10, 10, 10, 0.34);
    backdrop-filter: blur(4px);
}

.m7x4n-hero-content h1 {
    margin: 0 0 18px;
    font-size: 48px;
    line-height: 1.15;
    font-weight: 800;
    color: #ffd54a;
    text-shadow: 0 3px 18px rgba(0, 0, 0, 0.65);
}

.m7x4n-hero-content p {
    margin: 0 0 28px;
    font-size: 20px;
    line-height: 1.6;
    color: #f2f2f2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.55);
}

.q1w8r-hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 56px;
    padding: 16px 34px;
    border-radius: 999px;
    background: linear-gradient(135deg, #ffd700 0%, #ffbf00 100%);
    color: #111111;
    font-size: 17px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    box-shadow: 0 10px 28px rgba(255, 215, 0, 0.28);
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.q1w8r-hero-btn:hover {
    color: #111111;
    transform: translateY(-2px);
    box-shadow: 0 14px 34px rgba(255, 215, 0, 0.36);
    background: linear-gradient(135deg, #ffe27a 0%, #ffc933 100%);
}

@media (max-width: 991px) {
    .y2k9p-hero {
        min-height: 460px;
        padding: 64px 20px;
        background-position: center center;
    }

    .m7x4n-hero-content {
        max-width: 720px;
        padding: 28px 24px;
        border-radius: 20px;
    }

    .m7x4n-hero-content h1 {
        font-size: 38px;
    }

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

@media (max-width: 767px) {
    .y2k9p-hero {
        min-height: 400px;
        padding: 48px 16px;
        background-position: center top;
    }

    .m7x4n-hero-content {
        padding: 22px 18px;
        border-radius: 18px;
    }

    .m7x4n-hero-content h1 {
        font-size: 29px;
        margin-bottom: 14px;
    }

    .m7x4n-hero-content p {
        font-size: 16px;
        margin-bottom: 22px;
    }

    .q1w8r-hero-btn {
        width: 100%;
        min-height: 52px;
        padding: 14px 20px;
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .y2k9p-hero {
        min-height: 360px;
        padding: 40px 14px;
    }

    .m7x4n-hero-content h1 {
        font-size: 24px;
    }

    .m7x4n-hero-content p {
        font-size: 14px;
    }
}

.yx3m9-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background-color: #000000;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.45);
}

body {
    padding-top: 92px;
}

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

.kl4p2-header-wrapper {
    min-height: 92px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

@media (max-width: 768px) {
    body {
        padding-top: 78px;
    }

    .kl4p2-header-wrapper {
        min-height: 78px;
        gap: 12px;
    }

    .r9t3x-logo img {
        max-width: 110px;
        height: auto;
    }
}