/* General Styling */
/*body {
    background-color: #0d0d0d;

    color: #ffffff;
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
}*/

/* Disable horizontal scrolling */
/*html,
body {
    overflow-x: hidden;

    overflow-y: auto;

}*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    overflow-x: hidden;
}

body {
    font-family: Arial, sans-serif;
    background-color: #0e0e0e;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
}
/* Top Bar */
.top-bar {
    width: 100%;
    padding: 0px 20px;
    display: flex;
    justify-content: space-between;
    /* Space between logo and auth buttons */
    align-items: center;
    /* Vertically centers the items */
    border-bottom: 1px solid #6a0dad;
    /* Optional: Adds a bottom border for better visibility */
    max-width: 1480px;
    /* Optional: Limits the max width of the top bar */
    margin: 0 auto;
    /* Centers the top bar horizontally */
}

.logo {
    font-size: 24px;
    font-weight: bold;
    /* Highlight color for the logo */
}

.auth-buttons {
    display: flex;
    align-items: center;
    /* Vertically centers the buttons */
    justify-content: flex-end;
    /* Aligns buttons to the right, but not at the very edge */
    gap: 10px;
    /* Adds space between the buttons */
}

.auth-buttons button {
    background-color: #6a0dad;
    border: none;
    color: #ffffff;
    font-size: 14px;
    padding: 8px 15px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.auth-buttons button:hover {
    background-color: #5a4dcc;
    /* Darken on hover */
}

/* Marquee */
.marquee {
    width: 100%;
    color: #ffd21c;
    padding: 10px;
    font-weight: bold;
    font-size: 30px;
    text-align: center;
    margin-bottom: 20px;
}

/* Main Content */
.main-content {
    text-align: center;
    margin-bottom: 200px;
    margin-top: 80px;
    border-bottom: 1px solid #6a0dad;
    width: 100%;
    /* Ensures the width spans the entire viewport */
    box-sizing: border-box;
    /* Ensures padding and borders are included in the width */
    padding-bottom: 160px;
    /* Adds space between content and the border */
}


.main-content h1 {
    font-size: 60px;
    margin-bottom: 5px;
    /* Reduced margin to bring it closer to h2 */
    font-weight: bold;
    /* Make the h1 bold */
}

.main-content h2 {
    font-size: 50px;
    margin-top: 5px;
    /* Reduced margin to bring it closer to h1 */
    margin-bottom: 20px;
    color: #6a0dad;
    font-weight: bold;
    /* Make the h2 bold */
}


.main-content p {
    font-size: 20px;
    margin-bottom: 20px;
}

.signup-button {
    background-color: #6a0dad;
    border: none;
    color: #0d0d0d;
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;

}

.signup-button:hover {
    background-color: #6a0dad;
}


.header11 {
    font-size: 42px;
    /* Text size ko bada karne ke liye */
    font-weight: bold;
    color: #ffffff;
    /* White color for "Games" text */
    text-align: center;
    margin-bottom: 140px;
}

.header11 .highlight {
    color: #6a0dad;
    /* Purple color for "15+" */
}

.container {
    text-align: center;
    /* Centers the inline-block elements (like the button) */
}

/* Marquee Container */
.marquee-container {
    width: 90%;
    /* Adjust the width as needed */
    border-top: 1px solid #6a0dad;
    overflow: hidden;
    margin-bottom: 20px;
    padding-top: 50px;

}

.marquee-container2 {
    width: 90%;
    /* Adjust the width as needed */

    overflow: hidden;
    margin-bottom: 20px;
    padding-bottom: 50px;
}

.marquee-row {
    display: inline-flex;
    animation: scrollLeft 25s linear infinite;
}

.marquee-row.reverse {
    animation: scrollRight 25s linear infinite;
}

/* Card Styling */
.card {
    /* Darker background for cards */
    color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    margin: 10px;
    padding: 15px;
    min-width: 250px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border: 1px solid #6a0dad;
}

/* Card Header */
.card-header {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.avatar {
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, #ff7a18, #af002d, #319197);
    border-radius: 50%;
    margin-right: 10px;
}

.user-info {
    display: flex;
    flex-direction: column;
}

.username {
    font-size: 16px;
    font-weight: bold;
}

.handle {
    font-size: 14px;
    color: #b0b0b0;
}

/* Card Content */
.card-content {
    font-size: 14px;
    line-height: 1.5;
}

/* Animations */
@keyframes scrollLeft {
    0% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(-100%);
    }
}

@keyframes scrollRight {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

.cards {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.card {
    border-radius: 10px;
    overflow: hidden;
    width: 250px;
    text-align: center;
    transition: transform 0.3s;
}

.card:hover {
    transform: scale(1.05);
}

.card img {
    width: 100%;
    height: auto;
}

.card-title {
    padding: 15px;
    font-size: 18px;
}

.view-more {
    background-color: #6c5ce7;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    margin-bottom: 80px;
    text-decoration: none;
    font-size: 16px;
    margin-top: 80px;
    display: inline-block;
    transition: background-color 0.3s;
    border-bottom: 2px solid #6a0dad;

}

.view-more:hover {
    background-color: #5a4dcc;
}


/* Footer Styling */
footer {
    width: 100%;
    color: hsl(0, 0%, 100%);

    border-top: 1px solid #6a0dad;

}

.footer-content {
    display: flex;
    justify-content: space-between;
    width: 90%;
    max-width: 1200px;
    align-items: center;
}

.footer-logo {
    font-size: 18px;
    font-weight: bold;
}

.footer-copyright {
    font-size: 14px;
}