﻿/*
TASARIM : DoLmA

TARİH : 24.08.2020
*/
@charset "utf-8";
@import url(https://fonts.googleapis.com/css?family=Khand:400,500,600,700,300&subset=latin,latin-ext);



/* GENEL AYALAR */
html {width:1024px; height:768px; overflow: hidden;}
body {
	min-width:1024px;
	height:768px;
	overflow:hidden;
	font-family:"Khand", Arial, Helvetica, sans-serif;
    background: linear-gradient(135deg, #232526, #414345); /* Koyu Gri - Antrasit Geçişi */
	font-weight:100;
}
.Temizle {clear:both;}
.Kapsayici {width:1024px; position:relative; margin:auto;}





/* ICON MENÜ */
.icon_menu {
    position: absolute;
    margin: -121px 0 0 238px;
    display: flex;
    gap: 20px; /* İkonlar arası boşluk */
    background: rgba(255, 255, 255, 0.05);
    padding: 12px 20px;
    border-radius: 15px; /* Arka planı hafif yuvarlak yapmak için */
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    transition: margin-top 0.3s ease;
}

/* Kare Butonlar */
.icon_menu a {
    width: 80px;
    height: 90px; /* Yükseklik artırıldı */
    background: linear-gradient(135deg, #232526, #414345);
    border-radius: 10px; /* Eğer tamamen kare istiyorsan: 0px yapabilirsin */
    display: flex;
    flex-direction: column; /* İçeriği dikey hizala */
    align-items: center;
    justify-content: center;
    text-decoration: none;
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
    font-size: 0.8em;
    text-align: center;
    font-weight: bold;
    color: #ffffff;
    transition: all 0.3s ease;
    padding-top: 10px; /* İkonların üste oturmasını sağla */
}

/* Hover Efekti */
.icon_menu a:hover {
    transform: translateY(-5px) scale(1.1);
    background: linear-gradient(135deg, #ffbf00, #ff8000);
}

/* İkonları üstte tut */
.icon {
    width: 40px;
    height: 40px;
    background-size: contain;
    background-repeat: no-repeat;
    display: block;
    margin-bottom: 5px; /* İkon ve yazı arasına boşluk bırak */
}

/* Yazıları Buton İçinde Konumlandır */
.text {
    display: block;
    font-size: 0.75em;
    margin-top: 5px; /* Yazıyı aşağıya çek */
}

/* Her buton için özel ikonlar */
.icon_menu_01 .icon {
    background-image: url('https://cdn-icons-png.flaticon.com/512/2995/2995487.png'); /* Online Destek */
}

.icon_menu_02 .icon {
    background-image: url('https://cdn-icons-png.flaticon.com/512/2111/2111685.png'); /* Skype */
}

.icon_menu_03 .icon {
    background-image: url('https://cdn-icons-png.flaticon.com/512/711/711245.png'); /* Video Destek */
}

.icon_menu_04 .icon {
    background-image: url('https://cdn-icons-png.flaticon.com/512/1256/1256650.png'); /* Download */
}



/* ÜYE RESİMLERİ - DAİRE DİZİLİMİ */
.uye_resimleri {
    width: 400px;
    height: 400px;
    position: relative;
    top: -131px;
    left: 77%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Ortadaki Başlık */
.uye_baslik {
    position: absolute;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #ffcc00, #ff6600);
    border-radius: 50%;
    display: flex;
	    top: 180px;
    left: 44%;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 1.2em;
    font-weight: bold;
    text-align: center;
    box-shadow: 0 5px 15px rgba(255, 165, 0, 0.6);
    transition: all 0.4s ease-in-out;
    animation: glow 3s infinite alternate;
}

/* Başlık Hover Efekti */
.uye_baslik:hover {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, #ff6600, #ffcc00);
    box-shadow: 0 10px 30px rgba(255, 165, 0, 1);
}

/* Üye Resimleri */
.uye_resimleri ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.uye_resimleri li {
    position: absolute;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.4s ease-in-out;
}

/* Resimler */
.uye_resimleri li img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    transition: all 0.3s ease-in-out;
}

/* Kullanıcı Adı Hover'da Gözükecek */
.uye_ad {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    font-size: 0.8em;
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    opacity: 0;
    transition: all 0.3s ease-in-out;
}

/* Bayanlar pembe, erkekler mavi olacak */
.baslikPembe { background: rgba(255, 64, 129, 0.7); }
.baslikMavi { background: rgba(63, 81, 181, 0.7); }

/* Hover Efekti */
.uye_resimleri li:hover .uye_ad {
    opacity: 1;
}

/* Resim Hover'da Küçülsün, Kullanıcı Adı Gelsin */
.uye_resimleri li:hover img {
    transform: scale(0.9);
}

/* Parlaklık Efekti */
@keyframes glow {
    0% { box-shadow: 0 5px 15px rgba(255, 165, 0, 0.6); }
    100% { box-shadow: 0 10px 30px rgba(255, 165, 0, 1); }
}







/* 🚀 SOHBET LOGIN PANELİ */
.sohbet_login {
    width: 400px;
    padding: 20px;
    position: absolute;
    top: 37%;
    left: 1%;
    transform: translate(-50%, -50%);
    background: linear-gradient(210deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.1));
    border-radius: 20px;
    box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.3);
    z-index: 2;
    text-align: center;
}

/* 🔥 EN ÜSTE BÜYÜK GİRİŞ İKONU */
.login_icon {
    font-size: 3em;
    color: #fff;
    margin-bottom: 10px;
    display: block;
}
.login_icon::before {
    content: "🚀"; /* Özel giriş simgesi */
}

/* 🏆 KÜÇÜK VE ŞIK LOGIN SEÇENEKLERİ */
.login_buttons {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

.login_buttons a {
    color: #fff;
    font-size: 1em;
    font-weight: 600;
    display: inline-block;
    padding: 12px 25px;
    border-radius: 25px;
    transition: all 0.3s ease-in-out;
    text-decoration: none;
    text-align: center;
    flex: 1;
    margin: 0 5px;
}

/* 🔵 MİSAFİR */
.login_buttons a:first-child {
    background: #ff3f34;
}
.login_buttons a:first-child::before {
    content: "👤 ";
}
.login_buttons a:first-child:hover {
    background: #d63031;
    transform: scale(1.05);
}

/* 🟢 ÜYE ("🆕" yerine "📌" kullanıldı) */
.login_buttons a:nth-child(2) {
    background: #1abc9c;
}
.login_buttons a:nth-child(2)::before {
    content: "📌 ";
}
.login_buttons a:nth-child(2):hover {
    background: #16a085;
    transform: rotate(5deg);
}

/* 🔑 YETKİLİ */
.login_buttons a:nth-child(3) {
    background: #8e44ad;
}
.login_buttons a:nth-child(3)::before {
    content: "🔑 ";
}
.login_buttons a:nth-child(3):hover {
    background: #732d91;
    transform: scale(1.05) rotate(-3deg);
}

/* 📝 BAŞLIK VE AÇIKLAMA */
.login_title {
    font-size: 1.6em;
    font-weight: bold;
    color: #fff;
    margin-bottom: 10px;
}

.login_desc {
    font-size: 0.9em;
    color: #fff;
    margin-bottom: 15px;
}

/* 📝 KÜÇÜK VE MODERN GİRİŞ FORMU */
.login_form {
    margin-top: 10px;
}

.login_form input {
    width: 90%;
    height: 40px;
    padding: 10px 15px 10px 40px;
    border: none;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    font-size: 1em;
    border-radius: 20px;
    margin-bottom: 10px;
    outline: none;
    transition: all 0.3s ease-in-out;
    position: relative;
}

/* 🖍️ INPUTLARA ÖZEL İKONLAR */
.login_form input[type="text"] {
    background-image: url('👤'); /* Kullanıcı ikonu */
    background-position: 10px center;
    background-repeat: no-repeat;
}

.login_form input[type="password"] {
    background-image: url('🔒'); /* Kilit ikonu */
    background-position: 10px center;
    background-repeat: no-repeat;
}

.login_form input:focus {
    background: rgba(255, 255, 255, 0.3);
    box-shadow: 0px 4px 10px rgba(255, 255, 255, 0.3);
}

/* 🚀 GİRİŞ BUTONU */
.Giris_Btn {
    width: 100%;
    height: 45px;
    background: linear-gradient(135deg, #ff6b6b, #ff4757);
    border: none;
    color: #fff;
    font-size: 1.1em;
    font-weight: bold;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0px 4px 8px rgba(255, 0, 0, 0.3);
}

.Giris_Btn::before {
    content: "🚀 ";
}

.Giris_Btn:hover {
    background: linear-gradient(135deg, #ff4757, #ff6b6b);
    transform: translateY(-2px);
    box-shadow: 0px 6px 12px rgba(255, 0, 0, 0.5);
}

/* 🏆 CİNSİYET SEÇİMİ VE AVATAR */
.yan_butonlar {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
}

.Bay, .Bayan, .Avatar {
    width: 80px;
    height: 45px;
    display: inline-block;
    border-radius: 20px;
    transition: all 0.3s ease-in-out;
    text-align: center;
    line-height: 45px;
    font-size: 1em;
    font-weight: bold;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}

/* 👨‍🦰 Erkek Butonu */
.Bay {
    background: linear-gradient(135deg, #ffb142, #ff9f1a);
    color: #000;
}
.Bay::before {
    content: "👨‍🦰 ";
}
.Bay:hover {
    background: linear-gradient(135deg, #ff9f1a, #ff851b);
    transform: scale(1.1);
}

/* 👩‍🦰 Kadın Butonu */
.Bayan {
    background: linear-gradient(135deg, #e84393, #ff7675);
    color: #fff;
}
.Bayan::before {
    content: "👩‍🦰 ";
}
.Bayan:hover {
    background: linear-gradient(135deg, #ff7675, #e84393);
    transform: scale(1.1);
}

/* 🎭 Avatar Seçimi */
.Avatar {
    width: 120px;
    background: linear-gradient(135deg, #10ac84, #1dd1a1);
    color: #fff;
}
.Avatar::before {
    content: "🎭 ";
}
.Avatar:hover {
    background: linear-gradient(135deg, #1dd1a1, #2ecc71);
    transform: scale(1.1);
}

/* 🌟 PLACEHOLDER RENKLERİ */
::placeholder {
    color: rgba(255, 255, 255, 0.8);
}

/* ❌ PASİF FORM */
.pasif_form {
    cursor: not-allowed !important;
    background: #6c757d !important;
    color: #fff !important;
}
