/* ================== GENEL ================== */
:root{
    /* ===== RENKLER ===== */
    --renk-beyaz: rgb(255, 255, 255);
    --renk-siyah: rgb(0, 0, 0);
    --renk-gri: rgb(128, 128, 128);
    --renk-kirmizi: rgb(255, 20, 0);
    --renk-kirmizi-acik: rgb(202, 56, 56);
    --renk-yesil: rgb(0, 235, 71);
    --renk-yesil-koyu: rgb(0, 146, 41);
    --renk-cyan: rgb(0, 221, 255);
    --renk-cyan-koyu: rgb(0, 238, 255);
    --renk-mavi-parlak: rgb(0, 247, 255);
    --renk-mavi-koyu: rgb(0, 34, 255);
    --renk-mavi-cok-koyu: rgb(0, 8, 255);
    --renk-mavi-acik: rgb(0, 140, 255);
    --renk-mavi-orta: rgb(0, 98, 255);
    --renk-mavi-sift: rgb(0, 73, 137);
    --renk-mavi-hex: rgb(0, 98, 157);
    --renk-mavi-yolisite: rgb(0, 93, 224);
    --renk-mavi-yolisite-acik: rgb(0, 157, 255);
    --renk-mavi-hexa: rgb(0, 62, 147);
    --renk-mavi-lineer1: rgb(0, 136, 255);
    --renk-mavi-02: rgb(0, 202, 228);
    --renk-mavi-132: rgb(0, 132, 255);
    --renk-mavi-hex2: rgb(58, 74, 103);
    --renk-mavi-hex3: rgb(11, 61, 147);
    --renk-mavi-hex4: rgb(0, 80, 255);
    --renk-mavi-hex5: rgb(0, 114, 253);
    --renk-mavi-hex6: rgb(36, 59, 99);
    --renk-mavi-hex7: rgb(0, 98, 201);
    --renk-mavi-hex8: rgb(0, 90, 201);
    --renk-mavi-hex9: rgb(0, 174, 183);
    --renk-mavi-hex10: rgb(56, 99, 173);
    
    /* ===== GRADIENTLER ===== */
    --gradient-card: linear-gradient(76deg, rgb(0, 140, 255), rgb(0, 98, 255), rgb(0, 34, 255));
    --gradient-background: linear-gradient(160deg, #0174b7, #0547b8, #0040b6);
    --gradient-button-gri: linear-gradient(90deg, #3a4a67, #0b3d93);
    --gradient-button-cyan: linear-gradient(90deg, rgb(0, 221, 255), rgb(0, 140, 255));
    --gradient-button-mavi: linear-gradient(90deg, rgb(0, 136, 255), rgb(0, 73, 137));
    --gradient-border-card: linear-gradient(90deg, #00eaff, #0066ff, #00aaff, #00eaff);
    --gradient-profil-radial: radial-gradient(circle at 50% 1%, rgb(36, 59, 99) 0%, rgba(0, 238, 255, 0.2) 20%, rgba(36, 59, 99, 0.7) 50%, rgb(0, 0, 0) 80%);
    --gradient-likes-comments: linear-gradient(90deg, #3863ad, #243b63);
    --gradient-contact: linear-gradient(80deg, rgb(0, 132, 255), rgb(0, 8, 255));
    --gradient-contact-text: linear-gradient(80deg, rgb(0, 132, 255), rgb(0, 8, 255));
    --gradient-video-placeholder: linear-gradient(135deg, rgba(255,255,255,0.05), rgba(0,0,0,0.2));
    --gradient-comment-button: linear-gradient(90deg, rgb(0, 238, 255), rgb(0, 72, 255));
    
    /* ===== RGBA RENKLERI ===== */
    --rgba-beyaz-10: rgba(255, 255, 255, 0.1);
    --rgba-beyaz-15: rgba(255, 255, 255, 0.15);
    --rgba-beyaz-2: rgba(255, 255, 255, 0.2);
    --rgba-beyaz-25: rgba(255, 255, 255, 0.25);
    --rgba-beyaz-3: rgba(255, 255, 255, 0.3);
    --rgba-beyaz-5: rgba(255, 255, 255, 0.5);
    --rgba-beyaz-8: rgba(255, 255, 255, 0.8);
    --rgba-siyah-2: rgba(0, 0, 0, 0.2);
    --rgba-siyah-3: rgba(0, 0, 0, 0.3);
    --rgba-siyah-4: rgba(0, 0, 0, 0.4);
    --rgba-siyah-5: rgba(0, 0, 0, 0.5);
    --rgba-gri: rgba(15, 23, 42, 0.8);
    --rgba-gri2: rgba(15, 23, 42, 0.95);
    --rgba-cyan-2: rgba(0, 238, 255, 0.2);
    --rgba-mavi-5: rgba(0, 90, 201, 0.574);
    --rgba-cyan-8: rgba(0, 247, 255, 0.8);
    --rgba-mavi-6: rgba(0, 255, 255, 1);
    --rgba-cyan-06: rgba(0, 255, 255, 0.6);
    
    /* ===== MIRASİ GRADIENTLER ===== */
    --card-renk: linear-gradient(76deg, rgb(0, 140, 255), rgb(0, 98, 255), rgb(0, 34, 255));
    --arkaPlan: linear-gradient(160deg, #0174b7, #0547b8, #0040b6);
}
body{
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background: var(--arkaPlan);
    color: var(--renk-beyaz); 
    height: 100vh;
}

.loyout{
    display: flex;
    flex-direction: column;
    height: 100%;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.2s;
}

a:hover {
    opacity: 0.8;
}

/* ================== ORTAK CLASSLAR ================== */

/* 🔥 Glass efekt (her yerde aynı) */
.glass{
    background-color: var(--rgba-gri);
    backdrop-filter: blur(5px);
}

/* 🔥 Shadow sistem */
.shadow{
    filter: drop-shadow(0 0 5px var(--rgba-beyaz-5));
}

/* 🔥 Hover scale */
.hover-scale{
    transition: transform 0.3s;
}
.hover-scale:hover{
    transform: scale(1.1);
}

/* ================== HEADER ================== */
.header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;

    position: fixed;
    width: 100%;
    z-index: 1000;

    box-sizing: border-box;
}

/* header görünüm */
.header.glass{
    border-radius: 0;
}

.site-header-icon img{
    width: 50px;
    height: 50px;
    animation: logoAnimation 2s ease-in-out;
}
/* ORTADAKİ ALAN */
.site-header-info{
    position: absolute;
    left: 50%;
    transform: translateX(-50%);

    display: flex;
    align-items: center;
    gap: 15px;
}
.profil-img{
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}
/* 🔥 LOGIN BUTTON */
.auth-area a{
    padding: 6px 12px;
    border-radius: 10px;
    background: var(--rgba-beyaz-10);
    transition: 0.3s;
}

.auth-area a:hover{
    background: var(--rgba-beyaz-25);
}

/* 🔥 USER MENU */
.user-menu{
    position: relative;
    cursor: pointer;
}

/* trigger */
.user-trigger{
    padding: 6px 12px;
    border-radius: 10px;
    background: var(--rgba-beyaz-10);
    transition: 0.3s;
}

.user-trigger:hover{
    background: var(--rgba-beyaz-25);
}

/* dropdown */
.dropdown{
    position: absolute;
    top: 40px;
    right: 0;

    background: var(--rgba-gri2);
    backdrop-filter: blur(10px);

    border-radius: 10px;
    padding: 10px;

    display: flex;
    flex-direction: column;
    gap: 10px;

    opacity: 0;
    pointer-events: none;
    transform: translateY(10px);
    transition: 0.3s;
}

.dropdown.active{
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.dropdown a{
    padding: 5px 10px;
    border-radius: 8px;
    transition: 0.2s;
}

.dropdown a:hover{
    background: var(--rgba-beyaz-10);
}

/* ================== SOSYAL ================== */
.site-header-social{
    display: flex;
    align-items: center;
    gap: 20px;
}

.site-header-social a{
    text-decoration: none;
}

.site-header-social .icon{
    transition: 0.3s;
    fill: var(--renk-beyaz);
}

.site-header-social a:hover .icon{
    transform: scale(1.1);
    fill: var(--renk-cyan-koyu);
}

/* ================== CONTENT ================== */
.content{
    flex: 1;
    padding: 20px;
    padding-bottom: 100px;
    animation: fadeUp 0.5s ease-in-out;
    background: var(--arkaPlan);
}

/* fade animasyonu */
@keyframes fadeUp{
    from{
        transform: translateY(30px);
        opacity: 0;
    }
    to{
        transform: translateY(0);
        opacity: 1;
    }
}

/* HERO */
.hero{
    text-align: center;
    margin-bottom: 70px;
}

.hero h1{
    font-size: 3em;
}

/* ================== CARDS ================== */
.cards{
    display: flex;
    justify-content: center;
    gap: 100px;
    flex-wrap: wrap;
}

.card{
    width: 400px;
    height: 300px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    border-radius: 15px;
    cursor: pointer;
    text-align: center;
    background: var(--card-renk);

    transition: 0.3s;
}
#AnaCard1{
    animation: AnaCard1Anim 0.6s ease;
}
#AnaCard2{
    animation: AnaCard2Anim 0.6s ease;
}
#AnaCard1::before,
#AnaCard2::before{
    content: "";
    position: absolute;
    inset: 0;
    padding: 3px;/*border kalınlığı*/
    border-radius: 12px;

    background: var(--gradient-border-card);
    background-size: 300% 300%;
    animation: borderMove 4s linear infinite;
    /* iç kısmı boşaltmak için */
    -webkit-mask: 
        linear-gradient(#000 0 0) content-box, 
        linear-gradient(#000 0 0);
    mask:
        linear-gradient(#000 0 0) content-box, 
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    -webkit-mask-composite: source-out;
    mask-composite: exclude;

    z-index: -1;

}
@keyframes borderMove{
    0%{
        background-position: 0% 50%;
    }
    100%{
        background-position: 300% 50%;
    }
}
@keyframes AnaCard1Anim{
    0%{
        transform: translateX(-400px);
        opacity: 0;
    }
    50%{
        opacity: 0.5;
    }
    100%{
        transform: translateX(0);
        opacity: 1;
    }
}
@keyframes AnaCard2Anim {
    0%{
        transform: translateX(400px);
        opacity: 0;
    }
    50%{
        opacity: 0.5;
    }
    100%{
        transform: translateX(0);
        opacity: 1;
    }
}
/* card görünüm */
.card.glass{
    filter: drop-shadow(0 0 5px var(--rgba-beyaz-3));
    padding: 20px;
}

.card:hover{
    transform: translateY(-10px);
    box-shadow: 0 15px 30px var(--rgba-siyah-5);
}

.card img{
    width: 100px;
    margin-bottom: 20px;
}
.card button{
    padding: 10px 20px 10px 20px;
    background-color: var(--renk-yesil);
    color: var(--renk-beyaz);
    font-weight: bold;
    border-style: none;
    border-radius: 30px;
}
.card button:hover{
    background-color: var(--renk-yesil-koyu);
}
/*=====================PROFİL============================*/
.profil-information{
    display: flex;
    flex-direction: column;
}
.profil{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    gap: 30px;
    background: var(--gradient-profil-radial);
    padding: 30px 0 30px 0;
}
.information-image{
    width: 150px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 50%;
    border: 4px solid var(--renk-gri);
    transition: border-color 0.3s ease-in-out, fiter 0.4s ease-in-out;
}
.information-image:hover{
    border-color: var(--renk-mavi-hex4);
    filter: drop-shadow(0 0 5px var(--rgba-beyaz-5));
}
.information-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.information-name a{
    display: block;
    background-color: var(--rgba-mavi-5);
    border: 1.5px solid var(--renk-mavi-hex5);
    width: 150px;
    height: 50px;
    border-radius: 30px;
    text-align: center;
    line-height: 50px;
}

.likes-comments{
    margin-left: 20px;
    margin-right: 20px;
    margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
}
.likes-comments .likes,
.likes-comments .comments{
    width: 100%;
    max-width: 250px;
    height: 70px;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid var(--renk-siyah);
    background: var(--gradient-likes-comments);
    gap: 30px;
}
.likes-comments .likes{
    color: var(--renk-kirmizi);
}
.likes-comments .likes p{
    font-size: 25px;
    font-weight: bold;
    color: var(--renk-beyaz);
}
.likes-comments .comments{
    color: var(--renk-cyan-koyu);
}
.likes-comments .comments p{
    font-size: 25px;
    font-weight: bold;
    color: var(--renk-beyaz);
}
.likes-comments-information{

    display: flex;
    flex-direction: column;
    padding: 20px;
    background-color: var(--rgba-mavi-5);
    border: 1.7px solid var(--renk-mavi-hex5);
    margin: 10px 30px 0 30px;
    border-radius: 40px;
    overflow-y: auto;
    
}
.likes-comments-information .web-game-button{
    display: flex;
    justify-content: center;
    gap: 30px;
}
.likes-comments-information .web-game-button a{
    display: block;
    background: var(--gradient-button-mavi);
    width: 170px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 10px;
    border: 1.5px solid var(--renk-siyah);
}
.likes-comments-information .comments .comments-information-box{
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}
.likes-comments-information .comments .comments-information{
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 150px;
    gap: 20px;
}
.likes-comments-information .comments .comments-information img{
    width: 150px;
    height: 150px;
}
.likes-comments-information .comments .comments-information strong{
    text-align: center;
    font-size: 25px;

}

.likes-comments-information .likes .comments-information-box{
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}
.likes-comments-information .likes .comments-information{
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 150px;
    gap: 20px;
}
.likes-comments-information .likes .comments-information img{
    width: 150px;
    height: 150px;
}
.likes-comments-information .likes .comments-information strong{
    text-align: center;
    font-size: 25px;

}


.web-game-button-active{
    filter: drop-shadow(0 0 5px var(--renk-mavi-02));
}
/*==================PROFIL DUZENLE========================*/
.profil-update{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    background: var(--gradient-profil-radial);
    
}
.profil-update .update{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap:40px;
}
.profil-update .update button{
    width: 100%;
    max-width: 300px;
    height: 60px;
    border-radius: 20px;
    border-style: none;
    color: var(--renk-beyaz);
    font-size: 20px;
    background: var(--gradient-button-cyan);
    transition: filter 0.5s ease;
}
.profil-update .update button:hover{
    filter: drop-shadow(0 0 5px var(--renk-mavi-02));
}
.profil-update .update .profil-contents{
    display: flex;
    align-items: center;
    gap: 30px;
}
.user-profil{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
}
.user-profil .img{
    width: 200px;
    height: 200px;
    overflow: hidden;
    border-radius: 50%;
    border: 4px solid var(--renk-gri);
    transition: border-color 0.3s ease-in-out, fiter 0.4s ease-in-out;
}
.user-profil .img:hover{
    border-color: var(--renk-mavi-hex4);
    filter: drop-shadow(0 0 5px var(--rgba-beyaz-5));
}
.user-profil img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.user-profil input{
    width: 100%;
    max-width: 200px;
    display: block;
    max-height: 50px;
    height: 100%;
}
.user-profil input::file-selector-button{
    width: 200px;
    height: 50px;
    border-radius: 20px;
    border-style: none;
    background-color: var(--renk-mavi-yolisite);
    transition: background-color 0.4s ease;
    font-weight: bold;
    color: var(--renk-beyaz);
    font-size: 19px;
}
.user-profil input::file-selector-button:hover{
    background-color: var(--renk-mavi-yolisite-acik);;
}

.profil-update .user-name input{
    height: 70px;
    width: 300px;
    font-size: 27px;
    font-weight: bold;
    border-radius: 20px;
    border-style: none;
    background: var(--gradient-button-cyan);
    text-align: center;
}
.profil-update .user-name input:focus{
    outline: none;
    filter: drop-shadow(0 0 5px var(--rgba-mavi-6));
}
/*================== LOGIN&CREATE IKISI BIRLIKTE CALISIR ======================*/
.login{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.login-box{
    display: flex;
    flex-direction: column;
    width: 600px;
    padding: 50px 20px 50px 20px;
    
    justify-content: center;
    align-items: center;
    gap: 15px;

    border-radius: 20px;
    background: var(--rgba-gri);
}

.form-wrapper{
    opacity: 0;
    filter: blur(10px);
    transform: scale(0.95);
    transition: 1s ease;
}
.login-box.show .form-wrapper{
    opacity: 1;
    filter: blur(0);
    transform: scale(1);
}

.login-box img{
    width: 100px;
    height: 100px;

    animation: logoGlow 0.8s ease forwards;
}
@keyframes logoGlow{
    0%{
        transform: rotate(0deg);
        filter: drop-shadow(0 0 0 var(--rgba-cyan-06));
    }

    50%{
        transform: rotate(180deg);
        filter: drop-shadow(0 0 15px var(--rgba-cyan-06));
    }

    100%{
        transform: rotate(360deg);
        filter: drop-shadow(0 0 35px var(--renk-mavi-02));
    }
}

.login-box form{
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.login-box form input,
.login-box form button,
.login-box form .comeback{
    width: 500px;
    height: 60px;
    border-radius: 20px;
    border-style: none;
    font-size: 25px;
}
.login-box form a{
    display: block;
    text-align: center;
}
.login-box form input{padding: 0 0 0 20px;}
.login-box form button{
    background: var(--gradient-button-gri);
    background-size: 200%;
    background-position: left;

    transform: background-posisition 0.5s ease;
    color: var(--renk-beyaz);
}
.login-box form button:hover{
    background-position: right;
}
.login-box form input:focus{
    outline: none;
    border-color: var(--renk-mavi-hex4);
    filter: drop-shadow(0 0 5px var(--rgba-cyan-8));
}
.login-box form p{
    text-align: center;
    color: var(--renk-kirmizi);
}
.login-box form .comeback{
    background-color: var(--renk-kirmizi-acik);
    line-height: 60px;
}



/* ================= Hakkımızda ===================*/
.about-pro{
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.about-pro h2{
    font-size: 2.5em;
    margin-bottom: 10px;
    margin-top: 0;
    padding-top: 0;
}

.about-sub{
    opacity: 0.7;
    margin-bottom: 50px;
}

/* GRID */
.about-grid{
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

/* BOX */
.about-box{
    width: 280px;
    padding: 25px;
    border-radius: 20px;

    transition: 0.3s;
    cursor: pointer;
}

.about-box:hover{
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

.about-box .icon{
    font-size: 40px;
    margin-bottom: 15px;
}

.about-box h3{
    margin-bottom: 10px;
}

.about-box p{
    opacity: 0.8;
    font-size: 14px;
}

/* ALT METİN */
.about-text{
    margin-top: 60px;
    padding: 40px;
    border-radius: 20px;
}

.about-text p{
    line-height: 1.8;
    opacity: 0.85;
    margin-bottom: 20px;
}
.fade-item{
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUpSeq 0.6s ease forwards;
}

/* sırayla gecikme */
.delay-1{ animation-delay: 0.2s; }
.delay-2{ animation-delay: 0.4s; }
.delay-3{ animation-delay: 0.6s; }
.delay-4{ animation-delay: 0.8s; }
.delay-5{ animation-delay: 1s; }

@keyframes fadeUpSeq{
    to{
        opacity: 1;
        transform: translateY(0);
    }
}
/* ================= COME BACK ====================*/
.come-back{
    margin: 50px auto;
    width: fit-content;
}

.come-back a{
    display: inline-block;
    padding: 12px 24px;

    color: #fff;
    text-decoration: none;
    font-weight: 500;

    border-radius: 12px;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);

    border: 1px solid rgba(255,255,255,0.15);
    box-shadow: 0 0 15px rgba(0,0,0,0.3);

    transition: all 0.3s ease;
    margin-bottom: 0;
}

/* hover efekti */
.come-back a:hover{
    background: rgba(255,255,255,0.2);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.4);
}

/* aktif basılma efekti */
.come-back a:active{
    transform: scale(0.96);
}


/*=================== SLIDER BARS ================== */
.page{
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}
.slider{
    width: 100%;
    max-width: 1200px; /* ortada kompakt dursun */
    height: 600px;

    position: relative;
    overflow: hidden;
    border-radius: 20px;
}
.slide{
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.5s ease;
}
.slide img{
    width: 100%;
    height: 100%;
}
.slide.active{
    opacity: 1;
}
.prev, .next{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);

    width: 45px;
    height: 45px;
    border-radius: 50%;

    backdrop-filter: blur(10px);
    background: rgba(255,255,255,0.15);

    color: #fff;
    border: none;
    cursor: pointer;
    z-index: 10;
    font-size: 20px;
}
.prev{left: 15px;}
.next{right: 15px;}
.more{
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);

    padding: 12px 25px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    color: white;
    text-decoration: none;
}
.more:hover{
    background-color: rgb(0, 202, 228);
}

/* ==================    INTRO    =================*/
#intro{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;

    background: var(--renk-siyah); /* sitenin arka plan rengine göre ayarla */

    display: flex;
    justify-content: center;
    align-items: center;

    z-index: 9999;

    animation: introFade 2.5s ease forwards;
}

#intro img{
    width: 200px;
    animation: logoAnim 2s ease forwards;
}

/* ================== GAME DETAIL ================== */
.game-info{
    max-width: 1200px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

/* ÜST */
.top-section{
    display: flex;
    gap: 50px;
    align-items: center;
}

/* SOL */
.left{
    flex: 1;
    text-align: center;
    animation: slideLeft 0.8s ease-in-out;
}

.left img{
    width: 250px;
    border-radius: 20px;
    box-shadow: 0 0 20px var(--rgba-beyaz-2);
}

.left h1{
    margin-top: 20px;
    font-size: 40px;
}
.left button{
    background-color: transparent;
    border-style: none;
}
.is_like{
    color: var(--renk-kirmizi);
}
.is_not_like{
    color: var(--renk-beyaz);
}
/* SAĞ */
.right{
    flex: 2;
    animation: slideRight 0.8s ease-in-out;

    height: 400px;
    border-radius: 20px;
    overflow: hidden;

    display: flex;
    align-items: center;
    justify-content: center;

    box-shadow: 0 0 20px var(--rgba-beyaz-2);

    position: relative;
}

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

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    background: var(--gradient-video-placeholder);
    backdrop-filter: blur(6px);
}

.video-placeholder .icon{
    font-size: 48px;
    margin-bottom: 10px;
    opacity: 0.8;
}

.video-placeholder .text{
    font-size: 16px;
    opacity: 0.7;
}

/* AÇIKLAMA */
.description{
    padding: 30px;
    border-radius: 20px;
    animation: fadeUp 0.8s ease-in-out;
}
/* YORUMLAR */
.comment-boxs{
    max-width: 1200px;
}
.comment-boxs textarea{
    width: 100%;
    max-width: 1200px;
    height: 100px;
    padding: 10px;
    border-radius: 10px;
    border: none;
    margin-bottom: none;
}
.comment-boxs textarea:focus{
    outline: none;
    filter: drop-shadow(0 0 5px var(--rgba-cyan-8));
}
.comment-boxs .comment-submit{
    border-radius: 20px;
    border: none;
    background: var(--gradient-comment-button);
    color: var(--renk-beyaz);
    cursor: pointer;
    margin-top: 10px;
    width: 100%;
    height: 50px;
    font-size: 20px;
    transition: opacity 0.5s ease;
}
.comment-boxs .comment-submit:hover{
    opacity: 0.7;
}
.comment-boxs .comment{
    background: var(--rgba-beyaz-5);
    padding: 15px;
    margin-top: 15px;
    border-radius: 10px;
    margin-bottom: 0;
}
.comment-boxs .comment .comment-name{
    display: flex;
    align-items: center;
    align-items: center;
    gap: 5px;
}
.comment-boxs .comment .comment-name p{
    font-weight: bold;
}
.comment-boxs .comment .comment-img{
    max-width: 50px;
    max-height: 50px;
    border-radius: 50%;
    overflow: hidden;
}
.comment-boxs .comment img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.comment-boxs .comment .comment-delete-button{
    background-color: transparent;
    border: none;
    font-size: 18px;
    padding: 10px 0 0 0;
    transition: color 0.3s ease;
    margin: 0;

}
.comment-boxs .comment .comment-delete-button:hover{
    color: var(--renk-kirmizi);
    filter: drop-shadow(0 0 5px var(--renk-kirmizi));
}
/* ================== ANİMASYON ================== */
@keyframes slideLeft{
    from{
        transform: translateX(-300px) scale(0.9);
        opacity: 0;
    }
    to{
        transform: translateX(0) scale(1);
        opacity: 1;
    }
}

@keyframes slideRight{
    from{
        transform: translateX(300px) scale(0.9);
        opacity: 0;
    }
    to{
        transform: translateX(0) scale(1);
        opacity: 1;
    }
}

/* LOGO ANİMASYON */
@keyframes logoAnimation{
    0% { transform: translateX(50px) rotateZ(360deg); }
    70% { transform: translateX(0) rotateZ(0deg); }
    90% { transform: scale(1.2); }
    100% { transform: scale(1); }
}
/*Intro*/
@keyframes logoAnim{
    0%{
        transform: scale(4);
        opacity: 0;
    }
    50%{
        transform: scale(1.5);
        opacity: 1;
    }
    100%{
        transform: scale(0.3);
        opacity: 0;
    }
}


@keyframes introFade{
    0%{opacity: 1;}
    80%{opacity: 1;}
    100%{
        opacity: 0;
        visibility: hidden;
    }
}

/* ================== FOOTER ================== */
.communacition{
    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 10px 20px;
    width: 100%;
    box-sizing: border-box;

    background-color: var(--renk-siyah);

    position: fixed;
    bottom: 0;
}

.communacition nav{
    display: flex;
    gap: 20px;
}

.communacition a{
    color: var(--renk-beyaz);
    text-decoration: none;
    transition: 0.3s;
}

.communacition a:hover{
    transform: translateY(-5px);
}
/*===========================CONTACT======================*/
/*Kar efekti*/
.contact-snow{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;

    pointer-events: none;
    z-index: 0;
}
.snow{
    position: absolute;
    top: -10px;
    background: var(--renk-beyaz);
    border-radius: 50%;
    opacity: 0.8;

    animation-name: fall;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

@keyframes fall{
    0%{
        transform: translate(0, 0);
    }
    100%{
        transform: translate(var(--drift), 100vh);
    }
}
/*---------*/
.contact{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    background: var(--gradient-contact);
    z-index: 0;
    flex-direction: column;
    z-index: 2;
}
.contact .contact-box{
    background-color: var(--renk-beyaz);
    max-width: 800px;
    width: 100%;
    padding: 30px;
    position: relative;
    z-index: 3;
}
.contact .contact-box form{
    display: flex;
    flex-direction: column;
    padding: 30px;
    gap: 40px;
}
.contact .contact-box .contact-text-gradient{
    background: var(--gradient-contact-text);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-mask-clip: text;
    mask-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    text-align: center;
}
/*input animasyonu*/
.contact .contact-input{
    position: relative;
    width: 100%;
    max-width: 400px;
}
.contact .contact-input input,
.contact .contact-input textarea{
    width: 100%;
    padding: 10px 0;
    border: none;
    border-bottom: 2px solid #aaa;
    background-color: transparent;
    font-size: 16px;
    outline: none;
    color: var(--renk-siyah);
    resize: none;
}

.contact .contact-input label{
    position: absolute;
    left: 0;
    top: 10px;
    color: #aaa;
    pointer-events: none;
    transition: 0.3s;
}
.contact .contact-input .line{
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0%;
    height: 2px;
    background: var(--gradient-contact-text);    
    transition: 0.4s;
}
.contact .contact-input input:focus ~ label,
.contact .contact-input input:valid ~ label,
.contact .contact-input textarea:focus ~ label,
.contact .contact-input textarea:valid ~ label{
    top: -12;
    font-size: 12px;
    color: var(--renk-mavi-02); 
}
.contact .contact-input input:focus ~ .line,
.contact .contact-input textarea:focus ~ .line{
    width: 100%;
}
/*select tasarımı*/
.contact .contact-box select{
    width:  100%;
    max-width: 400px;
    border: none;
    border-bottom: 2px solid #aaa;
    padding: 10px 0;
    background-color: transparent;
    font-size: 16px;
    outline: none;
}
/*Buton*/
.contact .contact-box button{
    position: absolute;
    right: 10px;
    bottom: 10px;
    max-width: 200px;
    width: 100%;
    max-height: 40px;
    height: 100%;
    border: none;
    background: var(--gradient-contact);
    font-size: 20px;
    color: var(--renk-beyaz);
    transition: filter 0.5s ease,opacity 0.5s ease;
}
.contact .contact-box button:hover{
    filter: drop-shadow(0 0 5px var(--renk-mavi-132));
    opacity: 0.9;
}

/*================== MOBIL =========================*/

@media (max-width: 768px){

    /* GENEL */
    body{
        height: auto;
    }

    /* HEADER */
    .header{
        padding: 15px;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
        position: relative;
    }

    .site-header-icon img{
        width: 40px;
        height: 40px;
    }

    /* 🔥 HEADER CENTER FIX */
    .site-header-info{
        position: static !important;
        transform: none !important;
        left: auto !important;

        width: 100%;
        display: flex;
        justify-content: center;
    }

    .site-header-social{
        width: 100%;
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 15px;
    }

    /* CONTENT */
    .content{
        padding: 15px;
        padding-bottom: 120px;
    }

    /* HERO */
    .hero h1{
        font-size: 2em;
    }

    /* CARDS */
    .cards{
        gap: 30px;
    }

    .card{
        width: 100%;
        max-width: 350px;
        height: auto;
        padding: 20px;
    }

    .card img{
        width: 80px;
    }

    /* SLIDER */
    .slider{
        height: 300px;
    }
    .slide img{
        width: 100%;
        height: 100%;
    }
    /* GAME DETAIL */
    .top-section{
        flex-direction: column;
        gap: 30px;
    }

    .left img{
        width: 180px;
    }

    .left h1{
        font-size: 28px;
    }

    .right{
        width: 100%;
        height: 250px;
    }

    /* FOOTER */
    .communacition{
        flex-direction: column;
        gap: 10px;
        text-align: center;
        position: static;
    }

    /* COME BACK */
    .come-back{
        margin: 20px auto;
    }

    .come-back a{
        padding: 10px 18px;
        font-size: 14px;
    }

    /* ABOUT */
    .about-pro{
        padding: 0 15px;
    }

    .about-pro h2{
        font-size: 2em;
    }

    .about-sub{
        font-size: 14px;
        margin-bottom: 30px;
    }

    .about-grid{
        display: flex;
        flex-direction: column;
        align-items: center;
        flex-wrap: nowrap;
        gap: 20px;
    }

    .about-box{
        width: 90%;
        max-width: 350px;
    }

    .about-box .icon{
        font-size: 32px;
    }

    .about-box h3{
        font-size: 18px;
    }

    .about-box p{
        font-size: 13px;
    }

    /* ALT METİN */
    .about-text{
        margin-top: 40px;
        padding: 20px;
    }
    /*LOGİN CREATE*/
    .login{
        display: flex;
        justify-content: center;
        align-items: center;

        min-height: 100vh; /* auto değil */
        padding: 20px 10px;
    }

    .login-box{
        width: 100%;
        max-width: 350px;
        padding: 30px 15px;
        border-radius: 15px;
    }

    .login-box img{
        width: 70px;
        height: 70px;
    }

    .login-box form{
        width: 100%;
        gap: 15px;
    }

    .login-box form input,
    .login-box form button,
    .login-box form .comeback{
        width: 100%;
        height: 50px;
        font-size: 16px;
        border-radius: 12px;
    }

    .login-box form input{
        padding-left: 12px;
        font-size: 14px;
    }

    .login-box form button{
        font-size: 16px;
    }

    .login-box form .comeback{
        line-height: 50px;
    }

    /* PROFİL ANA */
    .profil{
        flex-direction: column;
        text-align: center;
        gap: 20px;
        background: var(--gradient-profil-radial);
    }

    .information-image{
        width: 120px;
        height: 120px;
        border: 4px solid var(--renk-gri);
    }

    .information-image:hover{
        border-color: var(--renk-mavi-hex4);
    }

    .information-name h1{
        font-size: 22px;
    }

    .information-name a{
        width: 140px;
        height: 45px;
        line-height: 45px;
        font-size: 14px;
        margin: 0 auto;
        background-color: var(--rgba-mavi-5);
        border: 1.5px solid var(--renk-mavi-hex5);
    }

    /* LIKE - COMMENT */
    .likes-comments{
        flex-direction: column;
        gap: 20px;
        margin: 20px 10px;
    }

    .likes-comments .likes,
    .likes-comments .comments{
        max-width: 100%;
        height: 60px;
        font-size: 14px;
        background: var(--gradient-likes-comments);
        border: 1px solid var(--renk-siyah);
    }

    /* ================= PROFİL DÜZENLE ================= */

    .profil-update{
       height: 100%;
    }

    .profil-update .update{
        gap: 25px;
        width: 100%;
    }

    .profil-update .update .profil-contents{
        flex-direction: column;
        gap: 25px;
        width: 100%;
    }

    .user-profil .img{
        width: 140px;
        height: 140px;
        border: 4px solid var(--renk-gri);
    }

    .user-profil .img:hover{
        border-color: var(--renk-mavi-hex4);
    }

    .user-profil input{
        max-width: 180px;
    }

    .user-profil input::file-selector-button{
        width: 180px;
        height: 45px;
        background-color: var(--renk-mavi-yolisite);
        color: var(--renk-beyaz);
        font-size: 14px;
    }

    .profil-update .user-name input{
        width: 100%;
        max-width: 280px;
        height: 55px;
        font-size: 18px;
        background: var(--gradient-button-cyan);
    }

    .profil-update .update button{
        max-width: 250px;
        height: 50px;
        font-size: 16px;
        background: var(--gradient-button-cyan);
    }


    /* ❗ ANİMASYONU BOZMA */
    .form-wrapper{
        opacity: 0;
        filter: blur(10px);
        transform: scale(0.95);
        transition: 1s ease;
    }

    .login-box.show .form-wrapper{
        opacity: 1;
        filter: blur(0);
        transform: scale(1);
    }

    /* ANİMASYON */
    .fade-item{
        transform: translateY(20px);
        animation-duration: 0.5s;
    }

    /*Likes Profil içindeki*/
    .likes-comments-information{
        margin: 10px;
        padding: 15px;
        border-radius: 20px;
        background-color: var(--rgba-mavi-5);
        border: 1.7px solid var(--renk-mavi-hex5);
    }

    .likes-comments-information .web-game-button{
        flex-direction: column;
        gap: 10px;
    }

    .likes-comments-information .web-game-button a{
        width: 100%;
        background: var(--gradient-button-mavi);
        border: 1.5px solid var(--renk-siyah);
    }

    /* KARTLAR ALT ALTA */
    .likes-comments-information .comments .comments-information-box,
    .likes-comments-information .likes .comments-information-box{
        justify-content: center;
        gap: 20px;
    }

    .likes-comments-information .comments .comments-information,
    .likes-comments-information .likes .comments-information{
        max-width: 120px;
    }

    .likes-comments-information img{
        width: 120px !important;
        height: 120px !important;
    }

    .likes-comments-information strong{
        font-size: 14px !important;
        color: var(--renk-beyaz);
    }

    /*Yorumlar*/
    .comment-boxs textarea{
        height: 80px;
        font-size: 14px;
    }

    .comment-boxs .comment-submit{
        height: 45px;
        font-size: 16px;
        background: var(--gradient-comment-button);
        border: none;
    }

    .comment-boxs .comment{
        padding: 10px;
        background: var(--rgba-beyaz-5);
    }

    .comment-boxs .comment small{
        font-size: 12px;
    }
    /*Lıke Buton*/
    .left button{
        margin-top: 10px;
        transform: scale(1.3);
    }

    /*CONTACT*/
    /* GENEL */
    .contact{
        padding: 20px 10px;
        min-height: 100vh;  /* 🔥 en kritik */
        height: auto;

        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        background: var(--gradient-contact);
    }

    /* BOX */
    .contact .contact-box{
        max-width: 100%;
        padding: 20px 15px;
        border-radius: 20px;
        background-color: var(--renk-beyaz);
    }

    /* FORM */
    .contact .contact-box form{
        padding: 10px;
        gap: 25px;
    }

    /* INPUT ALANI TAM GENİŞLİK */
    .contact .contact-input{
        max-width: 100%;
    }

    .contact .contact-box select{
        max-width: 100%;
    }

    /* TEXTAREA */
    .contact .contact-input textarea{
        min-height: 100px;
    }

    /* LABEL FIX (sen hata yapmışsın burada) */
    .contact .contact-input input:focus ~ label,
    .contact .contact-input input:valid ~ label,
    .contact .contact-input textarea:focus ~ label,
    .contact .contact-input textarea:valid ~ label{
        top: -14px; /* px eksikti */
        font-size: 11px;
        color: var(--renk-mavi-02);
    }

    /* BUTTON (EN KRİTİK) */
    .contact .contact-box button{
        position: static; /* 🔥 absolute iptal */
        width: 100%;
        max-width: 100%;
        height: 50px;
        margin-top: 10px;
        border-radius: 12px;
        background: var(--gradient-contact);
        color: var(--renk-beyaz);
    }

    /* TEXT */
    .contact .contact-box h1{
        font-size: 22px;
        color: var(--renk-siyah);
    }

    .contact .contact-box .contact-text-gradient{
        background: var(--gradient-contact-text);
        background-clip: text;
        -webkit-background-clip: text;
        -webkit-mask-clip: text;
        mask-clip: text;
        -webkit-text-fill-color: transparent;
    }
}