* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background-color: #0a0a0a;
    color: #ffffff;
}

/* Header Styles */
header {
    background-color: #000000;
    padding: 1rem 2rem;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.logo img {
    height: 40px;
}

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    margin: 0 1rem;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
    color: #f7b23b;
}

.login-btn {
    background-color: #f7b23b;
    color: #000000;
    border: none;
    padding: 0.5rem 1.5rem;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
}

/* Hero Section */
.hero {
    background-image: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), 
                      url('https://www.midasbuy.com/images/apps/pubgm/homepage-banner.jpg');
    background-size: cover;
    background-position: center;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 70px;
}

.game-info h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #f7b23b;
}

/* Purchase Section */
.purchase-section {
    max-width: 1000px;
    margin: 2rem auto;
    padding: 0 1rem;
}

.region-select,
.player-id {
    background-color: #1a1a1a;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

h3 {
    margin-bottom: 1rem;
    color: #f7b23b;
}

select,
input {
    width: 100%;
    padding: 0.8rem;
    background-color: #2a2a2a;
    border: 1px solid #3a3a3a;
    color: #ffffff;
    border-radius: 4px;
}

.confirm-btn {
    background-color: #f7b23b;
    color: #000000;
    border: none;
    padding: 12rem 3rem; /* Increased padding for larger button */
    border-radius: 100px; /* Added px for proper border radius */
    cursor: pointer;
    font-weight: bold;
    font-size: 1.5rem; /* Increased font size */
    margin-top: 1rem;
}


/* UC Packages */
.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.package {
    background-color: #1a1a1a;
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
    cursor: pointer;
    transition: transform 0.3s;
}

.package:hover {
    transform: translateY(-5px);
    background-color: #2a2a2a;
}

.package img {
    width: 80px;
    margin-bottom: 1rem;
}

.package p {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.package span {
    color: #f7b23b;
    font-weight: bold;
}

/* Footer */
footer {
    background-color: #000000;
    padding: 2rem;
    margin-top: 4rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.footer-links {
    margin-bottom: 1rem;
}

.footer-links a {
    color: #151313;
    text-decoration: none;
    margin: 0 1rem;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: #f7b23b;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hero {
        height: 300px;
    }

    .game-info h1 {
        font-size: 2rem;
    }

    .packages-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
}
/* Add this to your CSS file */
.logo-img {
    width: 150px; /* Adjust the width as per your preference */
    height: auto; /* Keep aspect ratio */
}

.bold-text {
    font-weight: bold;
    color: rgb(223, 234, 224); /* To make the text visible on the black background */
    padding: 5px; /* Optional: adds some space around the text */
}

.confirm-btn {
    font-size: 1px; /* Adjust the font size */
    padding: 1px 2px; /* Adjust the padding for button size */
    /* You can also adjust height or width if needed */
}

.old-price {
    text-decoration: line-through;
    color: red;
    margin-right: 10px;
}

.new-price {
    font-weight: bold;
    color: green;
}
