:root {
    --bg-dark: #0a0a0a;
    --card-dark: #141414;
    --primary-red: #ff4d5a; /* Your Logo's Snapdragon Color */
    --text-main: #ffffff;
    --text-dim: #a0a0a0;
}

* { box-sizing: border-box; }

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: 'Inter', sans-serif;
    margin: 0;
    overflow-x: hidden;
}

nav {
    padding: 30px 5%;
    display: flex;
    justify-content: center;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.nav-logo { height: 60px; filter: drop-shadow(0 0 10px rgba(255, 77, 90, 0.3)); }

.brand-name {
    font-size: 1.8rem;
    font-weight: 900;
    letter-spacing: -1px;
    background: linear-gradient(to right, #fff, var(--primary-red));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero {
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: radial-gradient(circle at center, #251214 0%, var(--bg-dark) 70%);
}

.hero h1 { font-size: 4rem; margin: 0; letter-spacing: -2px; }
.hero p { color: var(--text-dim); font-size: 1.2rem; max-width: 600px; margin: 20px auto; }

.section-title { text-align: center; font-size: 2.5rem; margin-bottom: 50px; }

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    padding: 0 10% 100px 10%;
    max-width: 1300px;
    margin: 0 auto;
}

.app-card {
    background: var(--card-dark);
    padding: 50px 30px;
    border-radius: 30px;
    border: 1px solid #222;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-align: center;
}

.app-image {
    width: 100%;       /* Kartın genişliğine uyum sağlar */
    max-width: 180px;  /* Görselin çok devasa olmasını engeller */
    height: auto;      /* Oranları korur */
    margin-bottom: 20px;
    filter: drop-shadow(0 10px 15px rgba(0,0,0,0.3)); /* Görsele derinlik katar */
}

.app-card:hover {
    transform: translateY(-15px);
    border-color: var(--primary-red);
    box-shadow: 0 20px 40px rgba(255, 77, 90, 0.1);
}

.app-visual { font-size: 5rem; margin-bottom: 30px; }

.app-card h3 { font-size: 2rem; margin: 10px 0; }
.app-card p { color: var(--text-dim); font-size: 1rem; margin-bottom: 30px; min-height: 60px; }

.btn {
    display: inline-block;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: transform 0.2s;
}

.play-store { background-color: var(--primary-red); color: white; }
.btn:hover { transform: scale(1.05); }

footer {
    padding: 60px 20px;
    border-top: 1px solid #1a1a1a;
    text-align: center;
}

.legal-links { margin-top: 20px; }
.legal-links a { color: var(--text-dim); text-decoration: none; margin: 0 15px; font-size: 0.85rem; }
.legal-links a:hover { color: var(--primary-red); }