/* ===== BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    background-color: #000000;
    overflow-x: hidden;
}

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

/* ===== MOBILE MENU TOGGLE ===== */
.mobile-menu-toggle {
    display: none;
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    background-color: rgba(75, 75, 75, 0.8);
    border: none;
    color: white;
    font-size: 28px;
    padding: 10px;
    border-radius: 8px;
    cursor: pointer;
    backdrop-filter: blur(10px);
}

/* ===== HEADER ===== */
header {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 40px;
    z-index: 999;
    background-color: rgba(75, 75, 75, 0.36);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

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

.head-left img {
    width: 70px;
    height: 70px;
}

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

.head-left .products-btn:hover {
    opacity: 0.7;
}

.head-right {
    display: flex;
    gap: 15px;
}

.head-right p {
    margin: 0;
}

.head-right a {
    text-decoration: none;
    color: white;
    font-size: 15px;
    padding: 5px 10px;
    transition: all 0.3s ease;
}

.head-right a:hover {
    color: #edff66;
    transform: scale(1.1);
}

/* ===== HERO SECTION ===== */
.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

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

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

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

.hero-info h1 {
    font-size: 120px;
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    font-weight: 900;
    margin: 30px 0 20px 0;
}

.hero-info p {
    color: white;
    max-width: 280px;
    line-height: 1.5;
    font-size: 16px;
}

.hero-info button {
    background-color: #edff66;
    border: 2px solid #edff66;
    padding: 12px 40px;
    border-radius: 25px;
    cursor: pointer;
    color: #000000;
    font-weight: 600;
    transition: 0.3s;
    margin-top: 20px;
}

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

.gaming-text {
    font-size: 120px;
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    margin: 0;
    position: absolute;
    right: 20px;
    bottom: 30px;
}

.next-btn {
    width: 180px;
    height: 180px;
    background-color: #edff66;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000000;
    font-weight: bold;
    font-size: 18px;
    cursor: pointer;
    z-index: 100;
    opacity: 0.3;
    transition: all 0.3s ease;
}

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

/* ===== ABOUT SECTION ===== */
.about-section {
    width: 100%;
    margin-top: 150px;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    color: white;
    align-items: center;
}

.about-section > p {
    font-size: 14px;
    margin-bottom: 10px;
}

.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 3s linear infinite;
}

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

.image-box {
    width: 360px;
    height: 510px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    margin: 40px 0;
}

.image-box img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.stones {
    position: absolute;
    width: 500px;
    margin-top: 35%;
}

.about-section h4 {
    margin-top: 50px;
    margin-bottom: 10px;
    font-size: 20px;
    text-align: center;
}

.about-section h5 {
    margin-top: 5px;
    color: grey;
    max-width: 500px;
    text-align: center;
    line-height: 25px;
    font-weight: 400;
}

/* ===== INFO SECTION ===== */
.info-section {
    display: flex;
    flex-direction: column;
    position: relative;
    width: 90%;
    max-width: 1400px;
    margin-top: 100px;
    padding: 0 20px;
}

.info-section h3 {
    margin-bottom: 10px;
    font-size: 24px;
}

.info-section > p {
    margin-top: 5px;
    color: grey;
    max-width: 500px;
    line-height: 25px;
}

.info-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    width: 100%;
    margin-top: 30px;
}

.card {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    border: 1px solid gray;
    border-radius: 20px;
    transition: 0.5s;
    background-color: #0a0a0a;
}

.card h1 {
    position: absolute;
    margin: 0;
    top: 20px;
    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 3s linear infinite;
}

.card p {
    position: absolute;
    top: 100px;
    left: 5%;
    z-index: 1;
    max-width: 280px;
    color: lightblue;
    line-height: 1.5;
}

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

.card button {
    position: absolute;
    left: 5%;
    bottom: 5%;
    padding: 12px 30px;
    border: 1px solid gray;
    background-color: #0f1217;
    color: gray;
    border-radius: 20px;
    box-shadow: 0 0 5px lightgray;
    cursor: pointer;
    transition: 0.3s;
    z-index: 1;
}

.card button:hover {
    box-shadow: 0 0 20px lightgrey;
    background-color: lightgray;
    color: #000000;
}

.card:hover {
    box-shadow: 0 0 15px rgb(211, 211, 211);
    transform: translateY(-5px);
}

.card:nth-child(1) {
    grid-column: span 2;
    height: 500px;
}

.card:nth-child(2) {
    grid-row: span 2;
    height: 920px;
}

.card-text-only {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ===== CONTACT SECTION ===== */
.contact-section {
    position: relative;
    width: 100%;
    margin-top: 150px;
    padding: 50px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 80vh;
    margin-bottom: 100px;
}

.contact-section > p {
    margin-bottom: 20px;
    font-size: 14px;
}

.contact-section h1 {
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    max-width: 850px;
    font-size: 65px;
    font-weight: 900;
    text-align: center;
    margin-bottom: 40px;
    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 3s linear infinite;
}

.contact-section button {
    padding: 14px 35px;
    border: 2px solid #edff66;
    background-color: #edff66;
    color: #000000;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
    z-index: 10;
}

.contact-section button:hover {
    background-color: transparent;
    color: white;
    box-shadow: 0 0 20px #edff66;
    transform: scale(1.05);
}

.contact-section .image1,
.contact-section .image2,
.contact-section .image3 {
    position: absolute;
    opacity: 0.7;
}

.contact-section .image1 {
    top: 15%;
    right: 50px;
    height: 400px;
    clip-path: polygon(32% 0, 94% 0, 74% 100%, 0% 100%);
}

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

.contact-section .image3 {
    left: 5%;
    /*bottom: 40px;*/
    height: 300px;
    margin-top: 15%;
    clip-path: polygon(50% 5%, 100% 35%, 80% 100%, 75% 100%, 40% 95%, 8% 49%);
}

/* ===== FOOTER ===== */
footer {
    display: flex;
    width: 100%;
    min-height: 100px;
    padding: 20px 40px;
    align-items: center;
    justify-content: space-between;
    background-color: rgba(211, 211, 211, 0.21);
    backdrop-filter: blur(10px);
    flex-wrap: wrap;
    gap: 20px;
}

footer p {
    margin: 0;
}

footer .social-links {
    display: flex;
    list-style: none;
    gap: 15px;
    margin: 0;
    padding: 0;
}

footer .social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid rgb(0, 130, 211);
    border-radius: 50%;
    color: whitesmoke;
    text-decoration: none;
    transition: 0.3s;
    box-shadow: 0 0 5px rgb(0, 130, 211);
}

footer .social-links a:hover {
    background-color: rgb(0, 130, 211);
    color: #000;
    box-shadow: 0 0 15px rgb(0, 130, 211);
    transform: translateY(-3px);
}

footer .social-links i {
    font-size: 20px;
}

.senpai {
    display: none;
}

/* ===== SCROLL ANIMATIONS ===== */
@supports (animation-timeline: view()) {
    .autoBlur {
        animation: autoBlurAnime linear both;
        animation-timeline: view();
    }
    
    .autoLarge {
        animation: autoTakeFull both;
        animation-timeline: view(70% 65%);
    }
    
    .card {
        animation: display both;
        animation-timeline: view(70% 5%);
    }
}

@keyframes autoBlurAnime {
    0% {
        filter: blur(40px);
        opacity: 0;
    }
    30%, 70% {
        filter: blur(0);
        transform: translateY(0px);
        opacity: 1;
    }
    100% {
        filter: blur(30px);
        transform: translateY(-200px);
        opacity: 0;
    }
}

@keyframes autoTakeFull {
    to {
        width: 100%;
        max-width: 100%;
        height: 100vh;
        border-radius: 0;
        margin-bottom: 100px;
    }
}

@keyframes display {
    from {
        opacity: 0;
        transform: translateY(100px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@media screen and (max-width: 1500px) {
    .contact-section .image3{
        bottom: 35px;
        left: 5%;

    }
    .contact-section .image1{
        height: 40%;
   
        bottom: 25px;
    
    }

    .contact-section{
        height: 95vh;
    }
    
}

/* ===== TABLET (LANDSCAPE & PORTRAIT) ===== */
@media screen and (max-width: 1024px) {
    .hero-info h1 {
        font-size: 90px;
    }
    
    .gaming-text {
        font-size: 90px;
    }
    
    .about-section h1 {
        font-size: 70px;
    }
    
    .contact-section h1 {
        font-size: 50px;
    }
    
    .info-cards {
        gap: 15px;
    }
    .card h1 {
        font-size: 50px;
    }
    .contact-section .image1 {
        height: 290px;
        right: -20px;
        top: 35%;
    }
    
    .contact-section .image2 {
        height: 140px;
        left: -15px;
        top: 0px;
    }
    
    .contact-section .image3 {
        max-height: 200px;
        left: 10px;
        bottom: 0px;
    }
    .contact-section{
        /*border: 1px solid red;*/
        height: 25px;
        /*margin-bottom: 10%;*/
    }
    .stones{
        margin-top: 50%;
    }
}

/* ===== TABLET (PORTRAIT) ===== */
@media screen and (max-width: 810px) {
    header {
        padding: 10px 20px;
    }
    
    .head-left img {
        width: 60px;
        height: 60px;
    }
    
    .head-left .products-btn {
        padding: 8px 20px;
        font-size: 14px;
    }
    
    .head-right a {
        font-size: 13px;
        padding: 5px 8px;
    }
    
    .hero-info {
        left: 30px;
        top: 100px;
    }
    
    .hero-info h1 {
        font-size: 70px;
    }
    
    .gaming-text {
        font-size: 70px;
        right: 15px;
        bottom: 20px;
    }
    
    .next-btn {
        width: 150px;
        height: 150px;
        font-size: 16px;
    }
    
    .about-section h1 {
        font-size: 55px;
        padding: 0 20px;
    }
    
    .image-box {
        width: 80%;
        max-width: 400px;
        height: 450px;
    }
    
    .stones {
        width: 510px;
        margin-top: 90%;
    }
    
    .info-section {
        width: 95%;
    }
    
    .info-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .card {
        height: 350px !important;
    }
    
    .card:nth-child(1),
    .card:nth-child(2) {
        grid-column: span 1;
        grid-row: span 1;
        height: 350px !important;
    }
    
    .card h1 {
        font-size: 45px;
    }
    
    .card p {
        max-width: 70%;
        font-size: 14px;
    }
    
    .contact-section {
        padding: 30px 15px;
        margin-bottom: 0px;
    }
    
    .contact-section h1 {
        font-size: 40px;
        max-width: 90%;
   
  
    }
    .contact-section h1, .contact-section p{
        margin-top: 10%;
    }
    
    .contact-section .image1 {
        height: 250px;
        right: 20px;
        top: 50%;
    }
    
    .contact-section .image2 {
        height: 180px;
        left: 20px;
        top: 0px;
    }
    
    .contact-section .image3 {
        height: 200px;
        left: 30px;
        bottom: 30px;
    }
    
    footer {
        padding: 20px;
        justify-content: center;
        text-align: center;
    }
    
    footer .privacy-text {
        order: 3;
        width: 100%;
    }
}

/* ===== MOBILE PHONES ===== */
@media screen and (max-width: 480px) {
    .mobile-menu-toggle {
        display: block;
    }
    
    header {
        padding: 8px 15px;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    header.mobile-open .head-right {
        display: flex;
        flex-direction: column;
        width: 100%;
    }
    
    .head-left {
        width: 100%;
        justify-content: space-between;
    }
    
    .head-left img {
        width: 50px;
        height: 50px;
    }
    
    .head-left .products-btn {
        display: none;
    }
    
    .head-right {
        display: none;
        width: 100%;
    }
    
    .head-right.active {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
    
    .head-right p {
        width: 100%;
    }
    
    .head-right a {
        display: block;
        padding: 10px;
        font-size: 14px;
        background-color: rgba(255, 255, 255, 0.1);
        border-radius: 5px;
    }
    
    .hero-info {
        left: 20px;
        top: 100px;
    }
    
    .hero-info h1 {
        font-size: 50px;
        margin: 20px 0 15px 0;
    }
    
    .hero-info p {
        font-size: 14px;
        max-width: 200px;
    }
    
    .hero-info button {
        padding: 10px 25px;
        font-size: 14px;
    }
    
    .gaming-text {
        font-size: 50px;
        right: 10px;
        bottom: 15px;
    }
    
    .next-btn {
        width: 120px;
        height: 120px;
        font-size: 14px;
    }
    
    .about-section {
        margin-top: 100px;
        padding: 0 15px;
    }
    
    .about-section h1 {
        font-size: 40px;
    }
    
    .image-box {
        width: 90%;
        height: 400px;
        border-radius: 30px;
    }
    
    .stones {
        width: 300px;
        margin-top: 99%;
    }
    
    .about-section h4 {
        font-size: 18px;
        padding: 0 15px;
    }
    
    .about-section h5 {
        font-size: 14px;
        max-width: 90%;
        line-height: 22px;
    }
    
    .info-section {
        width: 100%;
        padding: 0 15px;
        margin-top: 80px;
    }
    
    .info-section h3 {
        font-size: 20px;
    }
    
    .info-section > p {
        font-size: 14px;
        max-width: 100%;
    }
    
    .card {
        height: 320px !important;
        border-radius: 15px;
    }
    
    .card h1 {
        font-size: 35px;
        top: 15px;
    }
    
    .card p {
        top: 70px;
        max-width: 80%;
        font-size: 13px;
    }
    
    .card button {
        padding: 10px 20px;
        font-size: 12px;
    }
    
    .contact-section {
        margin-top: 100px;
        padding: 30px 15px;
        min-height: 70vh;
    }
    
    .contact-section h1 {
        font-size: 32px;
        margin-bottom: 30px;
    }
    
    .contact-section button {
        padding: 12px 30px;
        font-size: 14px;
    }
    
    .contact-section .image1 {
        height: 200px;
        right: -20px;
        top: 35%;
    }
    
    .contact-section .image2 {
        height: 140px;
        left: -15px;
        top: 0px;
    }
    
    .contact-section .image3 {
        max-height: 200px;
        left: 10px;
        bottom: 5%;
    }
    .contact-section{
        height: 450px;
        margin-bottom: 10%;
    }
    .contact-section h1{
        margin-top: 20px;
    }
    
    footer {
        padding: 20px 15px;
        gap: 15px;
    }
    
    footer p:not(.senpai) {
        font-size: 12px;
    }
    
    footer .privacy-text {
        display: none;
    }
    
    .senpai {
        display: block;
        font-size: 14px;
        width: 100%;
        text-align: center;
        order: 4;
    }
    
    footer .social-links {
        gap: 10px;
    }
    
    footer .social-links a {
        width: 35px;
        height: 35px;
    }
    
    footer .social-links i {
        font-size: 18px;
    }
}

/* ===== SMALL MOBILE PHONES ===== */
@media screen and (max-width: 360px) {
    .hero-info h1 {
        font-size: 40px;
    }
    
    .gaming-text {
        font-size: 40px;
    }
    
    .about-section h1 {
        font-size: 32px;
    }
    
    .contact-section h1 {
        font-size: 28px;
    }
    
    .next-btn {
        width: 100px;
        height: 100px;
        font-size: 12px;
    }
    
    .card h1 {
        font-size: 30px;
    }
    
    .stones {
        width: 270px;
    }
       .contact-section .image1 {
        display: none;
        height: 200px;
        right: -20px;
        top: 35%;
    }
    
    .contact-section .image2 {
        height: 140px;
        left: -15px;
        top: 0px;
        display: none;
    }
    
    .contact-section .image3 {
        max-height: 150px;
        left: 10%;
        margin-top: 1000px;
        bottom: -7%;

    }
    .contact-section{
        height: 450px;
        margin-bottom: 15%;
    }
}
