/* JEETO88 - Vibrant ColorHunt Palette Design */

/* ColorHunt Palette Variables */
:root {
    --raspberry-red: #E4004B;
    --blossom-peach: #ED775A;
    --honey-yellow: #FAD691;
    --silver-gray: #C9CDCF;
    --white: #FFFFFF;
    --black: #000000;
    
    /* Hover variants */
    --raspberry-red-hover: #C70042;
    --raspberry-red-light: #FF1A5C;
    --blossom-peach-hover: #E06A4F;
    --blossom-peach-light: #F08A6B;
    --honey-yellow-hover: #F7D070;
    --honey-yellow-light: #FDE4A8;
    --silver-gray-hover: #B8BCC0;
    --silver-gray-light: #DADEE0;
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--black);
    background-color: var(--silver-gray);
    font-size: 16px;
}

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

/* Header Styles - Raspberry Red Background */
.header {
    background: var(--raspberry-red);
    box-shadow: 0 4px 20px rgba(228, 0, 75, 0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header.scrolled {
    box-shadow: 0 6px 25px rgba(228, 0, 75, 0.4);
}

.navbar {
    padding: 1rem 0;
}

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

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

.logo-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: var(--white);
}

.logo-img {
    height: 40px;
    width: 40px;
    filter: brightness(0) invert(1); /* Make logo white */
}

.logo-link h1 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    color: var(--white);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu li {
    margin: 0;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 8px;
}

.nav-link:hover,
.nav-link.active {
    background-color: var(--raspberry-red-hover);
    transform: translateY(-2px);
}

.btn-login,
.btn-register {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 0.9rem;
}

.btn-login {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-login:hover {
    background: var(--white);
    color: var(--raspberry-red);
    transform: translateY(-2px);
}

.btn-register {
    background: var(--honey-yellow);
    color: var(--black);
    border-color: var(--honey-yellow);
}

.btn-register:hover {
    background: var(--honey-yellow-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(250, 214, 145, 0.4);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--white);
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 700;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: var(--raspberry-red);
    color: var(--white);
    border-color: var(--raspberry-red);
    box-shadow: 0 4px 15px rgba(228, 0, 75, 0.3);
}

.btn-primary:hover {
    background: var(--raspberry-red-hover);
    border-color: var(--raspberry-red-hover);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(228, 0, 75, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--raspberry-red);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

/* Breadcrumb Styles */
.breadcrumb {
    background: var(--honey-yellow);
    padding: 0.75rem 0;
}

.breadcrumb-list {
    display: flex;
    list-style: none;
    gap: 0.5rem;
}

.breadcrumb-list li:not(:last-child)::after {
    content: '>';
    margin-left: 0.5rem;
    color: var(--black);
    font-weight: bold;
}

.breadcrumb-list a {
    color: var(--black);
    text-decoration: none;
    font-weight: 600;
}

.breadcrumb-list a:hover {
    color: var(--raspberry-red);
    text-decoration: underline;
}

/* Hero Section - Blossom Peach Gradient */
.hero {
    background: linear-gradient(135deg, var(--blossom-peach) 0%, var(--raspberry-red) 100%);
    color: var(--white);
    padding: 5rem 0;
    min-height: 80vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.hero-image img:hover {
    transform: scale(1.05);
}

/* About Platform Section - Silver Gray Background */
.about-platform {
    padding: 5rem 0;
    background: var(--silver-gray);
    color: var(--black);
}

.about-platform h2 {
    font-size: 2.8rem;
    margin-bottom: 2.5rem;
    text-align: center;
    color: var(--black);
    font-weight: 700;
}

.about-platform p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    text-align: justify;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

/* Features Section - Honey Yellow Background */
.features {
    padding: 5rem 0;
    background: var(--honey-yellow);
    color: var(--black);
}

.features h2 {
    font-size: 2.8rem;
    margin-bottom: 3.5rem;
    text-align: center;
    color: var(--black);
    font-weight: 700;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.feature-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 3px solid transparent;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--raspberry-red);
}

.feature-card img {
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.feature-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    color: var(--black);
    font-weight: 700;
}

.feature-card p {
    color: var(--black);
    line-height: 1.7;
    font-size: 1.05rem;
}

/* Register Section - Silver Gray Background */
.register-section {
    padding: 5rem 0;
    background: var(--silver-gray);
    color: var(--black);
}

.register-section .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.register-content h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: var(--black);
    font-weight: 700;
    line-height: 1.2;
}

.register-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    line-height: 1.7;
    color: var(--black);
}

.register-content h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--black);
    font-weight: 700;
}

.steps-container {
    margin-bottom: 2.5rem;
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background: var(--honey-yellow);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.step-item:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.step-icon {
    width: 50px;
    height: 50px;
    background: var(--raspberry-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--white);
}

.step-content h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--black);
    font-weight: 700;
}

.step-content p {
    font-size: 1rem;
    color: var(--black);
    line-height: 1.6;
    margin: 0;
}

.register-actions {
    text-align: center;
}

.register-note {
    margin-top: 1rem;
    font-size: 1rem;
    color: var(--black);
}

.register-note a {
    color: var(--raspberry-red);
    text-decoration: none;
    font-weight: 600;
}

.register-note a:hover {
    text-decoration: underline;
}

.register-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.register-visual img {
    width: 200px;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.register-visual img:hover {
    transform: scale(1.05);
}

/* Login Section - Honey Yellow Background */
.login-section {
    padding: 5rem 0;
    background: var(--honey-yellow);
    color: var(--black);
}

.login-section .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.login-content h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: var(--black);
    font-weight: 700;
    line-height: 1.2;
}

.login-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    line-height: 1.7;
    color: var(--black);
}

.login-content h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--black);
    font-weight: 700;
}

.benefits-list {
    list-style: none;
    margin-bottom: 2rem;
}

.benefits-list li {
    padding: 0.75rem 0;
    color: var(--black);
    font-size: 1.1rem;
    position: relative;
    padding-left: 2rem;
}

.benefits-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--raspberry-red);
    font-weight: bold;
    font-size: 1.2rem;
}

.login-actions {
    text-align: center;
}

.login-note {
    margin-top: 1rem;
    font-size: 1rem;
    color: var(--black);
}

.login-note a {
    color: var(--raspberry-red);
    text-decoration: none;
    font-weight: 600;
}

.login-note a:hover {
    text-decoration: underline;
}

.login-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.login-visual img {
    width: 200px;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.login-visual img:hover {
    transform: scale(1.05);
}

/* Games Slider Section - Silver Gray Background */
.games-slider-section {
    padding: 5rem 0;
    background: var(--silver-gray);
    color: var(--black);
}

.games-slider-section h2 {
    font-size: 2.8rem;
    margin-bottom: 3rem;
    text-align: center;
    color: var(--black);
    font-weight: 700;
}

.slider-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    max-width: 1000px;
    margin: 0 auto;
}

/* Main Image Container */
.main-image-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.main-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 450px;
}

.main-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    transition: opacity 0.5s ease;
    min-height: 500px;
    object-fit: cover;
}

.nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--raspberry-red);
    color: var(--white);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(228, 0, 75, 0.3);
    z-index: 10;
}

.nav-arrow:hover {
    background: var(--raspberry-red-hover);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(228, 0, 75, 0.4);
}

.nav-left {
    left: -25px;
}

.nav-right {
    right: -25px;
}

/* Thumbnails Container */
.thumbnails-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.thumbnails-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 1rem;
    width: 100%;
    max-width: 280px;
    padding: 0.5rem;
}

.thumbnail-item {
    position: relative;
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 3px solid transparent;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    aspect-ratio: 1;
    display: flex;
    flex-direction: column;
}

.thumbnail-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    border-color: var(--blossom-peach);
}

.thumbnail-item.active {
    border-color: var(--raspberry-red);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(228, 0, 75, 0.3);
}

.thumbnail-item img {
    width: 100%;
    height: 70%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.thumbnail-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    padding: 0.5rem;
    color: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 30%;
}

.game-name {
    font-size: 0.75rem;
    font-weight: 600;
    text-align: center;
    margin: 0;
    line-height: 1.2;
}

.play-btn {
    background: var(--raspberry-red);
    color: var(--white);
    border: none;
    border-radius: 12px;
    padding: 0.3rem 0.6rem;
    font-size: 0.65rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 0.4rem;
    align-self: center;
    min-width: 50px;
}

.play-btn:hover {
    background: var(--raspberry-red-hover);
    transform: scale(1.05);
}

/* Center the middle thumbnail in 2x3 grid */
.thumbnails-grid .thumbnail-item:nth-child(3) {
    grid-column: 1 / -1;
    justify-self: center;
    max-width: 120px;
    margin: 0 auto;
}

/* FAQ Page Styles */
.faq-hero {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--blossom-peach) 0%, var(--raspberry-red) 100%);
    color: var(--white);
    text-align: center;
}

.faq-hero h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.faq-hero p {
    font-size: 1.2rem;
    opacity: 0.95;
    max-width: 600px;
    margin: 0 auto;
}

.faq-categories {
    padding: 4rem 0;
    background: var(--silver-gray);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.category-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border: 3px solid transparent;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-color: var(--raspberry-red);
}

.category-icon {
    width: 60px;
    height: 60px;
    background: var(--raspberry-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--white);
}

.category-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--black);
    font-weight: 700;
}

.category-card p {
    color: var(--black);
    line-height: 1.6;
    font-size: 1rem;
}

.faq-sections {
    padding: 4rem 0;
    background: var(--honey-yellow);
}

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

.faq-section h2 {
    font-size: 2.5rem;
    margin-bottom: 2.5rem;
    color: var(--black);
    font-weight: 700;
    text-align: center;
    position: relative;
}

.faq-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--raspberry-red);
    border-radius: 2px;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    margin-bottom: 1.5rem;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border-left: 5px solid var(--blossom-peach);
}

.faq-item:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-left-color: var(--raspberry-red);
}

.faq-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--black);
    font-weight: 700;
}

.faq-item p {
    color: var(--black);
    line-height: 1.7;
    font-size: 1.05rem;
}

.contact-support {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--raspberry-red) 0%, var(--blossom-peach) 100%);
    color: var(--white);
    text-align: center;
}

.contact-support h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.contact-support p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.support-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* About Us Page Styles */
.page-hero {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--raspberry-red) 0%, var(--blossom-peach) 100%);
    color: var(--white);
    text-align: center;
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-hero p {
    font-size: 1.2rem;
    opacity: 0.95;
    max-width: 600px;
    margin: 0 auto 1rem;
}

.last-updated {
    font-size: 1rem;
    opacity: 0.8;
    font-style: italic;
}

.our-story {
    padding: 5rem 0;
    background: var(--silver-gray);
}

.story-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.story-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--black);
    font-weight: 700;
}

.story-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--black);
}

.story-image {
    margin-top: 3rem;
    text-align: center;
}

.story-image img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.our-mission {
    padding: 5rem 0;
    background: var(--honey-yellow);
}

.our-mission h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--black);
    font-weight: 700;
    text-align: center;
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.mission-item {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border-top: 5px solid var(--raspberry-red);
}

.mission-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.mission-item h3 {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    color: var(--black);
    font-weight: 700;
}

.mission-item p {
    color: var(--black);
    line-height: 1.7;
    font-size: 1.05rem;
}

.our-values {
    padding: 5rem 0;
    background: var(--silver-gray);
}

.our-values h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--black);
    font-weight: 700;
    text-align: center;
}

.values-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.value-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border-left: 5px solid var(--blossom-peach);
}

.value-item:hover {
    transform: translateX(10px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
    border-left-color: var(--raspberry-red);
}

.value-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--black);
    font-weight: 700;
}

.value-item p {
    color: var(--black);
    line-height: 1.6;
    font-size: 1rem;
}

.cta {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--raspberry-red) 0%, var(--blossom-peach) 100%);
    color: var(--white);
    text-align: center;
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.cta p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Privacy Policy, Terms & Conditions, Disclaimer Page Styles */
.privacy-content,
.terms-content,
.disclaimer-content {
    padding: 4rem 0;
    background: var(--honey-yellow);
}

.privacy-intro,
.terms-intro,
.disclaimer-intro {
    background: var(--white);
    padding: 3rem;
    border-radius: 15px;
    margin-bottom: 3rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-left: 5px solid var(--raspberry-red);
}

.privacy-intro h2,
.terms-intro h2,
.disclaimer-intro h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--black);
    font-weight: 700;
}

.privacy-intro p,
.terms-intro p,
.disclaimer-intro p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: var(--black);
}

.privacy-section,
.terms-section,
.disclaimer-section {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.privacy-section:hover,
.terms-section:hover,
.disclaimer-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.privacy-section h2,
.terms-section h2,
.disclaimer-section h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--black);
    font-weight: 700;
    border-bottom: 3px solid var(--blossom-peach);
    padding-bottom: 0.5rem;
}

.privacy-section h3,
.terms-section h3,
.disclaimer-section h3 {
    font-size: 1.3rem;
    margin: 1.5rem 0 1rem;
    color: var(--black);
    font-weight: 600;
}

.privacy-section p,
.terms-section p,
.disclaimer-section p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1rem;
    color: var(--black);
}

.privacy-section ul,
.terms-section ul,
.disclaimer-section ul {
    margin: 1rem 0 1.5rem 2rem;
    color: var(--black);
}

.privacy-section li,
.terms-section li,
.disclaimer-section li {
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.privacy-section a,
.terms-section a,
.disclaimer-section a {
    color: var(--raspberry-red);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.privacy-section a:hover,
.terms-section a:hover,
.disclaimer-section a:hover {
    color: var(--blossom-peach);
    text-decoration: underline;
}

/* Security Assurance Section - Honey Yellow Background */
.security-assurance {
    padding: 5rem 0;
    background: var(--honey-yellow);
    color: var(--black);
}

.security-assurance h2 {
    font-size: 2.8rem;
    margin-bottom: 3.5rem;
    text-align: center;
    color: var(--black);
    font-weight: 700;
}

.security-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 2.5rem;
}

.security-item {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border-left: 5px solid var(--raspberry-red);
}

.security-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.security-item h3 {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    color: var(--black);
    font-weight: 700;
}

.security-item p {
    color: var(--black);
    line-height: 1.7;
    font-size: 1.05rem;
}

/* FAQ Section - Silver Gray Background */
.faq {
    padding: 5rem 0;
    background: var(--silver-gray);
    color: var(--black);
}

.faq h2 {
    font-size: 2.8rem;
    margin-bottom: 3.5rem;
    text-align: center;
    color: var(--black);
    font-weight: 700;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 2rem;
    padding: 2rem;
    background: var(--white);
    border-radius: 15px;
    border-left: 5px solid var(--blossom-peach);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.faq-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--black);
    font-weight: 700;
}

.faq-item p {
    color: var(--black);
    line-height: 1.7;
    font-size: 1.05rem;
}

.faq-item a {
    color: var(--raspberry-red);
    text-decoration: none;
    font-weight: 600;
}

.faq-item a:hover {
    text-decoration: underline;
    color: var(--raspberry-red-hover);
}

/* CTA Section - Raspberry Red Gradient */
.cta {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--raspberry-red) 0%, var(--blossom-peach) 100%);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="2" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.3;
}

.cta .container {
    position: relative;
    z-index: 2;
}

.cta h2 {
    font-size: 2.8rem;
    margin-bottom: 2rem;
    font-weight: 800;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.cta p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
    opacity: 0.95;
}

.cta-buttons {
    margin-top: 2.5rem;
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer - Dark Raspberry Red Background */
.footer {
    background: var(--raspberry-red);
    color: var(--white);
    padding: 4rem 0 2rem;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--blossom-peach), var(--honey-yellow), var(--blossom-peach));
}

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

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1.5rem;
    color: var(--white);
    font-weight: 700;
    font-size: 1.2rem;
}

.footer-section p {
    color: var(--white);
    line-height: 1.7;
    opacity: 0.9;
}

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

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

.footer-section a {
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
    opacity: 0.9;
}

.footer-section a:hover {
    color: var(--honey-yellow);
    opacity: 1;
    transform: translateX(5px);
}

.footer-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    opacity: 0.8;
}

/* Responsive Design */

/* Tablet Styles (768px - 1024px) */
@media (max-width: 1024px) and (min-width: 769px) {
    .container {
        padding: 0 30px;
    }
    
    .hero .container {
        gap: 3rem;
    }
    
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .hero-content p {
        font-size: 1.2rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .security-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .register-section .container,
    .login-section .container {
        gap: 3rem;
    }
    
    .register-visual img,
    .login-visual img {
        width: 180px;
        height: 360px;
    }
    
    .slider-container {
        gap: 2.5rem;
        max-width: 900px;
    }
    
    .main-image-wrapper {
        max-width: 400px;
    }
    
    .thumbnails-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 1fr);
        gap: 1.2rem;
        max-width: 350px;
    }
    
    .thumbnails-grid .thumbnail-item:nth-child(3) {
        grid-column: 1 / -1;
        justify-self: center;
        max-width: 160px;
    }
    
    .mission-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .values-list {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile Styles (768px and below) */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    /* Header and Navigation */
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--raspberry-red);
        flex-direction: column;
        gap: 1rem;
        padding: 2rem 0;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        z-index: 999;
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-menu li {
        text-align: center;
    }
    
    .nav-link {
        padding: 1rem 2rem;
        font-size: 1.1rem;
    }
    
    .btn-login,
    .btn-register {
        margin: 0.5rem auto;
        display: block;
        width: fit-content;
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    /* Hero Section */
    .hero {
        padding: 3rem 0;
        min-height: 70vh;
    }
    
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .hero-buttons {
        justify-content: center;
        gap: 1rem;
    }
    
    .hero-image img {
        max-width: 300px;
        margin: 0 auto;
    }
    
    /* About Platform Section */
    .about-platform {
        padding: 3rem 0;
    }
    
    .about-platform h2 {
        font-size: 2.2rem;
        margin-bottom: 2rem;
    }
    
    .about-platform p {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }
    
    /* Features Section */
    .features {
        padding: 3rem 0;
    }
    
    .features h2 {
        font-size: 2.2rem;
        margin-bottom: 2.5rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .feature-card {
        padding: 2rem;
    }
    
    .feature-card h3 {
        font-size: 1.3rem;
    }
    
    .feature-card p {
        font-size: 1rem;
    }
    
    /* Register Section */
    .register-section {
        padding: 3rem 0;
    }
    
    .register-section .container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .register-content h2 {
        font-size: 2.2rem;
        margin-bottom: 1rem;
    }
    
    .register-content h3 {
        font-size: 1.6rem;
        margin-bottom: 1.5rem;
    }
    
    .register-content p {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }
    
    .register-visual {
        order: -1;
        margin-bottom: 2rem;
    }
    
    .register-visual img {
        width: 150px;
        height: 300px;
    }
    
    .step-item {
        padding: 1.2rem;
        margin-bottom: 1rem;
    }
    
    .step-icon {
        width: 45px;
        height: 45px;
    }
    
    .step-content h4 {
        font-size: 1.1rem;
    }
    
    .step-content p {
        font-size: 0.95rem;
    }
    
    /* Login Section */
    .login-section {
        padding: 3rem 0;
    }
    
    .login-section .container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .login-content h2 {
        font-size: 2.2rem;
        margin-bottom: 1rem;
    }
    
    .login-content h3 {
        font-size: 1.6rem;
        margin-bottom: 1.5rem;
    }
    
    .login-content p {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }
    
    .login-visual {
        order: -1;
        margin-bottom: 2rem;
    }
    
    .login-visual img {
        width: 150px;
        height: 300px;
    }
    
    .benefits-list li {
        font-size: 1rem;
        padding: 0.5rem 0;
        padding-left: 1.5rem;
    }
    
    /* Games Slider Section */
    .games-slider-section {
        padding: 3rem 0;
    }
    
    .games-slider-section h2 {
        font-size: 2.2rem;
        margin-bottom: 2rem;
    }
    
    .slider-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        max-width: 100%;
    }
    
    .main-image-wrapper {
        max-width: 300px;
        margin: 0 auto;
    }
    
    .main-image {
        min-height: 400px;
    }
    
    .thumbnails-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 1fr);
        gap: 1rem;
        max-width: 300px;
        margin: 0 auto;
        padding: 0.5rem;
    }
    
    .thumbnails-grid .thumbnail-item:nth-child(3) {
        grid-column: 1 / -1;
        justify-self: center;
        max-width: 140px;
    }
    
    .thumbnail-item {
        min-width: 120px;
    }
    
    .thumbnail-item img {
        height: 70%;
    }
    
    .nav-arrow {
        width: 40px;
        height: 40px;
    }
    
    .nav-left {
        left: -20px;
    }
    
    .nav-right {
        right: -20px;
    }
    
    /* Security Assurance Section */
    .security-assurance {
        padding: 3rem 0;
    }
    
    .security-assurance h2 {
        font-size: 2.2rem;
        margin-bottom: 2.5rem;
    }
    
    .security-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .security-item {
        padding: 2rem;
    }
    
    .security-item h3 {
        font-size: 1.3rem;
    }
    
    .security-item p {
        font-size: 1rem;
    }
    
    /* FAQ Section */
    .faq {
        padding: 3rem 0;
    }
    
    .faq h2 {
        font-size: 2.2rem;
        margin-bottom: 2.5rem;
    }
    
    .faq-item {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .faq-item h3 {
        font-size: 1.2rem;
    }
    
    .faq-item p {
        font-size: 1rem;
    }
    
    /* CTA Section */
    .cta {
        padding: 3rem 0;
    }
    
    .cta h2 {
        font-size: 2.2rem;
        margin-bottom: 1.5rem;
    }
    
    .cta p {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    /* Footer */
    .footer {
        padding: 3rem 0 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-section h3,
    .footer-section h4 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }
    
    .footer-buttons {
        justify-content: center;
        gap: 0.75rem;
    }
    
    /* Page-specific responsive styles */
    .page-hero {
        padding: 3rem 0;
    }
    
    .page-hero h1 {
        font-size: 2.2rem;
        margin-bottom: 1rem;
    }
    
    .page-hero p {
        font-size: 1.1rem;
        margin-bottom: 0.75rem;
    }
    
    .our-story,
    .our-mission,
    .our-values {
        padding: 3rem 0;
    }
    
    .story-content h2,
    .our-mission h2,
    .our-values h2 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }
    
    .story-content p {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .mission-grid,
    .values-list {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .mission-item,
    .value-item {
        padding: 2rem;
    }
    
    .mission-item h3,
    .value-item h3 {
        font-size: 1.3rem;
    }
    
    .mission-item p,
    .value-item p {
        font-size: 1rem;
    }
    
    /* FAQ Page Styles */
    .faq-hero {
        padding: 3rem 0;
    }
    
    .faq-hero h1 {
        font-size: 2.2rem;
        margin-bottom: 1rem;
    }
    
    .faq-hero p {
        font-size: 1.1rem;
    }
    
    .faq-categories {
        padding: 3rem 0;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .category-card {
        padding: 1.5rem;
    }
    
    .category-card h3 {
        font-size: 1.2rem;
    }
    
    .category-card p {
        font-size: 0.95rem;
    }
    
    .faq-sections {
        padding: 3rem 0;
    }
    
    .faq-section h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .faq-section .faq-item {
        padding: 1.5rem;
    }
    
    .faq-section .faq-item h3 {
        font-size: 1.2rem;
    }
    
    .faq-section .faq-item p {
        font-size: 1rem;
    }
    
    .contact-support {
        padding: 3rem 0;
    }
    
    .contact-support h2 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .contact-support p {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }
    
    .support-actions {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    /* Privacy, Terms, Disclaimer Pages */
    .privacy-content,
    .terms-content,
    .disclaimer-content {
        padding: 3rem 0;
    }
    
    .privacy-intro,
    .terms-intro,
    .disclaimer-intro {
        padding: 2rem;
        margin-bottom: 2rem;
    }
    
    .privacy-intro h2,
    .terms-intro h2,
    .disclaimer-intro h2 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }
    
    .privacy-intro p,
    .terms-intro p,
    .disclaimer-intro p {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .privacy-section,
    .terms-section,
    .disclaimer-section {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .privacy-section h2,
    .terms-section h2,
    .disclaimer-section h2 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .privacy-section h3,
    .terms-section h3,
    .disclaimer-section h3 {
        font-size: 1.2rem;
        margin: 1rem 0 0.75rem;
    }
    
    .privacy-section p,
    .terms-section p,
    .disclaimer-section p {
        font-size: 1rem;
        margin-bottom: 0.75rem;
    }
    
    .privacy-section ul,
    .terms-section ul,
    .disclaimer-section ul {
        margin: 0.75rem 0 1rem 1.5rem;
    }
    
    .privacy-section li,
    .terms-section li,
    .disclaimer-section li {
        font-size: 1rem;
        margin-bottom: 0.4rem;
    }
}

/* Small Mobile Styles (480px and below) */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    /* Header and Navigation */
    .nav-container {
        padding: 0 15px;
    }
    
    .logo-link h1 {
        font-size: 1.3rem;
    }
    
    .logo-img {
        height: 35px;
        width: 35px;
    }
    
    .nav-link {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
    
    .btn-login,
    .btn-register {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
    
    /* Hero Section */
    .hero {
        padding: 2.5rem 0;
        min-height: 60vh;
    }
    
    .hero-content h1 {
        font-size: 2rem;
        margin-bottom: 0.75rem;
    }
    
    .hero-content p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-buttons {
        gap: 0.75rem;
    }
    
    .hero-image img {
        max-width: 250px;
    }
    
    /* About Platform Section */
    .about-platform {
        padding: 2.5rem 0;
    }
    
    .about-platform h2 {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }
    
    .about-platform p {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    /* Features Section */
    .features {
        padding: 2.5rem 0;
    }
    
    .features h2 {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
    
    .feature-card h3 {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }
    
    .feature-card p {
        font-size: 0.95rem;
    }
    
    /* Register Section */
    .register-section {
        padding: 2.5rem 0;
    }
    
    .register-content h2 {
        font-size: 1.8rem;
        margin-bottom: 0.75rem;
    }
    
    .register-content h3 {
        font-size: 1.4rem;
        margin-bottom: 1rem;
    }
    
    .register-content p {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .register-visual img {
        width: 120px;
        height: 240px;
    }
    
    .step-item {
        padding: 1rem;
        margin-bottom: 0.75rem;
    }
    
    .step-icon {
        width: 40px;
        height: 40px;
    }
    
    .step-content h4 {
        font-size: 1rem;
        margin-bottom: 0.4rem;
    }
    
    .step-content p {
        font-size: 0.9rem;
    }
    
    /* Login Section */
    .login-section {
        padding: 2.5rem 0;
    }
    
    .login-content h2 {
        font-size: 1.8rem;
        margin-bottom: 0.75rem;
    }
    
    .login-content h3 {
        font-size: 1.4rem;
        margin-bottom: 1rem;
    }
    
    .login-content p {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .login-visual img {
        width: 120px;
        height: 240px;
    }
    
    .benefits-list li {
        font-size: 0.95rem;
        padding: 0.4rem 0;
        padding-left: 1.25rem;
    }
    
    /* Games Slider Section */
    .games-slider-section {
        padding: 2.5rem 0;
    }
    
    .games-slider-section h2 {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }
    
    .main-image-wrapper {
        max-width: 250px;
    }
    
    .main-image {
        min-height: 350px;
    }
    
    .thumbnails-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 1fr);
        gap: 0.8rem;
        max-width: 250px;
        padding: 0.4rem;
    }
    
    .thumbnails-grid .thumbnail-item:nth-child(3) {
        grid-column: 1 / -1;
        justify-self: center;
        max-width: 120px;
    }
    
    .thumbnail-item {
        min-width: 100px;
    }
    
    .thumbnail-item img {
        height: 70%;
    }
    
    .game-name {
        font-size: 0.75rem;
    }
    
    .play-btn {
        padding: 0.3rem 0.6rem;
        font-size: 0.65rem;
        min-width: 50px;
    }
    
    .nav-arrow {
        width: 35px;
        height: 35px;
    }
    
    .nav-left {
        left: -17px;
    }
    
    .nav-right {
        right: -17px;
    }
    
    .game-name {
        font-size: 0.8rem;
    }
    
    .play-btn {
        padding: 0.4rem 0.8rem;
        font-size: 0.7rem;
    }
    
    /* Security Assurance Section */
    .security-assurance {
        padding: 2.5rem 0;
    }
    
    .security-assurance h2 {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }
    
    .security-item {
        padding: 1.5rem;
    }
    
    .security-item h3 {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }
    
    .security-item p {
        font-size: 0.95rem;
    }
    
    /* FAQ Section */
    .faq {
        padding: 2.5rem 0;
    }
    
    .faq h2 {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }
    
    .faq-item {
        padding: 1.25rem;
        margin-bottom: 1rem;
    }
    
    .faq-item h3 {
        font-size: 1.1rem;
        margin-bottom: 0.75rem;
    }
    
    .faq-item p {
        font-size: 0.95rem;
    }
    
    /* CTA Section */
    .cta {
        padding: 2.5rem 0;
    }
    
    .cta h2 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }
    
    .cta p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .cta-buttons {
        gap: 0.75rem;
    }
    
    /* Footer */
    .footer {
        padding: 2.5rem 0 1rem;
    }
    
    .footer-section h3,
    .footer-section h4 {
        font-size: 1rem;
        margin-bottom: 0.75rem;
    }
    
    .footer-buttons {
        gap: 0.5rem;
    }
    
    /* Page-specific responsive styles */
    .page-hero {
        padding: 2.5rem 0;
    }
    
    .page-hero h1 {
        font-size: 1.8rem;
        margin-bottom: 0.75rem;
    }
    
    .page-hero p {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }
    
    .our-story,
    .our-mission,
    .our-values {
        padding: 2.5rem 0;
    }
    
    .story-content h2,
    .our-mission h2,
    .our-values h2 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }
    
    .story-content p {
        font-size: 0.95rem;
        margin-bottom: 0.75rem;
    }
    
    .mission-item,
    .value-item {
        padding: 1.5rem;
    }
    
    .mission-item h3,
    .value-item h3 {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }
    
    .mission-item p,
    .value-item p {
        font-size: 0.95rem;
    }
    
    /* FAQ Page Styles */
    .faq-hero {
        padding: 2.5rem 0;
    }
    
    .faq-hero h1 {
        font-size: 1.8rem;
        margin-bottom: 0.75rem;
    }
    
    .faq-hero p {
        font-size: 1rem;
    }
    
    .faq-categories {
        padding: 2.5rem 0;
    }
    
    .category-card {
        padding: 1.25rem;
    }
    
    .category-card h3 {
        font-size: 1.1rem;
        margin-bottom: 0.75rem;
    }
    
    .category-card p {
        font-size: 0.9rem;
    }
    
    .faq-sections {
        padding: 2.5rem 0;
    }
    
    .faq-section h2 {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }
    
    .faq-section .faq-item {
        padding: 1.25rem;
    }
    
    .faq-section .faq-item h3 {
        font-size: 1.1rem;
    }
    
    .faq-section .faq-item p {
        font-size: 0.95rem;
    }
    
    .contact-support {
        padding: 2.5rem 0;
    }
    
    .contact-support h2 {
        font-size: 1.8rem;
        margin-bottom: 0.75rem;
    }
    
    .contact-support p {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .support-actions {
        gap: 0.75rem;
    }
    
    /* Privacy, Terms, Disclaimer Pages */
    .privacy-content,
    .terms-content,
    .disclaimer-content {
        padding: 2.5rem 0;
    }
    
    .privacy-intro,
    .terms-intro,
    .disclaimer-intro {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .privacy-intro h2,
    .terms-intro h2,
    .disclaimer-intro h2 {
        font-size: 1.6rem;
        margin-bottom: 0.75rem;
    }
    
    .privacy-intro p,
    .terms-intro p,
    .disclaimer-intro p {
        font-size: 0.95rem;
        margin-bottom: 0.75rem;
    }
    
    .privacy-section,
    .terms-section,
    .disclaimer-section {
        padding: 1.25rem;
        margin-bottom: 1rem;
    }
    
    .privacy-section h2,
    .terms-section h2,
    .disclaimer-section h2 {
        font-size: 1.3rem;
        margin-bottom: 0.75rem;
    }
    
    .privacy-section h3,
    .terms-section h3,
    .disclaimer-section h3 {
        font-size: 1.1rem;
        margin: 0.75rem 0 0.5rem;
    }
    
    .privacy-section p,
    .terms-section p,
    .disclaimer-section p {
        font-size: 0.95rem;
        margin-bottom: 0.5rem;
    }
    
    .privacy-section ul,
    .terms-section ul,
    .disclaimer-section ul {
        margin: 0.5rem 0 0.75rem 1.25rem;
    }
    
    .privacy-section li,
    .terms-section li,
    .disclaimer-section li {
        font-size: 0.95rem;
        margin-bottom: 0.3rem;
    }
    
    /* Button adjustments */
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .btn-large {
        padding: 14px 28px;
        font-size: 1rem;
    }
}

/* Additional Responsive Improvements */

/* Landscape orientation for mobile devices */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        padding: 2rem 0;
        min-height: 50vh;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .page-hero {
        padding: 2rem 0;
    }
    
    .page-hero h1 {
        font-size: 2rem;
    }
    
    .faq-hero {
        padding: 2rem 0;
    }
    
    .faq-hero h1 {
        font-size: 2rem;
    }
}

/* Touch-friendly improvements */
@media (hover: none) and (pointer: coarse) {
    .btn,
    .btn-login,
    .btn-register,
    .nav-link {
        min-height: 44px;
        min-width: 44px;
    }
    
    .thumbnail-item,
    .category-card,
    .feature-card {
        cursor: pointer;
    }
    
    .nav-arrow {
        min-width: 44px;
        min-height: 44px;
    }
    
    .play-btn {
        min-height: 36px;
        min-width: 60px;
    }
}

/* High DPI displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .logo-img {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus styles for accessibility */
.btn:focus,
a:focus {
    outline: 3px solid var(--honey-yellow);
    outline-offset: 3px;
}

/* Skip link for accessibility */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: var(--black);
    color: var(--white);
    padding: 8px;
    text-decoration: none;
    z-index: 1000;
    transition: top 0.3s;
    border-radius: 4px;
}

.skip-link:focus {
    top: 6px;
}

/* Print styles */
@media print {
    .header,
    .footer,
    .cta,
    .nav-buttons {
        display: none;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
        background: white;
        color: black;
    }
    
    h1, h2, h3 {
        page-break-after: avoid;
        color: black;
    }
    
    .hero {
        background: white;
        color: black;
    }
    
    .features,
    .security-assurance,
    .about-platform,
    .registration-process,
    .faq {
        background: white;
        color: black;
    }
}