body {
    margin: 0;
    background-color: #1b2838;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #c7d5e0;
}

header {
    background-color: #171a21;
    padding: 10px 20px;
}

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

.logo img {
    height: 40px;
    width: auto;
}

nav a {
    color: #c7d5e0;
    margin-left: 20px;
    text-decoration: none;
    font-size: 14px;
}

nav a:hover {
    color: #66c0f4;
}

.hero {
    background-image: url('./gta.jpg');
    background-size: cover;
    background-position: center;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    background-color: rgba(0, 0, 0, 0.6);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    max-width: 600px;
}

.hero h1 {
    color: #fff;
    font-size: 36px;
}

.hero p {
    color: #ccc;
    margin: 10px 0 20px;
}

.hero button {
    background-color: #66c0f4;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

main {
    padding: 40px 20px;
}

.section-title {
    color: #fff;
    font-size: 22px;
    margin-bottom: 20px;
}

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

.card {
    background-color: #2a475e;
    border-radius: 6px;
    overflow: hidden;
    transition: transform 0.3s;
}

.card:hover {
    transform: scale(1.03);
}

.card img {
    width: 100%;
    height: auto;
}

.card-info {
    padding: 10px;
}

.card-info h3 {
    margin: 5px 0;
    color: #66c0f4;
}

.price {
    color: #a4d007;
    font-weight: bold;
}
