/* Modern Landing Page Styles */

/* Hero Section Override */
.hero-section {
    padding: 160px 0 100px 0;
    /* Canlı ve Derin Gradient */
    background: 
        radial-gradient(circle at 10% 20%, rgba(56, 189, 248, 0.15) 0%, transparent 40%), /* Sky Blue */
        radial-gradient(circle at 90% 50%, rgba(139, 92, 246, 0.15) 0%, transparent 40%), /* Violet */
        radial-gradient(circle at 50% 80%, rgba(16, 185, 129, 0.1) 0%, transparent 40%),  /* Emerald */
        #020617; /* Base Dark */
    position: relative;
    overflow: hidden;
}

/* Grid Background Effect */
.hero-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    mask-image: radial-gradient(circle at center, black 40%, transparent 80%);
    pointer-events: none;
}

/* Text Colors - High Contrast */
.text-landing-main { color: #f8fafc; } /* Slate 50 */
.text-landing-muted { color: #cbd5e1; } /* Slate 300 - Daha parlak gri */

/* Modern Glass Card */
.landing-card {
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s, box-shadow 0.3s;
}

.landing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.6);
    border-color: rgba(14, 165, 233, 0.3);
}

/* Feature Icon Box */
.feature-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.1), rgba(14, 165, 233, 0.05));
    border: 1px solid rgba(14, 165, 233, 0.2);
    color: #38bdf8;
}

/* Auth Card Specific */
.auth-card {
    background: #0f172a; /* Solid dark blue/slate */
    border: 1px solid #334155;
}

/* Landing Inputs */
.landing-input {
    background-color: #1e293b !important;
    border-color: #334155 !important;
    color: #fff !important;
}
.landing-input:focus {
    border-color: #38bdf8 !important;
    box-shadow: 0 0 0 3px rgba(56, 189, 248, 0.2) !important;
}

/* Gradient Text */
.gradient-text {
    background: linear-gradient(to right, #38bdf8, #818cf8, #c084fc);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 800;
}

/* Footer */
.landing-footer {
    background: #020617;
    border-top: 1px solid #1e293b;
    padding-top: 4rem;
    padding-bottom: 2rem;
}

