/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #1a1a1a; /* Darker text for better contrast */
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background: rgba(255, 255, 255, 0.98); /* Increased opacity for better contrast */
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15); /* Darker shadow for better visibility */
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-image {
    width: 40px;
    height: 40px;
    transition: transform 0.3s ease;
}

.logo-image:hover {
    transform: scale(1.1);
}

.nav-logo h1 {
    color: #4a5568; /* Darker color for better contrast */
    font-weight: 700;
    font-size: 1.8rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-item {
    list-style: none;
}

.nav-link {
    text-decoration: none;
    color: #2d3748; /* Darker color for better contrast */
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: #4c51bf; /* Darker blue for better contrast */
    background: rgba(76, 81, 191, 0.1);
    transform: translateY(-2px);
}

.nav-menu a {
    text-decoration: none;
    color: #2d3748; /* Darker color for better contrast */
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #4c51bf; /* Darker blue for better contrast */
}

.login-btn {
    background: linear-gradient(135deg, #d69e2e 0%, #ed8936 100%); /* Darker gold for better contrast */
    color: #1a202c !important; /* Very dark text for maximum contrast */
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(214, 158, 46, 0.4);
    font-weight: 600;
}

.login-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(214, 158, 46, 0.5);
    background: linear-gradient(135deg, #ed8936 0%, #d69e2e 100%);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #2d3748; /* Darker color for better contrast */
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff; /* Pure white for maximum contrast */
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text {
    text-align: left;
}

.hero-text h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: #ffffff; /* Pure white for maximum contrast */
}

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95; /* Increased opacity for better contrast */
    line-height: 1.6;
    color: #f7fafc; /* Light gray for good contrast */
}

.hero-image {
    position: relative;
    text-align: center;
}

.hero-img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4); /* Darker shadow for better visibility */
    animation: float 6s ease-in-out infinite;
}

.hero-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.98); /* Increased opacity for better contrast */
    backdrop-filter: blur(10px);
    padding: 1rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3); /* Darker shadow for better visibility */
    color: #1a202c; /* Very dark text for maximum contrast */
    text-align: center;
    min-width: 120px;
    animation: float 4s ease-in-out infinite;
}

.floating-card:nth-child(1) {
    top: 20%;
    left: -20px;
    animation-delay: 0s;
}

.floating-card:nth-child(2) {
    bottom: 20%;
    right: -20px;
    animation-delay: 2s;
}

.floating-card i {
    font-size: 1.5rem;
    color: #4c51bf; /* Darker blue for better contrast */
    margin-bottom: 0.5rem;
}

.floating-card h3 {
    font-size: 0.9rem;
    margin: 0 0 0.25rem 0;
    color: #4a5568; /* Darker gray for better contrast */
    font-weight: 600;
}

.floating-card p {
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0;
    color: #4c51bf; /* Darker blue for better contrast */
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary {
    background: linear-gradient(135deg, #d69e2e 0%, #ed8936 100%); /* Darker gold for better contrast */
    color: #1a202c; /* Very dark text for maximum contrast */
    box-shadow: 0 4px 15px rgba(214, 158, 46, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #f7fafc; /* Light color for good contrast on dark background */
    border: 2px solid #f7fafc;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(214, 158, 46, 0.5);
    background: linear-gradient(135deg, #ed8936 0%, #d69e2e 100%);
}

.btn-secondary:hover {
    background: #f7fafc;
    color: #1a202c; /* Very dark text for maximum contrast */
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(247, 250, 252, 0.3);
}

/* About Section */
.about-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f7fafc 0%, #e2e8f0 100%); /* Lighter background for better contrast */
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-content {
    text-align: left;
}

.about-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1a202c; /* Very dark text for maximum contrast */
    line-height: 1.2;
}

.about-subtitle {
    font-size: 1.1rem;
    color: #4a5568; /* Darker gray for better contrast */
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.about-text p {
    font-size: 1rem;
    line-height: 1.7;
    color: #2d3748; /* Darker text for better contrast */
    margin-bottom: 1rem;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.stat-item h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #4c51bf; /* Darker blue for better contrast */
    margin-bottom: 0.5rem;
}

.stat-item p {
    font-size: 0.9rem;
    color: #4a5568; /* Darker gray for better contrast */
    font-weight: 500;
}

.about-image {
    position: relative;
    text-align: center;
}

.about-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    border-radius: 20px;
    z-index: -1;
    opacity: 0.1;
}

.about-highlights {
    position: relative;
    z-index: 1;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    position: relative;
}

.about-stats::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    border-radius: 50%;
    opacity: 0.05;
    animation: rotate 20s linear infinite;
}

.stat-item {
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem 1rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s;
}

.stat-item:hover::before {
    left: 100%;
}

.stat-item:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.stat-item i {
    font-size: 2.5rem;
    color: #4c51bf; /* Darker blue for better contrast */
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.stat-item:hover i {
    transform: scale(1.2);
    color: #667eea;
}

.stat-item h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a202c; /* Very dark text for maximum contrast */
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-item p {
    font-size: 1rem;
    color: #4a5568; /* Darker gray for better contrast */
    font-weight: 500;
    margin: 0;
}

.about-image::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    border-radius: 50%;
    opacity: 0.03;
    animation: rotate 30s linear infinite reverse;
}

@keyframes rotate {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* Games Section */
.games-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f7fafc 100%);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: #1a202c; /* Very dark text for maximum contrast */
}

.section-subtitle {
    font-size: 1.1rem;
    text-align: center;
    color: #4a5568; /* Darker gray for better contrast */
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.game-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.game-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.game-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.3s ease;
}

.game-icon::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    opacity: 0.3;
    transition: all 0.3s ease;
}

.game-icon:hover::before {
    opacity: 0.5;
    transform: scale(1.1);
}

.game-img {
    width: 50px;
    height: 50px;
    filter: brightness(0) invert(1);
    transition: all 0.3s ease;
    z-index: 1;
    position: relative;
}

.game-icon:hover .game-img {
    transform: scale(1.1);
}

.game-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1a202c; /* Very dark text for maximum contrast */
}

.game-card p {
    color: #4a5568; /* Darker gray for better contrast */
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.btn-play {
    background: linear-gradient(135deg, #4c51bf 0%, #667eea 100%); /* Darker blue for better contrast */
    color: #ffffff;
    padding: 0.75rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-play:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(76, 81, 191, 0.3);
    background: linear-gradient(135deg, #667eea 0%, #4c51bf 100%);
}

/* Features Section */
.features-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f7fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.features-section::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="25" cy="25" r="1" fill="%23667eea" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%23764ba2" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="%23667eea" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.5;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.feature-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    animation: slideInUp 0.6s ease-out;
}

.feature-card:nth-child(1) { animation-delay: 0.1s; }
.feature-card:nth-child(2) { animation-delay: 0.2s; }
.feature-card:nth-child(3) { animation-delay: 0.3s; }
.feature-card:nth-child(4) { animation-delay: 0.4s; }

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.1), transparent);
    transition: left 0.5s;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.feature-card i {
    font-size: 3rem;
    color: #4c51bf; /* Darker blue for better contrast */
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    animation: bounce 2s infinite;
}

.feature-card:nth-child(1) i { animation-delay: 0s; }
.feature-card:nth-child(2) i { animation-delay: 0.5s; }
.feature-card:nth-child(3) i { animation-delay: 1s; }
.feature-card:nth-child(4) i { animation-delay: 1.5s; }

.feature-card:hover i {
    transform: scale(1.2);
    color: #667eea;
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1a202c; /* Very dark text for maximum contrast */
    transition: color 0.3s ease;
}

.feature-card:hover h3 {
    color: #4c51bf; /* Darker blue for better contrast */
}

.feature-card p {
    color: #4a5568; /* Darker gray for better contrast */
    line-height: 1.6;
    transition: color 0.3s ease;
}

.feature-card:hover p {
    color: #2d3748; /* Darker text for better contrast */
}

.features-section::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    border-radius: 50%;
    opacity: 0.03;
    animation: floatParticles 20s ease-in-out infinite;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

@keyframes floatParticles {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1);
    }
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #4c51bf 0%, #667eea 100%); /* Darker blue for better contrast */
    color: #ffffff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(76, 81, 191, 0.3);
    transition: all 0.3s ease;
    z-index: 1000;
}

.back-to-top.show {
    display: flex;
}

.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(76, 81, 191, 0.4);
    background: linear-gradient(135deg, #667eea 0%, #4c51bf 100%);
}

.back-to-top i {
    transition: transform 0.3s ease;
}

.back-to-top:hover i {
    transform: translateY(-2px);
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f7fafc 100%);
    position: relative;
}

.contact-section::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="contact-grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="%23667eea" opacity="0.05"/><circle cx="80" cy="80" r="1" fill="%23764ba2" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23contact-grain)"/></svg>');
    opacity: 0.5;
}

.contact-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    position: relative;
    z-index: 1;
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.contact-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.contact-card:hover::before {
    transform: scaleX(1);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.contact-card:hover .contact-icon {
    transform: scale(1.1);
}

.contact-icon i {
    font-size: 1.5rem;
    color: #ffffff;
}

.contact-details h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1a202c; /* Very dark text for maximum contrast */
}

.contact-details p {
    font-size: 1rem;
    color: #4a5568; /* Darker gray for better contrast */
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.contact-subtitle {
    font-size: 0.9rem;
    color: #718096; /* Medium gray for good contrast */
    font-style: italic;
}

.contact-action {
    margin-top: 1.5rem;
}

.contact-btn {
    background: linear-gradient(135deg, #4c51bf 0%, #667eea 100%); /* Darker blue for better contrast */
    color: #ffffff;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: none;
    cursor: pointer;
}

.contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(76, 81, 191, 0.3);
    background: linear-gradient(135deg, #667eea 0%, #4c51bf 100%);
}

.chat-btn {
    background: linear-gradient(135deg, #38a169 0%, #48bb78 100%); /* Green for chat button */
}

.chat-btn:hover {
    background: linear-gradient(135deg, #48bb78 0%, #38a169 100%);
    box-shadow: 0 10px 25px rgba(56, 161, 105, 0.3);
}

.quick-contact {
    background: rgba(255, 255, 255, 0.95);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.quick-contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2);
}

.quick-contact-header {
    text-align: center;
    margin-bottom: 2rem;
}

.quick-contact-header h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1a202c; /* Very dark text for maximum contrast */
}

.quick-contact-header p {
    color: #4a5568; /* Darker gray for better contrast */
    font-size: 1rem;
}

.quick-contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 600;
    color: #2d3748; /* Darker text for better contrast */
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #ffffff;
    color: #1a202c; /* Very dark text for maximum contrast */
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #4c51bf; /* Darker blue for better contrast */
    box-shadow: 0 0 0 3px rgba(76, 81, 191, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.submit-btn {
    background: linear-gradient(135deg, #4c51bf 0%, #667eea 100%); /* Darker blue for better contrast */
    color: #ffffff;
    padding: 1rem 2rem;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(76, 81, 191, 0.3);
    background: linear-gradient(135deg, #667eea 0%, #4c51bf 100%);
}

/* Contact Options */
.contact-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.contact-option {
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-option::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.1), transparent);
    transition: left 0.5s;
}

.contact-option:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.contact-option:hover::before {
    left: 100%;
}

.contact-option i {
    font-size: 2.5rem;
    color: #4c51bf; /* Darker blue for better contrast */
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.contact-option:hover i {
    transform: scale(1.2);
    color: #667eea;
}

.contact-option h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1a202c; /* Very dark text for maximum contrast */
}

.contact-option p {
    color: #4a5568; /* Darker gray for better contrast */
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.option-btn {
    background: linear-gradient(135deg, #4c51bf 0%, #667eea 100%); /* Darker blue for better contrast */
    color: #ffffff;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.option-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(76, 81, 191, 0.3);
    background: linear-gradient(135deg, #667eea 0%, #4c51bf 100%);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .contact-cards {
        grid-template-columns: 1fr;
    }
    
    .contact-options {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-options {
        grid-template-columns: 1fr;
    }
    
    .contact-card {
        padding: 1.5rem;
    }
    
    .quick-contact {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .contact-section {
        padding: 60px 0;
    }
    
    .contact-card {
        padding: 1rem;
    }
    
    .contact-icon {
        width: 50px;
        height: 50px;
    }
    
    .contact-icon i {
        font-size: 1.2rem;
    }
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%); /* Darker background for better contrast */
    color: #f7fafc; /* Light text for good contrast */
    padding: 60px 0 20px;
}

.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; /* Pure white for maximum contrast */
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-section p {
    color: #e2e8f0; /* Light gray for good contrast */
    line-height: 1.6;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #cbd5e0; /* Light gray for good contrast */
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #ffffff; /* Pure white for maximum contrast */
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff; /* Pure white for maximum contrast */
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: #cbd5e0; /* Light gray for good contrast */
    margin: 0;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: #cbd5e0; /* Light gray for good contrast */
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ffffff; /* Pure white for maximum contrast */
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(255, 255, 255, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-item {
        margin: 1rem 0;
    }

    .nav-link {
        color: #2d3748; /* Darker color for better contrast */
        font-size: 1.1rem;
        padding: 1rem 2rem;
    }

    .nav-link:hover {
        color: #4c51bf; /* Darker blue for better contrast */
        background: rgba(76, 81, 191, 0.1);
    }

    .hamburger {
        display: flex;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-text {
        text-align: center;
    }

    .hero-text h2 {
        font-size: 2.5rem;
    }

    .hero-text p {
        font-size: 1.1rem;
    }

    .hero-img {
        max-width: 300px;
    }

    .floating-card {
        min-width: 100px;
        padding: 0.75rem;
    }

    .about-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .about-content h2 {
        font-size: 2rem;
    }

    .about-image {
        order: -1;
    }

    .about-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .stat-item {
        padding: 1rem;
    }

    .stat-item h3 {
        font-size: 1.8rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .btn-primary, .btn-secondary {
        padding: 0.875rem 1.75rem;
    }

    .games-grid {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero {
        padding: 100px 0 60px;
    }

    .login-form {
        padding: 1.5rem;
    }

    .game-card {
        padding: 1.5rem;
    }
} 