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

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

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

/* Navigation Bar */
.navbar {
    background: #000000;
    border-bottom: 1px solid #333333;
    z-index: 1000;
    padding: 0;
    max-height: 120px;
    min-height: 120px;
    box-sizing: border-box;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 120px;
    box-sizing: border-box;
}

.nav-logo {
    display: flex;
    align-items: center;
    height: 120px;
}

.nav-logo img {
    height: 120px;
    width: auto;
    display: block;
    margin: 0;
    padding: 0;
    max-height: 120px;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 2rem;
}

.nav-menu li {
    margin: 0;
}

.nav-item {
    display: flex;
    align-items: center;
    height: 100%;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 0 0.5rem;
    line-height: 1;
    display: flex;
    align-items: center;
    height: 100%;
}

.nav-link:hover {
    color: #00A550;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: #00A550;
    transition: width 0.3s ease;
}

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

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
}

.bar {
    width: 25px;
    height: 3px;
    background: #00A550;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Hamburger Menu Animation */
.bar.active:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.bar.active:nth-child(2) {
    opacity: 0;
}

.bar.active:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Hero Section */
.hero {
    background: #000000;
    position: relative;
    padding-top: 50px;
}

.hero-container {
    margin: 0 auto;
    padding: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4rem;
    position: relative;
    z-index: 1;
    min-height: 520px;
    background: url('H1background.webp') no-repeat left center;
    background-size: cover;
    background-blend-mode: multiply;
}

.hero-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.45);
    z-index: 0;
    pointer-events: none;
    border-radius: inherit;
}

.hero-content {
    text-align: center;
    max-width: 950px;
    margin: 0 auto;
    position: relative;
    padding: 2.5rem 2rem;
    z-index: 1;
    border-radius: 0.5rem;
}

.hero-content h1 {
    font-size: 3rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
    text-align: center;
}

.hero-content p {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #cccccc;
    margin-bottom: 2rem;
    max-width: 750px;
    text-align: justify;
    margin-left: auto;
    margin-right: auto;
    hyphens: auto;
}

.cta-button {
    background: #00A550;
    color: #ffffff;
    border: none;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
}

.cta-button:hover {
    background: #008f47;
    transform: translateY(-2px);
    text-decoration: none;
}

.cta-button:focus {
    text-decoration: none;
}

.cta-button:active {
    text-decoration: none;
}

.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-placeholder {
    width: 300px;
    height: 300px;
    background: #111111;
    border: 2px solid #333333;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 8rem;
}

/* Games Section */
.games-section {
    padding: 80px 0;
    background: #000000;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: #ffffff;
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 120px;
    height: 3px;
    margin: 1.5rem auto 0;
    background: linear-gradient(to right, 
        rgba(0, 165, 80, 0) 0%,
        #00A550 50%,
        rgba(0, 165, 80, 0) 100%
    );
}

.game-carousel {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    padding: 2rem;
    max-width: 950px;
    margin: 0 auto;
    scrollbar-width: thin;
    scrollbar-color: #00A550 #1a1a1a;
}

.game-carousel::-webkit-scrollbar {
    display: none;
}

.game-card {
    min-width: 250px;
    background: #111111;
    border: 1px solid #333333;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.game-card:hover {
    transform: translateY(-5px);
    border-color: #00A550;
}

.game-image {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
    background: #00A550;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
}

.game-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.game-card p {
    color: #cccccc;
    font-size: 0.9rem;
}

/* Trust Bar Section */
.trust-bar {
    padding: 4rem 0;
    background: #000000;
}

.trust-bar .section-title {
    margin-bottom: 3rem;
}

.trust-items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 950px;
    margin: 0 auto;
    padding: 0 2rem;
}

.trust-cta-container {
    text-align: center;
    margin-top: 3rem;
    max-width: 950px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 2rem;
}

.trust-item {
    text-align: center;
    flex: 1;
    min-width: 200px;
    padding: 2rem 1rem;
    transition: all 0.3s ease;
}

.trust-item:hover {
    transform: translateY(-5px);
}

.trust-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.trust-item h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #00A550;
}

.trust-item p {
    color: #cccccc;
    font-size: 0.9rem;
}

/* Mobile Styles for Trust Bar */
@media (max-width: 768px) {
    .trust-bar {
        padding: 3rem 0;
    }

    .trust-bar .section-title {
        font-size: 1.8rem;
        margin-bottom: 2rem;
        padding: 0 1rem;
    }

    .trust-items {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }

    .trust-item {
        padding: 1.5rem;
        margin-bottom: 1rem;
        min-width: unset;
        width: 100%;
        max-width: 100%;
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 8px;
        background: rgba(0, 0, 0, 0.3);
    }

    .trust-icon {
        font-size: 2.5rem;
        margin-bottom: 0.75rem;
    }

    .trust-item h3 {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }

    .trust-item p {
        font-size: 0.9rem;
        line-height: 1.5;
        margin: 0;
    }

    .trust-cta-container {
        margin-top: 2rem;
        padding: 0 1rem;
    }

    .trust-cta-container .cta-button {
        width: 100%;
        max-width: 100%;
        padding: 0.75rem 1.5rem;
        text-decoration: none;
    }
}

/* Small Mobile Devices */
@media (max-width: 480px) {
    .trust-bar {
        padding: 2rem 0;
    }

    .trust-bar .section-title {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .trust-items {
        gap: 1rem;
    }

    .trust-item {
        padding: 1.25rem;
    }

    .trust-icon {
        font-size: 2.25rem;
    }

    .trust-item h3 {
        font-size: 1rem;
    }

    .trust-item p {
        font-size: 0.85rem;
    }
}

/* Footer */
.footer {
    background: #000000;
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 950px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-section {
    flex: 1;
    min-width: 250px;
}

.footer-section h3 {
    color: #00A550;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-section h4 {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-section p {
    color: #cccccc;
    line-height: 1.6;
}

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

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

.footer-section ul li a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #00A550;
}

.footer-bottom {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 950px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 2rem;
    padding-right: 2rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar {
        min-height: 64px;
        max-height: 64px;
    }
    .nav-container {
        height: 64px;
    }
    .nav-logo {
        height: 64px;
    }
    .nav-logo img {
        height: 64px;
        max-height: 64px;
    }

    .nav-toggle {
        display: flex;
    }

    /* Mobile Navigation Menu */
    .nav-menu {
        position: fixed;
        top: 64px;
        left: 0;
        right: 0;
        flex-direction: column;
        background: #000000;
        width: 100%;
        text-align: center;
        transition: all 0.3s ease;
        padding: 2rem 0;
        border-top: 1px solid #333333;
        gap: 1.5rem;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        z-index: 999;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
        display: flex;
        list-style: none;
        margin: 0;
    }

    .nav-menu.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .nav-item {
        margin: 0;
        padding: 0.5rem 0;
    }

    .nav-link {
        color: #ffffff;
        font-size: 1.1rem;
        padding: 0.75rem 1rem;
        display: block;
        width: 100%;
        text-align: center;
    }

    .nav-link:hover {
        background: rgba(0, 165, 80, 0.1);
        color: #00A550;
    }

    .hero-container {
        padding: 2rem 1rem;
        min-height: 400px;
    }

    .hero-content {
        max-width: 800px;
        background-position: center top;
        padding: 2rem 1rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-placeholder {
        width: 200px;
        height: 200px;
        font-size: 5rem;
    }

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

    .game-carousel {
        flex-direction: column;
        align-items: center;
    }

    .game-card {
        min-width: 280px;
    }

    .trust-items {
        margin-bottom: 2rem;
    }

    .trust-cta-container {
        margin-top: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        padding: 0 1rem;
    }

    .footer-section {
        min-width: 100%;
        text-align: center;
        margin-bottom: 1.5rem;
        padding: 0;
    }

    .footer-section h3 {
        font-size: 1rem;
        font-weight: 600;
        margin-bottom: 0.8rem;
        color: #00A550;
        text-align: center;
    }

    .footer-section h4 {
        font-size: 1rem;
        font-weight: 600;
        margin-bottom: 0.8rem;
        color: #ffffff;
        text-align: center;
        border-top: none;
        padding-top: 0;
        margin-top: 0;
    }

    .footer-section p {
        font-size: 0.9rem;
        text-align: center;
        margin-bottom: 0.8rem;
        color: #cccccc;
    }

    .footer-section ul {
        text-align: center;
        margin: 0;
        padding: 0;
    }

    .footer-section ul li {
        margin-bottom: 0.5rem;
        text-align: center;
    }

    .footer-section ul li a {
        color: #cccccc;
        text-decoration: none;
        font-size: 0.9rem;
        text-align: center;
        display: inline-block;
        padding: 0.2rem 0;
        transition: color 0.3s ease;
    }

    .footer-section ul li a:hover {
        color: #00A550;
    }

    .footer-bottom {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    /* Mobile Footer Styling */
    .footer {
        padding: 2rem 0 1rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
        text-align: center;
    }

    .footer-section {
        min-width: 100%;
        text-align: center;
        margin-bottom: 1rem;
        padding: 0;
    }

    .footer-section h3 {
        font-size: 0.95rem;
        font-weight: 600;
        margin-bottom: 0.6rem;
        color: #00A550;
        text-align: center;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .footer-section h4 {
        font-size: 0.9rem;
        font-weight: 600;
        margin-bottom: 0.6rem;
        color: #ffffff;
        text-align: center;
        border-top: none;
        padding-top: 0;
        margin-top: 0;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .footer-section p {
        font-size: 0.85rem;
        text-align: center;
        margin-bottom: 0.6rem;
        color: #cccccc;
        line-height: 1.4;
    }

    .footer-section ul {
        text-align: center;
        margin: 0;
        padding: 0;
    }

    .footer-section ul li {
        margin-bottom: 0.3rem;
        text-align: center;
    }

    .footer-section ul li a {
        color: #cccccc;
        text-decoration: none;
        font-size: 0.85rem;
        text-align: center;
        display: inline-block;
        padding: 0.1rem 0;
        transition: color 0.3s ease;
    }

    .footer-section ul li a:hover {
        color: #00A550;
    }

    .footer-bottom {
        padding: 0.8rem 1rem;
        text-align: center;
        font-size: 0.8rem;
        color: #999999;
        border-top: none;
        margin-top: 0.8rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
    }

    .cta-button {
        padding: 12px 30px;
        font-size: 1rem;
        text-decoration: none;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .game-card {
        min-width: 250px;
        padding: 1.5rem;
    }

    .trust-item {
        min-width: 200px;
        padding: 1.5rem 1rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    /* Additional Core Values optimizations for very small screens */
    .core-values {
        padding: 30px 0;
    }

    .core-values .section-title {
        font-size: 1.5rem;
        margin-bottom: 25px;
    }

    .values-grid {
        gap: 20px;
        padding: 0 10px;
    }

    .value-card {
        padding: 1.5rem;
        max-width: 95%;
    }

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

    .value-card h3 {
        font-size: 1.3rem;
        margin-bottom: 0.75rem;
    }

    .value-card p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
}

@media (max-width: 900px) {
    .hero-container {
        padding: 2rem 1rem;
        min-height: 400px;
    }
    .hero-content {
        max-width: 800px;
        background-position: center top;
        padding: 2rem 1rem;
    }
}

@media (max-width: 600px) {
    .hero-container {
        padding: 1.5rem 0.5rem;
        min-height: 320px;
    }
    .hero-content {
        max-width: 98vw;
        background-size: cover;
        background-position: center top;
        padding: 1.5rem 0.5rem;
    }
    .hero-content p,
    .crypto-comparison-desc,
    .content-section p {
        text-align: left;
        padding: 0 1rem;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom scrollbar for webkit browsers */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #111111;
}

::-webkit-scrollbar-thumb {
    background: #00A550;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #008f47;
}

/* Crypto Comparison Section Styles */
.crypto-comparison {
    position: relative;
    padding: 4rem 0;
    background-color: #080808;
}

.crypto-comparison .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.crypto-comparison h2 {
    font-size: 2.5rem;
    font-weight: 600;
    color: #ffffff;
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
}

/* Elegant divider line for all section headings */
.crypto-comparison h2::after {
    content: '';
    display: block;
    width: 120px;
    height: 3px;
    margin: 1.5rem auto 0;
    background: linear-gradient(to right, 
        rgba(0, 165, 80, 0) 0%,
        #00A550 50%,
        rgba(0, 165, 80, 0) 100%
    );
}

.crypto-table-container {
    overflow-x: auto;
    margin: 3rem auto;
    padding: 2rem;
    border-radius: 8px;
    background: linear-gradient(145deg, #0a0a0a, #000000);
    box-shadow: 
        inset 0 0 30px rgba(255, 255, 255, 0.05),
        0 10px 20px rgba(0, 0, 0, 0.5);
}

.crypto-comparison-table {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    border-collapse: separate;
    border-spacing: 0;
    color: #ffffff;
    background-color: #000000;
}

.crypto-comparison-table th,
.crypto-comparison-table td {
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.2rem;
    text-align: center;
    transition: all 0.2s ease;
}

.crypto-comparison-table th {
    background-color: #00A550;
    color: #ffffff;
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.crypto-comparison-table td {
    font-weight: 400;
    font-size: 1rem;
    letter-spacing: 0.2px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.crypto-comparison-table td:first-child {
    font-weight: 500;
    color: #00A550;
}

.crypto-comparison-table td:hover {
    font-weight: 500;
    letter-spacing: 0;
    background-color: rgba(255, 255, 255, 0.02);
}

.crypto-comparison-table tbody tr {
    background-color: #000000;
    transition: background-color 0.2s ease;
}

.crypto-comparison-table tbody tr:nth-child(odd) {
    background-color: rgba(255, 255, 255, 0.02);
}

.crypto-comparison-table tbody tr:hover {
    background-color: #111111;
}

.crypto-comparison-desc {
    max-width: 800px;
    margin: 3rem auto;
    color: #ffffff;
    text-align: justify;
    line-height: 1.8;
    font-size: 1.1rem;
    padding: 0 1.5rem;
    opacity: 0.9;
}

/* Floating crypto icons */
.crypto-icon {
    position: absolute;
    font-size: 1.5rem;
    opacity: 0.6;
    pointer-events: none;
}

.crypto-icon-1 {
    left: 10%;
    animation: float 4s ease-in-out infinite;
}

.crypto-icon-2 {
    right: 10%;
    animation: float 4s ease-in-out infinite 1s;
}

.crypto-icon-3 {
    left: 20%;
    top: 60%;
    animation: float 4s ease-in-out infinite 2s;
}

/* Animation classes */
.fade-hidden {
    opacity: 0;
    transform: translateY(30px);
}

.fade-in {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.8s ease-in-out;
}

/* Animations */
@keyframes glow {
    0%, 100% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.8;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .crypto-comparison {
        padding: 3rem 0;
    }
    
    .crypto-comparison h2 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }
    
    .crypto-table-container {
        margin: 2rem -1rem;
        padding: 1rem;
        border-radius: 0;
    }
    
    .crypto-comparison-table th,
    .crypto-comparison-table td {
        padding: 1rem 0.8rem;
        font-size: 0.9rem;
    }
    
    .crypto-comparison-desc {
        font-size: 1rem;
        line-height: 1.6;
        margin: 2rem auto;
    }
}

/* General content paragraphs */
.content-section p {
    text-align: justify;
    line-height: 1.6;
    margin-bottom: 1rem;
    hyphens: auto;
}

/* Games Section CTA */
.cta-container {
    text-align: center;
    margin-top: 3rem;
    width: 100%;
}

.games-section .cta-button {
    display: inline-block;
    padding: 12px 30px;
    background-color: #00A550;
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    transition: background-color 0.2s ease;
}

.games-section .cta-button:hover {
    background-color: #008f47;
}

@media (max-width: 768px) {
    .cta-container {
        margin-top: 2rem;
        padding: 0 1rem;
    }
    
    .games-section .cta-button {
        padding: 10px 24px;
        font-size: 0.95rem;
        text-decoration: none;
    }
}

/* Games Page Styles */
.games-hero {
    padding: 4rem 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 3rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #00A550, #008040);
    border-radius: 2px;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding: 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.game-category-card {
    background: linear-gradient(145deg, #111111, #000000);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.game-category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.category-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-image {
    width: 100%;
    height: 140px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-img {
    height: 140px;
    width: auto;
    object-fit: contain;
    display: block;
    margin: 0 auto;
    transition: transform 0.2s ease;
}

.game-category-card:hover .category-img {
    transform: scale(1.05);
}

.game-category-card h3 {
    color: #ffffff;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.game-category-card p {
    color: #cccccc;
    font-size: 0.95rem;
    line-height: 1.5;
}

.games-cta {
    background-color: #080808;
    padding: 4rem 0;
    text-align: center;
}

.games-cta h2 {
    font-size: 2rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

.games-cta p {
    color: #cccccc;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

/* Active Navigation Link */
.nav-link.active {
    color: #00A550;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .games-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .games-hero {
        padding: 3rem 0;
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 2.5rem;
    }

    .games-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 1.5rem 1rem;
    }

    .game-category-card {
        padding: 1.5rem;
    }

    .games-cta {
        padding: 3rem 1rem;
    }

    .games-cta h2 {
        font-size: 1.75rem;
    }

    .category-image {
        height: 110px;
        margin-bottom: 1rem;
    }

    .category-img {
        height: 110px;
    }
}

/* Crypto Advantages Page Styles */
.crypto-advantages {
    padding: 4rem 0;
    background: #000000;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 950px;
    margin: 0 auto;
    padding: 0 2rem;
}

.advantage-card {
    background: linear-gradient(145deg, #111111, #000000);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2rem;
    text-align: left;
    transition: transform 0.2s ease;
}

.advantage-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.advantage-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    display: inline-block;
}

.advantage-card h2 {
    color: #ffffff;
    font-size: 1.6rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.advantage-card p {
    color: #cccccc;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

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

.advantage-list li {
    color: #ffffff;
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
}

.advantage-list li::before {
    content: '✓';
    color: #00A550;
    position: absolute;
    left: 0;
    font-weight: bold;
}

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

@media (max-width: 768px) {
    .advantages-grid {
        grid-template-columns: 1fr;
    }

    .advantage-card {
        padding: 1.5rem;
    }

    .advantage-icon {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .advantage-card h2 {
        font-size: 1.4rem;
    }
}

/* Rewards Ecosystem Section */
.rewards-ecosystem {
    padding: 60px 0;
    background-color: #0a0a0a;
    box-sizing: border-box;
}

.rewards-ecosystem .section-title {
    text-align: center;
    color: white;
    margin-bottom: 40px;
    font-size: 2rem;
    font-weight: 600;
}

.rewards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.reward-card {
    background-color: #111;
    border-radius: 12px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    height: 100%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.reward-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.4);
}

.reward-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #00ff9d;
    flex-shrink: 0;
    text-align: center;
    width: 100%;
}

.reward-card h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 15px;
    flex-shrink: 0;
    text-align: center;
    width: 100%;
}

.reward-card h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background-color: #00ff9d;
}

.reward-card p {
    color: #ccc;
    line-height: 1.6;
    font-size: 1rem;
    text-align: justify;
    margin: 0;
    flex-grow: 1;
    hyphens: auto;
}

/* Mobile Responsiveness */
@media (max-width: 992px) {
    .rewards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .rewards-ecosystem .section-title {
        font-size: 1.8rem;
        margin-bottom: 35px;
    }
}

@media (max-width: 768px) {
    .rewards-ecosystem {
        padding: 40px 0;
    }

    .rewards-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 15px;
    }

    .reward-card {
        padding: 25px;
    }

    .reward-icon {
        font-size: 2rem;
        margin-bottom: 15px;
    }

    .reward-card h3 {
        font-size: 1.3rem;
        margin-bottom: 12px;
        padding-bottom: 12px;
    }

    .reward-card p {
        text-align: left; /* Better readability on mobile */
        font-size: 0.95rem;
        line-height: 1.5;
    }
}

/* About Page Styles */
.about-content {
    padding: 60px 0;
    background-color: #0a0a0a;
}

.vision-mission {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.vision-block,
.mission-block {
    margin-bottom: 50px;
    text-align: center;
}

.vision-block h2,
.mission-block h2 {
    color: #ffffff;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

.vision-block h2::after,
.mission-block h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background-color: #00ff9d;
}

.vision-block p,
.mission-block p {
    color: #cccccc;
    font-size: 1.1rem;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto;
    text-align: justify;
    hyphens: auto;
}

/* Core Values Section */
.core-values {
    padding: 60px 0;
    background-color: #000000;
}

.core-values .section-title {
    text-align: center;
    color: white;
    margin-bottom: 50px;
    font-size: 2rem;
    font-weight: 600;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.value-card {
    background-color: #111;
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.4);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 25px;
    color: #00ff9d;
}

.value-card h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.value-card p {
    color: #ccc;
    line-height: 1.6;
    font-size: 1rem;
    text-align: justify;
    hyphens: auto;
}

/* About CTA Section */
.about-cta {
    padding: 60px 0;
    background-color: #0a0a0a;
    text-align: center;
}

.about-cta h2 {
    color: white;
    font-size: 2rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.about-cta p {
    color: #ccc;
    font-size: 1.1rem;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-align: justify;
    hyphens: auto;
}

/* Mobile Responsiveness for About Page */
@media (max-width: 768px) {
    .about-content {
        padding: 40px 0;
    }

    .vision-block,
    .mission-block {
        margin-bottom: 40px;
        padding: 0 15px;
    }

    .vision-block h2,
    .mission-block h2 {
        font-size: 1.6rem;
        margin-bottom: 15px;
    }

    .vision-block p,
    .mission-block p {
        font-size: 1rem;
        line-height: 1.6;
        text-align: left; /* Better readability on mobile */
    }

    .core-values {
        padding: 40px 0;
    }

    .core-values .section-title {
        font-size: 1.6rem;
        margin-bottom: 30px;
    }

    .values-grid {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 25px;
        padding: 0 15px;
    }

    .value-card {
        background: #111111;
        border: 1px solid #333333;
        border-radius: 12px;
        padding: 2rem;
        text-align: center;
        transition: all 0.3s ease;
        width: 100%;
        max-width: 90%;
        margin: 0 auto;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    }

    .value-card:hover {
        transform: translateY(-5px);
        border-color: #00A550;
        box-shadow: 0 6px 25px rgba(0, 0, 0, 0.4);
    }

    .value-icon {
        font-size: 3rem;
        margin: 0 auto 1.5rem;
        display: block;
        text-align: center;
        color: #00ff9d;
    }

    .value-card h3 {
        font-size: 1.4rem;
        font-weight: 600;
        margin-bottom: 1rem;
        color: #ffffff;
        text-align: center;
    }

    .value-card p {
        color: #cccccc;
        font-size: 1rem;
        line-height: 1.7;
        text-align: center;
        margin: 0;
    }

    .about-cta {
        padding: 40px 0;
    }

    .about-cta h2 {
        font-size: 1.6rem;
    }

    .about-cta p {
        font-size: 1rem;
        padding: 0 15px;
        text-align: left; /* Better readability on mobile */
    }
}

@media (max-width: 992px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

/* Content Section Styles for Responsible Gambling Page */
.content-section {
    padding: 60px 0;
    background: #0a0a0a;
}

.content-card {
    background: #111;
    border-radius: 8px;
    padding: 40px;
    margin-bottom: 40px;
    border: 1px solid #333;
}

.content-card h2 {
    color: #00A550;
    font-size: 28px;
    margin-bottom: 20px;
    font-weight: 600;
}

.content-card p {
    color: #fff;
    line-height: 1.6;
    margin-bottom: 15px;
    font-size: 16px;
}

.content-card ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.content-card ul li {
    color: #fff;
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
    line-height: 1.5;
}

.content-card ul li:before {
    content: "•";
    color: #00A550;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.help-resources {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 30px 0;
}

.resource-item {
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 8px;
    padding: 25px;
    transition: all 0.3s ease;
}

.resource-item:hover {
    border-color: #00A550;
    transform: translateY(-2px);
}

.resource-item h3 {
    color: #00A550;
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: 600;
}

.resource-item p {
    color: #ccc;
    margin-bottom: 15px;
    line-height: 1.5;
}

.resource-link {
    display: inline-block;
    background: #00A550;
    color: #000;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.resource-link:hover {
    background: #008f45;
    transform: translateY(-1px);
}

/* Responsive adjustments for content sections */
@media (max-width: 768px) {
    .content-card {
        padding: 25px;
        margin-bottom: 30px;
    }
    
    .content-card h2 {
        font-size: 24px;
    }
    
    .help-resources {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .resource-item {
        padding: 20px;
    }
}

/* FAQ Page Styles */
.content-card h3 {
    color: #00A550;
    font-size: 22px;
    margin-bottom: 15px;
    font-weight: 600;
    line-height: 1.3;
}

/* Responsive adjustments for FAQ */
@media (max-width: 768px) {
    .content-card h3 {
        font-size: 20px;
    }
}

/* Testimonial Section Styles */
.testimonial-section {
    padding: 80px 0;
    background: #0a0a0a;
}

.testimonial-section h2 {
    color: #00A550;
    font-size: 32px;
    text-align: center;
    margin-bottom: 50px;
    font-weight: 600;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.testimonial-card {
    background: #111;
    border: 1px solid #333;
    border-radius: 8px;
    padding: 30px;
    position: relative;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    border-color: #00A550;
    transform: translateY(-2px);
}

.quote-mark {
    color: #00A550;
    font-size: 48px;
    font-weight: bold;
    line-height: 1;
    margin-bottom: 15px;
}

.testimonial-text {
    color: #fff;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    color: #00A550;
    font-weight: 500;
    font-size: 14px;
    text-align: right;
}

/* Final Verdict Section Styles */
.final-verdict-section {
    padding: 80px 0;
    background: #0f0f0f;
    border-top: 1px solid #333;
}

.final-verdict-section h2 {
    color: #00A550;
    font-size: 32px;
    text-align: center;
    margin-bottom: 30px;
    font-weight: 600;
}

.final-verdict-section p {
    color: #fff;
    font-size: 18px;
    line-height: 1.6;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
}

.final-verdict-section .cta-button {
    display: block;
    width: fit-content;
    margin: 0 auto;
    font-size: 18px;
    padding: 15px 30px;
    text-decoration: none;
}

/* Responsive adjustments for new sections */
@media (max-width: 768px) {
    .testimonial-section {
        padding: 60px 0;
    }
    
    .testimonial-section h2 {
        font-size: 28px;
        margin-bottom: 40px;
    }
    
    .testimonial-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .testimonial-card {
        padding: 25px;
    }
    
    .final-verdict-section {
        padding: 60px 0;
    }
    
    .final-verdict-section h2 {
        font-size: 28px;
    }
    
    .final-verdict-section p {
        font-size: 16px;
        margin-bottom: 30px;
    }
    
    .final-verdict-section .cta-button {
        font-size: 16px;
        padding: 12px 25px;
    }
}

/* Specific styling for Responsible Gambling page */
body:has(.hero h1:contains("Responsible Gambling")) .hero,
body:has(.hero h1:contains("Responsible Gambling at KatsuBet")) .hero {
    padding-top: 50px;
}

/* Alternative approach for better browser support */
.hero {
    padding-top: 50px;
}