:root {
    --primary: #4A90E2;    /* Blue from login */
    --secondary: #FF69B4;  /* Pink from login */
    --text: #333333;
    --white: #ffffff;
    --bg-gradient: linear-gradient(135deg, #4A90E2 0%, #FF69B4 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background: var(--bg-gradient);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--white);
    padding: 20px;
}

.container {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 30px;
    padding: 60px 40px;
    width: 100%;
    max-width: 500px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    border: 1px solid rgba(255,255,255,0.3);
}

/* Header & Logo */
.logo-container {
    width: 120px;
    height: 120px;
    background: white;
    border-radius: 30px;
    margin: 0 auto 25px;
    padding: 10px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 20px;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 40px;
    line-height: 1.6;
}

/* Store Buttons */
.store-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 50px;
}

.store-btn {
    background: #000000;
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 12px;
    transition: transform 0.2s, box-shadow 0.2s;
    border: 1px solid rgba(255,255,255,0.2);
}

.store-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    background: #1a1a1a;
}

.store-btn i {
    font-size: 28px;
    margin-right: 12px;
}

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

.store-btn small {
    font-size: 10px;
    text-transform: uppercase;
}

.store-btn span {
    font-size: 16px;
    font-weight: 600;
}

/* Legal Links */
.legal-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 40px;
}

.legal-links a {
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
    opacity: 0.8;
    transition: opacity 0.2s;
}

.legal-links a:hover {
    opacity: 1;
    text-decoration: underline;
}

/* Footer */
.footer {
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 30px;
}

.footer h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 25px;
}

.contact-link {
    color: white;
    text-decoration: none;
    background: rgba(255,255,255,0.2);
    padding: 10px 20px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background 0.2s;
}

.contact-link:hover {
    background: rgba(255,255,255,0.3);
}

.copyright {
    font-size: 0.8rem;
    opacity: 0.6;
    margin: 0;
}

/* Responsive */
@media (min-width: 480px) {
    .store-links {
        flex-direction: row;
        justify-content: center;
    }
}
