body {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #f06, #4a90e2, #9b59b6);
    background-size: 400% 400%;
    animation: gradientBG 15s ease infinite;
    color: white;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

@keyframes gradientBG {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

header {
    text-align: center;
    padding: 50px 20px;
}

h1 {
    font-size: 4rem;
    text-shadow: 3px 3px 10px rgba(0,0,0,0.3);
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.studio-tagline {
    font-size: 1.5rem;
    opacity: 0.9;
}

.apps-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    padding: 40px;
    max-width: 1000px;
}

.app-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 30px;
    width: 200px;
    text-align: center;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s;
    cursor: pointer;
    text-decoration: none;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.app-card:hover {
    transform: scale(1.1) rotate(3deg);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    background: rgba(255, 255, 255, 0.25);
}

.app-icon {
    width: 100px;
    height: 100px;
    background: white;
    border-radius: 22%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.app-name {
    font-size: 1.8rem;
    font-weight: bold;
}

footer {
    margin-top: auto;
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.footer-links {
    display: flex;
    gap: 30px;
}

footer a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    opacity: 0.8;
    transition: opacity 0.2s;
}

footer a:hover {
    opacity: 1;
    text-decoration: underline;
}

/* Detail Pages */
.container {
    max-width: 800px;
    background: rgba(0, 0, 0, 0.3);
    margin: 40px;
    padding: 40px;
    border-radius: 30px;
    line-height: 1.6;
}

.back-btn {
    display: inline-block;
    margin-bottom: 20px;
    color: #fff;
    text-decoration: none;
    background: rgba(255,255,255,0.2);
    padding: 10px 20px;
    border-radius: 50px;
}

.back-btn:hover {
    background: rgba(255,255,255,0.3);
}

.play-store-btn {
    display: block;
    width: 200px;
    margin: 40px auto 0;
    transition: transform 0.2s;
}

.play-store-btn:hover {
    transform: scale(1.05);
}

h2 {
    font-size: 2.5rem;
    margin-top: 0;
}
