:root {
    --wazamba-blue: #1a2841; 
    --wazamba-blue-light: #253550; 
    --wazamba-blue-dark: #12192b; 
    --wazamba-green: #7FD700; 
    --wazamba-green-bright: #9FE730; 
    --wazamba-green-dark: #6AB600; 
    --wazamba-orange: #FF8500; 
    --wazamba-orange-bright: #FFA033; 
    --wazamba-yellow: #FFD700; 
    --wazamba-teal: #00CED1; 
    --text-white: #FFFFFF;
    --text-light: #E8E8E8;
    --text-gray: #9E9E9E;
    --text-blue-light: #A8B8D4;
    --border-green: rgba(127, 215, 0, 0.3);
    --border-orange: rgba(255, 133, 0, 0.3);
    --border-subtle: rgba(255, 255, 255, 0.1);
    --card-bg: rgba(37, 53, 80, 0.95);
}


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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-light);
    background: linear-gradient(180deg, var(--wazamba-blue-dark) 0%, var(--wazamba-blue) 100%);
    background-attachment: fixed;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
}


body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 15% 25%, rgba(127, 215, 0, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 85% 75%, rgba(255, 133, 0, 0.03) 0%, transparent 50%),
        radial-gradient(2px 2px at 20% 30%, white, transparent),
        radial-gradient(2px 2px at 60% 70%, white, transparent),
        radial-gradient(1px 1px at 50% 50%, white, transparent),
        radial-gradient(1px 1px at 80% 10%, white, transparent),
        radial-gradient(1px 1px at 90% 60%, white, transparent);
    background-size: 200% 200%, 200% 200%, 200px 200px, 300px 300px, 250px 250px, 150px 150px, 180px 180px;
    background-position: 0% 0%, 100% 100%, 0% 0%, 40% 60%, 130% 270%, 70% 100%, 20% 80%;
    pointer-events: none;
    z-index: 0;
}


.site-banner {
    background: rgba(18, 25, 43, 0.95);
    backdrop-filter: blur(10px);
    color: var(--text-white);
    padding: 0;
    border-bottom: 1px solid var(--border-subtle);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.banner-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    min-height: 75px;
    position: relative;
    z-index: 1;
}

.game-logo {
    margin: 0;
}

.game-logo a {
    color: var(--text-white);
    text-decoration: none;
    font-size: 26px;
    font-weight: 800;
    display: flex;
    align-items: center;
    letter-spacing: 0.5px;
}

.game-logo img {
    max-height: 35px;
    vertical-align: middle;
    margin-right: 12px;
}

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

.action-button {
    background: linear-gradient(135deg, var(--wazamba-green) 0%, var(--wazamba-green-bright) 100%);
    color: var(--text-white);
    padding: 12px 32px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 800;
    font-size: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(127, 215, 0, 0.5);
    text-transform: capitalize;
    letter-spacing: 0.5px;
    border: none;
}

.action-button:hover {
    background: linear-gradient(135deg, var(--wazamba-green-bright) 0%, var(--wazamba-green) 100%);
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 6px 30px rgba(127, 215, 0, 0.7);
}

.center-cta {
    text-align: center;
    margin: 45px 0;
}

.center-cta .action-button {
    font-size: 20px;
    padding: 18px 50px;
    display: inline-block;
    border-radius: 35px;
}


.language-dropdown {
    position: relative;
    display: inline-block;
}

.language-button {
    background: rgba(255, 133, 0, 0.15);
    color: var(--text-light);
    padding: 10px 20px;
    border: 1px solid var(--border-orange);
    border-radius: 25px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    width: auto;
    white-space: nowrap;
    font-weight: 600;
}

.language-button .fi {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    border-radius: 50%;
    border: 2px solid var(--wazamba-orange);
}

.language-button:hover {
    background: rgba(255, 133, 0, 0.25);
    border-color: var(--wazamba-orange);
    transform: translateY(-2px);
}

.dropdown-content {
    display: none;
    position: absolute;
    background: var(--wazamba-blue-light);
    backdrop-filter: blur(15px);
    width: max-content;
    min-width: 150px;
    max-width: 250px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.8);
    z-index: 1001;
    border-radius: 12px;
    border: 1px solid var(--border-orange);
    top: calc(100% + 2px);
    left: 50%;
    transform: translateX(-50%);
    overflow: hidden;
    padding: 8px 0;
}

.dropdown-content a {
    color: var(--text-light);
    padding: 12px 20px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    white-space: nowrap;
    font-weight: 600;
}

.dropdown-content a .fi {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    border-radius: 50%;
    border: 2px solid transparent;
}

.dropdown-content a:hover {
    background: rgba(255, 133, 0, 0.2);
    color: var(--wazamba-orange);
}

.dropdown-content a:hover .fi {
    border-color: var(--wazamba-orange);
}

.language-dropdown:hover .dropdown-content {
    display: block;
}


.page-content-wrapper {
    max-width: 1400px;
    width: 100%;
    margin: 30px auto;
    padding: 20px;
    flex-grow: 1;
    position: relative;
    z-index: 1;
}

.section-heading {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-size: 48px;
    font-weight: 900;
    color: var(--text-white);
    text-shadow: 0 2px 20px rgba(127, 215, 0, 0.4);
    margin-bottom: 15px;
    letter-spacing: 1px;
    background: linear-gradient(135deg, var(--wazamba-yellow) 0%, var(--wazamba-green) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}


.game-demo-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; 
    height: 0;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8);
    margin-bottom: 40px;
    border: 2px solid var(--border-green);
}

.game-demo-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.article-body {
    width: 100%;
    max-width: 100%;
}

.article-body img {
    max-width: 100%;
    height: auto;
    margin: 25px 0;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6);
    border: 1px solid var(--border-subtle);
}

.game-feature-card {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.6);
    margin-bottom: 30px;
    border: 1px solid var(--border-subtle);
    transition: all 0.3s ease;
}

.game-feature-card:hover {
    border-color: var(--border-green);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.7), 0 0 40px rgba(127, 215, 0, 0.1);
    transform: translateY(-3px);
}

.game-feature-card h2 {
    color: var(--wazamba-yellow);
    margin-bottom: 20px;
    font-size: 30px;
    font-weight: 800;
    text-shadow: 0 2px 10px rgba(255, 215, 0, 0.4);
}

.game-feature-card h3 {
    color: var(--wazamba-orange);
    margin-top: 25px;
    margin-bottom: 15px;
    font-size: 24px;
    font-weight: 700;
}

.game-feature-card ol,
.game-feature-card ul {
    margin-left: 30px;
    padding-left: 10px;
    color: var(--text-light);
    line-height: 1.8;
}

.game-feature-card li {
    margin-bottom: 10px;
}

.game-feature-card p {
    margin-bottom: 18px;
    line-height: 1.8;
}

.media-text-block {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-bottom: 30px;
}

.media-text-block img {
    max-width: 300px;
    border-radius: 12px;
    float: none;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6);
    border: 1px solid var(--border-subtle);
}

.media-text-block .text-content {
    flex: 1;
}

table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin: 25px 0;
    background: var(--wazamba-blue-light);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-subtle);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6);
}

th, td {
    padding: 16px 20px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

th {
    background: rgba(127, 215, 0, 0.15);
    color: var(--wazamba-green);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
}

td {
    background: var(--wazamba-blue-light);
    color: var(--text-light);
}

tbody tr:nth-child(even) td {
    background: rgba(26, 40, 65, 0.8);
}


thead tr:first-child th:first-child {
    border-top-left-radius: 12px;
}

thead tr:first-child th:last-child {
    border-top-right-radius: 12px;
}


tbody tr:last-child td:first-child {
    border-bottom-left-radius: 12px;
}

tbody tr:last-child td:last-child {
    border-bottom-right-radius: 12px;
}

tbody tr:last-child td,
tfoot tr:last-child td {
    border-bottom: none;
}


.promo-callout {
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(127, 215, 0, 0.1) 0%, rgba(106, 182, 0, 0.1) 100%);
    backdrop-filter: blur(15px);
    color: var(--text-white);
    padding: 35px;
    border-radius: 20px;
    margin: 45px 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.7);
    border: 2px solid var(--border-green);
    position: relative;
    overflow: hidden;
}

.promo-graphic {
    flex: 0 0 20%;
    margin-right: 30px;
    z-index: 1;
}

.promo-graphic img {
    max-width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6);
    border: 1px solid var(--border-subtle);
}

.promo-text {
    flex: 1;
    z-index: 1;
}

.promo-text span {
    font-size: 24px;
    font-weight: 800;
    color: var(--wazamba-yellow);
    text-shadow: 0 2px 15px rgba(255, 215, 0, 0.5);
}

.promo-action {
    flex: 0 0 25%;
    text-align: center;
    z-index: 1;
}

.promo-action a {
    background: linear-gradient(135deg, var(--wazamba-green) 0%, var(--wazamba-green-bright) 100%);
    color: var(--text-white);
    padding: 16px 40px;
    border-radius: 35px;
    text-decoration: none;
    font-weight: 800;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(127, 215, 0, 0.5);
    display: inline-block;
    text-transform: capitalize;
    letter-spacing: 1px;
}

.promo-action a:hover {
    background: linear-gradient(135deg, var(--wazamba-green-bright) 0%, var(--wazamba-green) 100%);
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 8px 30px rgba(127, 215, 0, 0.7);
}


.site-navigation {
    background: rgba(18, 25, 43, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-subtle);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.6);
}

.site-navigation ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
}

.site-navigation li {
    margin: 0;
}

.site-navigation a {
    display: block;
    padding: 16px 28px;
    color: var(--text-light);
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
    font-weight: 700;
}

.site-navigation a:hover {
    background: rgba(127, 215, 0, 0.1);
    color: var(--wazamba-green);
    border-bottom-color: var(--wazamba-green);
}

.site-navigation a.active {
    background: rgba(127, 215, 0, 0.15);
    color: var(--wazamba-green);
    border-bottom-color: var(--wazamba-green);
    text-shadow: 0 0 10px rgba(127, 215, 0, 0.6);
}

@media (max-width: 768px) {
    .site-navigation ul {
        flex-direction: column;
    }
    .site-navigation a {
        text-align: center;
        padding: 14px 20px;
    }
}


.site-info-bar {
    background: rgba(18, 25, 43, 0.95);
    backdrop-filter: blur(15px);
    color: var(--text-light);
    padding: 35px 0;
    text-align: center;
    margin-top: auto;
    border-top: 1px solid var(--border-subtle);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.8);
    position: relative;
    z-index: 1;
}

.info-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.info-links nav a {
    color: var(--wazamba-orange);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 700;
    font-size: 15px;
}

.info-links nav a:hover {
    color: var(--wazamba-orange-bright);
    text-shadow: 0 0 15px rgba(255, 133, 0, 0.6);
}

.copy-text {
    font-size: 14px;
    color: var(--text-blue-light);
    margin-top: 15px;
}






@media (max-width: 768px) {
    .banner-content {
        flex-direction: column;
        text-align: center;
        padding: 15px 10px;
    }
    
    .game-logo {
        margin-bottom: 20px;
    }
    
    .game-logo a {
        font-size: 24px;
    }
    
    .banner-actions {
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }
    
    .action-button {
        width: 90%;
        max-width: 320px;
        margin: 0 auto;
        padding: 13px 32px;
    }
    
    .center-cta .action-button {
        width: 90%;
        max-width: 380px;
        font-size: 19px;
        padding: 17px 45px;
    }
    
    .language-dropdown {
        width: 90%;
        max-width: 320px;
        margin: 0 auto;
    }
    
    .language-button {
        padding: 12px 20px;
        justify-content: center;
    }
    
    .dropdown-content {
        width: 100%;
        max-width: 220px;
    }
    
    .page-content-wrapper {
        padding: 15px;
        margin: 20px auto;
        width: 100%;
    }
    
    .section-heading {
        margin-bottom: 40px;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .game-demo-container {
        padding-bottom: 75%;
        margin-bottom: 35px;
        border-radius: 12px;
    }
    
    .article-body {
        margin-bottom: 20px;
        width: 100%;
    }
    
    .article-body img {
        max-width: 100%;
        margin: 20px 0;
    }
    
    .game-feature-card {
        padding: 25px;
        margin-bottom: 25px;
        border-radius: 12px;
    }
    
    .game-feature-card h2 {
        font-size: 26px;
        margin-bottom: 18px;
    }
    
    .game-feature-card h3 {
        font-size: 22px;
    }
    
    .game-feature-card ol,
    .game-feature-card ul {
        margin-left: 25px;
        padding-left: 5px;
    }
    
    .media-text-block {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        margin-bottom: 25px;
    }
    
    .media-text-block img {
        max-width: 100%;
        margin: 0;
    }
    
    table {
        margin: 20px 0;
        font-size: 14px;
    }
    
    th, td {
        padding: 12px 15px;
    }
    
    .promo-callout {
        flex-direction: column;
        text-align: center;
        padding: 28px;
        margin: 38px 0;
        border-radius: 15px;
    }
    
    .promo-graphic {
        flex: auto;
        margin-right: 0;
        margin-bottom: 20px;
        width: 75%;
        max-width: 200px;
    }
    
    .promo-text {
        margin: 0 0 20px 0;
    }
    
    .promo-text span {
        font-size: 22px;
    }
    
    .promo-action {
        flex: auto;
        width: 90%;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .promo-action a {
        padding: 15px 35px;
    }
    
    .site-info-bar {
        padding: 25px 0;
    }
    
    .info-links {
        gap: 12px;
    }
    
    .copy-text {
        font-size: 13px;
    }
}


@media (max-width: 480px) {
    .banner-content {
        padding: 12px 5px;
    }
    
    .game-logo img {
        max-height: 45px;
    }
    
    .game-logo a {
        font-size: 22px;
    }
    
    .action-button,
    .language-dropdown {
        width: 95%;
    }
    
    .center-cta .action-button {
        width: 95%;
        max-width: none;
        font-size: 18px;
        padding: 16px 40px;
    }
    
    .section-title {
        font-size: 30px;
    }
    
    .page-content-wrapper {
        padding: 12px;
    }
    
    .game-feature-card {
        padding: 20px;
        border-radius: 10px;
    }
    
    .game-feature-card h2 {
        font-size: 22px;
    }
    
    .game-feature-card h3 {
        font-size: 19px;
    }
    
    th, td {
        padding: 10px 12px;
        font-size: 13px;
    }
    
    .promo-callout {
        padding: 22px;
        border-radius: 12px;
    }
    
    .promo-text span {
        font-size: 19px;
    }
    
    .promo-graphic {
        width: 85%;
        max-width: 180px;
    }
    
    .promo-action a {
        padding: 13px 30px;
    }
    
    .site-info-bar {
        padding: 20px 0;
    }
    
    .info-links nav a {
        font-size: 14px;
    }
    
    .copy-text {
        font-size: 12px;
    }
}
#hero, section#hero, .hero, .hero-section, [id*="hero"], [class*="hero-"] { background-image: linear-gradient(rgba(0,0,0,.55), rgba(0,0,0,.55)), url('images/hero.jpg') !important; background-size: cover !important; background-position: center center !important; background-repeat: no-repeat !important; }
#bonus, section#bonus, .bonus-section, [id*="bonus"], [class*="bonus-"] { background-image: linear-gradient(rgba(0,0,0,.7), rgba(0,0,0,.7)), url('images/bonus_bg.jpg') !important; background-size: cover !important; background-position: center !important; }
