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

body {
    font-family: 'Inter', sans-serif;
    background: rgba(29, 38, 108, 1);
    color: white;
    overflow-x: hidden;
}

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

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: transparent;
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 1.2rem;
    text-decoration: unset;
    color: #fff;
}

.logo img {
    width: 32px;
    height: 32px;
}

.nav {
    display: flex;
    gap: 2rem;
}

.nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.3s;
}

.nav a:hover {
    opacity: 0.8;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: white;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    padding: 120px 0 40px;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 2rem;
    line-height: 1;
}

.hero-divider img {
  height: 88px;
}

.hero-content {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 50px;
    align-items: center;
    text-align: left;
    margin-top: 30px;
}

.game-preview img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.game-info p {
    font-size: 14px;
    line-height: 1.1;
    margin-bottom: 2rem;
}

.play-button {
    display: inline-block;
    background: rgba(254, 53, 159, 1);
    color: white;
    line-height: 1.1;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    transition: transform 0.3s, box-shadow 0.3s;
}

.play-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 64, 129, 0.3);
}

/* Why Love It Section */
.why-love-it {
    padding: 80px 0;
    text-align: center;
}

.why-love-it h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 30px;
}

.why-love-it p {
    font-size: 14px;
    line-height: 1.1;
    margin-bottom: 3rem;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.gameplay-image {
    margin-top: 4rem;
}

.gameplay-image img {
    width: 100%;
    height: 320px;
    max-width: 900px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

/* Footer */
.footer {
  padding: 40px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 1.2rem;
    text-decoration: unset;
    color: #fff;
}

.footer-logo img {
    width: 32px;
    height: 32px;
}

.footer-nav {
    display: flex;
    gap: 2rem;
}

.footer-nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.3s;
}

.footer-nav a:hover {
    opacity: 0.8;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: #ff4081;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s;
}

.social-links a:hover {
    transform: scale(1.1);
}

.social-links img {
    width: 20px;
    height: 20px;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.6;
}

/* Responsive Design */
@media (max-width: 768px) {

   .nav {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    .hero h1 {
        font-size: 2.5rem;
    }
    .hero-divider img {
      width: 100%;
      height: 56px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .why-love-it h2,
    .game-section h2,
    .tips-section h2 {
        font-size: 2rem;
    }
    
    .tips-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .game-stats {
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-nav {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .game-placeholder {
        padding: 2rem;
        min-height: 300px;
    }
    
    .game-controls,
    .game-start {
        max-width: 100%;
    }
    
    .back-to-games h2 {
        font-size: 2rem;
    }
}

h2,
h1 {
  text-transform: uppercase;
  line-height: 1.1;
}