:root {
    --primary: #9d0a2d;
    --primary-light: #c7123d;
    --secondary: #42091b;
    --accent: #ff0044;
    --bg-dark: #0a0005;
    --bg-card: #1a0208;
    --text-white: #ffffff;
    --text-gray: #a0a0a0;
    --glass: rgba(66, 9, 27, 0.4);
    --glass-border: rgba(255, 255, 255, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    height: 100%;
    width: 100%;
    overflow: hidden;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-white);
    font-family: 'Tajawal', 'Outfit', sans-serif;
    line-height: 1.6;
    display: flex;
    flex-direction: column;
}

[lang="en"] {
    font-family: 'Outfit', sans-serif;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
}

/* Header & Nav */
header {
    padding: 1.5rem 0;
    flex-shrink: 0;
    background: rgba(10, 0, 5, 0.8);
    backdrop-filter: blur(10px);
    z-index: 100;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.logo-img {
    height: 40px;
    width: auto;
    border-radius: 8px;
}

.logo span {
    color: var(--text-white);
    margin-inline-start: 0.5rem;
}

/* Main Section */
main {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at 50% -20%, #42091b 0%, var(--bg-dark) 60%);
    overflow: hidden;
    padding: 2rem 0;
}

.hero-container {
    display: flex;
    align-items: center;
    gap: 4rem;
    height: 100%;
}

.hero-content {
    flex: 1.2;
}

.hero-content h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, #ffffff, #ff0044);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content p {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--text-gray);
    margin-bottom: 2.5rem;
}

.hero-visual {
    flex: 0.8;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.glass-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(20px);
    border-radius: 2rem;
    padding: 1.5rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    max-height: 80%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.glass-card:hover {
    transform: scale(1.02);
}

.glass-card img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 1rem;
}

/* Buttons */
.btn-primary {
    display: inline-block;
    padding: 0.8rem 2.5rem;
    background: var(--primary);
    color: white;
    text-decoration: none;
    border-radius: 100px;
    font-weight: 700;
    transition: 0.3s;
}

.btn-primary:hover {
    background: var(--primary-light);
    box-shadow: 0 0 20px rgba(157, 10, 45, 0.4);
}

.btn-outline {
    display: inline-block;
    padding: 0.8rem 2.5rem;
    border: 1px solid var(--primary);
    color: var(--text-white);
    text-decoration: none;
    border-radius: 100px;
    font-weight: 700;
    margin-inline-start: 1rem;
    transition: 0.3s;
}

.btn-outline:hover {
    background: rgba(157, 10, 45, 0.1);
}

.btn-secondary {
    background: transparent;
    border: 1px solid #ffffff33;
    color: white;
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    cursor: pointer;
    font-family: inherit;
    transition: 0.3s;
}

.btn-secondary:hover {
    background: #ffffff11;
}

/* Google Play Store Badge */
.play-store-btn {
    display: inline-block;
    transition: transform 0.3s ease;
}

.play-store-btn:hover {
    transform: scale(1.05);
}

.play-store-badge {
    height: 80px;
    width: auto;
    display: block;
}

/* Footer */
footer {
    padding: 1.5rem 0;
    border-top: 1px solid #ffffff11;
    text-align: center;
    flex-shrink: 0;
}

.footer-content p {
    color: var(--text-gray);
    font-size: 0.9rem;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {

    html,
    body {
        overflow-y: auto;
    }

    main {
        padding: 4rem 0;
        height: auto;
        min-height: 100vh;
    }

    .hero-container {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
        height: auto;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .btn-outline {
        margin: 1rem 0 0 0;
        display: block;
    }

    .btn-primary {
        display: block;
    }

    .hero-visual {
        width: 100%;
        height: auto;
    }

    .glass-card {
        max-height: none;
        width: 100%;
    }
}