* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    background-color: #0a0a0c;
    color: #f1f1f1;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
    background-image: radial-gradient(circle at top, #1a1a24, #0c0c0e);
}

.landing-container {
    max-width: 1000px;
    width: 100%;
    text-align: center;
}

.studio-header {
    margin-bottom: 60px;
    animation: fadeInDown 1s ease-out;
}

.studio-logo {
    max-width: 280px;
    display: block;
    margin: 0 auto 25px auto;
    border-radius: 16px;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.5));
}

.studio-header h1 {
    font-size: 2.8rem;
    font-weight: 500;
    letter-spacing: 2px;
    margin-bottom: 10px;
    background: linear-gradient(135deg, #d5a4ff 0%, #9bc5ff 50%, #85e8ff 100%); /* Daha açık ve yumuşak mor-mavi geçişi */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.studio-header p {
    font-size: 1.15rem;
    color: #888;
    font-weight: 300;
}

.games-showcase {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.game-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 20px;
    text-decoration: none;
    color: inherit;
    width: 360px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    animation: fadeInUp 1s ease-out backwards;
}

.game-card:nth-child(1) {
    animation-delay: 0.2s;
}

.game-card:nth-child(2) {
    animation-delay: 0.4s;
}

.game-card:hover {
    transform: translateY(-12px) scale(1.02);
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

.game-image-wrapper {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 20px;
    aspect-ratio: 16/10;
}

.game-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.game-card:hover .game-image-wrapper img {
    transform: scale(1.06);
}

.game-card h2 {
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #fff;
}

.game-card p {
    font-size: 1rem;
    color: #aaa;
    line-height: 1.6;
}

footer {
    color: #444;
    font-size: 0.9rem;
    animation: fadeIn 1s ease-out 1s backwards;
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
