/* CSS Variables for Gaming Theme */
:root {
    /* Gaming theme colors */
    --background: hsl(220, 13%, 9%);
    --foreground: hsl(0, 0%, 95%);
    --card: hsl(220, 13%, 12%);
    --card-foreground: hsl(0, 0%, 95%);
    --primary: hsl(142, 76%, 36%);
    --primary-foreground: hsl(0, 0%, 100%);
    --secondary: hsl(220, 13%, 15%);
    --secondary-foreground: hsl(0, 0%, 95%);
    --muted: hsl(220, 13%, 15%);
    --muted-foreground: hsl(220, 9%, 46%);
    --border: hsl(220, 13%, 15%);
    --input: hsl(220, 13%, 15%);
    --ring: hsl(142, 76%, 36%);
    
    --gaming-green: hsl(142, 76%, 36%);
    --gaming-green-hover: hsl(142, 76%, 40%);
    --gaming-gold: hsl(48, 96%, 53%);
    --gaming-dark: hsl(220, 13%, 9%);
    --gaming-card: hsl(220, 13%, 12%);
    --gaming-border: hsl(220, 13%, 20%);
    
    --radius: 0.5rem;
}

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

body {
    font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background-color: var(--background);
    color: var(--foreground);
    line-height: 1.5;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: transparent;
}

.page-wrapper {
    min-height: 100vh;
    background-color: var(--gaming-dark);
}

.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header Styles */
.header {
    background-color: var(--gaming-dark);
    border-bottom: 1px solid var(--gaming-border);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 4rem;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.logo-img {
    height: 2rem;
}

.nav {
    display: none;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .nav {
        display: flex;
    }
}

.nav-link {
    color: var(--foreground);
    text-decoration: none;
    transition: color 0.15s ease;
}

.nav-link:hover {
    color: var(--gaming-green);
}

.header-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.search-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: var(--radius);
    border: none;
    background: transparent;
    color: var(--foreground);
    cursor: pointer;
    transition: all 0.15s ease;
}

.search-btn:hover {
    background-color: var(--muted);
}

.search-icon {
    width: 1.25rem;
    height: 1.25rem;
}

.login-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 2.5rem;
    padding: 0 1rem;
    border-radius: var(--radius);
    border: 1px solid var(--gaming-green);
    background: transparent;
    color: var(--gaming-green);
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.15s ease;
}

.login-btn:hover {
    background-color: var(--gaming-green);
    color: white;
}

.login-btn.secondary {
    background: transparent;
    border: 1px solid var(--gaming-border);
    color: var(--foreground);
    margin-right: 0.75rem;
}

.login-btn.secondary:hover {
    background: var(--gaming-card);
    border-color: var(--gaming-green);
    color: var(--gaming-green);
}

.signup-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 2.5rem;
    padding: 0 1rem;
    border-radius: var(--radius);
    border: 1px solid var(--gaming-green);
    background: var(--gaming-green);
    color: white;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.signup-btn:hover {
    background: #357a35;
    border-color: #357a35;
    transform: translateY(-1px);
}

.signup-btn.primary {
    background: var(--gaming-green);
    border-color: var(--gaming-green);
    color: white;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    background-color: var(--gaming-dark);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    inset: 0;
    background-image: url('img/betify_background.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(22, 27, 34, 0.8);
}

.hero-content {
    position: relative;
    z-index: 10;
    padding-top: 5rem;
}

.hero-grid {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .hero-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Bonus Card */
.bonus-card-wrapper {
    order: 1;
}

@media (min-width: 1024px) {
    .bonus-card-wrapper {
        order: 0;
    }
}

.bonus-card {
    background-color: var(--gaming-card);
    border: 1px solid var(--gaming-border);
    border-radius: var(--radius);
    padding: 1.5rem;
    max-width: 28rem;
    margin: 0 auto;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.bonus-card-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.bonus-number {
    width: 3rem;
    height: 3rem;
    background-color: var(--gaming-green);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.25rem;
}

.casino-name {
    font-size: 1.25rem;
    font-weight: bold;
    color: var(--foreground);
    margin-bottom: 0.25rem;
}

.rating {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.star {
    width: 1rem;
    height: 1rem;
}

.star.filled {
    color: var(--gaming-gold);
}

.star.half {
    color: hsla(48, 96%, 53%, 0.5);
}

.rating-text {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    margin-left: 0.25rem;
}

.bonus-main {
    text-align: center;
    margin-bottom: 1.5rem;
}

.bonus-percentage {
    font-size: 2.25rem;
    font-weight: bold;
    color: var(--gaming-green);
    margin-bottom: 0.5rem;
}

.bonus-text {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    margin-bottom: 0.25rem;
}

.bonus-amount {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--gaming-gold);
    margin-bottom: 0.5rem;
}

.bonus-description {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    margin-bottom: 1rem;
}

.bonus-terms {
    font-size: 0.75rem;
    color: var(--muted-foreground);
}

.bonus-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 2.5rem;
    padding: 0 1rem;
    border-radius: var(--radius);
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.15s ease;
    border: none;
    text-decoration: none;
}

.btn-primary {
    background-color: var(--gaming-green);
    color: white;
}

.btn-primary:hover {
    background-color: var(--gaming-green-hover);
}

.btn-secondary {
    background: transparent;
    border: 1px solid var(--gaming-green);
    color: var(--gaming-green);
}

.btn-secondary:hover {
    background-color: var(--gaming-green);
    color: white;
}

/* Hero Text Content */
.hero-text {
    text-align: center;
    order: 0;
}

@media (min-width: 1024px) {
    .hero-text {
        text-align: left;
        order: 1;
    }
}

.hero-title {
    font-size: 2.25rem;
    font-weight: bold;
    color: var(--foreground);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 3.75rem;
    }
}

.text-green {
    color: var(--gaming-green);
}

.text-gold {
    color: var(--gaming-gold);
}

.hero-description {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    margin-bottom: 2rem;
    line-height: 1.625;
}

.about-section {
    margin-top: 1rem;
}

.about-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--foreground);
    margin-bottom: 1rem;
}

.about-text {
    color: var(--muted-foreground);
    line-height: 1.625;
}

/* Focus and accessibility */
.btn:focus-visible,
.search-btn:focus-visible,
.login-btn:focus-visible {
    outline: 2px solid var(--ring);
    outline-offset: 2px;
}

/* Section Styles */
.section-title {
    font-size: 2rem;
    font-weight: bold;
    color: var(--foreground);
    text-align: center;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    text-align: center;
    margin-bottom: 3rem;
    line-height: 1.625;
}

/* Company Info Section */
.company-info-section {
    padding: 4rem 0;
    background-color: var(--background);
}

.info-grid {
    display: grid;
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .info-grid {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    }
}

.info-card {
    background-color: var(--gaming-card);
    border: 1px solid var(--gaming-border);
    border-radius: var(--radius);
    padding: 1.5rem;
    text-align: center;
}

.info-image {
    margin-bottom: 1.5rem;
}

.info-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: var(--radius);
}

.info-title {
    font-size: 1.25rem;
    font-weight: bold;
    color: var(--foreground);
    margin-bottom: 1rem;
}

.info-text {
    color: var(--muted-foreground);
    line-height: 1.625;
}

/* Pros and Cons Section */
.pros-cons-section {
    padding: 4rem 0;
    background-color: var(--gaming-dark);
}

.pros-cons-grid {
    display: grid;
    gap: 2rem;
    margin-top: 3rem;
}

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

.pros-card,
.cons-card {
    background-color: var(--gaming-card);
    border: 1px solid var(--gaming-border);
    border-radius: var(--radius);
    padding: 2rem;
}

.pros-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--gaming-green);
    margin-bottom: 1.5rem;
}

.cons-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #ef4444;
    margin-bottom: 1.5rem;
}

.pros-list,
.cons-list {
    list-style: none;
    padding: 0;
}

.pros-list li,
.cons-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
    color: var(--muted-foreground);
    line-height: 1.625;
}

.pros-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--gaming-green);
    font-weight: bold;
}

.cons-list li::before {
    content: "✗";
    position: absolute;
    left: 0;
    color: #ef4444;
    font-weight: bold;
}

/* Games Section */
.games-section {
    padding: 4rem 0;
    background-color: var(--background);
}

.games-image {
    margin-bottom: 3rem;
    text-align: center;
}

.games-image img {
    max-width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: var(--radius);
}

.games-grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .games-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

.game-category {
    background-color: var(--gaming-card);
    border: 1px solid var(--gaming-border);
    border-radius: var(--radius);
    padding: 1.5rem;
}

.game-title {
    font-size: 1.25rem;
    font-weight: bold;
    color: var(--gaming-green);
    margin-bottom: 1rem;
}

.game-description {
    color: var(--muted-foreground);
    line-height: 1.625;
}

/* Bonus Section */
.bonus-section {
    padding: 4rem 0;
    background-color: var(--gaming-dark);
}

.bonus-types-grid {
    display: grid;
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .bonus-types-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

.bonus-type-card {
    background-color: var(--gaming-card);
    border: 1px solid var(--gaming-border);
    border-radius: var(--radius);
    padding: 1.5rem;
    text-align: center;
}

.bonus-type-image {
    margin-bottom: 1.5rem;
}

.bonus-type-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: var(--radius);
}

.bonus-type-title {
    font-size: 1.25rem;
    font-weight: bold;
    color: var(--gaming-gold);
    margin-bottom: 1rem;
}

.bonus-type-description {
    color: var(--muted-foreground);
    line-height: 1.625;
}

/* Security Section */
.security-section {
    padding: 4rem 0;
    background-color: var(--background);
}

.security-content {
    display: grid;
    gap: 2rem;
    align-items: center;
    margin-top: 3rem;
}

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

.security-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: var(--radius);
}

.security-text p {
    color: var(--foreground);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.security-list {
    list-style: none;
    padding: 0;
}

.security-list li {
    padding: 0.75rem 0;
    color: var(--muted-foreground);
    line-height: 1.625;
    border-bottom: 1px solid var(--gaming-border);
}

.security-list li:last-child {
    border-bottom: none;
}

/* FAQ Section */
.faq-section {
    padding: 4rem 0;
    background-color: var(--gaming-dark);
}

.faq-grid {
    display: grid;
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .faq-grid {
        grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    }
}

.faq-item {
    background-color: var(--gaming-card);
    border: 1px solid var(--gaming-border);
    border-radius: var(--radius);
    padding: 1.5rem;
}

.faq-question {
    font-size: 1.125rem;
    font-weight: bold;
    color: var(--gaming-green);
    margin-bottom: 1rem;
}

.faq-answer {
    color: var(--muted-foreground);
    line-height: 1.625;
}

/* Final CTA Section */
.final-cta-section {
    padding: 4rem 0;
    background-color: var(--background);
}

.final-cta-card {
    background-color: var(--gaming-card);
    border: 1px solid var(--gaming-border);
    border-radius: var(--radius);
    padding: 2rem;
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

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

.cta-number {
    width: 3rem;
    height: 3rem;
    background-color: var(--gaming-green);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.25rem;
}

.cta-casino-name {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--foreground);
    margin-bottom: 0.5rem;
}

.cta-rating-score {
    font-size: 1.125rem;
    font-weight: bold;
    color: var(--gaming-gold);
}

.cta-bonus {
    margin-bottom: 2rem;
}

.cta-bonus-percentage {
    font-size: 3rem;
    font-weight: bold;
    color: var(--gaming-green);
    margin-bottom: 0.5rem;
}

.cta-bonus-text {
    font-size: 1rem;
    color: var(--muted-foreground);
    margin-bottom: 0.25rem;
}

.cta-bonus-amount {
    font-size: 2rem;
    font-weight: bold;
    color: var(--gaming-gold);
    margin-bottom: 0.5rem;
}

.cta-bonus-description {
    font-size: 1rem;
    color: var(--muted-foreground);
    margin-bottom: 1rem;
}

.cta-bonus-terms {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.btn-large {
    height: 3rem;
    font-size: 1.125rem;
    font-weight: bold;
    padding: 0 2rem;
}

/* Footer */
.footer {
    background-color: var(--gaming-dark);
    border-top: 1px solid var(--gaming-border);
    padding: 2rem 0 1rem;
}

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

.footer-logo-img {
    height: 2rem;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.footer-link {
    color: var(--muted-foreground);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.15s ease;
}

.footer-link:hover {
    color: var(--gaming-green);
}

.footer-bottom {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid var(--gaming-border);
}

.footer-copyright {
    color: var(--muted-foreground);
    font-size: 0.875rem;
}

/* New Content Styles */
.about-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.about-list li {
    padding: 0.5rem 0;
    color: var(--muted-foreground);
    border-bottom: 1px solid var(--gaming-border);
}

.about-list li:last-child {
    border-bottom: none;
}

.license-details {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
    background: var(--gaming-dark);
    border-radius: var(--radius);
    padding: 1rem;
}

.license-details li {
    padding: 0.5rem 0;
    color: var(--gaming-green);
    font-size: 0.875rem;
}

.support-table {
    margin-top: 1rem;
}

.support-row {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--gaming-border);
}

.support-row:last-child {
    border-bottom: none;
}

.support-method {
    font-weight: bold;
    color: var(--gaming-green);
}

.support-detail {
    color: var(--muted-foreground);
}

/* Games Statistics */
.games-stats {
    margin: 2rem 0;
}

.stats-table {
    background: var(--gaming-card);
    border: 1px solid var(--gaming-border);
    border-radius: var(--radius);
    overflow: hidden;
}

.stats-header,
.stats-row {
    display: grid;
    grid-template-columns: 1fr 1fr 2fr;
    gap: 1rem;
}

.stats-header {
    background: var(--gaming-green);
    color: white;
    font-weight: bold;
    padding: 1rem;
}

.stats-row {
    padding: 1rem;
    border-bottom: 1px solid var(--gaming-border);
}

.stats-row:last-child {
    border-bottom: none;
}

.stats-col {
    display: flex;
    align-items: center;
}

/* Bonus List */
.bonus-list {
    margin: 2rem 0;
    background: var(--gaming-card);
    border: 1px solid var(--gaming-border);
    border-radius: var(--radius);
    padding: 1.5rem;
}

.bonus-item {
    display: flex;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--gaming-border);
}

.bonus-item:last-child {
    border-bottom: none;
}

.bonus-number {
    color: var(--foreground);
    font-weight: bold;
    margin-right: 1rem;
    font-size: 1.125rem;
}

.bonus-detail {
    color: var(--foreground);
}

.promo-code {
    background: var(--gaming-green);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius);
    font-weight: bold;
    text-align: center;
    margin-top: 1rem;
    font-size: 1.125rem;
    letter-spacing: 2px;
}

.app-features {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0 0;
}

.app-features li {
    padding: 0.25rem 0;
    color: var(--muted-foreground);
    font-size: 0.875rem;
}

/* Payment Styles */
.payment-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.payment-list li {
    padding: 0.75rem 0;
    color: var(--muted-foreground);
    border-bottom: 1px solid var(--gaming-border);
}

.payment-list li:last-child {
    border-bottom: none;
}

.payment-details {
    margin-top: 2rem;
}

.payment-subtitle {
    font-size: 1.125rem;
    font-weight: bold;
    color: var(--gaming-green);
    margin: 1.5rem 0 0.5rem 0;
}

.payment-details p {
    color: var(--muted-foreground);
    margin-bottom: 1rem;
}

/* Alternatives Section */
.alternatives-section {
    padding: 4rem 0;
    background-color: var(--background);
}

/* Author Section */
.author-section {
    padding: 4rem 0;
    background-color: var(--gaming-dark);
    border-top: 1px solid var(--gaming-border);
}

.author-card {
    background-color: var(--gaming-card);
    border: 1px solid var(--gaming-border);
    border-radius: var(--radius);
    padding: 2rem;
    display: grid;
    gap: 2rem;
    align-items: center;
    max-width: 800px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .author-card {
        grid-template-columns: auto 1fr;
    }
}

.author-image {
    display: flex;
    justify-content: center;
}

.author-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--gaming-green);
}

.author-content {
    text-align: center;
}

@media (min-width: 768px) {
    .author-content {
        text-align: left;
    }
}

.author-header {
    margin-bottom: 1.5rem;
}

.author-name {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--foreground);
    margin-bottom: 0.5rem;
}

.author-title {
    font-size: 1rem;
    font-weight: 500;
    color: var(--gaming-green);
    margin: 0;
}

.author-bio {
    margin-bottom: 1.5rem;
}

.author-bio p {
    color: var(--muted-foreground);
    line-height: 1.625;
    margin: 0;
}

.author-actions {
    display: flex;
    justify-content: center;
}

@media (min-width: 768px) {
    .author-actions {
        justify-content: flex-start;
    }
}

.comparison-table {
    background: var(--gaming-card);
    border: 1px solid var(--gaming-border);
    border-radius: var(--radius);
    overflow: hidden;
    margin-top: 2rem;
}

.comparison-header,
.comparison-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 1rem;
}

.comparison-header {
    background: var(--gaming-green);
    color: white;
    font-weight: bold;
    padding: 1rem;
}

.comparison-row {
    padding: 1rem;
    border-bottom: 1px solid var(--gaming-border);
}

.comparison-row:last-child {
    border-bottom: none;
}

.comparison-row.featured {
    background: var(--gaming-dark);
    color: var(--gaming-green);
    font-weight: bold;
}

.comparison-col {
    display: flex;
    align-items: center;
    color: var(--foreground);
}

/* Responsive adjustments */
@media (max-width: 640px) {
    .container {
        padding: 0 1rem;
    }
    
    .hero-content {
        padding-top: 2rem;
    }
    
    .hero-title {
        font-size: 1.875rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .bonus-card {
        padding: 1rem;
    }
    
    .header-right {
        gap: 0.5rem;
    }
    
    .login-btn.secondary,
    .signup-btn {
        padding: 0.375rem 0.75rem;
        font-size: 0.8rem;
    }
    
    .login-btn.secondary {
        margin-right: 0.5rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
    
    .cta-bonus-percentage {
        font-size: 2.5rem;
    }
    
    .cta-bonus-amount {
        font-size: 1.75rem;
    }
    
    .stats-header,
    .stats-row {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    
    .stats-col {
        justify-content: center;
        text-align: center;
        padding: 0.25rem 0;
    }
    
    .comparison-header,
    .comparison-row {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    
    .comparison-col {
        justify-content: center;
        text-align: center;
        padding: 0.25rem 0;
    }
    
    .support-row {
        flex-direction: column;
        text-align: center;
        gap: 0.25rem;
    }
}

/* Author Page Styles */
.author-hero-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--gaming-dark), var(--gaming-card));
    border-bottom: 1px solid var(--gaming-border);
}

.author-hero-content {
    display: grid;
    gap: 3rem;
    align-items: center;
    text-align: center;
}

@media (min-width: 768px) {
    .author-hero-content {
        grid-template-columns: auto 1fr;
        text-align: left;
    }
}

.author-hero-image {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.author-hero-photo {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--gaming-green);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.author-status {
    margin-top: 1rem;
}

.status-badge {
    background: var(--gaming-green);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 500;
}

.author-hero-name {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--foreground);
    margin-bottom: 0.5rem;
}

.author-hero-title {
    font-size: 1.25rem;
    color: var(--gaming-green);
    margin-bottom: 1rem;
    font-weight: 500;
}

.author-hero-location {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--muted-foreground);
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .author-hero-location {
        justify-content: flex-start;
    }
}

.location-icon {
    color: var(--gaming-green);
}

.author-hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 2rem;
    padding: 2rem;
    background: var(--gaming-card);
    border: 1px solid var(--gaming-border);
    border-radius: var(--radius);
}

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

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: bold;
    color: var(--gaming-green);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

/* Biography Section */
.biography-section {
    padding: 4rem 0;
    background-color: var(--background);
}

.biography-content {
    max-width: 800px;
    margin: 0 auto;
}

.bio-intro {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--foreground);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.biography-content p {
    color: var(--muted-foreground);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.biography-content p:last-child {
    margin-bottom: 0;
}

/* Experience Section */
.experience-section {
    padding: 4rem 0;
    background-color: var(--gaming-dark);
}

.experience-timeline {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.experience-timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--gaming-green);
}

@media (min-width: 768px) {
    .experience-timeline::before {
        left: 120px;
    }
}

.timeline-item {
    position: relative;
    padding: 2rem 0;
    padding-left: 80px;
}

@media (min-width: 768px) {
    .timeline-item {
        padding-left: 180px;
    }
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 22px;
    top: 2.5rem;
    width: 16px;
    height: 16px;
    background: var(--gaming-green);
    border-radius: 50%;
    border: 3px solid var(--gaming-dark);
}

@media (min-width: 768px) {
    .timeline-item::before {
        left: 112px;
    }
}

.timeline-date {
    position: absolute;
    left: 0;
    top: 2rem;
    font-weight: bold;
    color: var(--gaming-green);
    font-size: 0.875rem;
}

@media (min-width: 768px) {
    .timeline-date {
        left: -140px;
        width: 100px;
        text-align: right;
    }
}

.timeline-title {
    font-size: 1.25rem;
    font-weight: bold;
    color: var(--foreground);
    margin-bottom: 0.5rem;
}

.timeline-company {
    color: var(--gaming-green);
    font-weight: 500;
    margin-bottom: 1rem;
}

.timeline-description {
    list-style: none;
    padding: 0;
}

.timeline-description li {
    color: var(--muted-foreground);
    margin-bottom: 0.5rem;
    padding-left: 1rem;
    position: relative;
}

.timeline-description li::before {
    content: "•";
    color: var(--gaming-green);
    position: absolute;
    left: 0;
}

/* Education Section */
.education-section {
    padding: 4rem 0;
    background-color: var(--background);
}

.education-grid {
    display: grid;
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .education-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.education-card {
    background: var(--gaming-card);
    border: 1px solid var(--gaming-border);
    border-radius: var(--radius);
    padding: 2rem;
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.education-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: var(--gaming-green);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.education-title {
    font-size: 1.125rem;
    font-weight: bold;
    color: var(--foreground);
    margin-bottom: 0.5rem;
}

.education-institution {
    color: var(--gaming-green);
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.education-year {
    color: var(--muted-foreground);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.education-specialty {
    color: var(--muted-foreground);
    font-size: 0.875rem;
    font-style: italic;
}

/* Expertise Section */
.expertise-section {
    padding: 4rem 0;
    background-color: var(--gaming-dark);
}

.expertise-grid {
    display: grid;
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .expertise-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .expertise-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.expertise-card {
    background: var(--gaming-card);
    border: 1px solid var(--gaming-border);
    border-radius: var(--radius);
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.expertise-card:hover {
    transform: translateY(-5px);
    border-color: var(--gaming-green);
}

.expertise-icon {
    margin: 0 auto 1.5rem;
    color: var(--gaming-green);
}

.expertise-title {
    font-size: 1.125rem;
    font-weight: bold;
    color: var(--foreground);
    margin-bottom: 1rem;
}

.expertise-description {
    color: var(--muted-foreground);
    line-height: 1.6;
}

/* Contact Section */
.contact-section {
    padding: 4rem 0;
    background-color: var(--background);
}

.contact-card {
    background: var(--gaming-card);
    border: 1px solid var(--gaming-border);
    border-radius: var(--radius);
    padding: 3rem;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.contact-title {
    font-size: 2rem;
    font-weight: bold;
    color: var(--foreground);
    margin-bottom: 1rem;
}

.contact-description {
    color: var(--muted-foreground);
    line-height: 1.6;
    margin-bottom: 2rem;
    font-size: 1.125rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (min-width: 768px) {
    .contact-info {
        flex-direction: row;
        justify-content: center;
        gap: 3rem;
    }
}

.contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--foreground);
}

.contact-icon {
    color: var(--gaming-green);
}

/* Mobile Responsive for Author Page */
@media (max-width: 640px) {
    .author-hero-name {
        font-size: 2rem;
    }
    
    .author-hero-photo {
        width: 150px;
        height: 150px;
    }
    
    .author-hero-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .timeline-item {
        padding-left: 60px;
    }
    
    .timeline-date {
        position: static;
        margin-bottom: 1rem;
    }
    
    .expertise-grid {
        grid-template-columns: 1fr;
    }
    
    .education-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        flex-direction: column;
        gap: 1rem;
    }
}

/* Legal Pages Styles */
.legal-hero-section {
    padding: 4rem 0 2rem;
    background: linear-gradient(135deg, var(--gaming-dark), var(--gaming-card));
    border-bottom: 1px solid var(--gaming-border);
    text-align: center;
}

.legal-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.legal-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--foreground);
    margin-bottom: 1rem;
}

.legal-subtitle {
    font-size: 1.25rem;
    color: var(--muted-foreground);
    margin-bottom: 2rem;
}

.legal-meta {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.legal-update,
.legal-version {
    color: var(--gaming-green);
    font-size: 0.875rem;
    font-weight: 500;
}

.legal-content-section {
    padding: 4rem 0;
    background-color: var(--background);
}

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

.legal-section {
    margin-bottom: 4rem;
}

.legal-section:last-child {
    margin-bottom: 0;
}

.subsection-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--gaming-green);
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.subsection-title:first-child {
    margin-top: 0;
}

.legal-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.legal-list li {
    color: var(--muted-foreground);
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.legal-list li::before {
    content: "→";
    color: var(--gaming-green);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.highlight-box {
    background: var(--gaming-card);
    border: 1px solid var(--gaming-border);
    border-left: 4px solid var(--gaming-green);
    border-radius: var(--radius);
    padding: 1.5rem;
    margin: 2rem 0;
}

.highlight-box.warning {
    border-left-color: #ef4444;
}

.highlight-box h3,
.highlight-box h4 {
    color: var(--foreground);
    margin-bottom: 1rem;
}

.highlight-box ul {
    list-style: none;
    padding: 0;
}

.highlight-box ul li {
    color: var(--muted-foreground);
    margin-bottom: 0.5rem;
    padding-left: 1rem;
    position: relative;
}

.highlight-box ul li::before {
    content: "•";
    color: var(--gaming-green);
    position: absolute;
    left: 0;
}

.highlight-box.warning ul li::before {
    color: #ef4444;
}

/* Contact Page Specific Styles */
.contact-hero-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--gaming-dark), var(--gaming-card));
    text-align: center;
}

.contact-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--foreground);
    margin-bottom: 1rem;
}

.contact-subtitle {
    font-size: 1.25rem;
    color: var(--muted-foreground);
    margin-bottom: 2rem;
}

.contact-highlights {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--foreground);
}

.highlight-icon {
    font-size: 1.25rem;
}

.contact-methods-section {
    padding: 4rem 0;
    background-color: var(--background);
}

.contact-methods-grid {
    display: grid;
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .contact-methods-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

.contact-method-card {
    background: var(--gaming-card);
    border: 1px solid var(--gaming-border);
    border-radius: var(--radius);
    padding: 2rem;
    text-align: center;
    position: relative;
}

.contact-method-card.featured {
    border-color: var(--gaming-green);
    box-shadow: 0 4px 20px rgba(46, 125, 50, 0.1);
}

.method-icon {
    margin: 0 auto 1.5rem;
    color: var(--gaming-green);
}

.method-title {
    font-size: 1.25rem;
    font-weight: bold;
    color: var(--foreground);
    margin-bottom: 1rem;
}

.method-description {
    color: var(--muted-foreground);
    margin-bottom: 1.5rem;
}

.method-details {
    margin-bottom: 2rem;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.detail-label {
    color: var(--muted-foreground);
}

.detail-value {
    color: var(--foreground);
    font-weight: 500;
}

.contact-btn {
    background: var(--gaming-green);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius);
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.contact-btn:hover {
    background: #357a35;
    transform: translateY(-2px);
}

.contact-btn.secondary {
    background: transparent;
    color: var(--gaming-green);
    border: 1px solid var(--gaming-green);
}

.contact-btn.secondary:hover {
    background: var(--gaming-green);
    color: white;
}

.contact-btn.primary {
    background: var(--gaming-green);
}

.contact-btn.large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.method-status {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 500;
}

.method-status.online {
    background: #10b981;
    color: white;
}

/* Contact Form */
.contact-form-section {
    padding: 4rem 0;
    background-color: var(--gaming-dark);
}

.contact-form-wrapper {
    display: grid;
    gap: 3rem;
    align-items: start;
}

@media (min-width: 1024px) {
    .contact-form-wrapper {
        grid-template-columns: 1fr 2fr;
    }
}

.form-info {
    background: var(--gaming-card);
    border: 1px solid var(--gaming-border);
    border-radius: var(--radius);
    padding: 2rem;
}

.form-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--foreground);
    margin-bottom: 1rem;
}

.form-description {
    color: var(--muted-foreground);
    margin-bottom: 2rem;
}

.form-benefits {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--foreground);
}

.benefit-icon {
    color: var(--gaming-green);
}

.contact-form {
    background: var(--gaming-card);
    border: 1px solid var(--gaming-border);
    border-radius: var(--radius);
    padding: 2rem;
}

.form-row {
    display: grid;
    gap: 1rem;
}

@media (min-width: 640px) {
    .form-row {
        grid-template-columns: 1fr 1fr;
    }
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    color: var(--foreground);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--gaming-border);
    border-radius: var(--radius);
    background: var(--background);
    color: var(--foreground);
    font-size: 1rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gaming-green);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.checkbox-group label {
    margin: 0;
    font-weight: normal;
    color: var(--muted-foreground);
}

.checkbox-group label a {
    color: var(--gaming-green);
    text-decoration: none;
}

.checkbox-group label a:hover {
    text-decoration: underline;
}

/* FAQ Quick Help */
.quick-help-section {
    padding: 4rem 0;
    background-color: var(--background);
}

.faq-quick-grid {
    display: grid;
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .faq-quick-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .faq-quick-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.faq-quick-item {
    background: var(--gaming-card);
    border: 1px solid var(--gaming-border);
    border-radius: var(--radius);
    padding: 1.5rem;
}

.faq-quick-question {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--gaming-green);
    margin-bottom: 1rem;
}

.faq-quick-answer {
    color: var(--muted-foreground);
    line-height: 1.6;
}

.faq-cta {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: var(--gaming-card);
    border: 1px solid var(--gaming-border);
    border-radius: var(--radius);
}

.faq-cta p {
    color: var(--foreground);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

/* Business Info */
.business-info-section {
    padding: 4rem 0;
    background-color: var(--gaming-dark);
}

.business-info-grid {
    display: grid;
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .business-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.business-card {
    background: var(--gaming-card);
    border: 1px solid var(--gaming-border);
    border-radius: var(--radius);
    padding: 2rem;
}

.business-title {
    font-size: 1.25rem;
    font-weight: bold;
    color: var(--gaming-green);
    margin-bottom: 1.5rem;
}

.business-details p {
    color: var(--muted-foreground);
    margin-bottom: 0.5rem;
}

.business-details strong {
    color: var(--foreground);
}

/* Responsible Gaming Styles */
.responsible-hero-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #1a4c96, #2563eb);
    text-align: center;
}

.responsible-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: white;
    margin-bottom: 1rem;
}

.responsible-subtitle {
    font-size: 1.25rem;
    color: #e5e7eb;
    margin-bottom: 2rem;
}

.hero-message {
    max-width: 700px;
    margin: 0 auto 2rem;
}

.hero-message p {
    color: #e5e7eb;
    font-size: 1.125rem;
    line-height: 1.6;
}

.emergency-contact {
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    padding: 1.5rem;
    display: inline-block;
}

.emergency-label {
    display: block;
    color: #e5e7eb;
    margin-bottom: 0.5rem;
}

.emergency-number {
    display: block;
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
    text-decoration: none;
    margin-bottom: 0.25rem;
}

.emergency-info {
    color: #e5e7eb;
    font-size: 0.875rem;
}

.protection-tools-section {
    padding: 4rem 0;
    background-color: var(--background);
}

.tools-grid {
    display: grid;
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .tools-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.tool-card {
    background: var(--gaming-card);
    border: 1px solid var(--gaming-border);
    border-radius: var(--radius);
    padding: 2rem;
    text-align: center;
}

.tool-icon {
    margin: 0 auto 1.5rem;
    color: var(--gaming-green);
}

.tool-title {
    font-size: 1.25rem;
    font-weight: bold;
    color: var(--foreground);
    margin-bottom: 1rem;
}

.tool-description {
    color: var(--muted-foreground);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.tool-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.tool-features li {
    color: var(--muted-foreground);
    margin-bottom: 0.5rem;
    padding-left: 1rem;
    position: relative;
    font-size: 0.875rem;
}

.tool-features li::before {
    content: "✓";
    color: var(--gaming-green);
    position: absolute;
    left: 0;
}

.tool-btn {
    background: var(--gaming-green);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tool-btn:hover {
    background: #357a35;
}

.tool-btn.warning {
    background: #ef4444;
}

.tool-btn.warning:hover {
    background: #dc2626;
}

/* Mobile responsive for legal pages */
@media (max-width: 640px) {
    .legal-title {
        font-size: 2rem;
    }
    
    .legal-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .contact-title {
        font-size: 2rem;
    }
    
    .contact-highlights {
        flex-direction: column;
        gap: 1rem;
    }
    
    .responsible-title {
        font-size: 2rem;
    }
    
    .tools-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-methods-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-quick-grid {
        grid-template-columns: 1fr;
    }
    
    .business-info-grid {
        grid-template-columns: 1fr;
    }
}
