:root {
    --primary-color: #01875f;
    --primary-hover: #016d4d;
    --bg-light: #f8f9fa;
    --text-dark: #202124;
    --text-muted: #5f6368;
    --card-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    --border-radius: 16px;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
}

.navbar {
    background: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}

.hero-section {
    background: white;
    padding: 4rem 0;
    border-bottom: 1px solid #eee;
    margin-bottom: 2rem;
}

.app-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 1.25rem;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;
}

.app-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
    border-color: #eee;
}

.btn-download:hover {
    background-color: #016d4d;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Smart Link Source Styles */
.btn-download.btn-mega {
    background-color: #d71920;
}

.btn-download.btn-mega:hover {
    background-color: #b0141a;
}

.btn-download.btn-mfire {
    background-color: #007bff;
}

.btn-download.btn-mfire:hover {
    background-color: #0056b3;
}

.btn-download.btn-gdrive {
    background-color: #34a853;
}

.btn-download.btn-gdrive:hover {
    background-color: #2d8e47;
}

.secure-badge {
    background: #e6f4ea;
    color: #1e8e3e;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
    border: 1px solid #ceead6;
}

.app-icon-lg {
    width: 64px;
    height: 64px;
    border-radius: 14px;
    object-fit: cover;
    margin-bottom: 1rem;
}

.app-title {
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 0.25rem;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.app-category {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.btn-primary-soft {
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    padding: 10px 20px;
    font-weight: 600;
    transition: background 0.3s;
}

.btn-primary-soft:hover {
    background-color: var(--primary-hover);
    color: white;
}

.search-container {
    max-width: 600px;
    margin: 2rem auto 0;
}

.search-input {
    border-radius: 50px;
    padding: 15px 25px;
    border: 1px solid #ddd;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

/* New Polish Styles */
.suggest-card {
    transition: all 0.3s ease;
    border: 1px solid #eee !important;
}

.suggest-card:hover {
    background-color: #f8f9fa !important;
    transform: scale(1.03);
    border-color: var(--primary-color) !important;
}

.screenshot-item img {
    transition: all 0.3s ease;
    cursor: zoom-in;
}

.screenshot-item:hover img {
    transform: translateY(-3px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.screenshot-item-full img {
    transition: all 0.3s ease;
    max-width: 100%;
    height: auto;
}

.screenshot-item-full img:hover {
    transform: translateY(-5px);
}