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

        html {
            font-size: 16px;
            scroll-behavior: smooth;
            -webkit-text-size-adjust: 100%;
            -ms-text-size-adjust: 100%;
        }

        * {
            max-width: 100%;
            word-wrap: break-word;
            overflow-wrap: break-word;
        }

        body, html {
            overflow-x: hidden;
            width: 100%;
            max-width: 100vw;
        }


        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
            color: #ffffff;
            line-height: 1.6;
            min-height: 100vh;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

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

        main, section, div {
            max-width: 100vw;
            overflow-x: hidden;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

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

        a:hover {
            color: #ff6b35;
        }


        .header {
            position: sticky;
            top: 0;
            z-index: 1000;
            background: rgba(0, 0, 0, 0.95);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(255, 215, 0, 0.1);
        }

        .header-container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 1rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-weight: bold;
            font-size: 1.25rem;
        }

        .logo-icon {
            font-size: 1.5rem;
        }

        .logo-text {
            background: linear-gradient(45deg, #ff6b35, #ffd700);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .logo-badge {
            font-size: 0.75rem;
            background: rgba(255, 215, 0, 0.2);
            padding: 0.125rem 0.5rem;
            border-radius: 1rem;
            color: #ffd700;
        }

        .nav-main {
            display: flex;
            gap: 2rem;
            align-items: center;
        }

        .nav-link {
            color: #ffffff;
            font-weight: 500;
            transition: color 0.3s;
            position: relative;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(45deg, #ff6b35, #ffd700);
            transition: width 0.3s;
        }

        .nav-link:hover::after {
            width: 100%;
        }

        .header-actions {
            display: flex;
            gap: 1rem;
        }

        .btn-login, .btn-register {
            padding: 0.5rem 1.5rem;
            border-radius: 2rem;
            font-weight: 600;
            transition: all 0.3s;
        }

        .btn-login {
            background: transparent;
            border: 2px solid #ffd700;
            color: #ffd700;
        }

        .btn-login:hover {
            background: #ffd700;
            color: #1a1a2e;
        }

        .btn-register {
            background: linear-gradient(45deg, #ff6b35, #ffd700);
            color: #1a1a2e;
        }

        .btn-register:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 20px rgba(255, 107, 53, 0.3);
        }

        .mobile-menu-toggle {
            display: none;
            flex-direction: column;
            background: none;
            border: none;
            cursor: pointer;
        }

        .mobile-menu-toggle span {
            width: 25px;
            height: 3px;
            background: #ffffff;
            margin: 3px 0;
            transition: 0.3s;
        }


        .hero-section {
            position: relative;
            padding: 4rem 0;
            min-height: 600px;
            display: flex;
            align-items: center;
            overflow: hidden;
            max-width: 100vw;
        }

        .hero-background {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url(/images/winfest-bg.webp);
            z-index: -1;
            filter: blur(8px) brightness(0.8);
            transform: scale(1.05);
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
        }

        .hero-content {
            text-align: center;
            max-width: 900px;
            margin: 0 auto;
        }

        .hero-badge {
            display: inline-block;
            background: rgba(255, 215, 0, 0.1);
            color: #ffd700;
            padding: 0.5rem 1rem;
            border-radius: 2rem;
            margin-bottom: 1.5rem;
            font-size: 0.875rem;
            font-weight: 600;
        }

        .hero-title {
            font-size: clamp(2rem, 5vw, 3.5rem);
            font-weight: 800;
            margin-bottom: 1rem;
            background: linear-gradient(45deg, #ff6b35, #ffd700);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .hero-subtitle {
            display: block;
            font-size: clamp(1rem, 3vw, 1.5rem);
            font-weight: 400;
            color: #ffffff;
            margin-top: 0.5rem;
        }

        .hero-features {
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin: 2rem 0;
            flex-wrap: wrap;
        }

        .hero-feature {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .feature-icon {
            color: #4ade80;
            font-size: 1.25rem;
        }

        .hero-bonus-box {
            background: rgba(0, 0, 0, 0.64);
            border: 2px solid rgba(255, 215, 0, 0.2);
            border-radius: 1rem;
            padding: 2rem;
            margin: 2rem auto;
            max-width: 600px;
            backdrop-filter: blur(10px);
        }

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

        .bonus-label {
            font-size: 1.125rem;
            font-weight: 600;
        }

        .bonus-badge {
            background: linear-gradient(45deg, #ff6b35, #ffd700);
            color: #1a1a2e;
            padding: 0.25rem 0.75rem;
            border-radius: 1rem;
            font-size: 0.75rem;
            font-weight: 600;
        }

        .bonus-box-content {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 1rem;
            margin-bottom: 1.5rem;
        }

        .bonus-amount {
            text-align: center;
        }

        .bonus-percentage {
            font-size: 3rem;
            font-weight: 800;
            color: #ffd700;
        }

        .bonus-text {
            font-size: 1.875rem;
        }

        .bonus-value {
            font-size: 2.5rem;
            font-weight: 700;
            color: #ff6b35;
        }

        .bonus-plus {
            font-size: 2rem;
            font-weight: 600;
            color: #ffd700;
        }

        .bonus-spins {
            text-align: center;
        }

        .spins-number {
            font-size: 2.5rem;
            font-weight: 800;
            color: #4ade80;
        }

        .spins-text {
            font-size: 0.875rem;
            opacity: 0.8;
        }

        .hero-cta-button {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: linear-gradient(45deg, #ff6b35, #ffd700);
            color: #1a1a2e;
            padding: 1rem 2.5rem;
            border-radius: 2rem;
            font-size: 1.125rem;
            font-weight: 700;
            transition: all 0.3s;
        }

        .hero-cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
            color: #1a1a2e;
        }

        .bonus-terms {
            text-align: center;
            font-size: 0.75rem;
            opacity: 0.7;
            margin-top: 1rem;
        }

        .trust-indicators {
            display: flex;
            justify-content: center;
            gap: 3rem;
            margin-top: 2rem;
            flex-wrap: wrap;
        }

        .trust-item {
            text-align: center;
        }

        .trust-item strong {
            display: block;
            font-size: 1.5rem;
            color: #ffd700;
        }

        .trust-item span {
            font-size: 0.875rem;
            opacity: 0.8;
        }


        .section {
            padding: 4rem 0;
        }

        .section-title {
            font-size: clamp(1.75rem, 4vw, 2.5rem);
            text-align: center;
            margin-bottom: 3rem;
            background: linear-gradient(45deg, #ff6b35, #ffd700);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .intro-section {
            background: rgba(255, 255, 255, 0.02);
            padding: 4rem 0;
        }

        .lead-text {
            font-size: 1.125rem;
            line-height: 1.8;
            margin-bottom: 2rem;
            text-align: center;
        }

        .intro-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            margin: 3rem 0;
        }

        .intro-card {
            background: rgba(255, 255, 255, 0.05);
            padding: 2rem;
            border-radius: 1rem;
            backdrop-filter: blur(10px);
        }

        .intro-card h3 {
            color: #ffd700;
            margin-bottom: 1rem;
        }

        .key-facts {
            background: rgba(255, 255, 255, 0.05);
            padding: 2rem;
            border-radius: 1rem;
            margin: 2rem 0;
        }

        .facts-list {
            list-style: none;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1rem;
        }

        .facts-list li {
            padding: 0.5rem 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }


        .games-categories {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin: 3rem 0;
        }

        .game-category {
            background: rgba(255, 255, 255, 0.05);
            padding: 2rem;
            border-radius: 1rem;
            text-align: center;
            transition: transform 0.3s;
            backdrop-filter: blur(10px);
        }

        .game-category:hover {
            transform: translateY(-5px);
        }


        .games-intro img {
            display: block;
            margin: 0 auto;
            max-width: 100%;
            height: auto;
        }

        .category-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
        }

        .category-count {
            color: #ffd700;
            font-weight: 600;
            margin: 0.5rem 0;
        }

        .category-providers {
            font-size: 0.875rem;
            opacity: 0.7;
            margin-top: 1rem;
        }

        .table-responsive {
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
        }

        table {
            width: 100%;
            border-collapse: collapse;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 0.5rem;
            overflow: hidden;
        }

        th {
            background: linear-gradient(45deg, #ff6b35, #ffd700);
            color: #1a1a2e;
            padding: 1rem;
            text-align: left;
            font-weight: 600;
        }

        td {
            padding: 1rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        tr:hover {
            background: rgba(255, 255, 255, 0.05);
        }

        .bonus-section {
            background: rgba(255, 255, 255, 0.02);
            padding: 4rem 0;
        }

        .welcome-bonus-section {
            background: rgba(255, 215, 0, 0.05);
            border: 2px solid rgba(255, 215, 0, 0.2);
            border-radius: 1rem;
            padding: 2rem;
            margin: 2rem 0;
        }

        .bonus-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 2rem;
            flex-wrap: wrap;
            gap: 1rem;
        }

        .bonus-tag {
            background: linear-gradient(45deg, #ff6b35, #ffd700);
            color: #1a1a2e;
            padding: 0.25rem 1rem;
            border-radius: 1rem;
            font-weight: 600;
            font-size: 0.875rem;
        }

        .welcome-bonus-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1.5rem;
            margin: 2rem 0;
        }

        .bonus-step {
            background: rgba(255, 255, 255, 0.05);
            padding: 1.5rem;
            border-radius: 0.75rem;
            text-align: center;
            position: relative;
            transition: transform 0.3s;
        }

        .bonus-step:hover {
            transform: translateY(-5px);
        }

        .bonus-step.special {
            background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(255, 215, 0, 0.1));
            border: 2px solid rgba(255, 215, 0, 0.3);
        }

        .step-number {
            font-size: 0.875rem;
            color: #ffd700;
            font-weight: 600;
            margin-bottom: 0.5rem;
        }

        .step-offer {
            font-size: 1.5rem;
            font-weight: 700;
            margin: 0.5rem 0;
        }

        .step-code {
            background: rgba(255, 215, 0, 0.2);
            color: #ffd700;
            padding: 0.25rem 0.75rem;
            border-radius: 0.5rem;
            display: inline-block;
            margin: 0.5rem 0;
            font-family: monospace;
        }

        .step-details {
            font-size: 0.875rem;
            opacity: 0.7;
        }

        .bonus-total {
            text-align: center;
            font-size: 1.25rem;
            margin-top: 2rem;
            padding: 1rem;
            background: rgba(255, 215, 0, 0.1);
            border-radius: 0.5rem;
        }

        .bonus-table {
            min-width: 100%;
            font-size: 0.875rem;
        }

        .bonus-table code {
            background: rgba(255, 215, 0, 0.2);
            padding: 0.25rem 0.5rem;
            border-radius: 0.25rem;
            color: #ffd700;
            font-weight: 600;
        }

        .bonus-table tr.highlight {
            background: rgba(255, 215, 0, 0.05);
        }

        .bonus-terms-section {
            margin-top: 3rem;
        }

        .terms-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin: 2rem 0;
        }

        .term-card {
            background: rgba(255, 255, 255, 0.05);
            padding: 1.5rem;
            border-radius: 0.75rem;
        }

        .term-card h4 {
            color: #ffd700;
            margin-bottom: 1rem;
        }

        .term-card ul {
            list-style: none;
        }

        .term-card li {
            padding: 0.25rem 0;
            font-size: 0.875rem;
        }


        .payment-section {
            background: rgba(255, 255, 255, 0.02);
            padding: 4rem 0;
        }

        .payment-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 1.5rem;
            margin: 2rem 0;
        }

        .payment-method {
            background: rgba(255, 255, 255, 0.05);
            padding: 1.5rem;
            border-radius: 0.75rem;
            text-align: center;
            transition: all 0.3s;
        }

        .payment-method:hover {
            transform: translateY(-5px);
            background: rgba(255, 255, 255, 0.08);
        }

        .payment-icon {
            font-size: 2rem;
            margin-bottom: 0.5rem;
        }

        .payment-details {
            display: flex;
            flex-direction: column;
            gap: 0.25rem;
            margin-top: 0.5rem;
        }

        .payment-details span {
            font-size: 0.75rem;
            opacity: 0.8;
        }

        .deposit-time {
            color: #4ade80;
        }

        .withdrawal-time {
            color: #60a5fa;
        }

        .limits {
            color: #ffd700;
        }

        .process-steps {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin: 2rem 0;
        }

        .process-step {
            text-align: center;
            position: relative;
        }

        .step-num {
            display: inline-block;
            width: 3rem;
            height: 3rem;
            line-height: 3rem;
            background: linear-gradient(45deg, #ff6b35, #ffd700);
            color: #1a1a2e;
            border-radius: 50%;
            font-weight: 700;
            margin-bottom: 1rem;
        }


        .mobile-section {
            padding: 4rem 0;
        }

        .mobile-features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin: 3rem 0;
        }

        .mobile-feature {
            background: rgba(255, 255, 255, 0.05);
            padding: 2rem;
            border-radius: 1rem;
            backdrop-filter: blur(10px);
        }

        .device-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 1.5rem;
            margin: 2rem 0;
        }

        .device {
            background: rgba(255, 255, 255, 0.05);
            padding: 1.5rem;
            border-radius: 0.75rem;
            text-align: center;
        }

        .vip-levels {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 1.5rem;
            margin: 3rem 0;
        }

        .vip-level {
            background: rgba(255, 255, 255, 0.05);
            padding: 2rem 1.5rem;
            border-radius: 1rem;
            text-align: center;
            position: relative;
            transition: transform 0.3s;
        }

        .vip-level:hover {
            transform: translateY(-5px);
        }

        .vip-level.bronze { border-top: 3px solid #cd7f32; }
        .vip-level.silver { border-top: 3px solid #c0c0c0; }
        .vip-level.gold { border-top: 3px solid #ffd700; }
        .vip-level.platinum { border-top: 3px solid #e5e4e2; }
        .vip-level.diamond { border-top: 3px solid #b9f2ff; }

        .level-badge {
            background: rgba(255, 215, 0, 0.2);
            color: #ffd700;
            padding: 0.25rem 0.75rem;
            border-radius: 1rem;
            font-size: 0.75rem;
            display: inline-block;
            margin: 0.5rem 0;
        }

        .vip-level ul {
            list-style: none;
            margin-top: 1rem;
        }

        .vip-level li {
            padding: 0.25rem 0;
            font-size: 0.875rem;
        }

        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin: 2rem 0;
        }

        .benefit {
            background: rgba(255, 255, 255, 0.05);
            padding: 1.5rem;
            border-radius: 0.75rem;
        }


        .support-channels {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 2rem;
            margin: 3rem 0;
        }

        .support-channel {
            background: rgba(255, 255, 255, 0.05);
            padding: 2rem;
            border-radius: 1rem;
            text-align: center;
            transition: transform 0.3s;
        }

        .support-channel:hover {
            transform: translateY(-5px);
        }

        .channel-icon {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }

        .channel-link {
            display: inline-block;
            margin-top: 1rem;
            color: #ffd700;
            font-weight: 600;
        }

        .topics-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin: 2rem 0;
        }

        .topic {
            background: rgba(255, 255, 255, 0.05);
            padding: 1.5rem;
            border-radius: 0.75rem;
        }

        .topic h4 {
            color: #ffd700;
            margin-bottom: 1rem;
        }

        .topic ul {
            list-style: none;
        }

        .topic li {
            padding: 0.25rem 0;
            font-size: 0.875rem;
            opacity: 0.8;
        }


        .faq-section {
            background: rgba(255, 255, 255, 0.02);
            padding: 4rem 0;
        }

        .faq-item {
            background: rgba(255, 255, 255, 0.05);
            margin-bottom: 1rem;
            border-radius: 0.75rem;
            overflow: hidden;
        }

        .faq-question {
            width: 100%;
            padding: 1.5rem;
            background: none;
            border: none;
            color: #ffffff;
            font-size: 1.125rem;
            font-weight: 600;
            text-align: left;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: background 0.3s;
        }

        .faq-question:hover {
            background: rgba(255, 255, 255, 0.05);
        }

        .faq-icon {
            font-size: 1.5rem;
            transition: transform 0.3s;
        }

        .faq-answer {
            padding: 0 1.5rem;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s, padding 0.3s;
        }

        .faq-answer.active {
            padding: 0 1.5rem 1.5rem;
            max-height: 500px;
        }

        .faq-item.active .faq-icon {
            transform: rotate(45deg);
        }


        .responsible-gaming {
            background: rgba(255, 107, 53, 0.05);
            padding: 4rem 0;
        }

        .tools-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin: 2rem 0;
        }

        .tool-card {
            background: rgba(255, 255, 255, 0.05);
            padding: 1.5rem;
            border-radius: 0.75rem;
        }

        .resources-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin: 2rem 0;
        }

        .resource {
            background: rgba(255, 255, 255, 0.05);
            padding: 1.5rem;
            border-radius: 0.75rem;
            text-align: center;
        }

        .warning-box {
            background: rgba(255, 107, 53, 0.1);
            border: 2px solid rgba(255, 107, 53, 0.3);
            padding: 1.5rem;
            border-radius: 0.75rem;
            margin: 2rem 0;
        }


        .final-cta {
            background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(255, 215, 0, 0.1));
            padding: 4rem 0;
            text-align: center;
        }

        .cta-bonus-display {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 2rem;
            margin: 2rem 0;
            flex-wrap: wrap;
        }

        .bonus-item {
            text-align: center;
        }

        .bonus-amount {
            font-size: 3rem;
            font-weight: 800;
            background: linear-gradient(45deg, #ff6b35, #ffd700);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .bonus-desc {
            display: block;
            font-size: 1rem;
            opacity: 0.8;
        }

        .bonus-separator {
            font-size: 2rem;
            color: #ffd700;
        }

        .cta-buttons {
            display: flex;
            justify-content: center;
            gap: 1rem;
            margin: 2rem 0;
            flex-wrap: wrap;
        }

        .btn-primary, .btn-secondary {
            padding: 1rem 2.5rem;
            border-radius: 2rem;
            font-weight: 600;
            transition: all 0.3s;
        }

        .btn-primary {
            background: linear-gradient(45deg, #ff6b35, #ffd700);
            color: #1a1a2e;
        }

        .btn-secondary {
            background: transparent;
            border: 2px solid #ffd700;
            color: #ffd700;
        }


        .site-footer {
            background: rgba(0, 0, 0, 0.8);
            padding: 4rem 0 2rem;
            margin-top: 4rem;
        }

        .footer-top {
            display: grid;
            grid-template-columns: 2fr 3fr;
            gap: 4rem;
            margin-bottom: 3rem;
        }

        .footer-brand {
            max-width: 400px;
        }

        .footer-logo {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            margin-bottom: 1rem;
        }

        .footer-licenses {
            display: flex;
            gap: 1rem;
            margin-top: 1rem;
            flex-wrap: wrap;
        }

        .footer-licenses img {
            height: 40px;
            width: auto;
        }

        .footer-links {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
        }

        .footer-column h4 {
            color: #ffd700;
            margin-bottom: 1rem;
        }

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

        .footer-column li {
            margin-bottom: 0.5rem;
        }

        .footer-column a {
            color: rgba(255, 255, 255, 0.7);
            transition: color 0.3s;
        }

        .footer-column a:hover {
            color: #ffd700;
        }

        .footer-middle {
            padding: 2rem 0;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .payment-logos, .provider-logos {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
            margin-top: 1rem;
        }

        .payment-logos img {
            width: auto;
            height: 40px;
            display: block;

        }

        .provider-logos img {
            width: auto;
            height: 40px;
            display: block;

        }


        .footer-bottom {
            padding-top: 2rem;
        }

        .legal-text {
            font-size: 0.875rem;
            opacity: 0.7;
            margin-bottom: 2rem;
        }

        .footer-links-bottom {
            display: flex;
            justify-content: center;
            gap: 2rem;
            flex-wrap: wrap;
            margin: 2rem 0;
        }

        .copyright {
            text-align: center;
            font-size: 0.875rem;
            opacity: 0.5;
        }


        .cookie-notice {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: rgba(0, 0, 0, 0.95);
            padding: 1rem;
            z-index: 9999;
            display: none;
        }

        .cookie-content {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 2rem;
        }

        .cookie-accept {
            background: linear-gradient(45deg, #ff6b35, #ffd700);
            color: #1a1a2e;
            padding: 0.75rem 2rem;
            border: none;
            border-radius: 2rem;
            font-weight: 600;
            cursor: pointer;
        }

        .age-modal {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.95);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 10000;
        }

        .age-modal-content {
            background: linear-gradient(135deg, #1a1a2e, #0f3460);
            padding: 3rem;
            border-radius: 1rem;
            text-align: center;
            max-width: 400px;
        }

        .age-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            margin-top: 2rem;
        }

        .age-buttons button {
            padding: 0.75rem 2rem;
            border-radius: 2rem;
            border: none;
            font-weight: 600;
            cursor: pointer;
        }


        @media (max-width: 1024px) {
            .container {
                padding: 0 15px;
            }
            
            .footer-links {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .footer-top {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 768px) {
            .nav-main {
                display: none;
            }
            
            .nav-main[style*="display: flex"] {
                display: flex !important;
            }
            
            .mobile-menu-toggle {
                display: flex;
            }
            
            .mobile-menu-toggle.active span:nth-child(1) {
                transform: rotate(45deg) translate(6px, 6px);
            }
            
            .mobile-menu-toggle.active span:nth-child(2) {
                opacity: 0;
            }
            
            .mobile-menu-toggle.active span:nth-child(3) {
                transform: rotate(-45deg) translate(6px, -6px);
            }
            
            .header-actions {
                gap: 0.5rem;
            }
            
            .btn-login, .btn-register {
                padding: 0.5rem 1rem;
                font-size: 0.875rem;
            }
            
            .hero-section {
                padding: 2rem 0;
            }
            
            .hero-features {
                flex-direction: column;
                gap: 1rem;
            }
            
            .bonus-box-content {
                flex-direction: column;
            }
            
            .trust-indicators {
                gap: 1.5rem;
            }
            
            table {
                font-size: 0.75rem;
            }
            
            th, td {
                padding: 0.75rem 0.5rem;
            }
            
            .section {
                padding: 3rem 0;
            }
            
            .games-categories,
            .payment-grid,
            .vip-levels {
                grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            }
            
            .footer-links {
                grid-template-columns: 1fr;
                gap: 1rem;
            }
            
            .payment-logos img,
            .provider-logos img {
                height: 30px;
                width: auto;
            }
            
            .cookie-content {
                flex-direction: column;
                text-align: center;
            }
        }


        @media (max-width: 480px) {
            html {
                font-size: 14px;
            }
            
            .hero-title {
                font-size: 1.75rem;
            }
            
            .section-title {
                font-size: 1.5rem;
                margin-bottom: 2rem;
            }
            
            .logo-badge {
                display: none;
            }
            
            .header-container {
                padding: 0.75rem;
            }
            
            .hero-bonus-box {
                padding: 1.5rem 1rem;
            }
            
            .bonus-percentage,
            .bonus-value,
            .spins-number {
                font-size: 2rem;
            }
            
            .hero-cta-button {
                padding: 0.875rem 2rem;
                font-size: 1rem;
            }
            
            .intro-grid,
            .games-categories,
            .payment-grid,
            .mobile-features,
            .vip-levels,
            .support-channels,
            .tools-grid,
            .resources-grid {
                grid-template-columns: 1fr;
                gap: 1rem;
            }
            
            .welcome-bonus-grid {
                grid-template-columns: 1fr;
            }
            
            .table-responsive {
                position: relative;
            }
                        
            .process-steps {
                grid-template-columns: 1fr;
            }
            
            .footer-links-bottom {
                flex-direction: column;
                gap: 1rem;
                text-align: center;
            }
            
            .age-modal-content {
                margin: 1rem;
                padding: 2rem 1rem;
            }
        }


        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes pulse {
            0% {
                box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.4);
            }
            70% {
                box-shadow: 0 0 0 20px rgba(255, 215, 0, 0);
            }
            100% {
                box-shadow: 0 0 0 0 rgba(255, 215, 0, 0);
            }
        }

        .fade-in {
            animation: fadeIn 0.6s ease-out;
        }

        .pulse {
            animation: pulse 2s infinite;
        }


        .text-center { text-align: center; }
        .text-left { text-align: left; }
        .text-right { text-align: right; }

        .mt-1 { margin-top: 1rem; }
        .mt-2 { margin-top: 2rem; }
        .mt-3 { margin-top: 3rem; }

        .mb-1 { margin-bottom: 1rem; }
        .mb-2 { margin-bottom: 2rem; }
        .mb-3 { margin-bottom: 3rem; }

        .hidden { display: none; }
        .block { display: block; }
        .flex { display: flex; }
        .grid { display: grid; }