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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: #111827;
    color: #ffffff;
    line-height: 1.6;
}

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

/* Typography */
h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 16px;
    line-height: 1.3;
}

/* Lists */
ul, ol {
    margin: 16px 0;
    padding-left: 24px;
    color: #d1d5db;
    line-height: 1.6;
}

ul li, ol li {
    margin-bottom: 8px;
    position: relative;
}

ul li::marker {
    color: #fbbf24;
}

ol li::marker {
    color: #fbbf24;
    font-weight: 600;
}

/* Nested lists */
ul ul, ol ol, ul ol, ol ul {
    margin: 8px 0;
    padding-left: 20px;
}

/* Custom bullet for unordered lists */
ul li {
    list-style-type: none;
}

ul li::before {
    content: "▶";
    color: #fbbf24;
    font-size: 12px;
    position: absolute;
    left: -20px;
    top: 2px;
}

/* Navigation */
.fixed-nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #374151;
    z-index: 1000;
}

.nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 64px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.brand-logo {
    display: flex;
    align-items: center;
}

.text-brand {
    display: flex;
    align-items: center;
    gap: 4px;
    font-family: 'Arial Black', Arial, sans-serif;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.brand-name {
    font-size: 24px;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    background: linear-gradient(135deg, #ffffff 0%, #f3f4f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.brand-accent {
    font-size: 24px;
    color: #fbbf24;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.brand-accent::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #fbbf24, #f59e0b);
    border-radius: 1px;
}

.site-menu {
    display: flex;
    list-style: none;
    gap: 32px;
}

.site-menu a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s;
}

.site-menu a:hover {
    color: #ffffff;
}

.nav-actions {
    display: flex;
    gap: 8px;
    align-items: center;
}

.action-btn {
    padding: 8px 24px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-register {
    background-color: #16a34a;
    color: white;
}

.btn-register:hover {
    background-color: #15803d;
}

.btn-auth {
    background-color: #2563eb;
    color: white;
}

.btn-auth:hover {
    background-color: #1d4ed8;
}

.btn-claim {
    background-color: #dc2626;
    color: white;
    padding: 16px 48px;
    font-size: 18px;
    font-weight: bold;
    border-radius: 12px;
    transform: scale(1);
}

.btn-claim:hover {
    background-color: #b91c1c;
    transform: scale(1.05);
}

.btn-info-cta {
    background-color: transparent;
    color: #d1d5db;
    border: 1px solid #4b5563;
    padding: 8px 20px;
    font-size: 14px;
    font-weight: 500;
    margin-top: 16px;
    display: inline-block;
}

.btn-info-cta:hover {
    background-color: #374151;
    border-color: #6b7280;
    color: #ffffff;
}

.btn-claim-small {
    background-color: #dc2626;
    color: white;
    padding: 12px 24px;
    width: 100%;
}

.btn-claim-small:hover {
    background-color: #b91c1c;
}

/* Hero Section */
.landing-hero {
    padding: 96px 0 64px;
    background: linear-gradient(135deg, #111827 0%, #374151 50%, #111827 100%);
}

.hero-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.hero-content h1,
.page-title {
    font-size: 3.5rem;
    font-weight: bold;
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero-text {
    font-size: 20px;
    color: #d1d5db;
    margin-bottom: 32px;
    line-height: 1.6;
}

.hero-media {
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
    background-color: transparent;
    border-radius: 20px;
}

.hero-img {
    width: 100%;
    max-height: 450px;
    height: auto;
    object-fit: contain;
    object-position: center;
    border-radius: 20px;
    background-color: #374151;
    transform: translateY(40px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.info-img {
    width: 100%;
    max-height: 320px;
    height: auto;
    object-fit: contain;
    object-position: center;
    border-radius: 16px;
    background-color: #374151;
}

.content-media-block img {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 280px;
    background-color: #374151;
    border-radius: 16px;
}

/* Responsive image adjustments */
@media (max-width: 768px) {
    .hero-img {
        max-height: 350px;
        transform: translateY(20px);
    }

    .info-img {
        max-height: 250px;
    }

    .hero-media {
        min-height: 320px;
    }

    .content-media-block img {
        min-height: 220px;
    }
}

@media (max-width: 480px) {
    .hero-img {
        max-height: 280px;
        transform: translateY(15px);
        border-radius: 16px;
    }

    .info-img {
        max-height: 200px;
    }

    .hero-media {
        min-height: 260px;
    }

    .content-media-block img {
        min-height: 180px;
    }
}

/* Sections */
.section {
    padding: 64px 0;
}

.section-dark {
    background-color: #374151;
}

.section-heading {
    font-size: 2.5rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 48px;
}

/* Bonuses Section */
.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.offer-card {
    background-color: #374151;
    border-radius: 12px;
    padding: 32px;
    border: 1px solid #4b5563;
    text-align: center;
    transition: border-color 0.3s;
}

.offer-card:hover {
    border-color: #6b7280;
}

.offer-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 16px;
    background-color: #fbbf24;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.offer-card h3,
.offer-title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 16px;
}

.offer-card p,
.offer-desc {
    color: #d1d5db;
    margin-bottom: 24px;
}

/* Info Blocks */
.content-media-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
    margin-bottom: 64px;
}

.detail-text h2,
.block-heading {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 24px;
}

.detail-text p {
    font-size: 18px;
    color: #d1d5db;
    line-height: 1.6;
    margin-bottom: 16px;
}

.detail-text p:last-of-type {
    margin-bottom: 0;
}

/* Games Grid */
.catalog-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 48px;
}

@media (min-width: 768px) {
    .catalog-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

@media (min-width: 1024px) {
    .catalog-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 24px;
    }
}

.tile-card {
    position: relative;
    cursor: pointer;
    transition: transform 0.3s ease;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 4/3;
    display: block;
    text-decoration: none;
}

.tile-card:hover {
    transform: scale(1.05);
}

.tile-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    background-color: #4b5563;
}

/* Game/Vendor Overlay */
.tile-hover,
.vendor-hover {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.tile-card:hover .tile-hover,
.vendor-tile:hover .vendor-hover {
    opacity: 1;
}

.hover-label {
    color: #ffffff;
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.catalog-action-wrap {
    text-align: center;
}

.btn-all-games {
    background-color: #fbbf24;
    color: #000000;
    padding: 16px 48px;
    font-size: 18px;
    font-weight: bold;
    border-radius: 12px;
    transform: scale(1);
    box-shadow: 0 4px 15px rgba(251, 191, 36, 0.3);
}

.btn-all-games:hover {
    background-color: #f59e0b;
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(251, 191, 36, 0.4);
}

/* Software Providers Section */
.vendors-showcase {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 48px;
}

@media (min-width: 640px) {
    .vendors-showcase {
        grid-template-columns: repeat(4, 1fr);
        gap: 18px;
    }
}

@media (min-width: 768px) {
    .vendors-showcase {
        grid-template-columns: repeat(5, 1fr);
        gap: 20px;
    }
}

@media (min-width: 1024px) {
    .vendors-showcase {
        grid-template-columns: repeat(6, 1fr);
        gap: 24px;
    }
}

.vendor-tile {
    background-color: #4b5563;
    border-radius: 8px;
    padding: 16px;
    aspect-ratio: 3/2;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 1px solid #6b7280;
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

.vendor-tile:hover {
    background-color: #6b7280;
    border-color: #9ca3af;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.vendor-img {
    width: 100%;
    height: auto;
    max-height: 100px;
    object-fit: contain;
    object-position: center;
    filter: brightness(0.9);
    transition: filter 0.3s ease;
}

.vendor-tile:hover .vendor-img {
    filter: brightness(1);
}

/* Mobile responsiveness for providers */
@media (max-width: 480px) {
    .vendors-showcase {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .vendor-tile {
        padding: 12px;
    }

    .vendor-img {
        max-height: 32px;
    }
}

/* CTA Section */
.conversion-section {
    background: linear-gradient(135deg, #1f2937 0%, #374151 50%, #1f2937 100%);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.conversion-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(220, 38, 38, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.conversion-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.conversion-title {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #ffffff 0%, #f3f4f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.conversion-subtitle {
    font-size: 20px;
    color: #d1d5db;
    margin-bottom: 40px;
    line-height: 1.6;
}

.conversion-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-primary-btn {
    background: linear-gradient(135deg, #dc2626 0%, #ef4444 100%);
    color: white;
    padding: 18px 40px;
    font-size: 18px;
    font-weight: bold;
    border-radius: 12px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.3);
    position: relative;
    overflow: hidden;
}

.cta-primary-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.cta-primary-btn:hover::before {
    left: 100%;
}

.cta-primary-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(220, 38, 38, 0.4);
}

.cta-secondary-btn {
    background: transparent;
    color: #ffffff;
    padding: 18px 40px;
    font-size: 18px;
    font-weight: bold;
    border: 2px solid #374151;
    border-radius: 12px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
}

.cta-secondary-btn:hover {
    border-color: #6b7280;
    background-color: #374151;
    transform: translateY(-2px);
}

/* Reviews */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.testimonial-card {
    background-color: #374151;
    border-radius: 12px;
    padding: 24px;
    border: 1px solid #4b5563;
}

.rating-stars {
    display: flex;
    margin-bottom: 16px;
}

.star-filled {
    color: #fbbf24;
    font-size: 20px;
}

.star-empty {
    color: #6b7280;
    font-size: 20px;
}

.testimonial-text {
    color: #d1d5db;
    margin-bottom: 16px;
}

blockquote.testimonial-text {
    border: none;
    padding: 0;
    font-style: normal;
}

/* Reviewer Info */
.reviewer-profile {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.reviewer-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #4b5563;
}

.reviewer-meta {
    display: flex;
    flex-direction: column;
}

.reviewer-name {
    font-weight: 600;
    color: #ffffff;
    font-size: 16px;
    margin-bottom: 2px;
}

.reviewer-loc {
    font-size: 14px;
    color: #9ca3af;
}

/* FAQ */
.questions-list {
    max-width: 800px;
    margin: 0 auto;
}

.question-item {
    background-color: #1f2937;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 16px;
    border: 1px solid #374151;
}

.question-title {
    font-size: 20px;
    font-weight: 600;
    cursor: pointer;
    color: #ffffff;
    list-style: none;
    display: flex;
    align-items: center;
}

.question-title::-webkit-details-marker {
    display: none;
}

.question-title::before {
    content: "▼";
    margin-right: 8px;
    color: #9ca3af;
    font-size: 14px;
    transition: transform 0.3s;
}

details[open] .question-title::before {
    transform: rotate(180deg);
}

.question-answer {
    color: #d1d5db;
    line-height: 1.6;
    padding-top: 16px;
}

.question-answer p {
    color: #d1d5db;
}

/* Info Table */
.overview-table-wrap {
    max-width: 900px;
    margin: 0 auto;
}

.overview-table {
    width: 100%;
    background-color: #374151;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #4b5563;
}

.overview-table tr {
    border-bottom: 1px solid #4b5563;
    transition: background-color 0.3s;
}

.overview-table tr:hover {
    background-color: #4b5563;
}

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

.overview-table td {
    padding: 16px 24px;
}

.overview-table td:first-child {
    font-weight: 600;
}

.overview-table td:last-child {
    color: #d1d5db;
}

/* Footer */
.site-footer {
    background-color: #000000;
    padding: 48px 0;
    border-top: 1px solid #374151;
}

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

.footer-col h3 {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 16px;
}

.footer-col p,
.footer-text {
    color: #9ca3af;
    margin-bottom: 16px;
}

.footer-license {
    font-size: 14px;
    color: #6b7280;
}

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

.footer-nav ul li {
    margin-bottom: 8px;
}

.footer-nav ul li::before {
    content: none;
}

.footer-nav a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s;
    display: flex;
    align-items: center;
}

.footer-nav a:hover {
    color: #ffffff;
}

.footer-nav a::before {
    content: "🔗";
    margin-right: 8px;
}

.footer-copyright {
    border-top: 1px solid #374151;
    padding-top: 32px;
    text-align: center;
    color: #6b7280;
}

/* Payment Methods Table */
.banking-table-wrap {
    max-width: 1000px;
    margin: 0 auto;
    overflow-x: auto;
    border-radius: 12px;
    background-color: #374151;
    border: 1px solid #4b5563;
}

.banking-table {
    width: 100%;
    border-collapse: collapse;
    background-color: #374151;
}

.banking-table thead {
    background-color: #1f2937;
}

.banking-table th {
    padding: 16px 12px;
    text-align: left;
    font-weight: 600;
    color: #d1d5db;
    border-bottom: 1px solid #4b5563;
    font-size: 14px;
}

.banking-table tbody tr {
    border-bottom: 1px solid #4b5563;
    transition: background-color 0.3s;
}

.banking-table tbody tr:hover {
    background-color: #4b5563;
}

.banking-table tbody tr:last-child {
    border-bottom: none;
}

.banking-table td {
    padding: 16px 12px;
    color: #d1d5db;
    font-size: 14px;
    vertical-align: middle;
}

.banking-method {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 140px;
}

.banking-logo {
    width: 40px;
    height: 28px;
    object-fit: contain;
    background-color: #ffffff;
    border-radius: 4px;
    padding: 4px;
}

.banking-method span {
    font-weight: 500;
    color: #ffffff;
}

.banking-cta-row {
    text-align: center;
    margin-top: 24px;
}

.btn-deposit-main {
    background-color: #fbbf24;
    color: #000000;
    border: none;
    padding: 14px 40px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(251, 191, 36, 0.3);
}

.btn-deposit-main:hover {
    background-color: #f59e0b;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(251, 191, 36, 0.4);
}

/* Mobile responsiveness for payment table */
@media (max-width: 768px) {
    .banking-table-wrap {
        margin: 0 -20px;
        border-radius: 0;
    }

    .banking-table th,
    .banking-table td {
        padding: 12px 8px;
        font-size: 12px;
    }

    .banking-method {
        min-width: 100px;
        gap: 8px;
    }

    .banking-logo {
        width: 32px;
        height: 22px;
    }
}

/* SEO Text Blocks */
.seo-block {
    max-width: 1000px;
    margin: 48px auto 0;
    padding: 32px;
    background-color: #1f2937;
    border-radius: 12px;
    border: 1px solid #374151;
}

.seo-block h3,
.block-subheading {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 16px;
    line-height: 1.3;
}

.seo-block p {
    color: #d1d5db;
    line-height: 1.6;
    margin-bottom: 16px;
    font-size: 16px;
}

.seo-block p:last-child {
    margin-bottom: 0;
}

/* Editorial Content Blocks */
.editorial-block {
    max-width: 1000px;
    margin: 0 auto 24px;
    padding: 48px 32px;
    background-color: #1f2937;
    border-radius: 16px;
    border: 1px solid #374151;
}

.editorial-block:last-child {
    margin-bottom: 0;
}

.editorial-block h2,
.editorial-block .block-heading {
    font-size: 2.5rem;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 32px;
    text-align: center;
    line-height: 1.2;
}

.editorial-block h3,
.editorial-block .block-subheading {
    font-size: 1.75rem;
    font-weight: 600;
    color: #ffffff;
    margin: 32px 0 16px 0;
    line-height: 1.3;
}

.editorial-block h3:first-child,
.editorial-block .block-subheading:first-child {
    margin-top: 0;
}

.editorial-block p {
    color: #d1d5db;
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 16px;
    text-align: justify;
}

.editorial-block p:last-child {
    margin-bottom: 0;
}

/* Mobile responsiveness for editorial/seo blocks */
@media (max-width: 768px) {
    .seo-block {
        margin: 32px -20px 0;
        padding: 24px 20px;
        border-radius: 0;
    }

    .editorial-block {
        margin: 0 -20px 16px;
        padding: 32px 20px;
        border-radius: 0;
    }

    .editorial-block h2,
    .editorial-block .block-heading {
        font-size: 2rem;
        margin-bottom: 24px;
    }

    .editorial-block h3,
    .editorial-block .block-subheading {
        font-size: 1.5rem;
        margin: 24px 0 12px 0;
    }

    .editorial-block p {
        text-align: left;
        font-size: 15px;
        margin-bottom: 16px;
    }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .site-menu {
        display: none;
    }

    .nav-actions {
        gap: 6px;
    }

    .nav-actions .action-btn {
        padding: 6px 12px;
        font-size: 12px;
        font-weight: 600;
    }

    .hero-layout {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .page-title,
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .content-media-block {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .content-media-block:nth-child(even) .detail-text {
        order: 1;
    }

    .section-heading {
        font-size: 2rem;
    }

    .detail-text h2,
    .block-heading {
        font-size: 2rem;
    }

    .conversion-title {
        font-size: 2.2rem;
    }

    .conversion-actions {
        flex-direction: column;
        align-items: center;
    }

    .cta-primary-btn,
    .cta-secondary-btn {
        width: 100%;
        max-width: 300px;
    }

    .landing-hero {
        padding-top: 128px;
    }

    .hero-layout {
        margin-top: 84px;
    }
}

/* Responsible Gaming Badges */
.rg-badges {
    width: 100%;
    margin: 0 auto;
}

.rg-badge-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
    padding: 20px 0;
}

.rg-badge-row figure {
    margin: 0;
    padding: 0;
}

.rg-badge {
    height: 50px;
    width: auto;
    max-width: 120px;
    object-fit: contain;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.rg-badge:hover {
    opacity: 1;
}

/* Tablets */
@media (max-width: 768px) {
    .rg-badge-row {
        gap: 25px;
    }

    .rg-badge {
        height: 45px;
        max-width: 100px;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .brand-name,
    .brand-accent {
        font-size: 18px;
    }

    .rg-badge-row {
        gap: 20px;
        padding: 15px 10px;
    }

    .rg-badge {
        height: 40px;
        max-width: 80px;
    }

    .nav-actions {
        gap: 4px;
    }
    .nav-actions .action-btn {
        padding: 5px 10px;
        font-size: 11px;
    }
    .page-title,
    .hero-content h1 {
        font-size: 2rem;
    }
    .hero-text {
        font-size: 16px;
    }
    .btn-claim {
        padding: 12px 32px;
        font-size: 16px;
    }
    .conversion-title {
        font-size: 1.8rem;
    }
    .conversion-subtitle {
        font-size: 16px;
    }
}

/* Very small screens */
@media (max-width: 360px) {
    .rg-badge-row {
        gap: 15px;
    }

    .rg-badge {
        height: 35px;
        max-width: 70px;
    }
}
