/* ===================================================================
   WINOLOT STYLES - Based on Original Design
   Unique prefix: wnt-
   =================================================================== */

/* ===================================================================
   1. CSS VARIABLES & RESET
   =================================================================== */

:root {
    /* Colors from original design */
    --wnt-black: #000000;
    --wnt-dark-blue: #1a1d29;
    --wnt-red: #FF0000;
    --wnt-green: #7CFC00;
    --wnt-yellow: #FFD700;
    --wnt-yellow-dark: #F0C000;
    --wnt-white: #FFFFFF;
    --wnt-gray: #808080;
    --wnt-gray-light: #CCCCCC;
    
    /* Typography */
    --wnt-font-main: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Arial', sans-serif;
    --wnt-font-impact: Impact, 'Arial Black', sans-serif;
    
    /* Spacing */
    --wnt-container-max: 1400px;
    --wnt-spacing-xs: 0.5rem;
    --wnt-spacing-sm: 1rem;
    --wnt-spacing-md: 2rem;
    --wnt-spacing-lg: 3rem;
    --wnt-spacing-xl: 4rem;
    
    /* Other */
    --wnt-transition: all 0.3s ease;
    --wnt-radius: 8px;
    --wnt-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--wnt-font-main);
    background-color: var(--wnt-black);
    color: var(--wnt-white);
    line-height: 1.6;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

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

ul {
    list-style: none;
}

/* ===================================================================
   2. TYPOGRAPHY
   =================================================================== */

h1, h2, h3, h4, h5, h6 {
    font-family: var(--wnt-font-impact);
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1.2;
}

h1 {
    font-size: clamp(2rem, 5vw, 4rem);
}

h2 {
    font-size: clamp(1.75rem, 4vw, 3rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

/* ===================================================================
   3. LAYOUT UTILITIES
   =================================================================== */

.wnt-container {
    max-width: var(--wnt-container-max);
    margin: 0 auto;
    padding: 0 var(--wnt-spacing-sm);
}

.wnt-main {
    min-height: 100vh;
}

/* ===================================================================
   4. HEADER / NAVIGATION
   =================================================================== */

.wnt-header {
    background-color: var(--wnt-black);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.wnt-nav-container {
    padding: 0;
}

.wnt-nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2rem;
    gap: 2rem;
}

/* Logo */
.wnt-logo a {
    display: flex;
    align-items: center;
    font-family: var(--wnt-font-impact);
    font-size: 2rem;
    font-weight: 900;
    letter-spacing: 1px;
}

.wnt-logo-win {
    color: var(--wnt-white);
}

.wnt-logo-o {
    color: var(--wnt-red);
}

.wnt-logo-lot {
    color: var(--wnt-green);
}

/* Navigation Menu */
.wnt-nav-menu {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex: 1;
    justify-content: center;
}

.wnt-nav-menu li a {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--wnt-white);
    transition: var(--wnt-transition);
    white-space: nowrap;
    letter-spacing: 0.5px;
}

.wnt-nav-menu li a:hover {
    color: var(--wnt-yellow);
}

.wnt-nav-promo {
    color: var(--wnt-green) !important;
}

/* Right Side: Language + Buttons */
.wnt-nav-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.wnt-lang-selector {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: var(--wnt-radius);
    cursor: pointer;
}

.wnt-flag {
    width: 24px;
    height: 16px;
    border-radius: 2px;
}

.wnt-lang-selector span {
    font-size: 0.875rem;
    font-weight: 600;
}

/* Header Buttons */
.wnt-btn-login,
.wnt-btn-register {
    padding: 0.6rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: var(--wnt-radius);
    transition: var(--wnt-transition);
    letter-spacing: 0.5px;
}

.wnt-btn-login {
    background-color: var(--wnt-yellow);
    color: var(--wnt-black);
}

.wnt-btn-login:hover {
    background-color: var(--wnt-yellow-dark);
    transform: translateY(-2px);
}

.wnt-btn-register {
    background-color: var(--wnt-yellow);
    color: var(--wnt-black);
}

.wnt-btn-register:hover {
    background-color: var(--wnt-yellow-dark);
    transform: translateY(-2px);
}

/* Mobile Menu Toggle */
.wnt-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 0.5rem;
}

.wnt-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--wnt-white);
    border-radius: 2px;
    transition: var(--wnt-transition);
}

/* ===================================================================
   5. HERO SECTION
   =================================================================== */

.wnt-hero {
    min-height: 600px;
    background: 
        linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.5)),
        url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1600 900"%3E%3Cdefs%3E%3ClinearGradient id="bg" x1="0%25" y1="0%25" x2="0%25" y2="100%25"%3E%3Cstop offset="0%25" style="stop-color:%231a2a1a;stop-opacity:1" /%3E%3Cstop offset="100%25" style="stop-color:%23000000;stop-opacity:1" /%3E%3C/linearGradient%3E%3C/defs%3E%3Crect fill="url(%23bg)" width="1600" height="900"/%3E%3C/svg%3E');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 4rem 2rem;
    position: relative;
}

.wnt-hero-content {
    max-width: 600px;
    margin-left: 5%;
}

.wnt-hero-title {
    margin-bottom: 2rem;
}

.wnt-hero-line1 {
    display: block;
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--wnt-white);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.wnt-hero-amount {
    display: block;
    font-size: clamp(3rem, 6vw, 5rem);
    color: var(--wnt-yellow);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.wnt-hero-line3 {
    display: block;
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--wnt-yellow);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.wnt-hero-line4 {
    display: block;
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    color: var(--wnt-white);
    line-height: 1.2;
}

.wnt-btn-hero {
    display: inline-block;
    padding: 1.5rem 3rem;
    background-color: var(--wnt-yellow);
    color: var(--wnt-black);
    font-size: 1.5rem;
    font-weight: 900;
    text-transform: uppercase;
    border-radius: var(--wnt-radius);
    transition: var(--wnt-transition);
    letter-spacing: 1px;
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.3);
}

.wnt-btn-hero:hover {
    background-color: var(--wnt-yellow-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

/* ===================================================================
   6. SECTIONS - GENERAL
   =================================================================== */

.wnt-section-title {
    text-align: center;
    margin-bottom: 1rem;
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--wnt-white);
}

.wnt-section-subtitle {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 1.1rem;
    color: var(--wnt-gray-light);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* ===================================================================
   7. BONUS SECTION
   =================================================================== */

.wnt-bonus-section {
    padding: 4rem 0;
    background-color: var(--wnt-black);
}

.wnt-bonus-highlight-card {
    background: linear-gradient(135deg, var(--wnt-dark-blue) 0%, #0f1419 100%);
    border-radius: var(--wnt-radius);
    padding: 3rem;
    text-align: center;
    box-shadow: var(--wnt-shadow);
}

.wnt-bonus-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: var(--wnt-red);
    color: var(--wnt-white);
    font-weight: 700;
    border-radius: 20px;
    margin-bottom: 1rem;
    font-size: 0.875rem;
}

.wnt-bonus-amount {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    color: var(--wnt-yellow);
    margin-bottom: 0.5rem;
}

.wnt-bonus-subtitle {
    font-size: 1.2rem;
    color: var(--wnt-gray-light);
    margin-bottom: 2rem;
}

.wnt-bonus-breakdown {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.wnt-bonus-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.wnt-bonus-number {
    width: 50px;
    height: 50px;
    background-color: var(--wnt-yellow);
    color: var(--wnt-black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 900;
}

.wnt-bonus-detail {
    font-size: 0.95rem;
    color: var(--wnt-white);
}

.wnt-btn-accent {
    display: inline-block;
    margin-top: 1rem;
    padding: 1rem 2rem;
    background-color: var(--wnt-green);
    color: var(--wnt-black);
    font-weight: 700;
    text-transform: uppercase;
    border-radius: var(--wnt-radius);
    transition: var(--wnt-transition);
}

.wnt-btn-accent:hover {
    background-color: #6BE000;
    transform: translateY(-2px);
}

/* ===================================================================
   8. QUICK FACTS TABLE
   =================================================================== */

.wnt-quick-facts {
    padding: 4rem 0;
    background-color: var(--wnt-dark-blue);
}

.wnt-facts-table table {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: var(--wnt-radius);
    overflow: hidden;
}

.wnt-facts-table tr {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.wnt-facts-table tr:last-child {
    border-bottom: none;
}

.wnt-facts-table td {
    padding: 1rem 1.5rem;
}

.wnt-facts-table td:first-child {
    font-weight: 700;
    width: 40%;
}

.wnt-facts-table td:last-child {
    color: var(--wnt-gray-light);
}

/* ===================================================================
   9. RECOMMENDED GAMES
   =================================================================== */

.wnt-recommended-games {
    padding: 4rem 0;
    background: linear-gradient(180deg, #0a0e1a 0%, #000000 100%);
}

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

.wnt-game-card-simple {
    background-color: rgba(255, 255, 255, 0.03);
    border-radius: var(--wnt-radius);
    overflow: hidden;
    transition: var(--wnt-transition);
    cursor: pointer;
}

.wnt-game-card-simple:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.2);
}

.wnt-game-img-wrapper {
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, #1a2a3a 0%, #0f1922 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.wnt-game-placeholder {
    font-size: 4rem;
}

.wnt-game-title {
    padding: 1rem;
    text-align: center;
    font-weight: 700;
    font-size: 1.1rem;
}

.wnt-games-cta-center {
    text-align: center;
}

.wnt-btn-secondary {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: transparent;
    color: var(--wnt-white);
    border: 2px solid var(--wnt-white);
    font-weight: 700;
    text-transform: uppercase;
    border-radius: var(--wnt-radius);
    transition: var(--wnt-transition);
}

.wnt-btn-secondary:hover {
    background-color: var(--wnt-white);
    color: var(--wnt-black);
}

/* ===================================================================
   10. DUAL OFFER (CASINO + SPORTS)
   =================================================================== */

.wnt-dual-offer {
    padding: 4rem 0;
    background-color: var(--wnt-black);
}

.wnt-offer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.wnt-offer-card {
    background: linear-gradient(135deg, var(--wnt-dark-blue) 0%, #0f1419 100%);
    padding: 2rem;
    border-radius: var(--wnt-radius);
    box-shadow: var(--wnt-shadow);
}

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

.wnt-offer-title {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--wnt-yellow);
}

.wnt-offer-desc {
    margin-bottom: 1.5rem;
    color: var(--wnt-gray-light);
    line-height: 1.6;
}

.wnt-offer-list {
    list-style: none;
    margin-bottom: 2rem;
}

.wnt-offer-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--wnt-gray-light);
}

.wnt-offer-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--wnt-green);
    font-weight: 700;
}

.wnt-btn-primary {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: var(--wnt-yellow);
    color: var(--wnt-black);
    font-weight: 700;
    text-transform: uppercase;
    border-radius: var(--wnt-radius);
    transition: var(--wnt-transition);
    width: 100%;
    text-align: center;
}

.wnt-btn-primary:hover {
    background-color: var(--wnt-yellow-dark);
    transform: translateY(-2px);
}

/* ===================================================================
   11. PAYMENT METHODS
   =================================================================== */

.wnt-payments {
    padding: 4rem 0;
    background-color: var(--wnt-dark-blue);
}

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

.wnt-payment-item {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 1.5rem 1rem;
    border-radius: var(--wnt-radius);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    transition: var(--wnt-transition);
}

.wnt-payment-item:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

.wnt-payment-icon {
    font-size: 2rem;
}

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

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

.wnt-feature-icon {
    font-size: 1.5rem;
}

.wnt-btn-ghost {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: transparent;
    color: var(--wnt-white);
    border: 2px solid var(--wnt-gray);
    font-weight: 700;
    text-transform: uppercase;
    border-radius: var(--wnt-radius);
    transition: var(--wnt-transition);
}

.wnt-btn-ghost:hover {
    border-color: var(--wnt-yellow);
    color: var(--wnt-yellow);
}

/* ===================================================================
   12. MOBILE SECTION
   =================================================================== */

.wnt-mobile-section {
    padding: 4rem 0;
    background-color: var(--wnt-black);
}

.wnt-mobile-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    align-items: center;
}

.wnt-mobile-text h2 {
    margin-bottom: 1rem;
}

.wnt-mobile-text p {
    margin-bottom: 2rem;
    color: var(--wnt-gray-light);
    line-height: 1.8;
}

.wnt-mobile-features {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.wnt-mobile-feature {
    padding: 0.5rem 0;
    color: var(--wnt-gray-light);
}

.wnt-phone-mockup {
    font-size: 15rem;
    text-align: center;
    opacity: 0.3;
}

/* ===================================================================
   13. HOW TO START
   =================================================================== */

.wnt-how-to-start {
    padding: 4rem 0;
    background-color: var(--wnt-dark-blue);
}

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

.wnt-step-card {
    background-color: rgba(0, 0, 0, 0.3);
    padding: 2rem;
    border-radius: var(--wnt-radius);
    text-align: center;
}

.wnt-step-number {
    width: 60px;
    height: 60px;
    background-color: var(--wnt-yellow);
    color: var(--wnt-black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 900;
    margin: 0 auto 1rem;
}

.wnt-step-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.wnt-step-desc {
    color: var(--wnt-gray-light);
    line-height: 1.6;
}

.wnt-start-cta {
    text-align: center;
}

.wnt-btn-huge {
    display: inline-block;
    padding: 1.5rem 3rem;
    background-color: var(--wnt-yellow);
    color: var(--wnt-black);
    font-size: 1.3rem;
    font-weight: 900;
    text-transform: uppercase;
    border-radius: var(--wnt-radius);
    transition: var(--wnt-transition);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.3);
}

.wnt-btn-huge:hover {
    background-color: var(--wnt-yellow-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

/* ===================================================================
   14. WHY CHOOSE US
   =================================================================== */

.wnt-why-us {
    padding: 4rem 0;
    background-color: var(--wnt-black);
}

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

.wnt-benefit-card {
    background: linear-gradient(135deg, var(--wnt-dark-blue) 0%, #0f1419 100%);
    padding: 2rem;
    border-radius: var(--wnt-radius);
    text-align: center;
    transition: var(--wnt-transition);
}

.wnt-benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.2);
}

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

.wnt-benefit-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--wnt-yellow);
}

.wnt-benefit-card p {
    color: var(--wnt-gray-light);
    line-height: 1.6;
}

/* ===================================================================
   15. FAQ SECTION
   =================================================================== */

.wnt-faq {
    padding: 4rem 0;
    background-color: var(--wnt-dark-blue);
}

.wnt-faq-grid {
    display: grid;
    gap: 1rem;
    max-width: 900px;
    margin: 0 auto;
}

.wnt-faq-item {
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: var(--wnt-radius);
    overflow: hidden;
}

.wnt-faq-question {
    padding: 1.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--wnt-transition);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.wnt-faq-question:after {
    content: "+";
    font-size: 1.5rem;
    font-weight: 700;
}

.wnt-faq-open .wnt-faq-question:after {
    content: "-";
}

.wnt-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.wnt-faq-open .wnt-faq-answer {
    max-height: 500px;
}

.wnt-faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: var(--wnt-gray-light);
    line-height: 1.8;
}

/* ===================================================================
   16. RESPONSIBLE GAMING
   =================================================================== */

.wnt-responsible {
    padding: 4rem 0;
    background-color: var(--wnt-black);
}

.wnt-responsible-content {
    display: grid;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.wnt-responsible-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--wnt-yellow);
}

.wnt-responsible-item p {
    color: var(--wnt-gray-light);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.wnt-help-links {
    list-style: disc;
    padding-left: 2rem;
    margin: 1rem 0;
}

.wnt-help-links li {
    margin: 0.5rem 0;
}

.wnt-help-links a {
    color: var(--wnt-yellow);
    text-decoration: underline;
}

.wnt-age-warning {
    color: var(--wnt-red);
    font-weight: 700;
    margin-top: 1rem;
}

/* ===================================================================
   17. FINAL CTA
   =================================================================== */

.wnt-final-cta {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--wnt-dark-blue) 0%, #0f1419 100%);
    text-align: center;
}

.wnt-final-cta h2 {
    margin-bottom: 1rem;
}

.wnt-final-cta p {
    font-size: 1.2rem;
    color: var(--wnt-gray-light);
    margin-bottom: 2rem;
}

.wnt-btn-massive {
    display: inline-block;
    padding: 1.5rem 3rem;
    background-color: var(--wnt-yellow);
    color: var(--wnt-black);
    font-size: 1.5rem;
    font-weight: 900;
    text-transform: uppercase;
    border-radius: var(--wnt-radius);
    transition: var(--wnt-transition);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.3);
}

.wnt-btn-massive:hover {
    background-color: var(--wnt-yellow-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

/* ===================================================================
   18. UPDATE INFO
   =================================================================== */

.wnt-update-info {
    padding: 1rem 0;
    background-color: rgba(0, 0, 0, 0.3);
    text-align: center;
    font-size: 0.875rem;
    color: var(--wnt-gray);
}

/* ===================================================================
   19. FOOTER
   =================================================================== */

.wnt-footer {
    background-color: var(--wnt-black);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 3rem 0 1rem;
}

.wnt-footer-content {
    display: grid;
    grid-template-columns: 1fr 3fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.wnt-footer-brand {
    max-width: 300px;
}

.wnt-footer-logo {
    font-family: var(--wnt-font-impact);
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 1rem;
}

.wnt-footer-desc {
    color: var(--wnt-gray-light);
    line-height: 1.6;
    font-size: 0.9rem;
}

.wnt-footer-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
}

.wnt-footer-col h4 {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: var(--wnt-yellow);
}

.wnt-footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.wnt-footer-col a {
    color: var(--wnt-gray-light);
    font-size: 0.9rem;
    transition: var(--wnt-transition);
}

.wnt-footer-col a:hover {
    color: var(--wnt-yellow);
}

.wnt-trust-section {
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin: 2rem 0;
}

.wnt-trust-badges {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.wnt-badge {
    padding: 0.5rem 1rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.wnt-footer-bottom {
    text-align: center;
    padding-top: 2rem;
}

.wnt-footer-bottom p {
    color: var(--wnt-gray);
    font-size: 0.875rem;
    margin: 0.5rem 0;
}

.wnt-footer-warning {
    color: var(--wnt-gray-light);
    font-style: italic;
}

/* ===================================================================
   20. RESPONSIVE - MOBILE
   =================================================================== */

@media (max-width: 1024px) {
    .wnt-nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--wnt-black);
        flex-direction: column;
        padding: 2rem;
        box-shadow: var(--wnt-shadow);
    }
    
    .wnt-nav-menu.wnt-menu-active {
        display: flex;
    }
    
    .wnt-menu-toggle {
        display: flex;
    }
    
    .wnt-hero-content {
        margin-left: 0;
        max-width: 100%;
        text-align: center;
    }
    
    .wnt-footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .wnt-nav-right {
        gap: 0.5rem;
    }
    
    .wnt-lang-selector {
        padding: 0.5rem;
    }
    
    .wnt-btn-login,
    .wnt-btn-register {
        padding: 0.5rem 1rem;
        font-size: 0.75rem;
    }
    
    .wnt-hero {
        min-height: 500px;
        padding: 2rem 1rem;
    }
    
    .wnt-bonus-breakdown {
        flex-direction: column;
        gap: 1rem;
    }
    
    .wnt-games-grid-simple {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1rem;
    }
    
    .wnt-payment-grid {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    }
}

@media (max-width: 480px) {
    .wnt-logo a {
        font-size: 1.5rem;
    }
    
    .wnt-hero-line1 {
        font-size: 1.5rem;
    }
    
    .wnt-hero-amount {
        font-size: 2.5rem;
    }
    
    .wnt-hero-line3 {
        font-size: 2rem;
    }
    
    .wnt-hero-line4 {
        font-size: 1.2rem;
    }
    
    .wnt-btn-hero {
        padding: 1rem 2rem;
        font-size: 1.2rem;
    }
    
    .wnt-games-grid-simple {
        grid-template-columns: 1fr;
    }
}

/* ===================================================================
   21. BONUSES PAGE SPECIFIC STYLES
   =================================================================== */

/* Hero Bonuses Variant */
.wnt-hero-bonuses {
    background: linear-gradient(to bottom, rgba(0,0,0,0.4), rgba(0,0,0,0.6)),
                url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1600 900"%3E%3Cdefs%3E%3ClinearGradient id="bg2" x1="0%25" y1="0%25" x2="100%25" y2="100%25"%3E%3Cstop offset="0%25" style="stop-color:%23FFD700;stop-opacity:0.2" /%3E%3Cstop offset="100%25" style="stop-color:%23000000;stop-opacity:1" /%3E%3C/linearGradient%3E%3C/defs%3E%3Crect fill="url(%23bg2)" width="1600" height="900"/%3E%3C/svg%3E');
    min-height: 500px;
}

/* Bonus Main Section */
.wnt-bonus-main {
    padding: 4rem 0;
    background-color: var(--wnt-black);
}

.wnt-bonus-hero-card {
    background: linear-gradient(135deg, var(--wnt-dark-blue) 0%, #0f1419 100%);
    border-radius: var(--wnt-radius);
    padding: 3rem;
    text-align: center;
    margin-bottom: 3rem;
}

.wnt-bonus-main-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background-color: var(--wnt-red);
    color: var(--wnt-white);
    font-weight: 700;
    border-radius: 25px;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.wnt-bonus-main-amount {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    color: var(--wnt-yellow);
    margin-bottom: 1rem;
    font-family: var(--wnt-font-impact);
}

.wnt-bonus-main-desc {
    font-size: 1.1rem;
    color: var(--wnt-gray-light);
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

/* Deposits Grid */
.wnt-deposits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.wnt-deposit-card {
    background: linear-gradient(135deg, var(--wnt-dark-blue) 0%, #0f1419 100%);
    padding: 2rem;
    border-radius: var(--wnt-radius);
    text-align: center;
    border: 2px solid transparent;
    transition: var(--wnt-transition);
}

.wnt-deposit-card:hover {
    border-color: var(--wnt-yellow);
    transform: translateY(-5px);
}

.wnt-deposit-number {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--wnt-green);
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.wnt-deposit-amount {
    font-size: 2rem;
    font-weight: 900;
    color: var(--wnt-yellow);
    margin-bottom: 0.5rem;
}

.wnt-deposit-fs {
    font-size: 1.2rem;
    color: var(--wnt-white);
    margin-bottom: 1.5rem;
}

.wnt-deposit-details {
    list-style: none;
    text-align: left;
    margin-bottom: 2rem;
}

.wnt-deposit-details li {
    padding: 0.5rem 0;
    color: var(--wnt-gray-light);
    font-size: 0.95rem;
}

/* Bonus Example */
.wnt-bonus-example {
    background-color: rgba(255, 255, 255, 0.03);
    padding: 2rem;
    border-radius: var(--wnt-radius);
    border-left: 4px solid var(--wnt-yellow);
}

.wnt-bonus-example h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--wnt-yellow);
}

.wnt-example-content p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.wnt-calculation {
    background-color: rgba(0, 0, 0, 0.3);
    padding: 1.5rem;
    border-radius: var(--wnt-radius);
}

.wnt-calc-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    flex-wrap: wrap;
    gap: 1rem;
}

.wnt-calc-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 1rem;
    background-color: var(--wnt-yellow);
    color: var(--wnt-black);
    margin-top: 1rem;
    border-radius: var(--wnt-radius);
    font-size: 1.1rem;
    flex-wrap: wrap;
    gap: 1rem;
}

/* Promo Codes */
.wnt-promo-codes {
    padding: 4rem 0;
    background-color: var(--wnt-dark-blue);
}

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

.wnt-promo-card {
    background: linear-gradient(135deg, #0f1419 0%, var(--wnt-black) 100%);
    padding: 2rem;
    border-radius: var(--wnt-radius);
    text-align: center;
    border: 2px solid rgba(255, 215, 0, 0.2);
}

.wnt-promo-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--wnt-white);
}

.wnt-promo-code {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: var(--wnt-yellow);
    color: var(--wnt-black);
    font-size: 1.5rem;
    font-weight: 900;
    border-radius: var(--wnt-radius);
    margin-bottom: 1rem;
    font-family: 'Courier New', monospace;
    letter-spacing: 2px;
}

.wnt-promo-desc {
    color: var(--wnt-gray-light);
    line-height: 1.6;
    font-size: 0.95rem;
}

.wnt-promo-howto {
    background-color: rgba(0, 0, 0, 0.3);
    padding: 2rem;
    border-radius: var(--wnt-radius);
}

.wnt-promo-howto h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.wnt-steps-inline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.wnt-step-inline {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.wnt-step-num {
    width: 40px;
    height: 40px;
    background-color: var(--wnt-yellow);
    color: var(--wnt-black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    flex-shrink: 0;
}

/* Other Bonuses */
.wnt-other-bonuses {
    padding: 4rem 0;
    background-color: var(--wnt-black);
}

.wnt-bonuses-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.wnt-bonus-item-full {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 2rem;
    background: linear-gradient(135deg, var(--wnt-dark-blue) 0%, #0f1419 100%);
    padding: 2rem;
    border-radius: var(--wnt-radius);
    align-items: start;
}

.wnt-bonus-icon-large {
    font-size: 4rem;
}

.wnt-bonus-content h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: var(--wnt-yellow);
}

.wnt-bonus-value {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--wnt-green);
    margin-bottom: 1rem;
}

.wnt-bonus-content p {
    color: var(--wnt-gray-light);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.wnt-bonus-features {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.5rem;
}

.wnt-bonus-features li {
    padding: 0.5rem 0;
    color: var(--wnt-gray-light);
}

.wnt-bonus-vip {
    border: 2px solid var(--wnt-yellow);
}

.wnt-vip-levels {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.wnt-vip-level {
    background-color: rgba(0, 0, 0, 0.3);
    padding: 1rem;
    border-radius: var(--wnt-radius);
    text-align: center;
    font-size: 0.95rem;
}

/* Wagering Section */
.wnt-wagering-section {
    padding: 4rem 0;
    background-color: var(--wnt-dark-blue);
}

.wnt-wagering-content {
    max-width: 900px;
    margin: 0 auto;
}

.wnt-wagering-intro {
    font-size: 1.2rem;
    color: var(--wnt-gray-light);
    line-height: 1.8;
    margin-bottom: 2rem;
    text-align: center;
}

.wnt-wagering-example {
    background-color: rgba(0, 0, 0, 0.3);
    padding: 2rem;
    border-radius: var(--wnt-radius);
    margin-bottom: 2rem;
}

.wnt-wagering-example h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--wnt-yellow);
}

.wnt-example-box {
    background-color: rgba(255, 215, 0, 0.1);
    padding: 1.5rem;
    border-radius: var(--wnt-radius);
    border-left: 4px solid var(--wnt-yellow);
}

.wnt-example-box p {
    margin-bottom: 0.75rem;
    color: var(--wnt-gray-light);
    line-height: 1.8;
}

.wnt-wagering-tips {
    background-color: rgba(0, 0, 0, 0.3);
    padding: 2rem;
    border-radius: var(--wnt-radius);
}

.wnt-wagering-tips h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--wnt-green);
}

.wnt-wagering-tips ul {
    list-style: none;
}

.wnt-wagering-tips li {
    padding: 0.75rem 0;
    color: var(--wnt-gray-light);
    line-height: 1.6;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.wnt-wagering-tips li:last-child {
    border-bottom: none;
}

/* Terms Summary */
.wnt-terms-summary {
    padding: 4rem 0;
    background-color: var(--wnt-black);
}

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

.wnt-term-item {
    background: linear-gradient(135deg, var(--wnt-dark-blue) 0%, #0f1419 100%);
    padding: 1.5rem;
    border-radius: var(--wnt-radius);
    text-align: center;
}

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

.wnt-term-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    color: var(--wnt-yellow);
}

.wnt-term-item p {
    color: var(--wnt-gray-light);
    line-height: 1.6;
    font-size: 0.95rem;
}

.wnt-terms-note {
    background-color: rgba(255, 215, 0, 0.1);
    padding: 2rem;
    border-radius: var(--wnt-radius);
    border: 2px solid rgba(255, 215, 0, 0.3);
    text-align: center;
}

.wnt-terms-note p {
    color: var(--wnt-gray-light);
    line-height: 1.8;
}

/* Responsive for Bonuses Page */
@media (max-width: 768px) {
    .wnt-bonus-item-full {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .wnt-bonus-icon-large {
        font-size: 3rem;
        margin: 0 auto;
    }
    
    .wnt-deposits-grid {
        grid-template-columns: 1fr;
    }
    
    .wnt-calc-row,
    .wnt-calc-total {
        flex-direction: column;
        text-align: center;
    }
    
    .wnt-steps-inline {
        grid-template-columns: 1fr;
    }
}

/* === BREADCRUMBS FOR SILO STRUCTURE === */
.wnt-breadcrumbs {
    background: rgba(0, 0, 0, 0.3);
    padding: 1rem 0;
    margin-bottom: 2rem;
}

.wnt-breadcrumbs-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

.wnt-breadcrumbs-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 0.9rem;
    color: #ccc;
}

.wnt-breadcrumbs-item {
    display: flex;
    align-items: center;
}

.wnt-breadcrumbs-item:not(:last-child)::after {
    content: '›';
    margin: 0 0.5rem;
    color: #666;
    font-size: 1.2rem;
}

.wnt-breadcrumbs-link {
    color: #FFD700;
    text-decoration: none;
    transition: color 0.3s ease;
}

.wnt-breadcrumbs-link:hover {
    color: #FFF;
    text-decoration: underline;
}

.wnt-breadcrumbs-current {
    color: #FFF;
    font-weight: 500;
}

/* Breadcrumbs Responsive */
@media (max-width: 768px) {
    .wnt-breadcrumbs {
        padding: 0.75rem 0;
        margin-bottom: 1rem;
    }
    
    .wnt-breadcrumbs-container {
        padding: 0 1rem;
    }
    
    .wnt-breadcrumbs-list {
        font-size: 0.85rem;
    }
    
    .wnt-breadcrumbs-item:not(:last-child)::after {
        margin: 0 0.35rem;
    }
}

/* === CONTEXTUAL LINKS IN CONTENT === */
.wnt-contextual-link {
    color: #FFD700;
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

.wnt-contextual-link:hover {
    color: #FFF;
    border-bottom-color: #FFD700;
}

/* === SILO SECTION HIGHLIGHTS === */
.wnt-silo-section {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 69, 0, 0.1));
    border-left: 4px solid #FFD700;
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 8px;
}

.wnt-silo-section h3 {
    color: #FFD700;
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.wnt-silo-section p {
    color: #ccc;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.wnt-silo-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1rem;
}

.wnt-silo-link {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(255, 215, 0, 0.1);
    color: #FFD700;
    text-decoration: none;
    border-radius: 4px;
    border: 1px solid rgba(255, 215, 0, 0.3);
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.wnt-silo-link:hover {
    background: rgba(255, 215, 0, 0.2);
    border-color: #FFD700;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .wnt-silo-section {
        padding: 1rem;
    }
    
    .wnt-silo-links {
        flex-direction: column;
    }
    
    .wnt-silo-link {
        text-align: center;
    }
}
