/* Base styles */
:root {
    --primary-color: #2563eb;
    --primary-dark: #1d4ed8;
    --bg-light: #f8fafc;
    --text-main: #334155;
    --card-bg: #ffffff;
    --accent-light: #dbeafe;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.12);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--text-main);
    background-color: var(--bg-light);
    min-height: 100vh;
    padding: 1.5rem 0;
}

.container {
    width: 92%;
    max-width: 1100px;
    margin: 0 auto;
}

/* Header */
.floating-header {
    background: var(--primary-color);
    color: white;
    box-shadow: var(--shadow-md);
    border-radius: var(--radius-lg);
    margin-bottom: 2rem;
    padding: 1.5rem 2rem;
    position: relative;
    overflow: hidden;
}

.header-flex {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.header-title h1 {
    font-size: 1.6rem;
    margin-bottom: 0.25rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.header-title .tagline {
    font-size: 1rem;
    opacity: 0.9;
}

/* Main content */
.main-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

section {
    background: var(--card-bg);
    border-radius: var(--radius-md);
    padding: 2rem;
    box-shadow: var(--shadow-md);
}

h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--accent-light);
    font-weight: 700;
    letter-spacing: 0.5px;
}

/* App cards */
.app-card {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    margin-top: 1.5rem;
    background: var(--accent-light);
    border-radius: var(--radius-md);
    padding: 2rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.app-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.app-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary-color);
    opacity: 0.7;
}

.app-image {
    margin-top: 0.3rem;
}

.app-image img {
    width: 120px;
    height: 120px;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
    object-fit: cover;
    border: 3px solid white;
    transition: transform 0.3s ease;
}

.app-card:hover .app-image img {
    transform: scale(1.05);
}

.app-info {
    flex: 1;
}

.app-info h3 {
    margin-bottom: 0.75rem;
    color: var(--primary-color);
    font-size: 1.4rem;
    font-weight: 700;
    transition: color 0.2s ease;
}

.app-card:hover .app-info h3 {
    color: var(--primary-dark);
}

.app-info p {
    margin-bottom: 1rem;
    line-height: 1.6;
    font-size: 1.05rem;
}

.play-button {
    display: block;
    margin-left: -0.5rem;
    margin-bottom: 0.5rem;
}

.play-button img {
    height: 60px;
    transition: transform 0.2s;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.play-button img:hover {
    transform: scale(1.05);
}

.privacy-link {
    margin-top: 0;
}

.privacy-link a {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
}

.privacy-link a::before {
    content: "•";
    display: inline-block;
    margin-right: 5px;
    font-size: 1.2rem;
}

.privacy-link a:hover {
    text-decoration: underline;
    color: var(--primary-dark);
}

/* Contact section */
.contact {
    text-align: center;
}

.contact-button {
    display: inline-block;
    margin-top: 1.25rem;
    padding: 0.85rem 2rem;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.contact-button:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Footer */
footer {
    background: var(--primary-dark);
    color: #ffffff;
    padding: 1.25rem;
    text-align: center;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    margin-top: 2.5rem;
    border-radius: var(--radius-md);
}

.footer-links {
    margin-top: 0.75rem;
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.9rem;
    opacity: 0.9;
    transition: opacity 0.2s ease;
}

.footer-links a:hover {
    opacity: 1;
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .floating-header {
        padding: 1.25rem 1.5rem;
    }
    
    section {
        padding: 1.5rem;
    }
    
    .app-card {
        flex-direction: column;
        text-align: center;
        padding: 1.8rem 1.5rem;
    }
    
    .app-image {
        margin-top: 0;
    }
    
    .app-image img {
        width: 100px;
        height: 100px;
        margin-bottom: 1rem;
    }
    
    .play-button {
        margin-left: 0;
        display: inline-block;
    }
    
    .privacy-link {
        margin-top: 8px;
    }
}

@media (max-width: 480px) {
    body {
        padding: 1rem 0;
    }
    
    .container {
        width: 94%;
    }
    
    h2 {
        font-size: 1.3rem;
    }
} 