/* Layout */
.app {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    /* 🔥 ƏN VACİB */
    align-items: center;
    justify-content: center;
    text-align: center;
    font-family: Arial, sans-serif;
    color: var(--text);

    /* gradient */
    background: radial-gradient(circle at 30% 30%, #1e293b, #020617);
}

/* spacing */
.hero {
    margin-bottom: 80px;
}

/* container */
.container {
    max-width: 700px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* ABOUT */
.about {
    width: 100%;
    padding: 60px 20px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    background: rgba(2, 6, 23, 0.7);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.about h2 {
    margin-bottom: 15px;
    font-size: 28px;
}

.about p {
    opacity: 0.7;
    line-height: 1.6;
}

/* HERO */
.hero__title {
    font-size: 48px;
    margin-bottom: 10px;
    transition: 0.3s;
    text-shadow: 0 0 20px rgba(56, 189, 248, 0.3);
}

.hero__subtitle {
    opacity: 0.7;
    margin-bottom: 5px;
}

.hero__status {
    opacity: 0.7;
    transition: 0.3s;
}

/* SOCIAL */
.social {
    margin-top: 25px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social__link {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;

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

    transition: 0.3s;
}

.social__link svg {
    width: 24px;
    height: 24px;
    fill: white;
}

.social__link:hover {
    transform: translateY(-5px) scale(1.1);
    background: var(--accent);
    box-shadow:
        0 0 20px rgba(56, 189, 248, 0.6),
        0 0 40px rgba(56, 189, 248, 0.3);
}

.footer {
    width: 100%;
    padding: 20px 0;
    text-align: center;
    font-size: 14px;
    opacity: 0.6;

    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: 40px;
}

.footer p {
    margin: 0;
}

/* Animations */
.hero {
    animation: fadeIn 1.5s ease-in-out, float 4s ease-in-out infinite;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-8px);
    }

    100% {
        transform: translateY(0px);
    }
}