/* Gaming Color Palette */
:root {
    --primary-purple: #6C5CE7;
    --primary-cyan: #00D9FF;
    --primary-pink: #E84393;
    --accent-green: #00B894;
    --accent-orange: #FF7675;
    --dark-bg: #0F0F23;
    --darker-bg: #07071A;
    --mid-dark: #1A1A3E;
    --card-bg: #252547;
    --text-primary: #FFFFFF;
    --text-secondary: #A8A8CC;
    --text-muted: #6B6B8A;
    --border-color: #2D2D5F;
    --glow-purple: rgba(108, 92, 231, 0.3);
    --glow-cyan: rgba(0, 217, 255, 0.3);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--dark-bg);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(15, 15, 35, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo h2 {
    color: var(--text-primary);
    font-weight: 700;
    font-size: 1.5rem;
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-cyan));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    position: relative;
}

.nav-link:hover {
    color: var(--primary-cyan);
    text-shadow: 0 0 10px var(--glow-cyan);
}

.nav-link.btn-primary {
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-cyan));
    color: white;
    border-radius: 8px;
    padding: 0.75rem 1.5rem;
    box-shadow: 0 0 20px var(--glow-purple);
    transition: all 0.3s ease;
}

.nav-link.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 25px var(--glow-cyan);
    color: white;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 10px;
    border-radius: 6px;
    transition: background-color 0.3s ease;
}

.hamburger:hover {
    background: var(--glow-purple);
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--dark-bg);
    padding-top: 70px;
    position: relative;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, var(--glow-purple) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, var(--glow-cyan) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(0, 184, 148, 0.2) 0%, transparent 50%);
    z-index: 0;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('./medium-vecteezy_a-room-with-a-computer-desk-and-two-monitors-ai-generative_34039467_medium.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.12;
    z-index: -1;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 600px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    text-shadow: 0 0 20px var(--glow-purple);
}

.highlight {
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-cyan));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 10px var(--glow-cyan));
}

.hero-description {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-cyan));
    color: white;
    box-shadow: 0 0 20px var(--glow-purple);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 25px var(--glow-cyan);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-cyan);
    border: 2px solid var(--primary-cyan);
    box-shadow: 0 0 15px var(--glow-cyan);
}

.btn-secondary:hover {
    background: var(--primary-cyan);
    color: var(--dark-bg);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px var(--glow-cyan);
}

.hero-stats {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-bg);
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-purple), var(--primary-cyan), var(--primary-pink));
}

.stat-item h3 {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-cyan), var(--primary-purple));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: var(--text-secondary);
    font-weight: 500;
}

/* Sections */
section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-cyan));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-header p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* Services */
.services {
    background: var(--darker-bg);
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('https://images.unsplash.com/photo-1542751371-adc38448a05e?w=1920&h=1080&fit=crop');
    background-size: cover;
    background-position: center;
    opacity: 0.05;
    z-index: 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--glow-purple), var(--glow-cyan));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    border-color: var(--primary-cyan);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-cyan));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
    box-shadow: 0 0 20px var(--glow-purple);
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Solutions Section */
.solutions {
    padding: 5rem 0;
    background: var(--dark-bg);
    position: relative;
}

.solutions::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('https://images.unsplash.com/photo-1560472354-b33ff0c44a43?w=1920&h=1080&fit=crop');
    background-size: cover;
    background-position: center;
    opacity: 0.08;
    z-index: 0;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
    position: relative;
    z-index: 1;
}

.solution-card {
    background: var(--card-bg);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative;
}

.solution-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--glow-purple), transparent, var(--glow-cyan));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.solution-card:hover::before {
    opacity: 0.1;
}

.solution-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    border-color: var(--primary-cyan);
}

.solution-image {
    height: 140px;
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--primary-pink) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    border-radius: 16px 16px 0 0;
}

.solution-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1511512578047-dfb367046420?w=400&h=200&fit=crop') center/cover;
    opacity: 0.2;
    z-index: 0;
}

.game-mockup {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 1;
}

.phone-frame {
    width: 45px;
    height: 80px;
    background: var(--darker-bg);
    border-radius: 8px;
    padding: 3px;
    position: relative;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    border: 1px solid var(--primary-cyan);
}

.pc-frame {
    width: 90px;
    height: 55px;
    background: var(--darker-bg);
    border-radius: 4px;
    padding: 3px;
    position: relative;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    border: 1px solid var(--primary-purple);
}

.console-frame {
    width: 80px;
    height: 60px;
    background: var(--darker-bg);
    border-radius: 6px;
    padding: 4px;
    position: relative;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    border: 1px solid var(--primary-pink);
}

.game-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--primary-purple), var(--primary-cyan));
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.3);
}

.game-ui, .game-hud, .console-ui {
    color: white;
    font-size: 7px;
    text-align: center;
    padding: 2px;
}

.coin-icon {
    font-size: 10px;
    margin-bottom: 2px;
}

.progress-bar {
    width: 25px;
    height: 2px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 1px;
    margin: 0 auto;
    position: relative;
}

.progress-bar::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 70%;
    height: 100%;
    background: var(--accent-green);
    border-radius: 1px;
    box-shadow: 0 0 5px var(--accent-green);
}

.health-bar {
    width: 35px;
    height: 3px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 1px;
    margin: 0 auto 3px;
    position: relative;
}

.health-bar::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 85%;
    height: 100%;
    background: var(--accent-orange);
    border-radius: 1px;
    box-shadow: 0 0 5px var(--accent-orange);
}

.inventory {
    font-size: 8px;
    letter-spacing: 1px;
}

.player-stats {
    font-size: 7px;
    margin-bottom: 3px;
    font-weight: bold;
}

.achievement {
    font-size: 5px;
    background: rgba(255, 255, 255, 0.2);
    padding: 1px 2px;
    border-radius: 1px;
    line-height: 1.2;
}

.solution-content {
    padding: 2rem;
}

.solution-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.solution-content p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.solution-content ul {
    list-style: none;
    padding: 0;
}

.solution-content ul li {
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.solution-content ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-green);
    font-weight: bold;
    text-shadow: 0 0 5px var(--accent-green);
}

/* Developers Section */
.developers {
    padding: 5rem 0;
    background: var(--darker-bg);
    position: relative;
}

.developers::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('https://images.unsplash.com/photo-1551103782-8ab07afd45c1?w=1920&h=1080&fit=crop');
    background-size: cover;
    background-position: center;
    opacity: 0.05;
    z-index: 0;
}

.developers-content {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.developers-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    text-align: center;
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-cyan));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.developers-text p {
    color: var(--text-secondary);
    font-size: 1.2rem;
    line-height: 1.7;
    text-align: center;
    margin-bottom: 3rem;
}

.integration-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.integration-features .feature {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.integration-features .feature:hover {
    transform: translateY(-5px);
    border-color: var(--primary-cyan);
    box-shadow: 0 0 20px var(--glow-cyan);
}

.integration-features .feature h4 {
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.integration-features .feature p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    text-align: left;
    margin: 0;
}

.code-sample {
    background: var(--darker-bg);
    border-radius: 12px;
    padding: 2rem;
    margin-top: 2rem;
    border: 1px solid var(--border-color);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.code-sample h4 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.code-sample pre {
    margin: 0;
    overflow-x: auto;
}

.code-sample code {
    color: #e5e7eb;
    font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
    font-size: 0.9rem;
    line-height: 1.5;
    white-space: pre;
}

/* Enhanced Contact Section for Gaming */
.contact .integration-info {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e7eb;
    margin-top: 2rem;
}

.contact .integration-info h4 {
    color: #1f2937;
    font-weight: 600;
    margin-bottom: 1rem;
}

.contact .integration-info ul {
    list-style: none;
    padding: 0;
}

.contact .integration-info ul li {
    margin-bottom: 0.75rem;
    color: #4b5563;
    position: relative;
    padding-left: 0;
}

.contact .integration-info ul li::before {
    content: "✓";
    color: #10b981;
    font-weight: bold;
    margin-right: 0.5rem;
}

.contact-form select {
    width: 100%;
    padding: 1rem;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 1rem;
    background: white;
    color: #374151;
    transition: border-color 0.3s ease;
    font-family: inherit;
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 0.5rem center;
    background-repeat: no-repeat;
    background-size: 1.5em 1.5em;
    padding-right: 2.5rem;
}

.contact-form select:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

/* About */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-cyan));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-text p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.7;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

.feature h4 {
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.feature p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.dashboard-mockup {
    width: 100%;
    max-width: 400px;
    height: 280px;
    background: var(--card-bg);
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    border: 1px solid var(--border-color);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.dashboard-header {
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-pink));
    color: white;
    padding: 0.75rem 1rem;
    text-align: center;
    flex-shrink: 0;
    box-shadow: 0 0 20px var(--glow-purple);
}

.dashboard-header h4 {
    margin: 0;
    font-size: 0.9rem;
    font-weight: 600;
}

.dashboard-content {
    padding: 1rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: var(--card-bg);
}

.revenue-chart {
    display: flex;
    align-items: end;
    gap: 6px;
    height: 80px;
    margin-bottom: 1rem;
    padding: 0.75rem;
    background: var(--darker-bg);
    border-radius: 6px;
    flex-shrink: 0;
    border: 1px solid var(--border-color);
}

.chart-bar {
    flex: 1;
    background: linear-gradient(to top, var(--primary-purple), var(--primary-cyan));
    border-radius: 3px 3px 0 0;
    min-height: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 0 10px var(--glow-purple);
}

.chart-bar:hover {
    transform: scaleY(1.05);
    box-shadow: 0 0 20px var(--glow-cyan);
}

.dashboard-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
    flex: 1;
}

.stat {
    background: var(--darker-bg);
    padding: 0.5rem;
    border-radius: 6px;
    text-align: center;
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.8rem;
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 60px;
}

/* Contact */
.contact {
    background: var(--darker-bg);
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('https://images.unsplash.com/photo-1518709268805-4e9042af2176?w=1920&h=1080&fit=crop');
    background-size: cover;
    background-position: center;
    opacity: 0.05;
    z-index: 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    position: relative;
    z-index: 1;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item h4 {
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.contact-form {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-color);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
    background: var(--darker-bg);
    color: var(--text-primary);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-cyan);
    box-shadow: 0 0 0 3px var(--glow-cyan);
}

/* Form Status Messages */
.form-status {
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
    font-weight: 500;
    text-align: center;
    animation: fadeInUp 0.3s ease-out;
}

.form-status.success {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    border: 1px solid #047857;
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.3);
}

.form-status.error {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
    border: 1px solid #b91c1c;
    box-shadow: 0 0 20px rgba(239, 68, 68, 0.3);
}

.form-status.success::before {
    content: "✓ ";
    font-weight: bold;
}

.form-status.error::before {
    content: "✕ ";
    font-weight: bold;
}

/* Form loading state */
.contact-form button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none !important;
}

.contact-form button:disabled:hover {
    transform: none !important;
    box-shadow: 0 0 20px var(--glow-purple);
}

/* Footer */
.footer {
    background: var(--darker-bg);
    color: var(--text-primary);
    padding: 3rem 0 1rem;
    position: relative;
    border-top: 1px solid var(--border-color);
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('https://images.unsplash.com/photo-1493711662062-fa541adb3fc8?w=1920&h=400&fit=crop');
    background-size: cover;
    background-position: center;
    opacity: 0.03;
    z-index: 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--text-primary);
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-cyan));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-section a:hover {
    color: var(--primary-cyan);
    text-shadow: 0 0 10px var(--glow-cyan);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 1rem;
    text-align: center;
    color: var(--text-secondary);
    position: relative;
    z-index: 1;
}

/* Gaming badges for hero section */
.gaming-badges {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.badge {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--card-bg);
    padding: 0.75rem 1.25rem;
    border-radius: 50px;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    border-color: var(--primary-cyan);
}

.badge-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    object-fit: cover;
}

.badge span {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
        max-width: 100%;
    }

    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--card-bg);
        width: 100%;
        text-align: center;
        transition: 0.3s ease;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.5);
        padding: 2rem 0;
        border-top: 1px solid var(--border-color);
        z-index: 1000;
    }

    .nav-menu.active {
        left: 0;
        max-height: calc(100vh - 70px);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        animation: slideDown 0.3s ease-out;
    }

    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .nav-menu li {
        margin: 1rem 0;
    }

    .nav-menu a {
        padding: 1rem 2rem;
        display: block;
        border-radius: 8px;
        transition: all 0.3s ease;
    }

    .nav-menu a:hover {
        background: var(--glow-purple);
        color: var(--primary-cyan);
        text-shadow: 0 0 10px var(--glow-cyan);
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero {
        padding: 100px 0 50px;
        min-height: auto;
    }

    .hero-title {
        font-size: 2.8rem;
        line-height: 1.2;
        margin-bottom: 1.5rem;
    }

    .hero-description {
        font-size: 1.1rem;
        margin-bottom: 2rem;
        line-height: 1.6;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }

    .btn {
        padding: 1rem 2rem;
        font-size: 1rem;
        min-height: 48px;
        width: 100%;
        max-width: 280px;
    }

    .hero-stats {
        flex-direction: row;
        justify-content: center;
        gap: 1.5rem;
        margin-top: 3rem;
        flex-wrap: wrap;
    }

    .stat-item {
        flex: 1;
        min-width: 120px;
        text-align: center;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .section-header {
        margin-bottom: 3rem;
    }

    .section-header h2 {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .service-card {
        padding: 2rem;
        margin-bottom: 1rem;
    }

    .solutions-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-form {
        padding: 2rem;
    }

    .contact-form input,
    .contact-form textarea {
        font-size: 1rem;
        padding: 1rem;
        min-height: 48px;
    }

    .contact-form textarea {
        min-height: 120px;
    }

    .contact-info {
        padding: 2rem;
        margin-top: 2rem;
    }    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        text-align: center;
        gap: 2rem;
    }

    .footer-section {
        margin-bottom: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero {
        padding: 90px 0 40px;
    }

    .hero-title {
        font-size: 2.2rem;
        line-height: 1.1;
    }

    .hero-description {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .section-header h2 {
        font-size: 2rem;
        line-height: 1.2;
    }

    .section-header p {
        font-size: 0.95rem;
    }

    .hero-actions {
        gap: 0.75rem;
        margin-top: 2rem;
    }

    .btn {
        padding: 0.9rem 1.8rem;
        font-size: 0.95rem;
        min-height: 44px;
        width: 100%;
        max-width: 260px;
    }

    .service-card,
    .contact-form,
    .contact-info {
        padding: 1.5rem;
    }

    .service-card h3 {
        font-size: 1.3rem;
        margin-bottom: 0.8rem;
    }

    .service-card p {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .stat-item {
        min-width: 100px;
        font-size: 0.9rem;
    }

    .stat-number {
        font-size: 1.6rem;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .contact-form input,
    .contact-form textarea {
        font-size: 16px; /* Prevents zoom on iOS */
        padding: 0.9rem;
    }

    .contact-form textarea {
        min-height: 100px;
    }

    /* Better touch targets */
    .nav-menu a {
        padding: 1.2rem 2rem;
        min-height: 48px;
    }

    /* Improved spacing for small screens */
    .section {
        padding: 3rem 0;
    }

    .hero-stats {
        margin-top: 2.5rem;
        gap: 1rem;
    }

    /* Gaming elements mobile optimization */
    .gaming-badge {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
}

/* Touch and interaction improvements */
@media (hover: none) and (pointer: coarse) {
    /* Touch device specific styles */
    .btn:hover,
    .service-card:hover,
    .nav-link:hover {
        transform: none;
    }

    .btn:active,
    .service-card:active {
        transform: scale(0.98);
        transition: transform 0.1s ease;
    }

    /* Larger touch targets */
    .btn,
    .nav-link,
    .platform-tabs button,
    .code-tabs button {
        min-height: 48px;
        min-width: 48px;
    }
}

/* Prevent horizontal scroll */
.hero-background,
.section {
    overflow-x: hidden;
}

/* Improve text readability on mobile */
@media (max-width: 768px) {
    body {
        -webkit-text-size-adjust: 100%;
        text-size-adjust: 100%;
    }

    /* Ensure proper line-height for readability */
    p, li, .hero-description {
        line-height: 1.6;
    }

    /* Better button spacing */
    .hero-actions .btn + .btn {
        margin-top: 0.5rem;
    }

    /* Improved card hover states for touch */
    .service-card,
    .solution-card {
        transition: all 0.3s ease;
    }

    .service-card:active,
    .solution-card:active {
        transform: translateY(2px);
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card,
.hero-content,
.about-text {
    animation: fadeInUp 0.6s ease-out;
}

/* Performance optimizations for mobile */
@media (max-width: 768px) {
    /* Reduce motion for better performance on low-end devices */
    @media (prefers-reduced-motion: reduce) {
        *,
        *::before,
        *::after {
            animation-duration: 0.01ms !important;
            animation-iteration-count: 1 !important;
            transition-duration: 0.01ms !important;
        }
    }

    /* Optimize background images for mobile */
    .hero-background::before,
    .hero-background::after {
        background-size: cover;
        background-attachment: scroll; /* Better performance than fixed */
    }

    /* Reduce expensive effects on mobile */
    .service-card,
    .solution-card {
        backdrop-filter: none; /* Better performance */
    }    /* Optimize glow effects */
    .gaming-badge,
    .btn-primary {
        box-shadow: 0 0 20px var(--glow-purple);
    }

    .gaming-badge:hover,
    .btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 5px 25px var(--glow-cyan);
    }
}

/* Loading performance improvements */
.hero-background,
.service-card,
.solution-card {
    will-change: auto; /* Reset will-change after animations */
}

/* Optimize font loading */
@media (max-width: 480px) {
    body {
        font-feature-settings: "kern" 1;
        text-rendering: optimizeSpeed; /* Better performance on mobile */
    }
}

/* Mobile menu accessibility improvements */
@media (max-width: 768px) {
    .nav-menu {
        max-height: calc(100vh - 70px);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .nav-menu.active {
        animation: slideDown 0.3s ease-out;
    }

    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* Focus management for accessibility */
    .nav-menu a:focus {
        outline: 2px solid var(--primary-cyan);
        outline-offset: 2px;
        background: var(--glow-purple);
    }

    /* Ensure proper stacking */
    .navbar {
        z-index: 1001;
    }

    .nav-menu {
        z-index: 1000;
    }
}
