/* Genel Ayarlar */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #000;
    color: #fff;
    overflow: hidden;
}

/* Ana Konteyner */
.main-container {
    display: flex;
    height: 100vh;
    position: relative;
}

/* Dinamik Arka Plan */
.background-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #141e30, #243b55);
    animation: gradient 8s infinite;
    z-index: -1;
}

/* Gradient Animasyonu */
@keyframes gradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* İçerik */
.content {
    display: flex;
    flex: 1;
    align-items: center;
    justify-content: center;
    padding: 0 5%;
}

/* Telefon Alanı */
.phone-section {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mockup-placeholder {
    width: 300px;
    height: 600px;

    border-radius: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 1.2rem;
    text-align: center;
}

/* Bilgi Alanı */
.info-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
}

.logo {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

p {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 30px;
}

/* Buton */
.download-btn {
    padding: 15px 40px;
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(45deg, #00c6ff, #0072ff);
    border: none;
    border-radius: 30px;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.download-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 20px rgba(0, 114, 255, 0.5);
}
