
/* General Styles */
body {
    font-family: Arial, sans-serif;
    background-color: #f9f9f9;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    overflow-x: hidden; /* Prevent horizontal scrolling */
    width: 100%; /* Ensure body takes full width */
}

/* Ensure all elements stay within the viewport */
* {
    box-sizing: border-box; /* Include padding and border in element width */
    max-width: 100%; /* Prevent elements from exceeding viewport width */
}

/* Navigation Bar */
nav {
    background-color: #ff6b6b;
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    width: 100%;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    box-sizing: border-box;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
}

.nav-links {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.nav-links a {
    color: white;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.nav-links a:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

/* Chat Points Display */
#chat-points-display {
    background-color: #ff6b6b;
    color: white;
    padding: 0.5rem 1rem;
    text-align: center;
    font-size: 1.2rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 60px; /* Adjust based on nav height */
    z-index: 999;
}

#chat-points-display p {
    margin: 0;
}

#chat-points {
    font-weight: bold;
    color: #ffdd59;
}

/* Hero Section */
.hero {
    background: url('https://via.placeholder.com/1500x800') no-repeat center center/cover;
    background-attachment: fixed;
    height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    width: 100%;
    overflow: hidden; /* Prevent overflow */
}
a{
    text-decoration: none;
}
.hero-content {
    background: rgba(0, 0, 0, 0.5);
    padding: 2rem;
    border-radius: 10px;
    max-width: 90%;
    margin: 0 auto;
    box-sizing: border-box; /* Ensure padding is included in width */
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1rem;
    margin-bottom: 2rem;
}

.btn-hero {
    background-color: #ff6b6b;
    padding: 0.8rem 2rem;
    border-radius: 5px;
    color: white;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-hero:hover {
    background-color: #ff5252;
}

/* Payment Page Styles */
.payment-container {
    max-width: 800px;
    margin: 2rem auto;
    padding: 1rem;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.payment-options {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.option {
    background-color: #f9f9f9;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 200px;
    text-align: center;
}

.option:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.option h3 {
    font-size: 1.5rem;
    color: #ff6b6b;
    margin-bottom: 0.5rem;
}

.option p {
    font-size: 1.2rem;
    color: #333;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        gap: 0.5rem;
    }

    .nav-links a {
        font-size: 1rem;
        width: 30px;
        height: 30px;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 0.9rem;
    }

    .payment-options {
        flex-direction: column;
        align-items: center;
    }

    .option {
        width: 100%;
        max-width: 300px;
    }
}
