/*
 * Wild Bounty Showdown - New Modern Design
 * Dark Western Theme with Gold Accents
 */

*,
::before,
::after {
    box-sizing: border-box;
}

/* Fixes for mobile */
html, body {
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

/* Mobile fixes */
@media (max-width: 768px) {
    .section {
        padding: 1rem 0.875rem;
    }
    
    h2 {
        font-size: 1.1rem;
        padding: 0.875rem 1rem;
        margin: 1.5rem 0 1rem;
    }
    
    .button {
        padding: 0.875rem 2rem;
        font-size: 0.9rem;
        margin-left: auto;
        margin-right: auto;
    }
    
    .cta-box {
        padding: 1.25rem;
        border-radius: 12px;
        margin: 1.5rem 0;
    }
    
    .cta-box h3 {
        font-size: 1.1rem;
    }
}

html {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    line-height: 1.6;
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
}

:root {
    --bg-dark: #0f0d0a;
    --bg-card: #1a1714;
    --bg-card-hover: #252118;
    --text-primary: #f5f0e8;
    --text-secondary: #a89f8f;
    --accent-gold: #d4a853;
    --accent-gold-light: #f0c97a;
    --accent-gold-dark: #b8923f;
    --accent-red: #c9432b;
    --accent-red-hover: #e05540;
    --border-color: #3d3529;
    --gradient-gold: linear-gradient(135deg, #d4a853 0%, #f0c97a 50%, #d4a853 100%);
    --gradient-dark: linear-gradient(180deg, #1a1714 0%, #0f0d0a 100%);
    --shadow-gold: 0 4px 20px rgba(212, 168, 83, 0.25);
    --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.4);
}

*:where(:not(html, iframe, canvas, img, svg, video, audio):not(svg *, symbol *)) {
    all: unset;
    display: revert;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

a, button {
    cursor: pointer;
    text-decoration: none;
}

ol, ul, menu {
    list-style: none;
}

img {
    max-inline-size: 100%;
    max-block-size: 100%;
}

body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    font-size: 17px;
    line-height: 1.7;
    background: var(--bg-dark);
    color: var(--text-primary);
    margin: 0;
    min-height: 100vh;
}

/* Typography */
h1 {
    font-size: 1.8rem;
    font-weight: 800;
    line-height: 1.2;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.25rem;
}

@media (min-width: 768px) {
    h1 {
        font-size: 2.8rem;
        margin-bottom: 1.5rem;
    }
}

h2 {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 2rem 0 1.25rem;
    padding: 1rem 1.25rem;
    background: var(--bg-card);
    border-left: 4px solid var(--accent-gold);
    border-radius: 0 12px 12px 0;
    color: var(--accent-gold-light);
    box-shadow: var(--shadow-card);
    word-wrap: break-word;
}

@media (min-width: 768px) {
    h2 {
        font-size: 1.75rem;
        padding: 1rem 1.5rem;
    }
}

h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 1.75rem 0 1rem;
    color: var(--accent-gold);
    padding-left: 1rem;
    border-left: 3px solid var(--accent-red);
}

h4 {
    font-weight: 600;
    font-size: 1.1rem;
    margin: 1.5rem 0 0.75rem;
    color: var(--text-primary);
}

p {
    margin: 0 0 1rem;
    color: var(--text-secondary);
    font-size: 1.05rem;
}

strong {
    font-weight: 700;
    color: var(--text-primary);
}

.bold {
    font-weight: 900;
}

/* Layout */
.section {
    padding: 1.25rem 1rem;
    max-width: 1200px;
    margin: 0 auto;
    overflow-x: hidden;
}

@media (min-width: 768px) {
    .section {
        padding: 2rem;
    }
}

.section-top {
    padding-top: 1rem;
}

@media (min-width: 762px) {
    .section-top {
        padding-top: 2rem;
    }
}

/* Header */
.header {
    display: flex;
    justify-content: center;
    background: linear-gradient(180deg, #1a1714 0%, #0f0d0a 100%);
    border-bottom: 1px solid var(--border-color);
    width: 100%;
    position: sticky;
    top: 0;
    z-index: 998;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

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

.logo {
    margin-left: 0.5rem;
    max-width: 140px;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

@media (min-width: 762px) {
    .logo {
        margin-right: 2rem;
        margin-left: 1rem;
    }
}

.nav-list {
    display: none;
}

@media (min-width: 992px) {
    .nav-list {
        display: flex;
        gap: 2rem;
        align-items: center;
    }
}

.nav-item {
    position: relative;
}

.nav-link {
    font-weight: 600;
    color: var(--text-secondary);
    padding: 0.5rem 0;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gold);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--accent-gold);
}

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

.nav-link.active {
    color: var(--accent-gold);
}

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

/* Header Box & Button */
.header-box {
    display: none;
    align-items: center;
    gap: 1rem;
}

@media (min-width: 992px) {
    .header-box {
        display: flex;
    }
}

.line-vertical_navbar {
    background: var(--border-color);
    width: 1px;
    height: 2rem;
}

.header-btn {
    padding: 0.875rem 1.5rem;
    font-weight: 700;
    font-size: 0.875rem;
    background: var(--gradient-gold);
    color: #0f0d0a;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-gold);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.header-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(212, 168, 83, 0.4);
}

/* Mobile Menu Button */
.menuButton {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 6px;
    width: 44px;
    height: 44px;
    border-radius: 8px;
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 999;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

@media (min-width: 992px) {
    .menuButton {
        display: none;
    }
}

.menuButton:hover {
    border-color: var(--accent-gold);
}

.menuButton span {
    width: 20px;
    height: 2px;
    background: var(--accent-gold);
    border-radius: 2px;
    transition: 0.3s ease;
}

.menuButton.active {
    background: var(--accent-gold);
}

.menuButton.active span {
    background: #0f0d0a;
}

.menuButton.active .top {
    transform: translateY(8px) rotate(45deg);
}

.menuButton.active .bot {
    transform: translateY(-8px) rotate(-45deg);
}

.menuButton.active .mid {
    opacity: 0;
}

/* Mobile Navigation */
.nav-mob {
    transform: translateY(-100%);
    background: var(--bg-dark);
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 997;
    transition: transform 0.4s ease;
    overflow-y: auto;
}

.nav-mob.is-visible {
    transform: translateY(0);
}

.nav-list-mob {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    padding-top: 100px;
}

.nav-link-mob {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-secondary);
    padding: 0.5rem 1rem;
    transition: color 0.3s ease;
}

.nav-link-mob:hover,
.nav-link-mob.active {
    color: var(--accent-gold);
}

/* Language Switchers */
.lang-switcher-new {
    position: relative;
    display: none;
    margin-right: 1rem;
}

@media (min-width: 992px) {
    .lang-switcher-new {
        display: block;
    }
}

.lang-btn-new {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    padding: 0.5rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 14px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.lang-btn-new:hover {
    border-color: var(--accent-gold);
}

.lang-btn-new svg {
    fill: var(--text-secondary);
}

.lang-dropdown-new {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    width: 280px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 0.75rem;
    box-shadow: var(--shadow-card);
    z-index: 999;
}

.lang-switcher-new:hover .lang-dropdown-new {
    display: block;
}

@media (max-width: 991px) {
    .lang-switcher-new:hover .lang-dropdown-new {
        display: none;
    }
    .lang-dropdown-new.show {
        display: block;
    }
}

.lang-group-title-new {
    font-size: 12px;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    padding-left: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.lang-option-new {
    display: flex;
    align-items: center;
    padding: 0.75rem;
    gap: 0.75rem;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.2s;
}

.lang-option-new:hover {
    background: var(--bg-card-hover);
}

.lang-option-new.selected {
    background: var(--bg-card-hover);
    border: 1px solid var(--accent-gold);
}

.lang-option-new .lang-name {
    color: var(--text-primary);
    font-size: 14px;
    font-weight: 600;
}

.lang-option-new .lang-label {
    color: var(--text-secondary);
    font-size: 12px;
}

/* Mobile Language Selector */
.lang-selector-mobile {
    position: absolute;
    top: 30px;
    left: 20px;
    z-index: 999;
}

@media (min-width: 992px) {
    .lang-selector-mobile {
        display: none;
    }
}

.lang-toggle {
    background: var(--accent-gold);
    color: #0f0d0a;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
}

.lang-toggle img {
    width: 24px;
    height: 24px;
    border-radius: 50%;
}

.lang-list {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 0.5rem 0;
    min-width: 120px;
    box-shadow: var(--shadow-card);
}

.lang-list.show {
    display: flex;
    flex-direction: column;
}

.lang-list a {
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-primary);
    transition: background 0.2s ease;
}

.lang-list a img {
    width: 22px;
    height: 22px;
    border-radius: 50%;
}

.lang-list a:hover {
    background: var(--bg-card-hover);
}

/* Buttons */
.button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    padding: 1rem 2.5rem;
    color: #0f0d0a;
    background: var(--gradient-gold);
    border-radius: 50px;
    transition: all 0.4s ease;
    margin: 2rem auto 0;
    box-shadow: var(--shadow-gold);
    text-transform: uppercase;
    width: fit-content;
    max-width: 90%;
}

.button:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 30px rgba(212, 168, 83, 0.5);
}

.button:active {
    transform: translateY(0);
}

.button-demo {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    top: 50%;
    left: 50%;
    z-index: 200;
    transform: translate(-50%, -50%);
    font-size: 0.875rem;
    line-height: 1;
    padding: 0.875rem 1.5rem;
    color: #0f0d0a;
    background: var(--gradient-gold);
    border-radius: 50px;
    transition: all 0.4s ease;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.05em;
    box-shadow: var(--shadow-gold);
    white-space: nowrap;
}

@media (min-width: 762px) {
    .button-demo {
        font-size: 1.125rem;
        padding: 1rem 2rem;
    }
}

.button-demo:hover {
    transform: translate(-50%, -50%) scale(1.05);
    box-shadow: 0 8px 30px rgba(212, 168, 83, 0.5);
}

/* Demo Button & Iframe Section */
.demo-main {
    position: relative;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
}

.iframe-bwb {
    position: relative;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
}

.iframe-bwb__bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.iframe-bwb__content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.btn-demo, 
.iframe-bwb__button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    color: #0f0d0a;
    background: var(--gradient-gold);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    box-shadow: var(--shadow-gold);
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
}

.btn-demo:hover,
.iframe-bwb__button:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 25px rgba(212, 168, 83, 0.5);
}

#game-container {
    width: 100%;
    min-height: 220px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    background-size: contain !important;
    background-position: center !important;
}

.game-iframe {
    width: 100%;
    height: 100%;
    min-height: 300px;
    border: none;
}

@media (max-width: 480px) {
    #game-container {
        min-height: 180px;
        background-size: contain !important;
    }
}

@media (min-width: 768px) {
    .btn-demo,
    .iframe-bwb__button {
        font-size: 1rem;
        padding: 1rem 2rem;
    }
    
    #game-container {
        min-height: 450px;
        background-size: cover !important;
    }
    
    .game-iframe {
        min-height: 500px;
    }
}

.button-none {
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.button-none.show {
    display: flex;
    opacity: 1;
    transform: translateY(0);
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-size: 1rem;
    font-weight: 700;
    padding: 1rem 2rem;
    color: #0f0d0a;
    background: var(--gradient-gold);
    border-radius: 50px;
    max-width: 350px;
    margin: 1rem auto;
    box-shadow: var(--shadow-gold);
}

/* Blinking Button Animation */
.blinking-btn {
    animation: glow 2s ease-in-out infinite;
}

@keyframes glow {
    0%, 100% {
        box-shadow: var(--shadow-gold);
    }
    50% {
        box-shadow: 0 0 30px rgba(212, 168, 83, 0.6), 0 0 60px rgba(212, 168, 83, 0.3);
    }
}

/* Hero Section */
.main_block {
    display: flex;
    flex-direction: column-reverse;
}

.main_block img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

@media (min-width: 762px) {
    .main_block {
        flex-direction: column;
    }
}

.hero-text {
    font-weight: 600;
    text-align: center;
    margin: 1rem auto;
    color: var(--text-secondary);
}

.hero-cover {
    display: block;
}

@media (min-width: 992px) {
    .hero-cover {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 3rem;
    }
}

.hero-mob-text {
    font-weight: 600;
    margin-top: 0.75rem;
    color: var(--text-secondary);
}

@media (min-width: 768px) {
    .hero-mob-text {
        display: none;
    }
}

.hero-list-mob {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .hero-list-mob {
        display: none;
    }
}

.hero-item-mob {
    width: 100%;
    margin: 0.25rem;
}

.hero-list {
    margin-top: 1.5rem;
}

@media (max-width: 768px) {
    .hero-list {
        display: none;
    }
}

.hero-img-box {
    border-radius: 16px;
    overflow: hidden;
    margin: 1rem auto;
    max-height: 400px;
    max-width: 300px;
    box-shadow: var(--shadow-card);
    border: 2px solid var(--border-color);
}

.hero-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

@media (min-width: 992px) {
    .hero-img-box {
        max-width: 300px;
    }
}

/* Image Box */
.img-box {
    width: 100%;
    height: auto;
    border-radius: 12px;
    overflow: hidden;
    margin: 1.25rem auto;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--border-color);
}

.img-box img {
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* Lists */
.list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem 0 0 2.5rem;
    margin-bottom: 1rem;
}

.list-item {
    position: relative;
    padding: 1rem 1.5rem 1rem 2.5rem;
    border-radius: 12px;
    font-weight: 600;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.list-item:hover {
    border-color: var(--accent-gold);
    transform: translateX(5px);
}

.list-item::before {
    content: attr(data-title);
    position: absolute;
    top: 50%;
    left: -1.5rem;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    font-weight: 700;
    font-size: 1.25rem;
    background: var(--gradient-gold);
    border-radius: 50%;
    color: #0f0d0a;
    box-shadow: var(--shadow-gold);
}

.list-item-1 {
    position: relative;
    padding: 1rem 1.5rem 1rem 2.5rem;
    border-radius: 12px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    font-weight: 600;
    transition: all 0.3s ease;
}

.list-item-1:hover {
    border-color: var(--accent-gold);
    transform: translateX(5px);
}

.list-item-1::before {
    content: attr(data-title);
    position: absolute;
    top: 50%;
    left: -1.5rem;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    font-weight: 700;
    font-size: 1.25rem;
    background: var(--accent-red);
    border-radius: 50%;
    color: white;
}

/* Vertical List */
.list-vertical {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 1.5rem;
    padding: 2rem 0;
    flex-wrap: wrap;
}

.list-item-vertical {
    flex: 1 1 280px;
    max-width: 400px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    padding: 2rem 1.5rem;
    border-radius: 16px;
    position: relative;
    font-weight: 500;
    box-shadow: var(--shadow-card);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.4s ease;
}

.list-item-vertical:hover {
    transform: translateY(-5px);
    border-color: var(--accent-gold);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
}

.list-item-vertical::before {
    content: attr(data-title);
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 36px;
    height: 36px;
    color: #0f0d0a;
    background: var(--gradient-gold);
    border-radius: 50%;
    font-weight: bold;
    font-size: 1.25rem;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: var(--shadow-gold);
}

/* FAQ / Questions */
.questions-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.questions-item {
    padding: 1rem 1.25rem;
    border-radius: 12px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.questions-item:hover {
    border-color: var(--accent-gold);
}

.questions-content-box:hover .questions-title {
    color: var(--accent-gold);
}

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

.questions-title {
    display: grid;
    grid-template-columns: 1fr 30px;
    cursor: pointer;
    align-items: center;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0;
    color: var(--text-primary);
    transition: color 0.3s ease;
}

.questions-plus {
    border-radius: 8px;
    min-width: 30px;
    height: 30px;
    background: var(--bg-card-hover);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.3s ease;
}

.questions-content-box:hover .questions-plus {
    background: var(--accent-gold);
    border-color: var(--accent-gold);
}

.top-line, .bottom-line {
    position: absolute;
    width: 12px;
    height: 2px;
    background: var(--accent-gold);
    transition: all 0.3s ease;
}

.questions-content-box:hover .top-line,
.questions-content-box:hover .bottom-line {
    background: #0f0d0a;
}

.top-line {
    transform: rotate(90deg);
}

.questions-plus.active .top-line {
    transform: rotate(0deg);
}

.questions-content {
    overflow: hidden;
    height: 0;
    transition: height 0.3s ease;
}

.questions-content p {
    padding-top: 1rem;
}

/* Tables */
table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-card);
}

th {
    background: var(--bg-card);
    color: var(--accent-gold);
    padding: 1rem 1.25rem;
    text-align: left;
    font-weight: 700;
    border-bottom: 2px solid var(--accent-gold);
}

td {
    padding: 1rem 1.25rem;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-secondary);
    background: var(--bg-dark);
}

tr:hover td {
    background: var(--bg-card);
}

/* Highlight Box */
.highlight {
    background: var(--bg-card);
    padding: 1.25rem;
    border-left: 4px solid var(--accent-gold);
    margin: 1.5rem 0;
    border-radius: 0 12px 12px 0;
    color: var(--text-secondary);
}

/* Pros & Cons */
.pros-cons {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .pros-cons {
        grid-template-columns: 1fr 1fr;
    }
}

.pros, .cons {
    padding: 1.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-card);
}

.pros {
    background: linear-gradient(135deg, rgba(39, 174, 96, 0.15), rgba(39, 174, 96, 0.05));
    border: 1px solid rgba(39, 174, 96, 0.3);
}

.cons {
    background: linear-gradient(135deg, rgba(201, 67, 43, 0.15), rgba(201, 67, 43, 0.05));
    border: 1px solid rgba(201, 67, 43, 0.3);
}

.pros h4 {
    color: #27ae60;
    margin-top: 0;
}

.cons h4 {
    color: var(--accent-red);
    margin-top: 0;
}

/* CTA Box */
.cta-box {
    background: linear-gradient(135deg, var(--accent-red), #e05540);
    color: white;
    padding: 1.5rem;
    border-radius: 16px;
    text-align: center;
    margin: 2rem 0;
    box-shadow: 0 8px 30px rgba(201, 67, 43, 0.3);
}

.cta-box h3 {
    color: white;
    border: none;
    padding: 0;
    margin: 0 0 0.75rem;
    font-size: 1.25rem;
}

.cta-box p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    font-size: 1rem;
}

/* Feature Grid */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.feature-card {
    background: var(--bg-card);
    padding: 1.5rem;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-card);
    transition: all 0.3s ease;
}

.feature-card:hover {
    border-color: var(--accent-gold);
    transform: translateY(-3px);
}

.feature-card h4 {
    color: var(--accent-gold);
    margin-top: 0;
    margin-bottom: 0.75rem;
}

/* Rating */
.rating {
    color: var(--accent-gold);
    font-size: 1.25rem;
    font-weight: bold;
}

/* Cards */
.card-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
    margin: 2rem 0;
}

.card {
    flex: 1 1 200px;
    max-width: 280px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: var(--shadow-card);
    text-align: center;
    transition: all 0.4s ease;
    color: var(--text-primary);
}

.card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-gold);
}

.card img {
    width: 100%;
    max-width: 150px;
    margin-bottom: 1rem;
    border-radius: 8px;
}

.card h3 {
    margin: 0.75rem 0 0.5rem;
    font-size: 1rem;
    color: var(--accent-gold);
    border: none;
    padding: 0;
}

.card p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin: 0;
}

@media (max-width: 768px) {
    .card-wrapper {
        flex-direction: column;
        align-items: center;
    }
    
    .card {
        width: 100%;
        max-width: 90%;
    }
}

/* Author Section */
.author-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2rem;
    margin: 0 auto;
    box-shadow: var(--shadow-card);
}

@media (min-width: 768px) {
    .author-container {
        flex-direction: row;
        align-items: flex-start;
    }
}

.author-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

@media (min-width: 768px) {
    .author-left {
        flex: 0 0 200px;
        align-items: flex-start;
    }
}

.author-right {
    font-style: italic;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

@media (min-width: 768px) {
    .author-right {
        flex: 1;
        padding-left: 1.5rem;
        border-left: 1px solid var(--border-color);
    }
}

.author-photo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--accent-gold);
    box-shadow: var(--shadow-gold);
}

.author-name {
    font-size: 1.25rem;
    font-weight: bold;
    color: var(--text-primary);
    margin: 0;
}

.author-alias {
    background: var(--accent-gold);
    color: #0f0d0a;
    padding: 0.25rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
}

.author-date {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

/* Footer */
.footer {
    background: var(--bg-card);
    border-top: 1px solid var(--border-color);
    padding: 3rem 1.5rem 2rem;
    color: var(--text-secondary);
}

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

.footer-left {
    flex: 1 1 300px;
}

.social-icons {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.social-icons a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-dark);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    border-color: var(--accent-gold);
    transform: translateY(-2px);
}

.social-icons img {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
    opacity: 0.7;
}

.badges {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
}

.badges img {
    height: 32px;
    filter: brightness(0) invert(1);
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.badges img:hover {
    opacity: 1;
}

.footer-links {
    display: flex;
    flex: 1 1 300px;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .footer-links {
        flex-direction: column;
        gap: 0;
        width: 100%;
    }
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--text-secondary);
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-gold);
}

.footer > p {
    text-align: center;
    font-size: 0.75rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    color: var(--text-secondary);
    opacity: 0.7;
}

/* Scroll to Top Button */
#scrollToTopBtn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    display: none;
    background: var(--gradient-gold);
    color: #0f0d0a;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.25rem;
    font-weight: bold;
    cursor: pointer;
    z-index: 1000;
    box-shadow: var(--shadow-gold);
    transition: all 0.3s ease;
    align-items: center;
    justify-content: center;
    line-height: 1;
    padding: 0;
    text-align: center;
}

#scrollToTopBtn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(212, 168, 83, 0.5);
}

/* Utility Classes */
.no-scroll {
    overflow: hidden;
}

.hidden {
    position: absolute;
    left: -9999px;
    visibility: hidden;
}

.bonusnow {
    display: none;
}

@media (min-width: 762px) {
    .bonusnow {
        display: inline-block;
    }
}

/* Standard list styles */
ul {
    padding-left: 1.5rem;
}

li {
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
    position: relative;
    padding-left: 1rem;
}

li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--accent-gold);
}

/* Pulse Animation */
.pulse img {
    animation: pulse 3s infinite ease-in-out;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.03);
    }
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--border-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-gold);
}

/* Selection */
::selection {
    background: var(--accent-gold);
    color: #0f0d0a;
}

/* Links in content */
.section a:not(.button):not(.header-btn) {
    color: var(--accent-gold);
    transition: color 0.3s ease;
}

.section a:not(.button):not(.header-btn):hover {
    color: var(--accent-gold-light);
}