* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    background-color: #000000;
    scroll-behavior: smooth;
    font-family: Arial, Helvetica, sans-serif;
}

.container {
    font-family: Arial, Helvetica, sans-serif;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

header {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 40px;
    z-index: 999;
    background-color: #4b4b4b5b;
    backdrop-filter: blur(10px);
}

.head-left {
    display: flex;
    align-items: center;
}

.head-left img {
    width: 40px;
    height: 40px;
    margin-right: 20px;
}

.head-left button {
    border: none;
    padding: 10px 30px;
    border-radius: 20px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
}

.head-left button:hover {
    opacity: 0.7;
}

.head-right {
    display: flex;
}

.head-right a {
    color: white;
    text-decoration: none;
    padding-left: 25px;
    font-size: 15px;
}

.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.hero-vid {
    width: 100%;
    height: 100%;
    position: relative;
}

.hero-video {
    width: 100vh;
    height: 100vw;
    object-fit: cover;
    transform: rotate(270deg);
    transform-origin: center;
    position: absolute;
    top: 50%;
    left: 50%;
    translate: -50% -50%;
}

.hero-info {
    z-index: 1;
    position: relative;
    top: 80px;
    left: 50px;
}

.hero-info h1 {
    font-size: 120px;
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    font-weight: 900;
    font-style: normal;
    margin-top: 30px;
    margin-bottom: 20px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.4);
}

.hero-info p {
    color: white;
    max-width: 210px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.4);
}

.hero-info button {
    background-color: #edff66;
    border: 2px solid #edff66;
    padding: 10px 40px;
    border-radius: 20px;
    cursor: pointer;
    color: black;
    transition: 0.3s;
}

.hero-info button:hover {
    background-color: transparent;
    color: white;
    box-shadow: 0 0 15px #edff66;
}

.gamming-text {
    font-size: 120px;
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    margin: 0;
    position: absolute;
    right: 60px;
    bottom: 40px;
    z-index: 10;
    line-height: 0.9;
    pointer-events: none;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.4);
}

.next-btn {
    width: 200px;
    height: 200px;
    background-color: #edff66;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: black;
    font-size: 30px;
    font-weight: bold;
    cursor: pointer;
    z-index: 100;
    opacity: 0;
    transition: all 0.4s ease-in-out;
}

.next-btn:hover {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
    box-shadow: 0 0 30px rgba(237, 255, 102, 0.8);
}

.next-btn button {
    background: none;
    border: none;
    font: inherit;
    cursor: pointer;
    pointer-events: none;
}

.about-section {
    width: 100%;
    height: 100%;
    margin-top: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white;
}

.about-section p {
    font-size: 30px;
}

.about-section h1 {
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    font-weight: 900;
    font-size: 100px;
    max-width: 1150px;
    text-align: center;
    margin: 25px 0;
    text-transform: uppercase;
    background: linear-gradient(to right, #4acfee, #53f8c9, #02d79a, #6070fd, #2a46ff, #0099ff, #4acfee);
    background-size: 200%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: animate-gradient 2.5s linear infinite;
}

@keyframes animate-gradient {
    to {
        background-position: 200%;
    }

}

.about-section h2 {
    margin-top: 50px;
    margin-bottom: 0;
}

.about-section h3 {
    margin-top: 5px;
    color: grey;
    max-width: 425px;
    text-align: center;
    line-height: 25px;
}

.image-box img {
    border: none;
    border-radius: 20px;
}

.game-slider {
    width: 90%;
    margin: 50px auto;
}

.slider img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 0 20px #00f5ff;
}

.slick-prev,
.slick-next {
    z-index: 1000;
}

.slick-prev:before,
.slick-next:before {
    color: #00f5ff;
    font-size: 30px;
}

.slick-dots li button:before {
    color: #00f5ff;
}

.gallery-wrapper {
    display: flex;
    flex-direction: column;
    position: relative;
    width: 80%;
    margin-top: 100px;
}

.gallery-wrapper h1 {
    margin-bottom: 0;

}

.gallery-wrapper p {
    margin-top: 5px;
    color: grey;
    max-width: 400px;
    line-height: 25px;
}

.grid {
    display: grid;
    grid-template-columns: auto auto auto;
    gap: 20px;
    margin-top: 30px;
    width: 100%;
    height: 100%;
    justify-items: center;
}

.item {
    position: relative;
    width: auto;
    height: 40vh;
    overflow: hidden;
    border: 1px solid grey;
    border-radius: 20px;
    transition: 0.5s;
    margin-left: 100px;
}

.item h1 {
    position: absolute;
    margin: 0;
    top: 10px;
    left: 5%;
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    font-size: 60px;
    z-index: 1;
    background: linear-gradient(to right, #4acfee, #53f8c9, #02d79a, #6070fd, #2a46ff, #0099ff, #4acfee);
    background-size: 200%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: animate-gradient 2.5s linear infinite;
    max-width: 250px;
}

.item button {
    position: absolute;
    bottom: 5%;
    left: 5%;
    padding: 10px 25px;
    border: 1px solid grey;
    background-color: #0f1217;
    color: grey;
    border-radius: 20px;
    box-shadow: 0 0 5px lightgrey;
    cursor: pointer;
    transition: 0.3s;
}

.item button:hover {
    box-shadow: 0 0 15px lightgrey;
    opacity: 0.7;
}

.item img {
    width: 100%;
    height: 100%;
    object-fit: cover;

}

.item:hover {
    box-shadow: 0 0 15px white;
    transform: translateY(-5px);
}

.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 10;
    align-items: center;
    justify-content: center;
}

.overlay-img {
    max-width: 80%;
    max-height: 80%;
    border: 3px solid #00f2ff;
}

.close {
    position: absolute;
    top: 30px;
    right: 50px;
    font-size: 50px;
    cursor: pointer;
}

.image {
    width: 85vh;
    height: 20vw;
    object-fit: cover;
    position: absolute;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.4);
}

.contact-section {
    position: relative;
    width: 100%;
    margin-top: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100vh;
}

.contact-section .img1 {
    position: absolute;
    top: 10%;
    right: 20px;
    height: 400px;
    clip-path: polygon(32% 0, 94% 0, 74% 100%, 0% 100%);
}

.contact-section .img2 {
    position: absolute;
    top: 10px;
    left: 50px;
    height: 200px;
    clip-path: polygon(35% 6%, 75% 0%, 100% 50%, 75% 100%, 36% 95%, 8% 49%);
}

.contact-section .img3 {
    position: absolute;
    left: 5%;
    bottom: 20%;
    height: 250px;
    width: 250px;
    clip-path: polygon(52% 5%, 100% 38%, 82% 100%, 34% 93%, 0% 38%);
}

.contact-section p {
    margin-top: 100px;

}

.contact-section h1 {
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    font-size: 70px;
    max-width: 550px;
    text-align: center;
    background: linear-gradient(to right, #4acfee, #53f8c9, #02d79a, #6070fd, #2a46ff, #0099ff, #4acfee);
    background-size: 200%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: animate-gradient 2.5s linear infinite;
}

.contact-section button {
    padding: 10px 25px;
    border: 1px solid grey;
    background-color: #0f1217;
    color: grey;
    border-radius: 20px;
    box-shadow: 0 0 5px lightgrey;
    cursor: pointer;
    transition: 0.3s;
}

.contact-section button:hover {
    box-shadow: 0 0 15px lightgrey;
    opacity: 0.7;
}

.footer {
    width: 100%;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: rgba(211, 211, 211, 0.21);
    backdrop-filter: blur(10px);
}

.footer p {
    margin: 0 20px;
}

.footer ul {
    display: flex;
    list-style: none;
}

.footer a {
    color: white;
    text-decoration: none;
    padding: 7px 7px;
    border: 1px solid rgba(0, 130, 211);
    border-radius: 50px;
    transition: 0.3s;
    margin: 0 10px;
}

.autoblur {
    animation: autoblur linear both;
    animation-timeline: view();
}

@keyframes autoblur {
    0% {
        filter: blur(40px);
    }

    40%,
    60% {
        filter: blur(0);
        transform: translatey(0px);
        opacity: 1;
    }

    100% {
        filter: blur(40px);
        transform: translatey(-200px);
        opacity: 0;
    }

}

#contact-form-btn {
    background-color: #050505;
    color: #ffffff;
    overflow-x: hidden;
}

.gaming-bg-header {
    width: 100%;
    height: 320px;
    background: linear-gradient(to bottom, rgba(5, 5, 5, 0.2), #050505),
        url('images/backgroung-image-1.jfif');
    background-size: cover;
    background-position: center;
}

.contact-area {
    max-width: 1100px;
    margin: -80px auto 50px;
    padding: 0 20px;
    position: relative;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: clamp(1.8rem, 5vw, 2.5rem);
    text-transform: uppercase;
    letter-spacing: 3px;
}

.purple-glow-bar {
    width: 70px;
    height: 4px;
    background: #6d28d9;
    margin: 15px auto;
    box-shadow: 0 0 15px #6d28d9, 0 0 30px #6d28d9;
}

.flex-container {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-details {
    flex: 1;
    min-width: 300px;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.icon-wrap {
    width: 55px;
    height: 55px;
    background: #1a1a2e;
    border: 2px solid #6d28d9;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #a78bfa;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.label {
    color: #a78bfa;
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
}

.value {
    color: #cbd5e1;
    font-size: 1.1rem;
    word-break: break-all;
}

.gaming-status {
    background: linear-gradient(135deg, #2e1065 0%, #050505 100%);
    border: 1px solid #4c1d95;
    padding: 25px;
    border-radius: 15px;
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.glass-form-container {
    flex: 1.5;
    min-width: 300px;
    background: rgba(26, 26, 46, 0.8);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(109, 40, 217, 0.3);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.input-box {
    margin-bottom: 25px;
    position: relative;
}

.input-box label {
    display: block;
    margin-bottom: 10px;
    color: #94a3b8;
    font-size: 0.9rem;
}

input,
textarea {
    width: 100%;
    padding: 15px;
    background: #0f172a;
    border: 1px solid #334155;
    border-radius: 10px;
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

input.error,
textarea.error {
    border-color: #ef4444 !important;
    box-shadow: 0 0 10px rgba(239, 68, 68, 0.2);
}

label.error {
    color: #ef4444 !important;
    font-size: 0.8rem !important;
    margin-top: 5px;
    font-weight: 400;
}

#submitBtn {
    width: 100%;
    padding: 16px;
    background: #6d28d9;
    color: white;
    border: none;
    border-radius: 10px;
    font-weight: 700;
    cursor: pointer;
    font-size: 1rem;
    transition: 0.4s;
    box-shadow: 0 4px 15px rgba(109, 40, 217, 0.4);
}

#submitBtn:hover {
    background: #7c3aed;
    box-shadow: 0 0 25px rgba(109, 40, 217, 0.8);
    transform: translateY(-3px);
}

@media (max-width: 992px) {
    .contact-area {
        margin-top: -50px;
    }
}

@media (max-width: 768px) {
    .gaming-bg-header {
        height: 200px;
    }

    .contact-area {
        margin-top: -30px;
    }

    .glass-form-container {
        padding: 25px;
    }

    .flex-container {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .detail-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .gaming-status {
        padding: 15px;
    }
}

@media screen and (max-width: 650px) {
    header {
        padding: 0 10px;
    }

    .head-left button {
        display: none;
    }

    .head-right a {
        font-size: 12px;
        padding: 0 5px;
    }

    .hero-info {
        left: 5%;
    }

    .hero-section h1 {
        font-size: 90px;
    }

    .hero-vid {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .hero-vid video {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .next-btn {
        left: 45%;
        top: 50%;
        opacity: 0;
        transition: all 0.4s ease-in-out;
    }

    .next-btn:hover {
        left: 45%;
        top: 50%;
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
        box-shadow: 0 0 30px rgba(237, 255, 102, 0.8);
    }

    .about-section {
        margin: 0;
    }

    .about-section h1 {
        font-size: 50px;
    }

    .about-section h2 .about-section h3 {
        max-width: 350px;
        text-align: center;
    }

    .contact-section .img1 {
        width: 120px;
        height: 100px;
        right: 0;
        top: 20px;
    }

    .contact-section .img2 {
        top: 30px;
        left: -10px;
        width: 120px;
        height: 100px;
    }

    .contact-section .img3 {
        left: -40px;
        bottom: 0;
        width: 120px;
        height: 100px;
    }

    .contact-section h1 {
        font-size: 60px;
        max-width: 300px;
    }

    .footer p {
        display: none;
    }

    .footer ul {
        margin-left: 70px;
    }
}

@media (max-width: 992px) {
    .game-slider {
        width: 95%;
    }
}

@media (max-width: 768px) {
    .game-slider {
        margin: 25px auto;
    }

    .slider img {
        border-radius: 10px;
    }
}

@media (max-width: 480px) {
    .slider img {
        height: 200px;
    }

    .slick-prev:before,
    .slick-next:before {
        font-size: 18px;
    }
}

@media (min-width: 1400px) {
    .game-slider {
        max-width: 1300px;
    }
}

:root {
    --bg: #050505;
    --card: #0f0f15;
    --purple: #7c3aed;
    --text-gray: #a1a1aa;
}
#faqs{
    background-color: var(--bg);
    color: white;
    font-family: 'Inter', sans-serif;
    margin: 0;
}
.gaming-banner-space {
    height: 35vh;
    background: linear-gradient(to bottom, transparent, var(--bg)), 
                url('images/backgroung-image-2.jfif');
    background-size: cover;
    background-position: center;
}

.faq-section {
    max-width: 800px;
    margin: -80px auto 50px;
    padding: 0 15px;
}

.faq-header h1 {
    font-size: clamp(1.8rem, 8vw, 3rem);
    text-align: center;
    text-transform: uppercase;
}

.purple-neon {
    color: var(--purple);
    text-shadow: 0 0 15px var(--purple);
}


.search-box {
    position: relative;
    max-width: 100%;
    margin: 25px auto;
}

.search-box i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--purple);
}

#faqSearch {
    width: 100%;
    padding: 15px 15px 15px 45px;
    background: #111;
    border: 1px solid #333;
    border-radius: 12px;
    color: white;
    outline: none;
    box-sizing: border-box;
}

#faqSearch:focus { border-color: var(--purple); }


.faq-grid { display: flex; flex-direction: column; gap: 12px; }

.faq-card {
    background: var(--card);
    border: 1px solid #222;
    border-radius: 10px;
    transition: 0.3s;
}

.faq-trigger {
    padding: 18px 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 1rem;
}

.faq-trigger:hover { background: rgba(124, 58, 237, 0.05); }

.faq-content {
    padding: 0 20px 20px;
    color: var(--text-gray);
    display: none;
    font-size: 0.95rem;
    line-height: 1.5;
}


.faq-card.active { border-color: var(--purple); box-shadow: 0 0 15px rgba(124, 58, 237, 0.1); }
.faq-card.active .faq-trigger i { transform: rotate(45deg); color: var(--purple); }

@media (max-width: 480px) {
    .faq-trigger { font-size: 0.9rem; padding: 15px; }
    .faq-header h1 { margin-bottom: 10px; }
}

@media screen and (max-width: 1024px) {
    .grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        padding: 0 20px;
    }
    
    .item {
        margin-left: 0 !important; 
        width: 100%;
    }
}