/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Luckiest Guy, cursive;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: black;
    color: white;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Navbar styles */
.navbar {
    background-color: black;
    border-bottom: 1px solid rgba(0, 255, 102, 0.2);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-content {
    height: 64px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    display: flex;
    align-items: center;
}

.logo {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #00FF66;
}

.brand-text {
    margin-left: 0.5rem;
    font-size: 1.25rem;
    font-weight: bold;
    color: #00FF66;
    text-shadow: 0 0 10px rgba(0, 255, 102, 0.5);
}

.nav-icons {
    display: flex;
    gap: 1rem;
}

.icon-button {
    background: none;
    border: none;
    color: white;
    padding: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.icon-button:hover {
    color: #00FF66;
    transform: scale(1.1);
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    padding: 0.5rem;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.nav-links a:hover {
    color: #00FF66;
    transform: scale(1.1);
}

.nav-links a.active {
    color: #00FF66;
    text-shadow: 0 0 10px rgba(0, 255, 102, 0.5);
}

.nav-links {
    display: flex;
    gap: 1rem;
    align-items: center;
}



/* Hero section styles */
.hero {
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
    background-image: url('img/Rectangle\ 32.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 70vh;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0, 255, 102, 0.1), transparent);
    pointer-events: none;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    position: relative;
}

.hero-header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    text-align: center;
}

.hero-header img {
    width: 100x;
    height: 100px;
    border-radius: 50%;
}

@media (min-width: 768px) {
    .hero-content {
        /* flex-direction: row; */
        align-items: end;
        justify-content: space-between;
    }

    .hero-text {
        width: 50%;
    }

    .hero-character {
        width: 50%;
        display: flex;
        justify-content: center;
    }
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .hero h1 {
        font-size: 3.75rem;
    }
}

.neon-text {
    color: white;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5),
                 0 0 20px rgba(255, 255, 255, 0.3),
                 0 0 30px rgba(255, 255, 255, 0.2);
}

.hero p {
    font-size: 2.125rem;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.payment-methods {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.payment-methods img {
    height: 30px;
    object-fit: contain;
}

.neon-button {
    background-color: #00FF66;
    color: white;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 9999px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 10px rgba(0, 255, 102, 0.5);
}

.neon-button:hover {
    background-color: rgba(0, 255, 102, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(0, 255, 102, 0.7);
}

.character-image {
    max-height: 400px;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(0, 255, 102, 0.3));
}


/* about section */

.about {
    padding: 3rem 0;
    background-color: rgba(17, 24, 39, 0.8);
    border-radius: 1rem;
    backdrop-filter: blur(10px);
}

.about .container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
    gap: 2rem;
}

.about h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 1.5rem;
    color: #00FF66;
    text-shadow: 0 0 10px rgba(0, 255, 102, 0.5);
}

.about p {
    font-size: 2rem;
    line-height: 1.2;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;    
}

.about img {
    width: 50%;
    max-width: 400px;
    border-radius: 1rem;
    /* box-shadow: 0 0 15px rgba(0, 255, 102, 0.3); */
}


/* Features section styles */
.features {
    padding: 3rem 0;
    background: linear-gradient(to bottom, transparent, rgba(0, 255, 102, 0.05));
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem;
    border-radius: 1rem;
    background-color: white;
    color: #000;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-icon {
    /* padding: 1rem; */
    margin-bottom: 1rem;
    /* box-shadow: 0 0 15px rgba(0, 255, 102, 0.5); */
}

.feature-icon img {
    width: 200px;
    height: 150px;
}

/* Top sold section styles */
.top-sold {
    padding: 3rem 0;
}

.top-sold h2 {
    font-size: 1.875rem;
    text-align: center;
    margin-bottom: 2rem;
    color: #00FF66;
    text-shadow: 0 0 10px rgba(0, 255, 102, 0.5);
}

.games-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .games-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .games-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.game-card {
    background-color: rgba(17, 24, 39, 0.8);
    border-radius: 1rem;
    overflow: hidden;
    transition: transform 0.3s ease;
    border: 1px solid rgba(0, 255, 102, 0.1);
}

.game-card:hover {
    transform: translateY(-5px);
}

.game-image {
    position: relative;
    width: 100%;
    height: 12rem;
}

.game-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.game-overlay {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: rgba(0, 0, 0, 0.8);
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    border: 1px solid #00FF66;
}

.game-platform {
    color: #00FF66;
    font-size: 0.875rem;
    font-weight: bold;
}

.game-info {
    padding: 1rem;
}

.game-info h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    color: white;
}

.game-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.game-price span {
    color: #00FF66;
    font-weight: bold;
    font-size: 1.25rem;
    text-shadow: 0 0 10px rgba(0, 255, 102, 0.3);
}

.buy-button {
    background-color: #00FF66;
    color: black;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 10px rgba(0, 255, 102, 0.3);
}

.buy-button:hover {
    background-color: rgba(0, 255, 102, 0.9);
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(0, 255, 102, 0.5);
}


.form-section {
    background-color: #000;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 0 20px #00ff66;
    color: #00ff66;
    max-width: 700px;
    margin: 2rem auto;
}

.form-section h2 {
    text-align: center;
    margin-bottom: 2rem;
    font-family: 'Orbitron', sans-serif;
}

.form-section label {
    display: block;
    margin-top: 1rem;
    font-weight: bold;
}

.form-section input[type="text"],
.form-section input[type="number"],
.form-section input[type="email"],
.form-section input[type="password"],
.form-section input[type="file"] {
    width: 100%;
    padding: 0.75rem;
    border: none;
    border-radius: 30px;
    background-color: #00ff66;
    color: #000;
    font-weight: bold;
    margin-top: 0.5rem;
}

.neon-button {
    display: block;
    margin: 2rem auto 0;
    padding: 0.75rem 2rem;
    border-radius: 30px;
    border: none;
    background-color: #00ff66;
    color: #000;
    font-size: 1rem;
    font-weight: bold;
    transition: all 0.3s ease;
    cursor: pointer;
}

.neon-button:hover {
    box-shadow: 0 0 15px #00ff66;
    transform: scale(1.05);
}

.about-section {
    background-image: url('img/Rectangle\ 2.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 2rem;
    color: white;
    height: 100vh;
  }
  
  .about-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 2rem;
    justify-content: end
  }
  
  .about-image img {
    max-width: 100%;
    width: 300px;
    border-radius: 20px;
  }
  
  .about-text {
    flex: 1;
    font-size: 1.5rem;
    line-height: 1.6;
    max-width: 860px;
  }
  
  .neon-title {
    color: #ffffff;
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
  }
  
  .neon-subtitle {
    color: #ffffff;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    font-weight: bold;
  }
  
  .about-text ol {
    padding-left: 1.5rem;
  }
  
  .about-text li {
    margin-bottom: 0.5rem;
  }
  