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

html, body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

:root {
    --primary-bg: #0F0F0F;
    --secondary-bg: #232D3F;
    --accent-green: #005B41;
    --accent-blue: #008170;
    --text-white: #FFFFFF;
    --text-gray: #E0E0E0;
    --text-muted: #B0B0B0;
    --border-color: #333333;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    --transition: all 0.3s ease;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--primary-bg);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
    width: 100%;
}

html {
    width: 100%;
    overflow-x: hidden;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.highlight {
    color: var(--accent-blue);
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-white);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-green), var(--accent-blue));
    color: var(--text-white);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.btn-secondary {
    background: transparent;
    color: var(--text-white);
    border: 2px solid var(--accent-blue);
}

.btn-secondary:hover {
    background: var(--accent-blue);
    transform: translateY(-2px);
}

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

.btn-login {
    background: transparent;
    color: var(--text-white);
    border: 2px solid var(--accent-blue);
    margin-right: 10px;
}

.btn-register {
    background: linear-gradient(135deg, var(--accent-green), var(--accent-blue));
    color: var(--text-white);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: rgba(15, 15, 15, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: var(--transition);
}

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

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

.logo-img {
    width: 40px;
    height: 40px;
    border-radius: 8px;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-blue);
}

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

.nav-link {
    color: var(--text-white);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover {
    color: var(--accent-blue);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-blue);
    transition: var(--transition);
}

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

.nav-auth {
    display: flex;
    gap: 10px;
}

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

.bar {
    width: 25px;
    height: 3px;
    background: var(--text-white);
    margin: 3px 0;
    transition: var(--transition);
}

/* Hero Section */
.hero-section {
    padding: 60px 0 60px;
    background: linear-gradient(135deg, var(--primary-bg) 0%, var(--secondary-bg) 50%, var(--accent-green) 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(0, 139, 139, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 91, 65, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(0, 139, 139, 0.1) 0%, transparent 50%);
    z-index: 1;
}

.hero-section::after {
    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="hero-pattern" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23ffffff" opacity="0.03"/></pattern></defs><rect width="100" height="100" fill="url(%23hero-pattern)"/></svg>');
    opacity: 0.5;
    z-index: 1;
}

/* Floating Elements */
.hero-section::before {
    content: '';
    position: absolute;
    top: 10%;
    left: 10%;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(0, 139, 139, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 3s ease-in-out infinite;
    z-index: 1;
}

.hero-section::after {
    content: '';
    position: absolute;
    top: 70%;
    right: 15%;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(0, 91, 65, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 4s ease-in-out infinite reverse;
    z-index: 1;
}

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

/* Particle Effects */
.hero-section .particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--accent-green);
    border-radius: 50%;
    opacity: 0.6;
    animation: particleFloat 5s linear infinite;
}

.hero-section .particle:nth-child(1) {
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.hero-section .particle:nth-child(2) {
    top: 60%;
    left: 80%;
    animation-delay: 2s;
}

.hero-section .particle:nth-child(3) {
    top: 80%;
    left: 30%;
    animation-delay: 4s;
}

@keyframes particleFloat {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.6;
    }
    90% {
        opacity: 0.6;
    }
    100% {
        transform: translateY(-100px) rotate(360deg);
        opacity: 0;
    }
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
    min-height: 100vh;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--text-white);
    line-height: 1.1;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    background: linear-gradient(135deg, var(--text-white) 0%, var(--accent-blue) 50%, var(--accent-green) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleGlow 3s ease-in-out infinite alternate;
}

@keyframes titleGlow {
    0% {
        filter: drop-shadow(0 0 20px rgba(0, 139, 139, 0.3));
    }
    100% {
        filter: drop-shadow(0 0 30px rgba(0, 139, 139, 0.6));
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content {
    animation: fadeInUp 1s ease-out 0.1s both;
    position: relative;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 600px;
    margin: 0 auto;
}

.hero-content::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: linear-gradient(45deg, transparent, rgba(0, 139, 139, 0.05), transparent);
    border-radius: 20px;
    z-index: -1;
    animation: contentGlow 4s ease-in-out infinite;
}

.hero-content::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 139, 139, 0.1), transparent, rgba(0, 91, 65, 0.1));
    border-radius: 20px;
    z-index: -1;
    filter: blur(20px);
    opacity: 0.3;
}

@keyframes contentGlow {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.05);
    }
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-gray);
    margin-bottom: 2.5rem;
    line-height: 1.7;
    font-weight: 400;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease-out 0.3s both;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.hero-buttons .btn {
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform: translateY(0);
}

.hero-buttons .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.6s ease;
}

.hero-buttons .btn:hover::before {
    left: 100%;
}

.hero-buttons .btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 139, 139, 0.4);
}

/* Enhanced Hero Section Effects */
.hero-section {
    background-attachment: fixed;
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
}

/* Mobile Responsive Hero */
@media (max-width: 768px) {
    .hero-container {
        padding: 0 1rem;
        text-align: center;
    }

    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-section::before,
    .hero-section::after {
        display: none;
    }
    
    .hero-section .particle {
        display: none;
    }
    
    .hero-section .glow-line {
        display: none;
    }
    
    .hero-section {
        background-attachment: scroll;
        background-size: 200% 200%;
    }
    
    .hero-buttons {
        justify-content: center;
    }
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Glow Lines */
.hero-section .glow-line {
    position: absolute;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-green), transparent);
    opacity: 0.6;
    animation: glowLine 4s ease-in-out infinite;
}

.hero-section .glow-line:nth-child(1) {
    top: 30%;
    left: 0;
    width: 200px;
    animation-delay: 0s;
}

.hero-section .glow-line:nth-child(2) {
    bottom: 40%;
    right: 0;
    width: 150px;
    animation-delay: 2s;
}

@keyframes glowLine {
    0%, 100% {
        opacity: 0.3;
        transform: scaleX(0.8);
    }
    50% {
        opacity: 0.8;
        transform: scaleX(1.2);
    }
}

.hero-image {
    text-align: center;
}

.hero-img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

/* Features Section */
.features-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--secondary-bg) 0%, var(--primary-bg) 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="50" cy="50" r="1" fill="%23005B41" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

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

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

.feature-card {
    background: rgba(15, 15, 15, 0.8);
    backdrop-filter: blur(20px);
    padding: 3rem 2rem;
    border-radius: 24px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 139, 139, 0.1), transparent);
    transition: left 0.6s ease;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 139, 139, 0.3);
    border-color: var(--accent-blue);
}

.feature-icon {
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
}

.feature-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(0, 139, 139, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
}

.feature-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(0, 91, 65, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
}

.feature-img {
    width: 100px;
    height: 100px;
    border-radius: 20px;
    object-fit: cover;
    border: 3px solid var(--accent-blue);
    transition: all 0.3s ease;
    filter: drop-shadow(0 5px 15px rgba(0, 139, 139, 0.3));
}

.feature-card:hover .feature-img {
    transform: scale(1.1) rotate(5deg);
    border-color: var(--accent-green);
    filter: drop-shadow(0 8px 25px rgba(0, 139, 139, 0.5));
}

/* SVG Icon Styling */
.feature-icon svg {
    width: 80px;
    height: 80px;
    color: var(--accent-blue);
    transition: all 0.3s ease;
    filter: drop-shadow(0 5px 15px rgba(0, 139, 139, 0.3));
    stroke-width: 2;
    fill: none;
    stroke: currentColor;
    position: relative;
    z-index: 2;
}

.feature-card:hover .feature-icon svg {
    transform: scale(1.1) rotate(5deg);
    color: var(--accent-green);
    filter: drop-shadow(0 8px 25px rgba(0, 139, 139, 0.5));
    stroke-width: 2.5;
}

/* Ensure SVG icons are visible */
.feature-icon svg path {
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.feature-card h3 {
    color: var(--accent-blue);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

.feature-card h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-green), var(--accent-blue));
    border-radius: 2px;
}

.feature-card p {
    color: var(--text-gray);
    line-height: 1.7;
    font-size: 1.1rem;
    margin-bottom: 0;
}

/* Login & Register Sections */
.login-section,
.register-section {
    padding: 80px 0;
}

.login-section {
    background: var(--primary-bg);
}

.register-section {
    background: var(--secondary-bg);
}

/* Login Section Side-by-Side Layout */
.login-section .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
}

.login-content {
    text-align: left;
    max-width: 500px;
}

.login-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-white);
}

.login-content p {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.6;
}

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

.login-img {
    max-width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

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

/* Register Section Vertical Layout */
.register-section .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.register-content {
    text-align: center;
    max-width: 800px;
    margin-bottom: 3rem;
}

.register-content h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--text-white);
    font-weight: 800;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.register-content > p {
    font-size: 1.3rem;
    color: var(--text-gray);
    margin-bottom: 2.5rem;
    line-height: 1.8;
    font-weight: 400;
}

/* Register Benefits Styling */
.register-benefits {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
    max-width: 900px;
}

.benefit {
    background: #f8f9fa;
    padding: 2rem 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--accent-green);
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.benefit:hover {
    background: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.benefit h4 {
    color: var(--accent-green);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: center;
}

.benefit p {
    color: #495057;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
    text-align: center;
}

.register-image {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.25rem;
    margin-top: 2rem;
}

.register-img {
    width: 300px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    border: 2px solid #e9ecef;
}

.register-img:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

/* Responsive Design for Login/Register Sections */
@media (max-width: 768px) {
    .login-section .container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .register-section .container {
        padding: 0 1rem;
    }
    
    .login-content,
    .register-content {
        text-align: center;
        max-width: 100%;
    }
    
    .login-image,
    .register-image {
        order: -1; /* Show image first on mobile */
    }
    
    .login-img {
        max-width: 80%;
    }
    
    .register-img {
        width: 250px;
        max-width: 80%;
    }
    
    /* Mobile Benefits Layout */
    .register-benefits {
        grid-template-columns: 1fr;
        gap: 1rem;
        max-width: 100%;
    }
    
    .benefit {
        padding: 1.5rem;
    }
    
    .register-content h2 {
        font-size: 2.5rem;
    }
    
    .register-content > p {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .login-section,
    .register-section {
        padding: 60px 0;
    }
    
    .login-content h2,
    .register-content h2 {
        font-size: 2rem;
    }
    
    .login-img {
        max-width: 90%;
    }
    
    .register-img {
        max-width: 30%;
    }
}

/* About Section */
.about-section {
    padding: 80px 0;
    background: var(--primary-bg);
}

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

.about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.about-content p {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

/* Games Section */
.games-section {
    padding: 80px 0;
    background: var(--secondary-bg);
}

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

.game-card {
    background: var(--primary-bg);
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.game-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
    border-color: var(--accent-blue);
}

.game-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.game-card h3 {
    padding: 1.5rem 1.5rem 1rem;
    color: var(--accent-blue);
}

.game-card p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-gray);
}

/* Benefits Section */
.benefits-section {
    padding: 80px 0;
    background: var(--primary-bg);
}

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

.benefit-item {
    text-align: center;
    padding: 2rem;
}

.benefit-item h3 {
    color: var(--accent-blue);
    margin-bottom: 1rem;
}

.benefit-item p {
    color: var(--text-gray);
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
    background: var(--secondary-bg);
}

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

.testimonial-card {
    background: var(--primary-bg);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    border: 1px solid var(--border-color);
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: var(--text-gray);
    font-size: 1.1rem;
}

.testimonial-author {
    color: var(--accent-blue);
    font-weight: 600;
}

/* Stats Section */
.stats-section {
    padding: 80px 0;
    background: var(--primary-bg);
}

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

.stat-item {
    text-align: center;
    padding: 2rem;
}

.stat-item h3 {
    font-size: 3rem;
    color: var(--accent-blue);
    margin-bottom: 1rem;
}

.stat-item p {
    color: var(--text-gray);
    font-size: 1.1rem;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--accent-green), var(--accent-blue));
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--text-white);
}

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

.cta-buttons .btn {
    background: var(--primary-bg);
    color: var(--text-white);
    border: 2px solid var(--primary-bg);
}

.cta-buttons .btn:hover {
    background: transparent;
    color: var(--primary-bg);
}

/* Footer */
.footer {
    background: var(--primary-bg);
    padding: 60px 0 20px;
    border-top: 1px solid var(--border-color);
}

.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: var(--accent-blue);
    margin-bottom: 1rem;
}

.footer-section p {
    color: var(--text-gray);
    line-height: 1.6;
}

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

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

.footer-section ul li a {
    color: var(--text-gray);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: var(--accent-blue);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    transition: var(--transition);
}

.social-icon:hover {
    transform: scale(1.1);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    color: var(--text-muted);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

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

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

    .hero-buttons,
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
    }

    .features-grid,
    .games-grid,
    .benefits-grid,
    .testimonials-grid,
    .stats-grid {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

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

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

    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

/* 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,
.footer-section a:focus {
    outline: 2px solid var(--accent-blue);
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --text-gray: #FFFFFF;
        --text-muted: #FFFFFF;
        --border-color: #FFFFFF;
    }
}

/* Additional Styles for Other Pages */

/* Policy Pages */
.policy-section {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--secondary-bg);
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.policy-section h2 {
    color: var(--accent-blue);
    margin-bottom: 1rem;
}

.policy-section p {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.policy-section ul {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.policy-section li {
    color: var(--text-gray);
    margin-bottom: 0.5rem;
}

.policy-footer {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: var(--secondary-bg);
    border-radius: 12px;
}

.last-updated {
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: 2rem;
}

/* Contact Page */
.contact-intro {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 3rem;
    text-align: center;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-method {
    padding: 1.5rem;
    background: var(--secondary-bg);
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.contact-method h3 {
    color: var(--accent-blue);
    margin-bottom: 0.5rem;
}

.contact-link {
    color: var(--accent-blue);
    text-decoration: none;
    font-weight: 500;
}

.contact-link:hover {
    text-decoration: underline;
}

.contact-form-container {
    background: var(--secondary-bg);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 0.5rem;
    color: var(--text-white);
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    background: var(--primary-bg);
    color: var(--text-white);
    font-size: 1rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-blue);
    box-shadow: 0 0 0 2px rgba(0, 139, 139, 0.2);
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
}

/* About Us Page */
.about-intro {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 3rem;
    text-align: center;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.mission-card,
.vision-card {
    padding: 2rem;
    background: var(--secondary-bg);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    text-align: center;
}

.mission-card h3,
.vision-card h3 {
    color: var(--accent-blue);
    margin-bottom: 1rem;
}

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

.value-item {
    padding: 2rem;
    background: var(--secondary-bg);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    text-align: center;
}

.value-item h3 {
    color: var(--accent-blue);
    margin-bottom: 1rem;
}

.tech-features,
.team-roles,
.responsible-features,
.future-goals {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.tech-feature,
.team-role,
.responsible-feature,
.future-goal {
    padding: 1.5rem;
    background: var(--secondary-bg);
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.tech-feature h3,
.team-role h3,
.responsible-feature h3,
.future-goal h3 {
    color: var(--accent-blue);
    margin-bottom: 1rem;
}

.cta-about-section {
    text-align: center;
    margin-top: 3rem;
    padding: 3rem;
    background: var(--secondary-bg);
    border-radius: 12px;
}

/* FAQ Page */
.faq-intro {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 3rem;
    text-align: center;
}

.faq-navigation {
    margin-bottom: 3rem;
    text-align: center;
}

.faq-nav-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-top: 1rem;
}

.faq-nav-link {
    padding: 0.75rem 1.5rem;
    background: var(--accent-blue);
    color: var(--text-white);
    text-decoration: none;
    border-radius: 8px;
    transition: var(--transition);
}

.faq-nav-link:hover {
    background: var(--accent-green);
    transform: translateY(-2px);
}

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

.faq-section h2 {
    color: var(--accent-blue);
    margin-bottom: 2rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--accent-blue);
}

.faq-item {
    margin-bottom: 1.5rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    background: var(--secondary-bg);
    padding: 1.5rem;
    margin: 0;
    cursor: pointer;
    transition: var(--transition);
    color: var(--text-white);
}

.faq-question:hover {
    background: var(--accent-blue);
}

.faq-answer {
    background: var(--primary-bg);
    padding: 1.5rem;
    display: none;
}

.faq-answer p {
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

.still-have-questions {
    text-align: center;
    margin-top: 3rem;
    padding: 3rem;
    background: var(--secondary-bg);
    border-radius: 12px;
}

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

/* Games Slider Section */
.games-slider-section {
    padding: 80px 0;
    background: var(--secondary-bg);
    position: relative;
    overflow: hidden;
}

.slider-header {
    text-align: center;
    margin-bottom: 3rem;
}

.slider-header .section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-white);
}

.emoji {
    font-size: 2rem;
    margin-left: 0.5rem;
}

.language-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent-green), var(--accent-blue));
    color: var(--text-white);
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mobile-games-slider {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 91, 65, 0.9);
    border: 2px solid var(--accent-blue);
    color: var(--text-white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 20px rgba(0, 139, 139, 0.3);
}

.slider-nav:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-50%) scale(1.1);
}

.slider-nav.prev {
    left: 0;
}

.slider-nav.next {
    right: 0;
}

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

.mobile-slider-container {
    overflow: hidden;
    margin: 2rem 0;
}

.mobile-slider {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    height: 500px;
    perspective: 1000px;
}

.mobile-slide {
    position: absolute;
    min-width: 280px;
    text-align: center;
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform-origin: center center;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
}

.mobile-slide:hover {
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.4));
}

.mobile-slide[data-slide="0"] {
    transform: translateX(-400px) translateY(20px) rotateY(-25deg) scale(0.7);
    opacity: 0.4;
    z-index: 1;
}

.mobile-slide[data-slide="1"] {
    transform: translateX(-200px) translateY(10px) rotateY(-15deg) scale(0.8);
    opacity: 0.6;
    z-index: 2;
}

.mobile-slide[data-slide="2"] {
    transform: translateX(0) translateY(0) rotateY(0deg) scale(1);
    opacity: 1;
    z-index: 5;
}

.mobile-slide[data-slide="3"] {
    transform: translateX(200px) translateY(10px) rotateY(15deg) scale(0.8);
    opacity: 0.6;
    z-index: 2;
}

.mobile-slide[data-slide="4"] {
    transform: translateX(400px) translateY(20px) rotateY(25deg) scale(0.7);
    opacity: 0.4;
    z-index: 1;
}

.mobile-slide.active {
    transform: translateX(0) translateY(0) rotateY(0deg) scale(1) !important;
    opacity: 1 !important;
    z-index: 5 !important;
}

.mobile-screen {
    position: relative;
    border-radius: 20px;
    padding: 1rem;
    margin-bottom: 1rem;
    
    border: 2px solid transparent;
   
    transform-style: preserve-3d;
    backface-visibility: hidden;
}

/* Add 3D phone frame effect */
.mobile-screen::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 22px;
    z-index: -1;
    transform: translateZ(-5px);
}

.mobile-screen::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: #000;
    border-radius: 50%;
    z-index: 1;
}

.mobile-slide.active .mobile-screen {
    transform: scale(1.05);
}

.mobile-slide.active .game-badge {
    transform: scale(1.1);
}

.mobile-slide.active .game-name {
    color: var(--accent-blue);
    text-shadow: 0 0 10px rgba(0, 139, 139, 0.5);
}

.game-screenshot {
    width: 100%;
    height: auto;
    max-height: 350px;
    object-fit: contain;
    border-radius: 15px;
    display: block;
}

.prize-overlay {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, var(--accent-green), var(--accent-blue));
    color: var(--text-white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.game-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.game-icon {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    object-fit: cover;
    border: 2px solid var(--border-color);
    transition: var(--transition);
}

.mobile-slide.active .game-icon {
    border-color: var(--accent-blue);
    transform: scale(1.1);
}

.game-name {
    color: var(--text-white);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.game-thumbnails {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.thumbnail-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: var(--transition);
    opacity: 0.6;
}

.thumbnail-item:hover,
.thumbnail-item.active {
    opacity: 1;
    transform: translateY(-5px);
}

.thumbnail-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    object-fit: cover;
    border: 2px solid transparent;
    transition: var(--transition);
}

.thumbnail-item.active .thumbnail-icon {
    border-color: var(--accent-blue);
    box-shadow: 0 5px 15px rgba(0, 139, 139, 0.3);
}

.thumbnail-name {
    color: var(--text-gray);
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: center;
}

.thumbnail-item.active .thumbnail-name {
    color: var(--accent-blue);
}

.slider-slogan {
    text-align: center;
    margin-top: 3rem;
}

.slider-slogan p {
    color: var(--text-gray);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Responsive Design for Games Slider */
@media (max-width: 768px) {
    .games-slider-section {
        padding: 60px 0;
    }
    
    .slider-header .section-title {
        font-size: 2rem;
    }
    
    .mobile-games-slider {
        padding: 0 40px;
    }
    
    .slider-nav {
        width: 40px;
        height: 40px;
    }
    
    .mobile-slider {
        gap: 1rem;
    }
    
    .mobile-slide {
        min-width: 250px;
    }
    
    .game-thumbnails {
        gap: 1rem;
    }
    
    .thumbnail-icon {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 480px) {
    .mobile-games-slider {
        padding: 0 30px;
    }
    
    .slider-nav {
        width: 35px;
        height: 35px;
    }
    
    .mobile-slide {
        min-width: 200px;
    }
    
    .game-screenshot {
        height: 150px;
    }
    
    .game-thumbnails {
        gap: 0.5rem;
    }
    
    .thumbnail-icon {
        width: 35px;
        height: 35px;
    }
}

/* Contact Page Styling */
.contact-page {
    background: linear-gradient(135deg, var(--primary-bg) 0%, var(--secondary-bg) 100%);
    min-height: 100vh;
    padding: 120px 0 80px;
}

.contact-page h1 {
    font-size: 3.5rem;
    color: var(--text-white);
    text-align: center;
    margin-bottom: 1rem;
    font-weight: 800;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.contact-intro {
    font-size: 1.3rem;
    color: var(--text-gray);
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
    line-height: 1.7;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto 4rem;
}

/* Contact Information Section */
.contact-info {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    padding: 3rem;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-info h2 {
    color: var(--accent-blue);
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.contact-info > p {
    color: var(--text-gray);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-method {
    background: rgba(0, 139, 139, 0.1);
    padding: 1.5rem;
    border-radius: 16px;
    border: 1px solid rgba(0, 139, 139, 0.2);
    transition: all 0.3s ease;
}

.contact-method:hover {
    background: rgba(0, 139, 139, 0.15);
    border-color: var(--accent-green);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 139, 139, 0.2);
}

.contact-method h3 {
    color: var(--accent-green);
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.contact-method p {
    color: var(--text-gray);
    font-size: 0.95rem;
    margin-bottom: 0.8rem;
}

.contact-link {
    color: var(--accent-blue);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.contact-link:hover {
    color: var(--accent-green);
    text-shadow: 0 0 10px rgba(0, 139, 139, 0.5);
}

/* Contact Form Section */
.contact-form-container {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    padding: 3rem;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-form-container h2 {
    color: var(--accent-blue);
    font-size: 2.2rem;
    margin-bottom: 2rem;
    font-weight: 700;
    text-align: center;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    color: var(--text-white);
    font-weight: 600;
    font-size: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 1rem;
    color: var(--text-white);
    font-size: 1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-green);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 20px rgba(0, 139, 139, 0.3);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.form-group select option {
    background: var(--primary-bg);
    color: var(--text-white);
}

/* Checkbox Styling */
.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    cursor: pointer;
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 0.2rem;
    accent-color: var(--accent-green);
}

.checkbox-label a {
    color: var(--accent-blue);
    text-decoration: none;
    font-weight: 600;
}

.checkbox-label a:hover {
    color: var(--accent-green);
}

/* Support Team Section */
.support-team-section {
    background: rgba(0, 139, 139, 0.05);
    padding: 4rem 3rem;
    border-radius: 24px;
    border: 1px solid rgba(0, 139, 139, 0.2);
    text-align: center;
    margin-top: 3rem;
}

.support-team-section h2 {
    color: var(--accent-blue);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.support-team-section > p {
    color: var(--text-gray);
    font-size: 1.2rem;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto 3rem;
}

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

.team-feature {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.team-feature:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 139, 139, 0.2);
}

.team-feature h3 {
    color: var(--accent-green);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.team-feature p {
    color: var(--text-gray);
    font-size: 1rem;
    line-height: 1.6;
}

/* Response Time Section */
.response-time-section {
    background: linear-gradient(135deg, var(--accent-green), var(--accent-blue));
    padding: 3rem;
    border-radius: 24px;
    text-align: center;
    margin-top: 3rem;
    color: var(--text-white);
}

.response-time-section h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.response-time-section p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Responsive Design for Contact Page */
@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-info,
    .contact-form-container {
        padding: 2.5rem;
    }
}

@media (max-width: 768px) {
    .contact-page {
        padding: 100px 0 60px;
    }
    
    .contact-page h1 {
        font-size: 2.8rem;
    }
    
    .contact-intro {
        font-size: 1.1rem;
        margin-bottom: 3rem;
    }
    
    .contact-info,
    .contact-form-container {
        padding: 2rem;
    }
    
    .support-team-section {
        padding: 3rem 2rem;
    }
    
    .team-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .contact-page h1 {
        font-size: 2.2rem;
    }
    
    .contact-info,
    .contact-form-container {
        padding: 1.5rem;
    }
    
    .support-team-section {
        padding: 2rem 1.5rem;
    }
    
    /* Mobile FAQ Quick Links */
    .faq-quick-links {
        padding: 3rem 2rem;
    }
    
    .faq-quick-links h2 {
        font-size: 2.2rem;
    }
    
    .faq-links {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .faq-link {
        min-height: 70px;
        padding: 1.2rem;
        font-size: 1rem;
    }
    
    /* Mobile Response Info */
    .response-info {
        padding: 3rem 2rem;
    }
    
    .response-info h2 {
        font-size: 2.2rem;
    }
    
    .response-times {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .response-time {
        padding: 2rem;
    }
}

/* FAQ Quick Links Section */
.faq-quick-links {
    background: linear-gradient(135deg, rgba(0, 91, 65, 0.1), rgba(0, 139, 139, 0.1));
    padding: 4rem 3rem;
    border-radius: 24px;
    border: 1px solid rgba(0, 139, 139, 0.2);
    text-align: center;
    margin: 3rem 0;
    position: relative;
    overflow: hidden;
}

.faq-quick-links::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="faq-pattern" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23005B41" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23faq-pattern)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

.faq-quick-links > * {
    position: relative;
    z-index: 2;
}

.faq-quick-links h2 {
    color: var(--accent-blue);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.faq-quick-links > p {
    color: var(--text-gray);
    font-size: 1.2rem;
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto 2.5rem;
}

.faq-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2.5rem 0;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.faq-link {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    padding: 1.5rem;
    border-radius: 16px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: var(--text-white);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80px;
    position: relative;
    overflow: hidden;
}

.faq-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 139, 139, 0.2), transparent);
    transition: left 0.6s ease;
}

.faq-link:hover::before {
    left: 100%;
}

.faq-link:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--accent-green);
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 139, 139, 0.3);
    color: var(--accent-green);
}

.faq-link:active {
    transform: translateY(-4px) scale(1.01);
}

/* Response Info Section */
.response-info {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    padding: 4rem 3rem;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    margin: 3rem 0;
}

.response-info h2 {
    color: var(--accent-blue);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.response-info > p {
    color: var(--text-gray);
    font-size: 1.2rem;
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.response-times {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.response-time {
    background: rgba(0, 139, 139, 0.1);
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid rgba(0, 139, 139, 0.2);
    transition: all 0.3s ease;
}

.response-time:hover {
    background: rgba(0, 139, 139, 0.15);
    border-color: var(--accent-green);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 139, 139, 0.2);
}

.response-time h3 {
    color: var(--accent-green);
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.response-time p {
    color: var(--text-gray);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0.8rem;
}

.response-time p:last-child {
    margin-bottom: 0;
}

.response-time strong {
    color: var(--text-white);
    font-weight: 600;
}

/* About Us Page Styling */
.about-page {
    background: linear-gradient(135deg, var(--primary-bg) 0%, var(--secondary-bg) 100%);
    min-height: 100vh;
    padding: 120px 0 80px;
}

.about-page h1 {
    font-size: 4rem;
    color: var(--text-white);
    text-align: center;
    margin-bottom: 1.5rem;
    font-weight: 800;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, var(--accent-green), var(--accent-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-intro {
    font-size: 1.4rem;
    color: var(--text-gray);
    text-align: center;
    max-width: 900px;
    margin: 0 auto 4rem;
    line-height: 1.8;
    font-weight: 400;
}

/* About Section Styling */
.about-section {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    padding: 3rem;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 3rem;
    text-align: center;
}

.about-section h2 {
    color: var(--accent-blue);
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-weight: 700;
}

.about-section p {
    color: var(--text-gray);
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.about-section p:last-child {
    margin-bottom: 0;
}

/* Mission and Vision Section */
.mission-vision-section {
    margin-bottom: 4rem;
}

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

.mission-card,
.vision-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    padding: 3rem;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.mission-card::before,
.vision-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 139, 139, 0.1), transparent);
    transition: left 0.6s ease;
}

.mission-card:hover::before,
.vision-card:hover::before {
    left: 100%;
}

.mission-card:hover,
.vision-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--accent-green);
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 139, 139, 0.3);
}

.mission-card h3,
.vision-card h3 {
    color: var(--accent-green);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-align: center;
}

.mission-card p,
.vision-card p {
    color: var(--text-gray);
    font-size: 1.1rem;
    line-height: 1.7;
    text-align: center;
    margin: 0;
}

/* Core Values Section */
.values-section {
    background: rgba(0, 139, 139, 0.05);
    padding: 4rem 3rem;
    border-radius: 24px;
    border: 1px solid rgba(0, 139, 139, 0.2);
    text-align: center;
    margin-bottom: 4rem;
}

.values-section h2 {
    color: var(--accent-blue);
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.values-section > p {
    color: var(--text-gray);
    font-size: 1.3rem;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.value-item {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    text-align: center;
}

.value-item:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--accent-green);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 139, 139, 0.2);
}

.value-item h3 {
    color: var(--accent-green);
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

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

/* Technology Section */
.technology-section {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    padding: 4rem 3rem;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    margin-bottom: 4rem;
}

.technology-section h2 {
    color: var(--accent-blue);
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.technology-section > p {
    color: var(--text-gray);
    font-size: 1.3rem;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.tech-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.tech-feature {
    background: rgba(0, 139, 139, 0.1);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(0, 139, 139, 0.2);
    transition: all 0.3s ease;
    text-align: center;
}

.tech-feature:hover {
    background: rgba(0, 139, 139, 0.15);
    border-color: var(--accent-green);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 139, 139, 0.2);
}

.tech-feature h3 {
    color: var(--accent-green);
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.tech-feature p {
    color: var(--text-gray);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

/* Team Section */
.team-section {
    background: rgba(0, 91, 65, 0.05);
    padding: 4rem 3rem;
    border-radius: 24px;
    border: 1px solid rgba(0, 91, 65, 0.2);
    text-align: center;
    margin-bottom: 4rem;
}

.team-section h2 {
    color: var(--accent-blue);
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.team-section > p {
    color: var(--text-gray);
    font-size: 1.3rem;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.team-roles {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.team-role {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    text-align: center;
}

.team-role:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--accent-green);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 139, 139, 0.2);
}

.team-role h3 {
    color: var(--accent-green);
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.team-role p {
    color: var(--text-gray);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

/* Commitment Section */
.commitment-section {
    background: linear-gradient(135deg, var(--accent-green), var(--accent-blue));
    padding: 4rem 3rem;
    border-radius: 24px;
    text-align: center;
    margin-bottom: 4rem;
    color: var(--text-white);
    position: relative;
    overflow: hidden;
}

.commitment-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="commitment-pattern" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23commitment-pattern)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

.commitment-section > * {
    position: relative;
    z-index: 2;
}

.commitment-section h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.commitment-section p {
    font-size: 1.2rem;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto;
}

/* Future Plans Section */
.future-plans-section {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    padding: 4rem 3rem;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    margin-bottom: 4rem;
}

.future-plans-section h2 {
    color: var(--accent-blue);
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.future-plans-section > p {
    color: var(--text-gray);
    font-size: 1.3rem;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.future-plans-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.future-plan {
    background: rgba(0, 139, 139, 0.1);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(0, 139, 139, 0.2);
    transition: all 0.3s ease;
    text-align: center;
}

.future-plan:hover {
    background: rgba(0, 139, 139, 0.15);
    border-color: var(--accent-green);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 139, 139, 0.2);
}

.future-plan h3 {
    color: var(--accent-green);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.future-plan p {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

/* Responsive Design for About Us Page */
@media (max-width: 1024px) {
    .mission-vision-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .values-grid,
    .tech-features,
    .team-roles,
    .future-plans-list {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .about-page {
        padding: 100px 0 60px;
    }
    
    .about-page h1 {
        font-size: 3rem;
    }
    
    .about-intro {
        font-size: 1.2rem;
        margin-bottom: 3rem;
    }
    
    .about-section,
    .mission-card,
    .vision-card,
    .values-section,
    .technology-section,
    .team-section,
    .commitment-section,
    .future-plans-section {
        padding: 2.5rem 2rem;
    }
    
    .values-grid,
    .tech-features,
    .team-roles,
    .future-plans-list {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .about-page h1 {
        font-size: 2.5rem;
    }
    
    .about-section,
    .mission-card,
    .vision-card,
    .values-section,
    .technology-section,
    .team-section,
    .commitment-section,
    .future-plans-section {
        padding: 2rem 1.5rem;
    }
    
    .values-section h2,
    .technology-section h2,
    .team-section h2,
    .commitment-section h2,
    .future-plans-section h2 {
        font-size: 2.2rem;
    }
}

/* FAQ Page Styling */
.faq-page {
    background: linear-gradient(135deg, var(--primary-bg) 0%, var(--secondary-bg) 100%);
    min-height: 100vh;
    padding: 120px 0 80px;
}

.faq-page h1 {
    font-size: 3.5rem;
    color: var(--text-white);
    text-align: center;
    margin-bottom: 1.5rem;
    font-weight: 800;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, var(--accent-green), var(--accent-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.faq-intro {
    font-size: 1.3rem;
    color: var(--text-gray);
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
    line-height: 1.7;
    font-weight: 400;
}

/* FAQ Navigation */
.faq-navigation {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    padding: 3rem;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    margin-bottom: 4rem;
}

.faq-navigation h2 {
    color: var(--accent-blue);
    font-size: 2.2rem;
    margin-bottom: 2rem;
    font-weight: 700;
}

.faq-nav-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.faq-nav-link {
    background: rgba(0, 139, 139, 0.1);
    backdrop-filter: blur(15px);
    padding: 1rem 2rem;
    border-radius: 50px;
    border: 2px solid rgba(0, 139, 139, 0.2);
    color: var(--text-white);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.faq-nav-link:hover {
    background: rgba(0, 139, 139, 0.2);
    border-color: var(--accent-green);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 139, 139, 0.3);
    color: var(--accent-green);
}

/* FAQ Sections */
.faq-section {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    padding: 3rem;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 3rem;
}

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

.faq-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-green), var(--accent-blue));
    border-radius: 2px;
}

/* FAQ Items */
.faq-item {
    background: rgba(0, 139, 139, 0.05);
    border-radius: 16px;
    border: 1px solid rgba(0, 139, 139, 0.1);
    margin-bottom: 1.5rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:last-child {
    margin-bottom: 0;
}

.faq-item:hover {
    background: rgba(0, 139, 139, 0.1);
    border-color: var(--accent-green);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 139, 139, 0.2);
}

.faq-question {
    background: rgba(0, 139, 139, 0.1);
    color: var(--accent-green);
    font-size: 1.2rem;
    font-weight: 600;
    padding: 1.5rem 2rem;
    margin: 0;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-green);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
}

.faq-question:hover {
    background: rgba(0, 139, 139, 0.15);
    color: var(--accent-blue);
}

.faq-answer {
    padding: 0 2rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.02);
}

.faq-item.active .faq-answer {
    padding: 2rem;
    max-height: 500px;
}

.faq-answer p {
    color: var(--text-gray);
    font-size: 1.1rem;
    line-height: 1.7;
    margin: 0;
}

/* FAQ Categories */
.faq-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.faq-category {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.faq-category:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--accent-green);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 139, 139, 0.2);
}

.faq-category h3 {
    color: var(--accent-green);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.faq-category p {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

/* Contact Support Section */
.contact-support-section {
    background: linear-gradient(135deg, var(--accent-green), var(--accent-blue));
    padding: 4rem 3rem;
    border-radius: 24px;
    text-align: center;
    margin-top: 4rem;
    color: var(--text-white);
    position: relative;
    overflow: hidden;
}

.contact-support-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="support-pattern" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23support-pattern)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

.contact-support-section > * {
    position: relative;
    z-index: 2;
}

.contact-support-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.contact-support-section p {
    font-size: 1.2rem;
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto 2rem;
}

.contact-support-section .btn {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--text-white);
    font-weight: 600;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.contact-support-section .btn:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

/* Privacy Policy Page Styling */
.privacy-policy-page {
    background: linear-gradient(135deg, var(--primary-bg) 0%, var(--secondary-bg) 100%);
    min-height: 100vh;
    padding: 120px 0 80px;
}

.privacy-policy-page h1 {
    font-size: 3.5rem;
    color: var(--text-white);
    text-align: center;
    margin-bottom: 1rem;
    font-weight: 800;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, var(--accent-green), var(--accent-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.last-updated {
    text-align: center;
    color: var(--accent-green);
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 4rem;
    padding: 0.8rem 2rem;
    background: rgba(0, 139, 139, 0.1);
    border-radius: 50px;
    display: inline-block;
    border: 1px solid rgba(0, 139, 139, 0.2);
    backdrop-filter: blur(10px);
}

/* Policy Sections */
.policy-section {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    padding: 3rem;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 2.5rem;
    transition: all 0.3s ease;
}

.policy-section:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(0, 139, 139, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 139, 139, 0.15);
}

.policy-section h2 {
    color: var(--accent-blue);
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    position: relative;
    display: flex;
    align-items: center;
}

.policy-section h2::before {
    content: '';
    width: 4px;
    height: 40px;
    background: linear-gradient(180deg, var(--accent-green), var(--accent-blue));
    border-radius: 2px;
    margin-right: 1rem;
    flex-shrink: 0;
}

.policy-section p {
    color: var(--text-gray);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.policy-section p:last-child {
    margin-bottom: 0;
}

/* Policy Lists */
.policy-section ul {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.policy-section li {
    color: var(--text-gray);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1rem;
    padding-left: 2rem;
    position: relative;
    transition: all 0.3s ease;
}

.policy-section li:last-child {
    margin-bottom: 0;
}

.policy-section li::before {
    content: '▶';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--accent-green);
    font-size: 0.8rem;
    font-weight: bold;
    transition: all 0.3s ease;
}

.policy-section li:hover::before {
    color: var(--accent-blue);
    transform: translateX(3px);
}

.policy-section li:hover {
    color: var(--text-white);
    transform: translateX(5px);
}

.policy-section strong {
    color: var(--accent-green);
    font-weight: 600;
}

/* Policy Footer */
.policy-footer {
    background: linear-gradient(135deg, var(--accent-green), var(--accent-blue));
    padding: 3rem;
    border-radius: 24px;
    text-align: center;
    margin-top: 3rem;
    color: var(--text-white);
    position: relative;
    overflow: hidden;
}

.policy-footer::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="policy-pattern" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23policy-pattern)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

.policy-footer > * {
    position: relative;
    z-index: 2;
}

.policy-footer p {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.policy-footer .btn {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--text-white);
    font-weight: 600;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.policy-footer .btn:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

/* Policy Links */
.policy-section a {
    color: var(--accent-green);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

.policy-section a:hover {
    color: var(--accent-blue);
    border-bottom-color: var(--accent-blue);
}

/* Policy Highlights */
.policy-highlight {
    background: rgba(0, 139, 139, 0.1);
    border-left: 4px solid var(--accent-green);
    padding: 1.5rem 2rem;
    border-radius: 12px;
    margin: 2rem 0;
    backdrop-filter: blur(10px);
}

.policy-highlight p {
    margin: 0;
    color: var(--text-white);
    font-weight: 500;
}

/* Responsive Design for Privacy Policy Page */
@media (max-width: 1024px) {
    .policy-section {
        padding: 2.5rem;
    }
    
    .policy-section h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .privacy-policy-page {
        padding: 100px 0 60px;
    }
    
    .privacy-policy-page h1 {
        font-size: 2.8rem;
    }
    
    .last-updated {
        font-size: 1rem;
        margin-bottom: 3rem;
        padding: 0.6rem 1.5rem;
    }
    
    .policy-section {
        padding: 2rem;
        margin-bottom: 2rem;
    }
    
    .policy-section h2 {
        font-size: 1.8rem;
        flex-direction: column;
        align-items: flex-start;
    }
    
    .policy-section h2::before {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .policy-section p {
        font-size: 1rem;
    }
    
    .policy-section li {
        font-size: 1rem;
        padding-left: 1.5rem;
    }
    
    .policy-footer {
        padding: 2.5rem 2rem;
    }
    
    .policy-footer p {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .privacy-policy-page h1 {
        font-size: 2.2rem;
    }
    
    .policy-section {
        padding: 1.5rem;
    }
    
    .policy-section h2 {
        font-size: 1.6rem;
    }
    
    .policy-section p {
        font-size: 0.95rem;
    }
    
    .policy-section li {
        font-size: 0.95rem;
        padding-left: 1.2rem;
    }
    
    .policy-footer {
        padding: 2rem 1.5rem;
    }
    
    .policy-footer p {
        font-size: 1rem;
    }
    
    .nav-menu {
        top: 60px;
        height: calc(100vh - 60px);
    }
    
    .nav-toggle {
        margin-left: auto;
    }
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-green), var(--accent-blue));
    border: none;
    border-radius: 50%;
    color: var(--text-white);
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 139, 139, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-green));
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 139, 139, 0.4);
}

.back-to-top:active {
    transform: translateY(-2px);
}

.back-to-top svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

/* Mobile Menu Enhancements */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
}

.mobile-menu-overlay.active {
    display: block;
}

/* Ensure mobile menu is always accessible */
@media (max-width: 1024px) {
    .nav-toggle {
        display: flex !important;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--primary-bg);
        width: 100%;
        height: calc(100vh - 70px);
        text-align: center;
        transition: 0.3s ease;
        box-shadow: var(--shadow);
        padding: 2rem 0;
        z-index: 999;
        overflow-y: auto;
        border-top: 1px solid var(--border-color);
        backdrop-filter: blur(20px);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-auth {
        margin-top: 2rem;
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav-auth .btn {
        width: 100%;
        max-width: 200px;
        margin: 0;
    }
    
    .nav-link {
        padding: 1rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        width: 100%;
        display: block;
    }
    
    .nav-link:last-child {
        border-bottom: none;
    }
}

/* Responsive Design for FAQ Page */
@media (max-width: 1024px) {
    .faq-nav-links {
        gap: 1rem;
    }
    
    .faq-nav-link {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .faq-page {
        padding: 100px 0 60px;
    }
    
    .faq-page h1 {
        font-size: 2.8rem;
    }
    
    .faq-intro {
        font-size: 1.1rem;
        margin-bottom: 3rem;
    }
    
    .faq-navigation,
    .faq-section {
        padding: 2rem;
    }
    
    .faq-navigation h2 {
        font-size: 2rem;
    }
    
    .faq-section h2 {
        font-size: 2.2rem;
    }
    
    .faq-nav-links {
        flex-direction: column;
        align-items: center;
    }
    
    .faq-nav-link {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
    
    .faq-question {
        font-size: 1.1rem;
        padding: 1.2rem 1.5rem;
    }
    
    .faq-answer {
        padding: 0 1.5rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 1.5rem;
    }
    
    .contact-support-section {
        padding: 3rem 2rem;
    }
    
    .contact-support-section h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 480px) {
    .faq-page h1 {
        font-size: 2.2rem;
    }
    
    .faq-navigation,
    .faq-section {
        padding: 1.5rem;
    }
    
    .faq-navigation h2,
    .faq-section h2 {
        font-size: 1.8rem;
    }
    
    .faq-question {
        font-size: 1rem;
        padding: 1rem 1.2rem;
    }
    
    .faq-answer {
        padding: 0 1.2rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 1.2rem;
    }
    
    .contact-support-section {
        padding: 2rem 1.5rem;
    }
    
    .contact-support-section h2 {
        font-size: 2rem;
    }
    
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .back-to-top svg {
        width: 20px;
        height: 20px;
    }
}

/* 404 Page */
.error-content {
    text-align: center;
}

.error-icon h1 {
    font-size: 8rem;
    color: var(--accent-blue);
    margin: 0;
    line-height: 1;
}

.error-message {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin: 2rem 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.error-help {
    margin: 3rem 0;
}

.quick-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin: 1rem 0;
    flex-wrap: wrap;
}

.quick-link {
    padding: 0.75rem 1.5rem;
    background: var(--secondary-bg);
    color: var(--text-white);
    text-decoration: none;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.quick-link:hover {
    background: var(--accent-blue);
    border-color: var(--accent-blue);
}

.error-note {
    margin-top: 2rem;
    padding: 1.5rem;
    background: var(--secondary-bg);
    border-radius: 8px;
    border-left: 4px solid var(--accent-blue);
}

/* Responsive Design for Additional Pages */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .mission-vision-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .values-grid,
    .tech-features,
    .team-roles,
    .responsible-features,
    .future-goals {
        grid-template-columns: 1fr;
    }
    
    .faq-nav-links {
        flex-direction: column;
        align-items: center;
    }
    
    .error-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .quick-links {
        flex-direction: column;
        align-items: center;
    }
}

/* Print styles */
@media print {
    .navbar,
    .nav-toggle,
    .btn,
    .hero-buttons,
    .cta-buttons {
        display: none;
    }

    body {
        background: white;
        color: black;
    }
} 