* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: #f5f7fa;
    color: #1a56db;
    line-height: 1.5;
    scroll-behavior: smooth;
}

:root {
    --primary: #1a56db;
    --primary-dark: #0e3faa;
    --primary-light: #3b82f6;
    --secondary: #eef2ff;
    --accent: #06b6d4;
    --glass: rgba(255, 255, 255, 0.95);
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Game Badge */
.game-badge {
    font-family: 'Press Start 2P', cursive;
    font-size: 0.65rem;
    letter-spacing: 1px;
    background: #1a56db10;
    backdrop-filter: blur(4px);
    border-radius: 20px;
    padding: 0.25rem 0.8rem;
    display: inline-block;
    border-left: 3px solid var(--primary);
    color: #1a56db;
}

/* Header */
header {
    background: white;
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 1rem 0;
    border-bottom: 3px solid var(--primary);
}

.header-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1rem;
}

.logo h1 {
    font-size: 1.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, #1a56db, #3b82f6);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.logo p {
    font-size: 0.75rem;
    letter-spacing: 1px;
    font-family: monospace;
    color: #1a56db;
}

/* Since text styling */
.since-text {
    font-size: 0.7rem;
    letter-spacing: 1px;
    color: #666;
    margin-top: 4px;
    font-family: monospace;
}

/* Light theme version */
.since-text {
    font-size: 0.7rem;
    letter-spacing: 1px;
    color: #1a56db;
    margin-top: 4px;
    font-family: 'Inter', monospace;
    opacity: 0.8;
}

/* Hover effect */
.logo:hover .since-text {
    opacity: 1;
    transition: opacity 0.3s;
}
/* Language Switch */
.lang-switch {
    display: flex;
    gap: 0.5rem;
    background: #f0f2f5;
    padding: 0.3rem 0.8rem;
    border-radius: 40px;
}

.lang-btn {
    background: none;
    border: none;
    color: #1a56db;
    cursor: pointer;
    font-weight: bold;
    padding: 4px 10px;
    border-radius: 30px;
    transition: 0.2s;
}

.lang-btn.active {
    background: var(--primary);
    color: white;
}

/* Business Info Bar */
.business-info-bar {
    background: linear-gradient(135deg, #1a2a3a, #0f1a24);
    border-radius: 60px;
    padding: 10px 20px;
    margin: 10px 0;
    border: 1px solid var(--primary);
}

.business-info {
    display: flex;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 24px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    color: white;
}

.info-item i {
    color: var(--primary);
    font-size: 1.1rem;
}

.info-text {
    white-space: nowrap;
}

/* Navigation */
.nav-links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
    padding: 15px 0 5px;
}

.nav-link {
    color: #1a56db;
    text-decoration: none;
    font-weight: 600;
    transition: 0.2s;
    border-bottom: 2px solid transparent;
    padding-bottom: 5px;
}

.nav-link:hover,
.nav-link.active {
    border-bottom-color: var(--primary);
    color: var(--primary-dark);
}

/* Pages */
.page {
    display: none;
    animation: fadeIn 0.3s ease;
}

.page.active {
    display: block;
}

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

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #ffffff, #f0f4ff);
    padding: 4rem 0;
    border-radius: 32px;
    margin: 2rem 0;
    box-shadow: var(--shadow-lg);
}

.hero-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    padding: 0 2rem;
}

.hero-text {
    flex: 1;
}

.hero-text h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #1a56db;
}

.hero-text p {
    color: #4b5563;
}

.hero-icon i {
    font-size: 5rem;
    color: var(--primary);
}

.cta-btn {
    background: var(--primary);
    color: white;
    border: none;
    padding: 12px 28px;
    font-weight: bold;
    border-radius: 40px;
    margin-top: 1.5rem;
    cursor: pointer;
    transition: 0.2s;
    font-size: 1rem;
}

.cta-btn:hover {
    background: var(--primary-dark);
    transform: scale(0.98);
    box-shadow: 0 0 8px var(--primary);
}

/* Section Title */
.section-title {
    font-size: 2rem;
    margin: 2rem 0 1rem;
    border-left: 6px solid var(--primary);
    padding-left: 20px;
    color: #1a56db;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.8rem;
    margin: 2rem 0;
}

.service-card {
    background: white;
    border-radius: 24px;
    padding: 1.8rem;
    border: 1px solid #e0e0e0;
    transition: 0.2s;
    box-shadow: var(--shadow);
}

.service-card i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #1a56db;
}

.service-card p {
    color: #6b7280;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
}

/* Gallery */
.gallery-container {
    background: white;
    padding: 2rem;
    border-radius: 32px;
    margin: 2rem 0;
    box-shadow: var(--shadow);
    border: 1px solid #e0e0e0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    background: #f8f9fa;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #e0e0e0;
    transition: 0.2s;
}

.gallery-item img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}

.gallery-item p {
    padding: 0.6rem;
    font-size: 0.8rem;
    text-align: center;
    background: white;
    color: #1a56db;
    font-weight: 500;
}

.loading-placeholder {
    text-align: center;
    padding: 40px;
    color: #1a56db;
}

/* Game Container */
.game-container {
    background: white;
    border-radius: 32px;
    padding: 1.5rem;
    margin: 2rem 0;
    text-align: center;
    border: 2px solid var(--primary);
    box-shadow: var(--shadow-lg);
}

.game-container h3 {
    color: #1a56db;
    margin-bottom: 1rem;
}

canvas {
    background: #1e2a2f;
    border-radius: 20px;
    box-shadow: 0 0 0 4px var(--primary);
    max-width: 100%;
    height: auto;
    cursor: pointer;
}

.game-controls {
    margin-top: 1rem;
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.game-btn {
    background: #1a56db;
    border: none;
    padding: 8px 20px;
    border-radius: 60px;
    color: white;
    font-weight: bold;
    cursor: pointer;
}

.game-btn:hover {
    background: #0e3faa;
}

/* Legal Page */
.legal-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.legal-card {
    background: white;
    border-radius: 32px;
    padding: 2rem;
    border: 1px solid #e0e0e0;
    box-shadow: var(--shadow);
}

.legal-card h2 {
    color: var(--primary);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 12px;
}

.legal-card p {
    margin: 0.8rem 0;
    line-height: 1.6;
    color: #4b5563;
}

.legal-card h3 {
    margin: 1rem 0 0.5rem;
    color: #1a56db;
}

/* Footer */
footer {
    background: #1a2a3a;
    margin-top: 3rem;
    padding: 2rem 0;
    color: white;
}

.footer-content {
    text-align: center;
}

/* No admin button - hidden completely */
.admin-floating-btn {
    display: none;
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
    
    .header-main {
        flex-direction: column;
        text-align: center;
    }
    
    .business-info {
        justify-content: center;
    }
    
    .info-text {
        font-size: 0.7rem;
        white-space: normal;
    }
    
    .hero-text h2 {
        font-size: 1.8rem;
    }
    
    .legal-container {
        grid-template-columns: 1fr;
    }
    
    .nav-links {
        gap: 1rem;
    }
    
    .nav-link {
        font-size: 0.9rem;
    }
    
    .hero-content {
        padding: 0 1rem;
    }
}