/* ===========================
   YAARWIN MULTI-PAGE WEBSITE CSS
   =========================== */

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

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

/* ===== HEADER ===== */
.header {
    background-color: #1a1a2e;
    padding: 15px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.header-container {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: bold;
    color: #00ff00;
    text-decoration: none;
}

.logo-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #00ff00;
    font-size: 24px;
    cursor: pointer;
}

.nav-menu {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s;
    padding: 5px 10px;
    border-radius: 5px;
}

.nav-link:hover,
.nav-link.active {
    color: #00ff00;
    background-color: rgba(0, 255, 0, 0.1);
}

/* ===== HERO SECTION ===== */
.hero {
    background: linear-gradient(135deg, #0a0a14 0%, #1a4d2e 100%);
    padding: 120px 40px;
    text-align: center;
}

.hero-content h1 {
    font-size: 56px;
    color: #00ff00;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 24px;
    color: #ffd700;
    margin-bottom: 30px;
}

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

/* ===== BUTTONS ===== */
.btn {
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
    font-weight: bold;
}

.btn-primary {
    background-color: #00ff00;
    color: #000000;
}

.btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.5);
}

.btn-secondary {
    background-color: transparent;
    color: #ffd700;
    border: 2px solid #ffd700;
}

.btn-secondary:hover {
    background-color: rgba(255, 215, 0, 0.1);
}

.btn-small {
    padding: 8px 20px;
    font-size: 14px;
}

/* ===== PAGE HEADER ===== */
.page-header {
    background: linear-gradient(135deg, #1a1a2e 0%, #1a4d2e 100%);
    padding: 60px 40px;
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    color: #00ff00;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 18px;
    color: #ffd700;
}

/* ===== FEATURED GAMES ===== */
.featured-games {
    padding: 60px 40px;
    background-color: #1a1a2e;
}

.featured-games h2 {
    text-align: center;
    font-size: 40px;
    color: #00ff00;
    margin-bottom: 40px;
}

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

.game-card {
    background-color: #0a0a14;
    padding: 30px;
    border: 2px solid #00ff00;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s;
}

.game-card:hover {
    transform: translateY(-10px);
}

.game-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.game-card h3 {
    color: #ffd700;
    margin-bottom: 10px;
}

.section-cta {
    text-align: center;
    margin-top: 30px;
}

/* ===== FEATURES ===== */
.features {
    padding: 60px 40px;
    background-color: #0a0a14;
}

.features h2 {
    text-align: center;
    font-size: 40px;
    color: #00ff00;
    margin-bottom: 40px;
}

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

.feature-card {
    background-color: #1a1a2e;
    padding: 30px;
    border: 2px solid #00ff00;
    border-radius: 10px;
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.feature-card h3 {
    color: #ffd700;
    margin-bottom: 10px;
}

/* ===== STATS ===== */
.stats {
    background: linear-gradient(135deg, #1a1a2e 0%, #1a4d2e 100%);
    padding: 60px 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
}

.stat-item {
    background-color: rgba(0, 255, 0, 0.1);
    padding: 30px;
    border-radius: 10px;
    border: 2px solid #00ff00;
}

.stat-number {
    font-size: 36px;
    color: #00ff00;
    font-weight: bold;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    color: #ffd700;
}

/* ===== GETTING STARTED ===== */
.getting-started {
    padding: 60px 40px;
    background-color: #1a1a2e;
}

.getting-started h2 {
    text-align: center;
    font-size: 40px;
    color: #00ff00;
    margin-bottom: 40px;
}

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

.step {
    background-color: #0a0a14;
    padding: 30px;
    border: 2px solid #ffd700;
    border-radius: 10px;
    text-align: center;
}

.step-number {
    font-size: 36px;
    color: #00ff00;
    font-weight: bold;
    margin-bottom: 15px;
}

.step h3 {
    color: #ffd700;
    margin-bottom: 10px;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
    padding: 60px 40px;
    background-color: #0a0a14;
}

.testimonials h2 {
    text-align: center;
    font-size: 40px;
    color: #00ff00;
    margin-bottom: 40px;
}

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

.testimonial {
    background-color: #1a1a2e;
    padding: 25px;
    border-left: 4px solid #00ff00;
    border-radius: 5px;
}

.testimonial p {
    font-size: 16px;
    margin-bottom: 15px;
    font-style: italic;
}

.testimonial-author {
    color: #ffd700;
    font-weight: bold;
}

/* ===== FOOTER ===== */
.footer {
    background-color: #0a0a14;
    padding: 40px;
    border-top: 2px solid #00ff00;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.footer-section h4 {
    color: #00ff00;
    margin-bottom: 15px;
}

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

.footer-section a {
    color: #cccccc;
    text-decoration: none;
    display: block;
    margin: 8px 0;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #00ff00;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333;
    color: #999999;
    font-size: 14px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .header {
        padding: 15px 20px;
    }

    .menu-toggle {
        display: block;
    }

    .nav-menu {
        display: none;
        flex-direction: column;
    }

    .nav-menu.active {
        display: flex;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .features-grid,
    .games-grid,
    .steps-grid {
        grid-template-columns: 1fr;
    }
}
