@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Montserrat:wght@300;400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', 'Poppins', sans-serif;
}

:root {
    --primary-color: #4e9eff;
    --accent-color: #ff6b6b;
    --bg-transparent: rgba(0, 0, 0, 0.7);
    --shadow-color: rgba(0, 0, 0, 0.8);
    --text-shadow: rgba(255, 255, 255, 0.5);
    --blue-shadow: rgba(78, 158, 255, 0.8);
    --gradient-bg: linear-gradient(145deg, rgba(78, 158, 255, 0.2), rgba(255, 107, 107, 0.2));
    --glass-effect: rgba(255, 255, 255, 0.05);
}

html {
    font-size: 16px;
}

body {
    overflow: hidden;
    background-color: #000;
    color: #fff;
    height: 100vh;
    width: 100vw;
    -webkit-tap-highlight-color: transparent; /* Mobil cihazlarda tıklama vurgusunu kaldırır */
}

.container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 1rem;
}

.slogan {
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    letter-spacing: 1px;
    background-color: var(--bg-transparent);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid var(--glass-effect);
    max-width: 90%;
    width: 520px;
}

.slogan p {
    margin: 0.6rem 0;
    transition: all 0.4s ease;
    text-shadow: 0 0 10px var(--text-shadow);
    font-weight: 500;
}

.slogan p:hover {
    transform: scale(1.05);
    letter-spacing: 1.2px;
}

.slogan span {
    color: #FFFFFF;
    font-weight: bold;
    text-shadow: 0 0 15px var(--blue-shadow);
    font-size: 1.2em;
}

.content {
    text-align: center;
    margin-top: 2rem;
    background-color: var(--bg-transparent);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid var(--glass-effect);
    max-width: 90%;
    width: 420px;
}

.name {
    font-size: 2.2rem;
    margin-bottom: 1.8rem;
    letter-spacing: 2px;
    color: var(--primary-color);
    transition: all 0.4s ease;
    text-shadow: 0 0 15px rgba(78, 158, 255, 0.7);
    font-weight: 600;
}

.name:hover {
    text-shadow: 0 0 25px rgba(78, 158, 255, 0.9);
    letter-spacing: 3px;
}

.menu {
    list-style-type: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 3rem;
}

.menu li {
    margin: 0.5rem 0;
    position: relative;
}

.menu li a {
    color: #fff;
    font-size: 2rem;
    transition: all 0.4s ease;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: var(--gradient-bg);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3), 
                inset 0 1px 1px rgba(255, 255, 255, 0.1);
    border: 1px solid var(--glass-effect);
    position: relative;
    overflow: hidden;
}

.menu li a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

.menu li a:hover::before {
    left: 100%;
}

.menu li:nth-child(1) a {
    background: linear-gradient(145deg, rgba(78, 158, 255, 0.3), rgba(41, 121, 255, 0.1));
}

.menu li:nth-child(2) a {
    background: linear-gradient(145deg, rgba(255, 107, 107, 0.3), rgba(255, 78, 78, 0.1));
}

.menu li:nth-child(3) a {
    background: linear-gradient(145deg, rgba(193, 53, 132, 0.3), rgba(131, 58, 180, 0.1));
}

.menu li a:hover {
    color: #fff;
    transform: translateY(-5px) scale(1.1);
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.8);
    box-shadow: 0 8px 25px rgba(78, 158, 255, 0.5),
                inset 0 2px 3px rgba(255, 255, 255, 0.2);
}

.menu li:nth-child(1) a:hover {
    box-shadow: 0 8px 25px rgba(78, 158, 255, 0.6);
}

.menu li:nth-child(2) a:hover {
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.6);
}

.menu li:nth-child(3) a:hover {
    box-shadow: 0 8px 25px rgba(193, 53, 132, 0.6);
}

/* Mobil uyumluluk */
@media (max-width: 768px) {
    html {
        font-size: 14px;
    }
    
    .container {
        padding: 0.8rem;
    }
    
    .slogan {
        font-size: 1.2rem;
        padding: 1.5rem;
        width: 100%;
        max-width: 400px;
    }
    
    .name {
        font-size: 1.8rem;
    }
    
    .menu {
        gap: 2rem;
    }
    
    .menu li a {
        font-size: 1.8rem;
        width: 60px;
        height: 60px;
    }
    
    .content {
        padding: 1.5rem;
        width: 100%;
        max-width: 350px;
    }
}

/* Çok küçük ekranlar için ek uyumluluk */
@media (max-width: 380px) {
    html {
        font-size: 12px;
    }
    
    .slogan {
        padding: 1.2rem;
    }
    
    .content {
        padding: 1.2rem;
    }
    
    .menu li a {
        width: 55px;
        height: 55px;
        font-size: 1.6rem;
    }
} 