/*
Theme Name: App Gallery Theme
Theme URI: https://okumulabo.com
Author: Antigravity
Author URI: https://okumulabo.com
Description: A modern, premium mobile app showcase theme.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: app-gallery
*/

/* Base Styles */
:root {
    --primary-color: #EF1E4F; /* The red from the design */
    --text-color: #1A1A1A;
    --bg-color: #FFFFFF;
    --light-bg: #F8F9FA;
    --accent-color: #000000;
    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

body {
    font-family: var(--font-main);
    color: var(--text-color);
    background-color: var(--bg-color);
    margin: 0;
    line-height: 1.6;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Store Buttons */
.store-btn {
    background: #112a35;
    color: #fff;
    padding: 8px 15px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 700;
    text-align: center;
    line-height: 1.2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}
.store-btn:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
}
.store-btn small {
    display: block;
    font-size: 0.5rem;
    opacity: 0.6;
    font-weight: 400;
}
