/* 6 Club VIP - Modern Website Design using ColorHunt Palette */
/* Color Palette:
   #3396D3 - Bright Sky Blue (Main background/highlighted panels)
   #FFF0CE - Soft Pale Peach (Section/card background)
   #EBCB90 - Warm Sandy Beige (Accent panel/visual highlight)
   #EEEEEE - Light Gray (Overall page background/subtle area)
*/

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #000000; /* Black text for light backgrounds */
    background-color: #EEEEEE; /* Light gray overall background */
}

/* Utility Classes for Text Contrast */
.text-white {
    color: #FFFFFF !important;
}

.text-black {
    color: #000000 !important;
}

/* Header Styles */
.header {
    background-color: #3396D3; /* Bright Sky Blue */
    color: #FFFFFF; /* White text on dark background */
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(51, 150, 211, 0.3);
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    position: relative;
    gap: 2rem;
}

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

.logo-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: inherit;
}

.logo-img {
    height: 40px;
    width: 40px;
    object-fit: contain;
}

.nav-logo h1 {
    font-size: 1.5rem;
    font-weight: bold;
    color: #FFFFFF;
    margin: 0;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
    margin: 0;
    padding: 0;
    flex: 1;
    justify-content: center;
}

.nav-link {
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.6rem 1rem;
    border-radius: 6px;
    white-space: nowrap;
    font-size: 0.95rem;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-link:hover {
    color: #FFF0CE; /* Soft Pale Peach on hover */
    background-color: rgba(255, 240, 206, 0.1);
}

.nav-link.active {
    color: #FFF0CE;
    background-color: rgba(255, 240, 206, 0.2);
}

.nav-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-shrink: 0;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
    background: none;
    border: none;
    outline: none;
    min-width: 44px;
    min-height: 44px;
    justify-content: center;
    align-items: center;
    z-index: 1001;
    position: relative;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #FFFFFF;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
    display: block;
}

.hamburger:focus {
    outline: 2px solid #FFF0CE;
    outline-offset: 2px;
}

.hamburger:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .hamburger {
        display: flex !important;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: #3396D3;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
        gap: 1rem;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 0.5rem 0;
    }
    
    .nav-actions {
        margin-top: 1rem;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .hamburger.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
}

/* Button Styles */
.btn {
    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;
}

.btn-primary {
    background-color: #EBCB90; /* Warm Sandy Beige */
    color: #000000; /* Black text on light background */
    border-color: #EBCB90;
}

.btn-primary:hover {
    background-color: #D4B87A; /* Darker variant for hover */
    border-color: #D4B87A;
    color: #000000;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(235, 203, 144, 0.4);
}

.btn-outline {
    background-color: transparent;
    color: #FFFFFF; /* White text for dark background */
    border-color: #FFFFFF;
}

.btn-outline:hover {
    background-color: #FFFFFF;
    color: #3396D3; /* Sky blue text on white background */
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

.btn-login {
    background-color: transparent;
    color: #FFFFFF; /* White text for dark background */
    border-color: #FFFFFF;
}

.btn-login:hover {
    background-color: #FFFFFF;
    color: #3396D3; /* Sky blue text on white background */
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

.btn-register {
    background-color: #EBCB90; /* Warm Sandy Beige */
    color: #000000; /* Black text on light background */
    border-color: #EBCB90;
}

.btn-register:hover {
    background-color: #D4B87A; /* Darker variant for hover */
    border-color: #D4B87A;
    color: #000000;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(235, 203, 144, 0.4);
}

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

.btn-login {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
    padding: 0.6rem 1.2rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-login:hover {
    background: #fff;
    color: #1a1a2e;
}

.btn-register {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
    color: white;
    border: 2px solid transparent;
    padding: 0.6rem 1.2rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-register:hover {
    background: linear-gradient(135deg, #ee5a24 0%, #ff6b6b 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.4);
}

/* Breadcrumb Styles */
.breadcrumb {
    background-color: #FFF0CE; /* Soft Pale Peach */
    padding: 0.75rem 0;
    border-bottom: 1px solid #EBCB90;
}

.breadcrumb-list {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    list-style: none;
    gap: 0.5rem;
}

.breadcrumb-item a {
    color: #000000; /* Black text on light background */
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
    color: #3396D3; /* Sky blue on hover */
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #3396D3 0%, #2A7BB8 100%); /* Sky blue gradient */
    color: #FFFFFF; /* White text on dark background */
    padding: 4rem 0;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

/* Games Slider Section */
.games-slider-section {
    background-color: #EEEEEE; /* Light gray background */
    padding: 2rem 0;
}

.games-slider-section h2 {
    font-size: 2.2rem;
    font-weight: bold;
    margin-bottom: 2rem;
    text-align: center;
    color: #000000; /* Black text on light background */
}

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

/* Main Image Container */
.main-image-container {
    position: relative;
    width: 100%;
}

.image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(51, 150, 211, 0.2);
    background-color: #FFFFFF;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.image-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(51, 150, 211, 0.3);
}

.main-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    display: block;
    transition: opacity 0.5s ease;
}

/* Navigation Arrows */
.nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: #3396D3; /* Sky blue background */
    color: #FFFFFF; /* White text on dark background */
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(51, 150, 211, 0.3);
}

.nav-arrow:hover {
    background-color: #2A7BB8; /* Darker sky blue on hover */
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(51, 150, 211, 0.4);
}

.nav-arrow-left {
    left: 20px;
}

.nav-arrow-right {
    right: 20px;
}

.nav-arrow:focus {
    outline: 3px solid #FFF0CE; /* Soft Pale Peach focus ring */
    outline-offset: 2px;
}

/* Thumbnails Container */
.thumbnails-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.thumbnails-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    max-width: 300px;
}

.thumbnail-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    background-color: #FFFFFF;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border: 3px solid transparent;
}

.thumbnail-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(51, 150, 211, 0.2);
    border-color: #EBCB90; /* Warm Sandy Beige border on hover */
}

.thumbnail-item.active {
    border-color: #3396D3; /* Sky blue border for active item */
    box-shadow: 0 10px 30px rgba(51, 150, 211, 0.3);
    transform: translateY(-3px);
}

.thumbnail-item img {
    width: 100%;
    height: 100px;
    object-fit: cover;
    display: block;
}

.thumbnail-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: #FFFFFF; /* White text on dark overlay */
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.thumbnail-item:hover .thumbnail-overlay {
    transform: translateY(0);
}

.game-name {
    font-weight: 600;
    font-size: 0.9rem;
}

.go-button {
    background-color: #EBCB90; /* Warm Sandy Beige background */
    color: #000000; /* Black text on light background */
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    transition: all 0.3s ease;
}

.go-button:hover {
    background-color: #D4B87A; /* Darker variant on hover */
    transform: scale(1.05);
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

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

/* Main Content */
.main-content {
    background-color: #EEEEEE; /* Light gray background */
}

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

/* Section Styles */
section {
    padding: 4rem 0;
}

section h2 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 2rem;
    text-align: center;
    color: #000000; /* Black text on light background */
}

section h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #000000; /* Black text on light background */
}

section p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #000000; /* Black text on light background */
    line-height: 1.7;
}

/* About Section */
.about-section {
    background-color: #FFF0CE; /* Soft Pale Peach background */
    color: #000000; /* Black text on light background */
}

/* Features Section */
.features-section {
    background-color: #EEEEEE; /* Light gray background */
}

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

.feature-card {
    background-color: #FFFFFF;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(51, 150, 211, 0.2);
    border-color: #3396D3; /* Sky blue border on hover */
}

.feature-img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    color: #000000; /* Black text on light background */
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.feature-card p {
    color: #000000; /* Black text on light background */
    font-size: 1rem;
}

/* Registration Section */
.registration-section {
    background-color: #EBCB90; /* Warm Sandy Beige background */
    color: #000000; /* Black text on light background */
}

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

.process-content a {
    color: #3396D3; /* Sky blue links */
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.process-content a:hover {
    color: #2A7BB8; /* Darker sky blue on hover */
    text-decoration: underline;
}

/* Security Section */
.security-section {
    background-color: #FFF0CE; /* Soft Pale Peach background */
    color: #000000; /* Black text on light background */
}

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

/* FAQ Section */
.faq-section {
    background-color: #EEEEEE; /* Light gray background */
}

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

.faq-item {
    background-color: #FFFFFF;
    margin-bottom: 1.5rem;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #3396D3; /* Sky blue accent */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.faq-item:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 25px rgba(51, 150, 211, 0.2);
}

.faq-item h3 {
    color: #000000; /* Black text on light background */
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.faq-item p {
    color: #000000; /* Black text on light background */
    margin-bottom: 0;
}

.faq-item a {
    color: #3396D3; /* Sky blue links */
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.faq-item a:hover {
    color: #2A7BB8; /* Darker sky blue on hover */
    text-decoration: underline;
}

/* How to Register Section */
.register-section {
    background-color: #F5F5DC; /* Light beige background like reference image */
    color: #333333; /* Dark text on light background */
    padding: 4rem 0;
}

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

.register-content {
    max-width: 600px;
}

.register-content h2 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    color: #333333;
    text-align: left;
    line-height: 1.2;
}

.register-content h3 {
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #333333;
}

.register-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #333333;
    line-height: 1.6;
}

.steps-container {
    margin: 2rem 0;
}

.step-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    background-color: #20B2AA; /* Teal/mint green for step boxes like reference */
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 3px 10px rgba(32, 178, 170, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(32, 178, 170, 0.3);
}

.step-icon {
    width: 50px;
    height: 50px;
    background-color: #FFFFFF; /* White background for icons */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
    color: #20B2AA; /* Teal color for icons */
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.step-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #FFFFFF; /* White text on teal background */
}

.step-content h4 strong {
    color: #FFD700; /* Gold color for bold keywords */
}

.step-content p {
    font-size: 1rem;
    margin-bottom: 0;
    color: #FFFFFF; /* White text on teal background */
    line-height: 1.5;
}

.register-note {
    margin-top: 1.5rem;
    font-size: 1rem;
    color: #333333;
}

.register-note a {
    color: #20B2AA;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.register-note a:hover {
    color: #008B8B;
    text-decoration: underline;
}

.hero-image-register {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.hero-image-register img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

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

/* How to Login Section */
.login-section {
    background-color: #F5F5DC; /* Light beige background like reference image */
    color: #333333; /* Dark text on light background */
    padding: 4rem 0;
}

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

.login-content {
    max-width: 600px;
}

.login-content h2 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    color: #333333;
    text-align: left;
    line-height: 1.2;
}

.login-content h3 {
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #333333;
}

.login-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #333333;
    line-height: 1.6;
}

.benefits-list {
    list-style: none;
    margin: 1.5rem 0;
    padding: 0;
}

.benefits-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.8rem;
    color: #333333;
    font-size: 1rem;
}

.benefits-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #20B2AA;
    font-weight: bold;
    font-size: 1.1rem;
}

.login-note {
    margin-top: 1.5rem;
    font-size: 1rem;
    color: #333333;
}

.login-note a {
    color: #20B2AA;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.login-note a:hover {
    color: #008B8B;
    text-decoration: underline;
}

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

.hero-image-login img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

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

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #3396D3 0%, #2A7BB8 100%); /* Sky blue gradient */
    color: #FFFFFF; /* White text on dark background */
    text-align: center;
}

.cta-section h2 {
    color: #FFFFFF; /* White text on dark background */
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.cta-section p {
    color: #FFFFFF; /* White text on dark background */
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

/* Footer */
.footer {
    background-color: #3396D3; /* Bright Sky Blue */
    color: #FFFFFF; /* White text on dark background */
    padding: 3rem 0 1rem;
}

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

.footer-section h3,
.footer-section h4 {
    color: #FFFFFF; /* White text on dark background */
    margin-bottom: 1rem;
}

.footer-section p {
    color: #FFFFFF; /* White text on dark background */
    margin-bottom: 1rem;
    opacity: 0.9;
}

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

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

.footer-section ul li a {
    color: #FFFFFF; /* White text on dark background */
    text-decoration: none;
    transition: color 0.3s ease;
    opacity: 0.9;
}

.footer-section ul li a:hover {
    color: #FFF0CE; /* Soft Pale Peach on hover */
    opacity: 1;
}

.footer-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

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

.footer-bottom p {
    color: #FFFFFF; /* White text on dark background */
    opacity: 0.8;
    margin: 0;
}

/* Medium Tablet Styles */
@media (max-width: 900px) and (min-width: 769px) {
    .nav-container {
        padding: 0 1.5rem;
        justify-content: space-between;
        align-items: center;
        flex-wrap: nowrap;
        gap: 1.5rem;
    }
    
    .nav-logo h1 {
        font-size: 1.3rem;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: #3396D3;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.15);
        padding: 2rem 0;
        gap: 0;
        z-index: 999;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 0;
        width: 100%;
    }
    
    .nav-link {
        display: block;
        padding: 1rem 2rem;
        font-size: 1rem;
        font-weight: 500;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: background-color 0.3s ease;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .nav-link:hover {
        background-color: rgba(255, 255, 255, 0.1);
        color: #FFF0CE;
    }
    
    .nav-actions {
        display: none;
    }
    
    .hamburger {
        display: flex !important;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }
    
    /* Mobile menu backdrop */
    .nav-menu::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: -1;
        opacity: 0;
        transition: opacity 0.3s ease;
    }
    
    .nav-menu.active::before {
        opacity: 1;
    }
    
    /* Mobile menu button styles */
    .nav-menu .btn {
        margin: 0.5rem 2rem;
        display: inline-block;
        width: calc(100% - 4rem);
        text-align: center;
    }
}

/* iPad Air Specific Optimization */
@media (max-width: 820px) and (min-width: 768px) {
    .nav-container {
        padding: 0 1.2rem;
        gap: 1.2rem;
    }
    
    .nav-menu {
        gap: 1.5rem;
    }
    
    .nav-link {
        padding: 0.5rem 0.8rem;
        font-size: 0.9rem;
    }
    
    .nav-actions {
        gap: 0.8rem;
    }
    
    .btn-login,
    .btn-register {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
}

/* Large Tablet Styles */
@media (max-width: 1024px) and (min-width: 901px) {
    .nav-container {
        padding: 0 1.5rem;
        justify-content: space-between;
        align-items: center;
        flex-wrap: nowrap;
        gap: 1.8rem;
    }
    
    .nav-logo h1 {
        font-size: 1.4rem;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: #3396D3;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.15);
        padding: 2rem 0;
        gap: 0;
        z-index: 999;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 0;
        width: 100%;
    }
    
    .nav-link {
        display: block;
        padding: 1rem 2rem;
        font-size: 1rem;
        font-weight: 500;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: background-color 0.3s ease;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .nav-link:hover {
        background-color: rgba(255, 255, 255, 0.1);
        color: #FFF0CE;
    }
    
    .nav-actions {
        display: none;
    }
    
    .hamburger {
        display: flex !important;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }
    
    /* Mobile menu backdrop */
    .nav-menu::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: -1;
        opacity: 0;
        transition: opacity 0.3s ease;
    }
    
    .nav-menu.active::before {
        opacity: 1;
    }
    
    /* Mobile menu button styles */
    .nav-menu .btn {
        margin: 0.5rem 2rem;
        display: inline-block;
        width: calc(100% - 4rem);
        text-align: center;
    }
}

/* Mobile Styles */
@media (max-width: 768px) {
    .nav-container {
        justify-content: space-between;
        align-items: center;
        flex-wrap: nowrap;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: #3396D3;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.15);
        padding: 2rem 0;
        gap: 0;
        z-index: 999;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 0;
        width: 100%;
    }
    
    .nav-menu .nav-link {
        display: block;
        padding: 1rem 2rem;
        font-size: 1rem;
        font-weight: 500;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: background-color 0.3s ease;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .nav-menu .nav-link:hover {
        background-color: rgba(255, 255, 255, 0.1);
        color: #FFF0CE;
    }
    
    .nav-actions {
        display: none;
    }
    
    .hamburger {
        display: flex !important;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }
    
    /* Mobile menu backdrop */
    .nav-menu::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: -1;
        opacity: 0;
        transition: opacity 0.3s ease;
    }
    
    .nav-menu.active::before {
        opacity: 1;
    }
    
    /* Mobile menu button styles */
    .nav-menu .btn {
        margin: 0.5rem 2rem;
        display: inline-block;
        width: calc(100% - 4rem);
        text-align: center;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-actions {
        justify-content: center;
    }
    
    /* Games Slider Mobile Responsive */
    .games-slider-section {
        padding: 1.5rem 0;
    }
    
    .games-slider-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .thumbnails-container {
        order: -1;
    }
    
    .thumbnails-grid {
        grid-template-columns: repeat(5, 1fr);
        max-width: 100%;
        overflow-x: auto;
        gap: 0.8rem;
        padding: 0.5rem 0;
        scrollbar-width: thin;
        scrollbar-color: #3396D3 #EEEEEE;
    }
    
    .thumbnails-grid::-webkit-scrollbar {
        height: 6px;
    }
    
    .thumbnails-grid::-webkit-scrollbar-track {
        background: #EEEEEE;
        border-radius: 3px;
    }
    
    .thumbnails-grid::-webkit-scrollbar-thumb {
        background: #3396D3;
        border-radius: 3px;
    }
    
    .thumbnail-item {
        min-width: 120px;
        flex-shrink: 0;
    }
    
    .thumbnail-item img {
        height: 80px;
    }
    
    .games-slider-section h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .nav-arrow {
        width: 40px;
        height: 40px;
    }
    
    .nav-arrow-left {
        left: 10px;
    }
    
    .nav-arrow-right {
        right: 10px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .nav-container {
        padding: 0 1rem;
    }
    
    .nav-menu {
        top: 60px;
        padding: 1.5rem 0;
    }
    
    .nav-logo h1 {
        font-size: 1.1rem;
    }
    
    .logo-img {
        width: 28px;
        height: 28px;
    }
    
    .hamburger {
        padding: 0.3rem;
    }
    
    .hamburger span {
        width: 20px;
        height: 2px;
    }
    
    .nav-menu .nav-link {
        font-size: 0.95rem;
        padding: 0.8rem 1.5rem;
    }
    
    .nav-menu .btn {
        margin: 0.5rem 1.5rem;
        width: calc(100% - 3rem);
        font-size: 0.9rem;
        padding: 0.7rem 1rem;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .btn-large {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
}

/* Focus States for Accessibility */
.btn:focus,
.nav-menu a:focus,
.footer-section ul li a:focus {
    outline: 3px solid #FFF0CE; /* Soft Pale Peach focus ring */
    outline-offset: 2px;
}

/* Smooth Transitions */
* {
    transition: color 0.3s ease, background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    .btn-primary {
        border-width: 3px;
    }
    
    .btn-outline {
        border-width: 3px;
    }
    
    .feature-card {
        border-width: 2px;
        border-color: #000000;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .footer,
    .cta-section {
        display: none;
    }
    
    body {
        background-color: #FFFFFF;
        color: #000000;
    }
    
    .hero {
        background: none;
        color: #000000;
    }
}

/* Register and Login sections responsive */
@media (max-width: 768px) {
    .register-section .container,
    .login-section .container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .register-content,
    .login-content {
        max-width: 100%;
    }
    
    .hero-image-register {
        order: -1;
    }
    
    .step-item {
        flex-direction: column;
        text-align: center;
    }
    
    .step-icon {
        margin-right: 0;
        margin-bottom: 1rem;
        align-self: center;
    }
}