/* Cookventra Nebula Depth Design System */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: #0A0F1C;
    color: #F8FAFC;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Color Palette */
:root {
    --deep-space: #0A0F1C;
    --cosmic-navy: #111827;
    --electric-violet: #8B5CF6;
    --neon-cyan: #22D3EE;
    --star-white: #F8FAFC;
    --alert-red: #DC2626;
    --gradient-violet-cyan: linear-gradient(135deg, #8B5CF6 0%, #22D3EE 100%);
}

/* Particles Background */
#particles-js {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: var(--deep-space);
}

#particles-js canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: transform 0.3s ease-out;
}

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

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    background: transparent;
    transition: background-color 0.3s ease, backdrop-filter 0.3s ease;
}

header.scrolled {
    background: rgba(17, 24, 39, 0.95);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}
    
.logo img {
    height: 60px;
    width: auto;
}

.logo span {
    font-size: 24px;
    font-weight: bold;
    color: var(--star-white);
    text-decoration: none;
    background: var(--gradient-violet-cyan);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    color: var(--star-white);
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.nav-links a:hover {
    color: var(--neon-cyan);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--star-white);
    font-size: 24px;
    cursor: pointer;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    text-align: center;
    padding: 20px;
    animation: fadeInUp 1s ease-out;
}

.hero h1 {
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 800;
    margin-bottom: 20px;
    background: var(--gradient-violet-cyan);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
}

.hero-subheading {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    color: var(--neon-cyan);
    margin-bottom: 40px;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-violet-cyan);
    color: var(--star-white);
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(139, 92, 246, 0.5);
}

.btn-secondary {
    background: transparent;
    color: var(--star-white);
    border: 2px solid var(--electric-violet);
}

.btn-secondary:hover {
    background: var(--electric-violet);
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(139, 92, 246, 0.3);
}

/* Section Styles */
section {
    padding: 80px 0;
    position: relative;
    z-index: 2;
}

section:nth-child(even) {
    background: var(--cosmic-navy);
}

h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    text-align: center;
    margin-bottom: 50px;
    background: var(--gradient-violet-cyan);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about,
.how-it-works,
.features,
.social-games,
.disclaimer-section {
    min-height: 100dvh;
    align-content: center;
}

/* About Section */
.about {
    text-align: center;
}

.about p {
    font-size: 18px;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto 30px;
    opacity: 0.9;
}

/* How It Works Cards */
.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.card {
    background: rgba(17, 24, 39, 0.8);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-violet-cyan);
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(139, 92, 246, 0.2);
    border-color: rgba(139, 92, 246, 0.5);
}

.card-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
}

.card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--star-white);
}

.card p {
    opacity: 0.8;
    line-height: 1.6;
}

/* Features Section */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.feature {
    text-align: center;
    padding: 30px;
    border-radius: 15px;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.2);
    transition: all 0.3s ease;
}

.feature:hover {
    background: rgba(139, 92, 246, 0.2);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(139, 92, 246, 0.2);
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
}

.feature h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--star-white);
}

.feature p {
    opacity: 0.8;
    font-size: 14px;
}

/* Social Games Section */
.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.game-card {
    background: rgba(17, 24, 39, 0.9);
    border-radius: 20px;
    overflow: hidden;
    text-decoration: none;
    color: var(--star-white);
    transition: all 0.3s ease;
    border: 1px solid rgba(139, 92, 246, 0.3);
}

.game-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(139, 92, 246, 0.3);
    border-color: var(--electric-violet);
}

.game-image {
    height: 200px;
    background: var(--cosmic-navy);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.game-placeholder {
    font-size: 64px;
    opacity: 0.6;
}

.game-card h3 {
    font-size: 24px;
    padding: 20px;
    margin: 0;
    text-align: center;
}

.game-card p {
    padding: 0 20px 20px;
    text-align: center;
    opacity: 0.8;
    font-size: 14px;
}

/* Footer */
footer {
    background: var(--deep-space);
    padding: 50px 0;
    text-align: center;
    border-top: 1px solid rgba(139, 92, 246, 0.3    );
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.footer-disclaimer {
    color: var(--alert-red);
    font-size: 14px;
    margin-bottom: 20px;
    padding: 15px;
    background: rgba(220, 38, 38, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(220, 38, 38, 0.3);
}

.footer-links {
    margin-bottom: 20px;
}

.footer-links a {
    color: var(--electric-violet);
    text-decoration: none;
    margin: 0 15px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--alert-red);
}

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

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Game Page Styles */
.game-page {
    padding: 120px 0 80px;
    min-height: 100vh;
}

.game-header {
    text-align: center;
    margin-bottom: 50px;
}

.game-header h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    margin-bottom: 15px;
    background: var(--gradient-violet-cyan);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.game-subtitle {
    font-size: 1.3rem;
    color: var(--neon-cyan);
    margin-bottom: 30px;
    opacity: 0.9;
}

.game-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.game-wrapper {
    background: rgba(17, 24, 39, 0.8);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(139, 92, 246, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.game-wrapper iframe {
    border: none;
    display: block;
}

.game-info {
    background: rgba(17, 24, 39, 0.6);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(139, 92, 246, 0.2);
}

.game-info h2 {
    text-align: left;
    margin-bottom: 20px;
    font-size: 2rem;
}

.game-info p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 30px;
    opacity: 0.9;
}

.more-games h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--neon-cyan);
}

.mini-games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.mini-game-card {
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 15px;
    padding: 20px;
    text-decoration: none;
    color: var(--star-white);
    text-align: center;
    transition: all 0.3s ease;
}

.mini-game-card:hover {
    background: rgba(139, 92, 246, 0.2);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(139, 92, 246, 0.2);
}

.game-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.mini-game-image {
    width: 100%;
    height: auto;
    
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 15px;
}

.mini-game-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.mini-game-card:hover .mini-game-image img {
    transform: scale(1.1);
}

.mini-game-placeholder {
    font-size: 48px;
    margin-bottom: 15px;
    opacity: 0.7;
}

.mini-game-card h4 {
    font-size: 16px;
    margin: 0;
    color: var(--star-white);
}

/* Disclaimer Section */
.disclaimer-section {
    background: var(--cosmic-navy);
    padding: 80px 0;
    position: relative;
    z-index: 2;
}

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

.disclaimer-content h2 {
    font-size: clamp(2rem, 5vw, 2.5rem);
    margin-bottom: 40px;
    background: var(--gradient-violet-cyan);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.disclaimer-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.disclaimer-item {
    background: rgba(139, 92, 246, 0.1);
    border: 2px solid rgba(139, 92, 246, 0.3);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.disclaimer-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-violet-cyan);
}

.disclaimer-item:hover {
    background: rgba(139, 92, 246, 0.2);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(139, 92, 246, 0.2);
    border-color: var(--electric-violet);
}

.disclaimer-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
}

.disclaimer-item h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--neon-cyan);
}

.disclaimer-item p {
    opacity: 0.9;
    line-height: 1.6;
    font-size: 16px;
}

.disclaimer-notice {
    background: rgba(220, 38, 38, 0.1);
    border: 2px solid rgba(220, 38, 38, 0.3);
    border-radius: 15px;
    padding: 25px;
    margin-top: 20px;
}

.disclaimer-notice p {
    color: var(--alert-red);
    font-weight: 600;
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
}

/* About Page Styles */
.about-page {
    padding: 120px 0 80px;
    min-height: 100vh;
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
}

.about-content h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    text-align: center;
    margin-bottom: 40px;
    background: var(--gradient-violet-cyan);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-intro {
    text-align: center;
    margin-bottom: 60px;
}

.about-intro p {
    font-size: 18px;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.9;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.about-section {
    text-align: center;
    padding: 30px;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.about-section:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(139, 92, 246, 0.2);
    border-color: var(--electric-violet);
}

.about-icon {
    font-size: 48px;
    margin-bottom: 20px;
    color: var(--neon-cyan);
}

.about-section h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--star-white);
}

.about-section p {
    opacity: 0.9;
    line-height: 1.6;
}

.about-mission {
    text-align: center;
    margin-bottom: 60px;
    padding: 40px;
    background: rgba(17, 24, 39, 0.6);
    border-radius: 20px;
    border: 1px solid rgba(139, 92, 246, 0.2);
}

.about-mission h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--neon-cyan);
}

.about-mission p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    opacity: 0.9;
}

.about-values h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
    color: var(--neon-cyan);
}

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

.value-item {
    padding: 25px;
    background: rgba(139, 92, 246, 0.05);
    border-left: 4px solid var(--electric-violet);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.value-item:hover {
    background: rgba(139, 92, 246, 0.1);
    transform: translateX(10px);
}

.value-item h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--star-white);
    display: flex;
    align-items: center;
    gap: 10px;
}

.value-item h4 i {
    color: var(--neon-cyan);
    font-size: 16px;
}

.value-item p {
    opacity: 0.8;
    line-height: 1.6;
    margin: 0;
}

/* Contact Page Styles */
.contact-page {
    padding: 120px 0 80px;
    min-height: 100vh;
}

.contact-content {
    max-width: 1200px;
    margin: 0 auto;
}

.contact-content h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    text-align: center;
    margin-bottom: 20px;
    background: var(--gradient-violet-cyan);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--neon-cyan);
    margin-bottom: 50px;
    opacity: 0.9;
}

.contact-grid {
    display: block;
    max-width: 800px;
    margin: 0 auto 40px;
}

.contact-form-section h2 {
    font-size: 1.8rem;
    margin-bottom: 0 auto 30px;
    color: var(--neon-cyan);
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(139, 92, 246, 0.2);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(139, 92, 246, 0.2);
}

.contact-icon {
    font-size: 32px;
    color: var(--neon-cyan);
    min-width: 60px;
    text-align: center;
}

.contact-details h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--star-white);
}

.contact-details p {
    opacity: 0.8;
    margin: 0;
}

/* Contact Form Styles */
.contact-form {
    background: rgba(17, 24, 39, 0.6);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(139, 92, 246, 0.2);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--star-white);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    background: rgba(139, 92, 246, 0.1);
    border: 2px solid rgba(139, 92, 246, 0.3);
    border-radius: 10px;
    color: var(--star-white);
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--neon-cyan);
    background: rgba(139, 92, 246, 0.15);
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: var(--alert-red);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
    font-family: inherit;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-weight: normal;
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
    min-width: 20px;
    margin-top: 2px;
}

.contact-form button {
    width: 100%;
    padding: 18px;
    font-size: 18px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.contact-form button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.form-message {
    display: none;
    padding: 15px;
    border-radius: 10px;
    margin-top: 20px;
    font-weight: 600;
    text-align: center;
}

.form-message.success {
    background: rgba(34, 197, 94, 0.2);
    border: 2px solid rgba(34, 197, 94, 0.5);
    color: #22c55e;
}

.form-message.error {
    background: rgba(220, 38, 38, 0.2);
    border: 2px solid rgba(220, 38, 38, 0.5);
    color: var(--alert-red);
}

.contact-notice {
    background: rgba(220, 38, 38, 0.1);
    border: 2px solid rgba(220, 38, 38, 0.3);
    border-radius: 15px;
    padding: 25px;
    text-align: center;
}

.contact-notice h3 {
    color: var(--alert-red);
    margin-bottom: 15px;
}

.contact-notice p {
    color: var(--alert-red);
    font-weight: 600;
    margin: 5px 0;
}

/* Policy Pages Styles */
.policy-page {
    padding: 120px 0 80px;
    min-height: 100vh;
}

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

.policy-content h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    text-align: center;
    margin-bottom: 40px;
    background: var(--gradient-violet-cyan);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.policy-intro {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 40px;
    opacity: 0.9;
    text-align: center;
}

.policy-section {
    margin-bottom: 50px;
    padding: 40px;
    background: rgba(17, 24, 39, 0.6);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.policy-section:hover {
    background: rgba(17, 24, 39, 0.8);
    border-color: rgba(139, 92, 246, 0.4);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(139, 92, 246, 0.2);
}

.policy-section h2 {
    text-align: left;
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--neon-cyan);
}

.policy-section p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 20px;
    opacity: 0.9;
}

.policy-section ul {
    margin: 20px 0;
    padding-left: 25px;
}

.policy-section li {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 10px;
    opacity: 0.9;
    position: relative;
}

.policy-section li::before {
    content: '•';
    color: var(--neon-cyan);
    font-weight: bold;
    position: absolute;
    left: -20px;
}

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

/* Mobile Responsive */
@media (max-width: 768px) {
    .game-page {
        padding: 100px 0 60px;
    }
    
    .game-container {
        gap: 30px;
    }
    
    .game-info {
        padding: 30px 20px;
    }
    
    .game-wrapper iframe {
        height: 400px;
    }
    
    .mini-games-grid {
        grid-template-columns: 1fr;
    }
    
    .disclaimer-section {
        padding: 60px 0;
    }
    
    .disclaimer-highlights {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .disclaimer-item {
        padding: 25px 20px;
    }
    
    .disclaimer-icon {
        font-size: 40px;
    }
    
    .about-page,
    .contact-page,
    .policy-page {
        padding: 100px 0 60px;
    }
    
    .about-grid,
    .values-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
    
    .policy-section {
        padding: 30px 20px;
        margin-bottom: 30px;
    }
    
    .policy-section h2 {
        font-size: 1.5rem;
    }
    
    .policy-content h1 {
        font-size: 2.5rem;
    }
    
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(17, 24, 39, 0.98);
        -webkit-backdrop-filter: blur(10px);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 20px;
        gap: 15px;
    }
    
    .nav-links.active {
        display: flex;
        -webkit-backdrop-filter: blur(10px);
        backdrop-filter: blur(10px);
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 200px;
        text-align: center;
    }
    
    section {
        padding: 60px 0;
    }
    
    .cards,
    .feature-grid,
    .games-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* Performance Optimizations */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .hero h1 {
        animation: none;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --deep-space: #000000;
        --cosmic-navy: #1a1a1a;
        --star-white: #ffffff;
    }
    
    .btn-secondary {
        border-width: 3px;
    }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: rgba(38, 25, 75, 0.6);
}
::-webkit-scrollbar-thumb {
    background: var(--gradient-violet-cyan);
}