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

body {
    font-family: 'Roboto', sans-serif;
    background-color: #0a0e27;
    color: #ffffff;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Orbitron', sans-serif;
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

ul {
    list-style: none;
}

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

.section {
    padding: 80px 0;
}

.bg-darker {
    background-color: #050714;
}

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

.highlight {
    color: #00d9ff;
}

.text-red {
    color: #ff4444;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    border: none;
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 1px;
}

.btn-primary {
    background-color: #00d9ff;
    color: #0a0e27;
    box-shadow: 0 0 15px rgba(0, 217, 255, 0.4);
}

.btn-primary:hover {
    background-color: #33e0ff;
    box-shadow: 0 0 25px rgba(0, 217, 255, 0.6);
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid #00d9ff;
    color: #00d9ff;
}

.btn-outline:hover {
    background-color: rgba(0, 217, 255, 0.1);
    color: #ffffff;
}

.full-width {
    width: 100%;
}

/* Navigation */
.navbar {
    background-color: rgba(10, 14, 39, 0.95);
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 217, 255, 0.1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Orbitron', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
}

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

.nav-links a {
    color: #b3b3b3;
    font-size: 16px;
    font-weight: 500;
}

.nav-links a:hover {
    color: #00d9ff;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.search-box {
    display: flex;
    align-items: center;
    background-color: #151b3b;
    border-radius: 20px;
    padding: 5px 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.search-box input {
    background: transparent;
    border: none;
    color: #ffffff;
    outline: none;
    width: 150px;
}

.search-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(rgba(10, 14, 39, 0.8), rgba(10, 14, 39, 0.8)), url('https://images.unsplash.com/photo-1530026405186-ed1f139313f8?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    padding-top: 80px;
}

.hero-content {
    max-width: 800px;
}

.hero h1 {
    font-size: 64px;
    line-height: 1.1;
    margin-bottom: 20px;
    text-shadow: 0 0 20px rgba(0, 217, 255, 0.3);
}

.hero p {
    font-size: 20px;
    color: #b3b3b3;
    margin-bottom: 40px;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

/* Section Titles */
.section-title {
    text-align: center;
    font-size: 36px;
    margin-bottom: 60px;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: #00d9ff;
    margin: 15px auto 0;
}

/* Grids */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

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

/* About Game */
.about-text p {
    margin-bottom: 20px;
    color: #b3b3b3;
}

.feature-list li {
    margin-bottom: 10px;
    font-size: 18px;
}

.game-card {
    background-color: #151b3b;
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 20px;
    border-left: 4px solid #00d9ff;
}

.card-icon {
    font-size: 30px;
    margin-bottom: 15px;
}

/* Features Cards */
.feature-card {
    background-color: #151b3b;
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    transition: 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.feature-card:hover {
    transform: translateY(-10px);
    background-color: #1a2247;
    border-color: #00d9ff;
}

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

.feature-card h3 {
    color: #00d9ff;
    margin-bottom: 15px;
}

.feature-card p {
    color: #b3b3b3;
}

/* About Us Stats */
.about-us-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-us-content p {
    font-size: 18px;
    color: #b3b3b3;
    margin-bottom: 50px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    text-align: center;
}

.stat-item {
    background-color: #151b3b;
    padding: 30px;
    border-radius: 10px;
    border-bottom: 4px solid #ff4444;
}

.stat-number {
    display: block;
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    font-family: 'Orbitron', sans-serif;
}

.stat-label {
    color: #b3b3b3;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
}

/* Contact Form */
.contact-wrapper {
    max-width: 600px;
    margin: 0 auto;
    background-color: #151b3b;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    background-color: #0a0e27;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    color: #ffffff;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #00d9ff;
}

/* Footer */
footer {
    background-color: #02030a;
    padding: 60px 0 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-logo h3 {
    color: #ffffff;
    margin-bottom: 5px;
}

.footer-logo p {
    color: #b3b3b3;
    font-size: 14px;
}

.footer-links a, .social-links a {
    color: #b3b3b3;
    margin: 0 15px;
    font-size: 14px;
}

.footer-links a:hover,
.social-links a:hover {
    color: #00d9ff;
}

.copyright {
    text-align: center;
    color: #555;
    font-size: 12px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links, .nav-right {
        display: none;
    }
    
    .hero h1 {
        font-size: 40px;
    }
    
    .grid-2, .grid-3, .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
}

.section { opacity: 0; transition: 1s; transform: translateY(40px); }
.section.visible { opacity: 1; transform: translateY(0); }
