:root {
    --primary-color: #EA244F;
    --primary-light: #ff4d72;
    --text-main: #2d3436;
    --text-muted: #636e72;
    --bg-color: #ffffff;
    --bg-gradient: linear-gradient(135deg, #fdfbfb 0%, #ebedee 100%);
}

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

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg-gradient);
    color: var(--text-main);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    width: 90%;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    align-items: center;
    gap: 0 50px;
    padding: 40px 0;
}

/* Left Content */
.content-header {
    grid-column: 1;
    grid-row: 1;
}

.content-body {
    grid-column: 1;
    grid-row: 2;
}

.content {
    max-width: 550px;
    animation: fadeUp 1s ease-out;
}

.logo {
    max-width: 150px;
    margin-bottom: 20px;
}

#brand-text {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--text-main);
}

.title span {
    color: var(--primary-color);
}

.description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.features {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 35px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
    font-size: 1.05rem;
}

.feature-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.redirect-msg {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 15px;
    display: none;
    animation: pulse 1.5s infinite;
}

/* Buttons */
.buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.store-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #000;
    color: #fff;
    padding: 12px 24px;
    border-radius: 12px;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.store-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.store-btn.google {
    background: #fff;
    color: #000;
    border: 2px solid #000;
}

.store-btn.google:hover {
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
}

.store-btn i {
    font-size: 2rem;
}

.store-btn.google i {
    color: #34A853; /* Google Play Icon color approximation */
}

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

.btn-text .small {
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 0.5px;
}

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

/* Right Content: Mockup */
.mockup-container {
    display: flex;
    justify-content: center;
    position: relative;
    animation: float 6s ease-in-out infinite;
    grid-column: 2;
    grid-row: 1 / 3;
}

.phone-mockup {
    width: 300px;
    height: 620px;
    background: #000;
    border-radius: 40px;
    border: 12px solid #000;
    box-shadow: 0 25px 50px rgba(0,0,0,0.2);
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 25px;
    background: #000;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    z-index: 3;
}

.screenshot {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 30px;
}


/* Footer Styles */
.footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 20px 0;
    width: 100%;
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
    margin-top: 20px;
}

.footer-logo {
    height: 20px;
    width: auto;
    object-fit: contain;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.footer-logo:hover {
    opacity: 1;
}

/* Background Circles */
.circle-decoration {
    position: absolute;
    border-radius: 50%;
    z-index: 1;
}

.circle-1 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    top: -50px;
    right: -50px;
    opacity: 0.15;
    filter: blur(40px);
}

.circle-2 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 100%);
    bottom: -50px;
    left: 0px;
    opacity: 0.3;
    filter: blur(40px);
}

/* Animations */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

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

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}

/* Responsive */
@media (max-width: 992px) {
    .container {
        display: flex;
        flex-direction: column;
        text-align: center;
        padding: 60px 20px;
        gap: 0;
    }

    .content {
        align-items: center;
        display: flex;
        flex-direction: column;
    }

    .content-header {
        order: 1;
    }

    .mockup-container {
        order: 2;
        margin: 30px 0;
        flex: none;
    }

    .content-body {
        order: 3;
    }

    .features {
        align-items: center;
    }

    .buttons {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .title {
        font-size: 2.5rem;
    }
    
    .phone-mockup {
        width: 260px;
        height: 540px;
    }
}
