/* 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 on light backgrounds */
    background-color: #FFF6FB; /* Very Light Pink main background */
}

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

/* Header Styles */
.header {
    background: linear-gradient(135deg, #FC5BB6 0%, #FF0592 100%);
    box-shadow: 0 2px 10px rgba(252, 91, 182, 0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.nav-logo {
    padding: 0 1rem;
    flex-shrink: 0;
}

.nav-logo img {
    height: 50px;
    width: auto;
}

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

.nav-link {
    color: #FFFFFF; /* White text on saturated backgrounds */
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 5px;
}

.nav-link:hover,
.nav-link[aria-current="page"] {
    color: #FFFFFF;
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-1px);
}

.nav-actions {
    display: flex;
    gap: 1rem;
    padding: 0 1rem;
    flex-shrink: 0;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

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

/* Mobile Menu Button Active State */
.mobile-menu-btn[aria-expanded="true"] .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-btn[aria-expanded="true"] .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn[aria-expanded="true"] .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, #FC5BB6, #FF0592);
    color: #FFFFFF; /* White text on saturated backgrounds */
    border-color: #FC5BB6;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #FF0592, #FC5BB6);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(252, 91, 182, 0.4);
}

.btn-outline {
    background: transparent;
    color: #FFFFFF; /* White text on saturated backgrounds */
    border-color: #FFFFFF;
}

.btn-outline:hover {
    background: #FFFFFF;
    color: #FC5BB6; /* Use palette color for hover text */
}

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

/* Breadcrumb Styles */
.breadcrumb {
    background-color: #FFBEE3; /* Pastel Pink for secondary sections */
    padding: 0.75rem 0;
    border-bottom: 1px solid #FC5BB6;
}

.breadcrumb-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

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

.breadcrumb-item a:hover {
    color: #FC5BB6; /* Use palette color for hover */
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #FC5BB6 0%, #FF0592 100%);
    color: #FFFFFF; /* White text on saturated backgrounds */
    padding: 4rem 0;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    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 img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

/* Section Styles */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: #FC5BB6; /* Use palette color for headings */
}

.about-section,
.features-section,
.process-section,
.security-section,
.faq-section {
    padding: 4rem 0;
}

.about-section {
    background: #FFF6FB; /* Very Light Pink main background */
}

.features-section {
    background: #FFBEE3; /* Pastel Pink for secondary sections */
}

.process-section {
    background: #FFF6FB; /* Very Light Pink main background */
}

.security-section {
    background: #FFBEE3; /* Pastel Pink for secondary sections */
}

.faq-section {
    background: #FFF6FB; /* Very Light Pink main background */
}

/* About Content */
.about-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    text-align: justify;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #000000; /* Black text on light backgrounds */
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.feature-card {
    background: #FFF6FB; /* Very Light Pink for card backgrounds */
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(252, 91, 182, 0.2);
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: #FC5BB6;
    box-shadow: 0 8px 25px rgba(252, 91, 182, 0.3);
}

.feature-icon {
    margin-bottom: 1rem;
}

.feature-icon img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #FC5BB6; /* Use palette color for headings */
}

.feature-card p {
    color: #000000; /* Black text on light backgrounds */
    line-height: 1.6;
}

/* Process Content */
.process-content h3 {
    font-size: 1.8rem;
    margin: 2rem 0 1rem 0;
    color: #FC5BB6; /* Use palette color for headings */
}

.process-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    text-align: justify;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #000000; /* Black text on light backgrounds */
}

/* Security Grid */
.security-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.security-item {
    background: #FFF6FB; /* Very Light Pink for card backgrounds */
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(252, 91, 182, 0.2);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.security-item:hover {
    border-color: #FC5BB6;
    box-shadow: 0 8px 25px rgba(252, 91, 182, 0.3);
}

.security-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #FC5BB6; /* Use palette color for headings */
}

.security-item p {
    color: #000000; /* Black text on light backgrounds */
    line-height: 1.6;
}

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

.faq-item {
    background: #FFF6FB; /* Very Light Pink for card backgrounds */
    margin-bottom: 1rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(252, 91, 182, 0.2);
    overflow: hidden;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #FC5BB6;
    box-shadow: 0 5px 20px rgba(252, 91, 182, 0.3);
}

.faq-item h3 {
    background: linear-gradient(135deg, #FC5BB6, #FF0592);
    color: #FFFFFF; /* White text on saturated backgrounds */
    padding: 1.5rem;
    margin: 0;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-item h3:hover {
    background: linear-gradient(135deg, #FF0592, #FC5BB6);
    transform: translateY(-1px);
}

.faq-item p {
    padding: 1.5rem;
    margin: 0;
    color: #000000; /* Black text on light backgrounds */
    line-height: 1.6;
}

/* Register and Login Sections */
.register-section,
.login-section {
    padding: 4rem 0;
}

.register-section {
    background: #FFF6FB; /* Very Light Pink main background */
}

.login-section {
    background: #FFBEE3; /* Pastel Pink for secondary sections */
}

/* Desktop Layout */
.register-section .container,
.login-section .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.register-section .container {
    grid-template-columns: 1fr 1fr;
}

.login-section .container {
    grid-template-columns: 1fr 1fr;
}

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

.register-content h2,
.login-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #FC5BB6; /* Use palette color for headings */
}

.register-content h3,
.login-content h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin: 2rem 0 1.5rem 0;
    color: #FC5BB6; /* Use palette color for headings */
}

.register-content p,
.login-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #000000; /* Black text on light backgrounds */
    line-height: 1.6;
}

/* Steps Container */
.steps-container {
    margin: 2rem 0;
}

.step-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background: #FFF6FB; /* Very Light Pink for step boxes */
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(252, 91, 182, 0.15);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.step-item:hover {
    border-color: #FC5BB6;
    box-shadow: 0 6px 20px rgba(252, 91, 182, 0.25);
    transform: translateY(-2px);
}

.step-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #FC5BB6, #FF0592);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    color: #FFFFFF; /* White icons on saturated backgrounds */
}

.step-icon svg {
    width: 24px;
    height: 24px;
}

.step-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #000000; /* Black text on light backgrounds */
}

.step-content p {
    font-size: 1rem;
    color: #000000; /* Black text on light backgrounds */
    margin: 0;
    line-height: 1.5;
}

/* Benefits List */
.benefits-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.benefits-list li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 0.75rem;
    color: #000000; /* Black text on light backgrounds */
    font-size: 1rem;
    line-height: 1.5;
}

.benefits-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    width: 1.5rem;
    height: 1.5rem;
    background: linear-gradient(135deg, #FC5BB6, #FF0592);
    color: #FFFFFF; /* White checkmark on saturated backgrounds */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9rem;
}

/* Register and Login Images */
.register-images {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.register-images img {
    width: 200px;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(252, 91, 182, 0.3);
    transition: transform 0.3s ease;
}

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

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

.login-image img {
    width: 200px;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(252, 91, 182, 0.3);
    transition: transform 0.3s ease;
}

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

/* Notes */
.register-note,
.login-note {
    margin-top: 1.5rem;
    font-size: 1rem;
    color: #000000; /* Black text on light backgrounds */
}

.register-note a,
.login-note a {
    color: #FC5BB6; /* Use palette color for links */
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.register-note a:hover,
.login-note a:hover {
    color: #FF0592; /* Darker palette color for hover */
    text-decoration: underline;
}

/* Games Slider Section */
.games-slider-section {
    background: #FFF6FB; /* Very Light Pink main background */
    padding: 4rem 0;
}

.games-slider-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: #FC5BB6; /* Use palette color for headings */
}

.games-slider-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

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

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

.main-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(252, 91, 182, 0.3);
    transition: all 0.3s ease;
    opacity: 1;
}

.main-image:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 50px rgba(252, 91, 182, 0.4);
}

/* Image Overlay with Navigation Arrows */
.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 1rem;
    pointer-events: none;
}

.nav-arrow {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #FC5BB6, #FF0592);
    border: none;
    border-radius: 50%;
    color: #FFFFFF; /* White icons on saturated backgrounds */
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    pointer-events: all;
    box-shadow: 0 4px 15px rgba(252, 91, 182, 0.4);
}

.nav-arrow:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(252, 91, 182, 0.6);
}

.nav-arrow:active {
    transform: scale(0.95);
}

.nav-arrow svg {
    width: 24px;
    height: 24px;
}

/* Thumbnails Container */
.thumbnails-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    max-width: 250px;
}

.thumbnail-item {
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 15px;
    overflow: hidden;
}

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

.thumbnail-item.active {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(252, 91, 182, 0.4);
}

.thumbnail-image {
    position: relative;
    width: 100%;
    height: 120px;
    border-radius: 15px;
    overflow: hidden;
    background: linear-gradient(135deg, #FC5BB6, #FF0592);
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.thumbnail-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(252, 91, 182, 0.8), rgba(255, 5, 146, 0.8));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.thumbnail-item:hover .thumbnail-overlay,
.thumbnail-item.active .thumbnail-overlay {
    opacity: 1;
}

.game-name {
    color: #FFFFFF; /* White text on saturated backgrounds */
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.play-btn {
    background: #FFFFFF;
    color: #FC5BB6; /* Use palette color for text */
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.play-btn:hover {
    background: #FFBEE3; /* Pastel Pink for hover */
    transform: scale(1.05);
}

/* Active State Styling */
.thumbnail-item.active .thumbnail-image {
    border: 3px solid #FC5BB6;
    box-shadow: 0 0 20px rgba(252, 91, 182, 0.5);
}

.thumbnail-item.active .thumbnail-overlay {
    opacity: 1;
}

/* Testimonials Section */
.testimonials-section {
    background: #FFBEE3; /* Pastel Pink for secondary sections */
    padding: 4rem 0;
}

.testimonials-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: #FC5BB6; /* Use palette color for headings */
}

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

.testimonial-card {
    background: #FFF6FB; /* Very Light Pink for card backgrounds */
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 8px 25px rgba(252, 91, 182, 0.15);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(252, 91, 182, 0.25);
    border-color: #FC5BB6;
}

.testimonial-content {
    position: relative;
}

.quote-icon {
    color: #FC5BB6; /* Use palette color for icons */
    margin-bottom: 1rem;
    opacity: 0.7;
}

.quote-icon svg {
    width: 32px;
    height: 32px;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #000000; /* Black text on light backgrounds */
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.author-info {
    flex: 1;
}

.author-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: #FC5BB6; /* Use palette color for names */
    margin-bottom: 0.25rem;
}

.author-title {
    font-size: 0.9rem;
    color: #000000; /* Black text on light backgrounds */
    opacity: 0.8;
    margin: 0;
}

.rating {
    display: flex;
    gap: 0.25rem;
}

.star {
    color: #FFD700; /* Gold stars */
    font-size: 1.2rem;
}

/* Statistics Container */
.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: #FFF6FB; /* Very Light Pink for stat backgrounds */
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(252, 91, 182, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.stat-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(252, 91, 182, 0.2);
    border-color: #FC5BB6;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #FC5BB6; /* Use palette color for numbers */
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label {
    font-size: 1rem;
    color: #000000; /* Black text on light backgrounds */
    font-weight: 500;
    opacity: 0.8;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #FC5BB6 0%, #FF0592 100%);
    color: #FFFFFF; /* White text on saturated backgrounds */
    padding: 4rem 0;
    text-align: center;
}

.cta-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #FFFFFF; /* White text on saturated backgrounds */
}

.cta-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    color: #FFFFFF; /* White text on saturated backgrounds */
}

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

/* Footer */
.footer {
    background: linear-gradient(135deg, #FC5BB6 0%, #FF0592 100%);
    color: #FFFFFF; /* White text on saturated backgrounds */
    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 {
    margin-bottom: 1rem;
    color: #FFFFFF; /* White text on saturated backgrounds */
}

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

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

.footer-section a {
    color: #FFFFFF; /* White text on saturated backgrounds */
    text-decoration: none;
    transition: all 0.3s ease;
    opacity: 0.9;
}

.footer-section a:hover {
    color: #FFFFFF;
    opacity: 1;
    transform: translateX(5px);
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    padding-top: 1rem;
    text-align: center;
    color: #FFFFFF; /* White text on saturated backgrounds */
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .mobile-menu-btn {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: linear-gradient(135deg, #FC5BB6 0%, #FF0592 100%);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transition: left 0.3s ease;
        z-index: 1000;
    }
    
    .nav-menu.mobile-open {
        left: 0;
    }
    
    .nav-actions {
        display: none;
    }
    
    /* Mobile menu overlay */
    .nav-menu::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.1);
        z-index: -1;
    }
    
    /* Mobile menu link styles */
    .nav-menu .nav-link {
        font-size: 1.2rem;
        padding: 1rem 2rem;
        border-radius: 10px;
        transition: all 0.3s ease;
    }
    
    .nav-menu .nav-link:hover {
        background-color: rgba(255, 255, 255, 0.2);
        transform: scale(1.05);
    }
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .security-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;
    }
    
     /* Register and Login Sections Mobile */
     .register-section .container,
     .login-section .container {
         display: flex;
         flex-direction: column;
         gap: 2rem;
     }
     
     .register-content,
     .login-content {
         max-width: 100%;
         order: 1;
     }
     
     .register-images,
     .login-image {
         order: 2;
         justify-content: center;
         display: flex;
     }
     
     .register-images {
         flex-direction: row;
         flex-wrap: wrap;
         gap: 1rem;
     }
     
     .register-images img,
     .login-image img {
         width: 150px;
         height: 300px;
     }
     
     /* Center hero actions and images for mobile */
     .hero-actions {
         justify-content: center;
     }
     
     .login-image {
         justify-content: center;
         display: flex;
     }
     
     .register-images {
         justify-content: center;
         display: flex;
     }
     
     /* Center images for tablet/iPad screen size */
     .login-image img,
     .register-images img {
         margin: 0 auto;
     }
    
    .register-content h2,
    .login-content h2 {
        font-size: 2rem;
    }
    
    .register-content h3,
    .login-content h3 {
        font-size: 1.5rem;
    }
    
    .step-item {
        flex-direction: column;
        text-align: center;
        padding: 1rem;
    }
    
    .step-icon {
        margin-right: 0;
        margin-bottom: 1rem;
        align-self: center;
    }
    
    .step-content h4 {
        font-size: 1.1rem;
    }
    
    /* Games Slider Mobile */
    .games-slider-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .thumbnails-container {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.75rem;
        max-width: 100%;
        order: 2;
    }
    
    .main-image-container {
        order: 1;
    }
    
    .main-image-wrapper {
        max-width: 250px;
    }
    
    .main-image {
        height: 500px;
    }
    
    .thumbnail-image {
        height: 100px;
    }
    
    .game-name {
        font-size: 0.9rem;
    }
    
    .play-btn {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }
    
    .nav-arrow {
        width: 40px;
        height: 40px;
    }
    
    .nav-arrow svg {
        width: 20px;
        height: 20px;
    }
    
    /* Testimonials Mobile */
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .testimonial-text {
        font-size: 1rem;
    }
    
    .testimonial-author {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }
    
    .rating {
        align-self: flex-start;
    }
    
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .stat-item {
        padding: 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 2rem 0;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .btn-large {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
    
    /* Testimonials Extra Small Mobile */
    .testimonials-title {
        font-size: 2rem;
    }
    
    .stats-container {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .stat-item {
        padding: 0.75rem;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
}

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

/* Focus styles for keyboard navigation */
.btn:focus,
.nav-link:focus {
    outline: 2px solid #FFBEE3;
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .btn-primary {
        background: #FC5BB6;
        color: #FFFFFF;
        border-color: #FC5BB6;
    }
    
    .btn-outline {
        background: #FFFFFF;
        color: #FC5BB6;
        border-color: #FC5BB6;
    }
}

/* Additional accessibility improvements */
.hero-image img {
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(252, 91, 182, 0.3);
    transition: transform 0.3s ease;
}

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

/* Enhanced button styles for better accessibility */
.btn {
    position: relative;
    overflow: hidden;
}

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

.btn:hover::before {
    left: 100%;
}

/* Improved focus indicators */
.btn:focus-visible,
.nav-link:focus-visible {
    outline: 3px solid #FFBEE3;
    outline-offset: 3px;
    box-shadow: 0 0 0 6px rgba(255, 190, 227, 0.3);
}

/* Additional Page Styles */

/* About Us Page Styles */
.about-hero {
    background: linear-gradient(135deg, rgb(252, 91, 182) 0%, rgb(255, 5, 146) 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.about-hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.about-hero-description {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.our-story {
    background: white;
    padding: 4rem 0;
}

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

.story-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    text-align: justify;
}

.mission-values {
    background: #f8f9fa;
    padding: 4rem 0;
}

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

.mission-item {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.mission-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1e3c72;
}

.mission-item ul {
    list-style: none;
    padding: 0;
}

.mission-item ul li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.mission-item ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
}

.why-choose {
    background: white;
    padding: 4rem 0;
}

.why-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-top: 2rem;
}

.why-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    text-align: justify;
}

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

.contact-cta {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

/* Privacy Policy, Terms, Disclaimer Page Styles */
.privacy-hero,
.terms-hero,
.disclaimer-hero {
    background: linear-gradient(135deg, rgb(252, 91, 182) 0%, rgb(255, 5, 146) 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.privacy-hero-title,
.terms-hero-title,
.disclaimer-hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.privacy-hero-description,
.terms-hero-description,
.disclaimer-hero-description {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto 1rem;
}

.last-updated {
    font-size: 0.9rem;
    opacity: 0.7;
}

.privacy-content,
.terms-content,
.disclaimer-content {
    background: white;
    padding: 4rem 0;
}

.privacy-section,
.terms-section,
.disclaimer-section {
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.privacy-section h3,
.terms-section h3,
.disclaimer-section h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #1e3c72;
}

.privacy-section p,
.terms-section p,
.disclaimer-section p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    text-align: justify;
}

.privacy-section ul,
.terms-section ul,
.disclaimer-section ul {
    margin-bottom: 1rem;
    padding-left: 2rem;
}

.privacy-section ul li,
.terms-section ul li,
.disclaimer-section ul li {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.warning-box {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 10px;
    padding: 2rem;
    margin-top: 2rem;
}

.warning-box h3 {
    color: #856404;
    margin-bottom: 1rem;
}

.warning-box p {
    color: #856404;
    font-weight: 500;
}

/* Support Page Styles */
.support-hero {
    background: linear-gradient(135deg, rgb(252, 91, 182) 0%, rgb(255, 5, 146) 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.support-hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.support-hero-description {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.contact-methods {
    background: white;
    padding: 4rem 0;
}

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

.contact-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
}

.contact-icon {
    margin-bottom: 1rem;
}

.contact-icon img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.contact-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1e3c72;
}

.contact-detail {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2a5298;
    margin: 0.5rem 0;
}

.contact-hours {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

.support-faq {
    background: #f8f9fa;
    padding: 4rem 0;
}

.support-form-section {
    background: white;
    padding: 4rem 0;
}

.support-form-container {
    max-width: 600px;
    margin: 0 auto;
}

.support-form {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #1e3c72;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1e3c72;
    box-shadow: 0 0 0 2px rgba(30, 60, 114, 0.2);
}

.additional-resources {
    background: #f8f9fa;
    padding: 4rem 0;
}

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

.resource-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.resource-card:hover {
    transform: translateY(-5px);
}

.resource-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1e3c72;
}

.resource-card p {
    margin-bottom: 1.5rem;
    color: #666;
}

/* Responsive Design for Additional Pages */
@media (max-width: 768px) {
    .about-hero-title,
    .privacy-hero-title,
    .terms-hero-title,
    .disclaimer-hero-title,
    .support-hero-title {
        font-size: 2rem;
    }
    
    .why-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .mission-grid,
    .contact-grid,
    .resources-grid {
        grid-template-columns: 1fr;
    }
    
    .support-form {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .about-hero,
    .privacy-hero,
    .terms-hero,
    .disclaimer-hero,
    .support-hero {
        padding: 2rem 0;
    }
    
    .about-hero-title,
    .privacy-hero-title,
    .terms-hero-title,
    .disclaimer-hero-title,
    .support-hero-title {
        font-size: 1.8rem;
    }
    
    .privacy-section,
    .terms-section,
    .disclaimer-section {
        margin-bottom: 2rem;
    }
    
    .privacy-section h3,
    .terms-section h3,
    .disclaimer-section h3 {
        font-size: 1.5rem;
    }
}
