:root {
    --bg-color: #05070a;
    --text-primary: #ffffff;
    --text-secondary: #a0a0a8;
    --accent-pink: #ff2d95;
    --accent-cyan: #00f2ff;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: 'Outfit', sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    position: relative;
}

/* Luxury Background Glow */
.background-glow {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
}

.background-glow::before,
.background-glow::after {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.15;
    animation: drift 20s infinite alternate ease-in-out;
}

.background-glow::before {
    background: var(--accent-pink);
    top: -200px;
    right: -100px;
}

.background-glow::after {
    background: var(--accent-cyan);
    bottom: -200px;
    left: -100px;
    animation-delay: -10s;
}

@keyframes drift {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(100px, 100px) scale(1.2); }
}

main {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.hero {
    text-align: center;
    max-width: 600px;
    animation: fadeIn 1s ease-out;
}

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

.logo-container {
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
}

.logo {
    width: 160px;
    height: auto;
    filter: drop-shadow(0 0 20px rgba(0, 242, 255, 0.3));
    animation: float 6s infinite ease-in-out;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.title {
    font-size: 4.5rem;
    font-weight: 800;
    letter-spacing: -2px;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, var(--accent-pink), var(--accent-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.claim {
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 3rem;
    font-weight: 300;
}

/* Play Store Button */
.actions {
    display: flex;
    justify-content: center;
}

.play-store-btn {
    display: flex;
    align-items: center;
    background: #000;
    color: white;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 12px;
    border: 1px solid var(--glass-border);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    gap: 12px;
}

.play-store-btn:hover {
    transform: scale(1.05);
    border-color: var(--accent-cyan);
    box-shadow: 0 0 25px rgba(0, 242, 255, 0.2);
}

.btn-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.btn-text .small {
    font-size: 0.7rem;
    font-weight: 400;
}

.btn-text .big {
    font-size: 1.2rem;
    font-weight: 600;
}

/* Footer Styling */
footer {
    padding: 3rem 2rem;
    text-align: center;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
}

footer nav {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

footer nav a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

footer nav a:hover {
    color: var(--accent-cyan);
}

.copyright {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.8rem;
}

/* Policy Pages Layout */
.policy-container {
    max-width: 800px;
    margin: 4rem auto;
    padding: 3rem;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
}

.policy-container h1 {
    margin-bottom: 2rem;
    color: var(--accent-cyan);
}

.policy-container h2 {
    margin: 2rem 0 1rem;
    font-size: 1.4rem;
}

.policy-container p, .policy-container ul {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.back-link {
    display: inline-block;
    margin-bottom: 2rem;
    color: var(--accent-pink);
    text-decoration: none;
    font-weight: 600;
}

.back-link:hover {
    text-decoration: underline;
}

@media (max-width: 600px) {
    .title { font-size: 3rem; }
    .claim { font-size: 1.1rem; }
    .policy-container { margin: 1rem; padding: 1.5rem; }
}
