/* Base styles */
body, html {
    margin: 0;
    padding: 0;
    font-family: 'Press Start 2P', cursive;
    background: url('https://images.unsplash.com/photo-1550745165-9bc0b252726f?ixlib=rb-4.0.3&ixid=https://thumb.spokesman.com/E-oPvcU0DJQF3tt9IgaBlwJWHsI=/810x0/media.spokesman.com/photos/2016/02/16/mariO.jpg%3D%3D&auto=format&fit=crop&w=2070&q=80') no-repeat center center fixed;
    background-size: cover;
    color: white;
    overflow-x: hidden;
    line-height: 25px;
}

.container {
    text-align: center;
    padding: 50px 20px;
}

/* Navbar */
nav {
    background: rgba(0, 0, 0, 0.5);
    padding: 15px 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 10;
}

nav a {
    text-decoration: none;
    color: white;
    margin: 0 15px;
    font-size: 14px;
    transition: color 0.3s ease;
}

nav a:hover {
    color: #ff004f;
}

.logo {
    z-index: 0;
    position: fixed;
    top: 4%;
    left: 2%;
    height: 80px;
}

.discordbutton {
    z-index: 0;
    position: fixed;
    top: 2%;
    right: 1%;
    background: transparent;
    border: none !important;
    font-size: 0;
    height: 40px;
}

/* Hero Section */
#hero {
    position: relative;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.6);
}

#hero .title {
    font-size: 48px;
    color: #fff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.6);
    animation: neonGlow 1.5s ease-in-out infinite alternate;
}

#hero .tagline {
    font-size: 24px;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    margin: 20px auto;
}

@keyframes neonGlow {
    from {
        text-shadow: 0 0 10px rgba(255, 255, 255, 0.6), 0 0 20px rgba(255, 0, 79, 0.4);
    }
    to {
        text-shadow: 0 0 20px rgba(255, 255, 255, 0.9), 0 0 30px rgba(255, 0, 79, 0.7);
    }
}

/* Call to Action */
.cta {
    margin-top: 30px;
}

.cta .button {
    display: inline-block;
    padding: 15px 30px;
    font-size: 18px;
    border: none;
    border-radius: 50px;
    background: #ff004f;
    color: white;
    font-family: 'Press Start 2P', cursive;
    animation: bounce 1s infinite alternate;
    transition: background 0.3s ease, transform 0.3s ease;
    margin-top: 30px;
    text-decoration: none;
    text-align: center;
}

.cta .button:hover {
    background: #ff0080;
    transform: scale(1.05);
}

@keyframes bounce {
    0% { transform: translateY(0); }
    100% { transform: translateY(-10px); }
}

/* Countdown Timer */
.countdown {
    margin-top: 50px;
    font-size: 30px;
    font-weight: bold;
    background: rgba(0, 0, 0, 0.7);
    padding: 20px;
    border-radius: 10px;
}

/* About Section */
.game-showcase {
    margin: 50px 0;
    background: rgba(0, 0, 0, 0.7);
    padding: 20px;
    border-radius: 10px;
}

.games {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
}

@media screen and (max-width: 768px) {
    .games {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

.testimonial {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 20px;
    color: #fff;
    text-align: center;
    transition: transform 0.3s ease;
}

.testimonial:hover {
    transform: scale(1.05);
}

/* FAQ Section */
.testimonials {
    padding: 40px 0;
    background: rgba(27, 15, 61, 0.8);
}

/* Add a container for the title */
.faq-header {
    text-align: center;
    width: 100%;
    margin-bottom: 40px;
}

.faqtitle {
    font-size: 50px;
    line-height: 100px;
    display: block;  /* Change to block */
    margin: 0 auto;  /* Center the title */
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.faq-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 1.5rem;
    backdrop-filter: blur(10px);
    transition: transform 0.2s ease;
}

.faq-card:hover {
    transform: translateY(-5px);
}

.faq-question {
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 1.1em;
}

.faq-answer {
    line-height: 1.6;
}

/* Footer */
footer {
    background: rgba(27, 15, 61, 0.8);
    padding: 20px;
}

footer p {
    font-size: 14px;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 20;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.8);
}

.modal-content {
    background-color: rgba(27, 15, 61, 0.9);
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 500px;
    border-radius: 10px;
    text-align: center;
}

/* Form Styling */
form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

input, textarea {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border-radius: 5px;
    border: none;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-family: 'Press Start 2P', cursive;
}

input::placeholder, textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

button[type="submit"] {
    background: #ff004f;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    transition: background 0.3s ease;
}

button[type="submit"]:hover {
    background: #ff007f;
}

.cursor {
    width: 20px;
    height: 20px;
    border: 1px solid white;
    border-radius: 50%;
    position: fixed;
    transition-duration: 200ms;
    transition-timing-function: ease-out;
    animation: cursorAnim .5s infinite alternate;
    pointer-events: none;
    z-index: 999;
}

.cursor::after {
    content: "";
    width: 20px;
    height: 20px;
    position: fixed;
    border: 8px solid gray;
    border-radius: 50%;
    opacity: .5;
    animation: cursorAnim2 .5s infinite alternate;
    z-index: 999;
    top:4%;
    left:4%



}


@keyframes cursorAnim {
    from {
        transform: scale(1);
    }
    to {
        transform: scale(.7);
    }
}

@keyframes cursorAnim2 {
    from {
        transform: scale(1);
    }
    to {
        transform: scale(.4);
    }
}

@keyframes cursorAnim3 {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(3);
    }
    100% {
        transform: scale(1);
        opacity: 0;
    }
}

.expand {
    animation: cursorAnim3 .5s forwards;
    border: 1px solid red;
}

/* Media Queries for Responsive Design */
@media screen and (max-width: 768px) {
    nav {
        padding: 10px 0;
    }

    nav a {
        font-size: 12px;
        margin: 0 10px;
    }

    .logo {
        height: 60px;
    }

    .discordbutton {
        height: 30px;
    }

    #hero .title {
        font-size: 36px;
    }

    #hero .tagline {
        font-size: 18px;
    }

    .countdown {
        font-size: 24px;
    }

    .games {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .faqtitle {
        font-size: 36px;
        line-height: 60px;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 480px) {
    nav a {
        font-size: 10px;
        margin: 0 5px;
    }

    .logo {
        height: 40px;
    }

    .discordbutton {
        height: 20px;
    }

    #hero .title {
        font-size: 28px;
    }

    #hero .tagline {
        font-size: 14px;
    }

    .countdown {
        font-size: 20px;
    }

    .cta .button {
        font-size: 14px;
        padding: 10px 20px;
    }

    .faqtitle {
        font-size: 24px;
        line-height: 30px;
    }

    .faq-question {
        font-size: 14px;
    }

    .faq-answer {
        font-size: 12px;
    }
}
.cursor {
    position: fixed;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #eee;
    left: 0;
    transform: translate(-50%, -50%);
    pointer-events: none;
    transition: width 1000ms, height 1000ms;
}

.cursor.large {
    height: 70px;
    width: 70px;
}
.bob {
    cursor: url('custom-cursor.png'), auto;
    cursor: default;
}

.bob:hover{
    cursor: url('custom-cursor.png'), auto;
}