:root {
    --bg-color: #E6F0FA;
    --text-color: #2C3E50;
    --link-color: #3498DB;
    --accent-color: #FF6B6B;
    --font-body: 'Inter', system-ui, -apple-system, sans-serif;
    --font-heading: 'Georgia', 'Times New Roman', serif;
    --card-bg: #FFFFFF;
    --border-color: #D6E4F0;
    --shadow: 0 4px 6px rgba(44, 62, 80, 0.05);
}

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    margin-top: 0;
    color: var(--text-color);
    line-height: 1.3;
}

h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 1rem;
}

h2 {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--border-color);
}

p {
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    max-width: 75ch;
}

a {
    color: var(--link-color);
    text-decoration: none;
    transition: color 0.2s ease;
    border-bottom: 1px solid transparent;
}

a:hover {
    color: #2980B9;
    border-bottom-color: currentColor;
}

/* Layout */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

header {
    background-color: var(--card-bg);
    padding: 1.5rem 0;
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 100;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-color);
}

.brand span {
    color: var(--link-color);
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 20px;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 4rem 20px;
    background: linear-gradient(180deg, var(--bg-color) 0%, #FFFFFF 100%);
}

.search-box {
    max-width: 600px;
    margin: 2rem auto;
    position: relative;
}

.search-box input {
    width: 100%;
    padding: 1rem 1.5rem;
    border: 2px solid var(--border-color);
    border-radius: 50px;
    font-size: 1.1rem;
    font-family: var(--font-body);
    transition: border-color 0.3s ease;
    box-shadow: var(--shadow);
}

.search-box input:focus {
    outline: none;
    border-color: var(--link-color);
}

/* Virtual Candle */
.candle-widget {
    margin: 2rem 0;
    cursor: pointer;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem;
    background: var(--card-bg);
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: transform 0.2s ease;
}

.candle-widget:hover {
    transform: translateY(-2px);
}

.candle-icon {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    opacity: 0.3;
    transition: all 0.5s ease;
}

.candle-active .candle-icon {
    opacity: 1;
    text-shadow: 0 0 15px #FFD700;
}

/* Testimonials Feed */
.testimonials-feed {
    background: var(--card-bg);
    padding: 2rem;
    margin: 2rem auto;
    max-width: 800px;
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
    font-style: italic;
    text-align: center;
}

/* AdSense Armor */
.ad-container {
    min-height: 90px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 2rem 0;
    background-color: #F8FAFC;
    border: 1px dashed var(--border-color);
}

@media (max-width: 768px) {
    .ad-container {
        min-height: 250px;
    }
}

/* Monetization Buttons */
.btn-payment {
    display: inline-block;
    background-color: var(--link-color);
    color: #fff !important;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
    margin: 1rem 0;
    border: none;
    cursor: pointer;
    min-width: 44px;
    min-height: 44px;
}

.btn-payment:hover {
    background-color: #2980B9;
    transform: translateY(-1px);
}

/* Footer & Disclaimer */
footer {
    background-color: #1A252F;
    color: #BDC3C7;
    padding: 3rem 0;
    margin-top: 4rem;
    font-size: 0.9rem;
}

.disclaimer {
    border-top: 1px solid #34495E;
    margin-top: 2rem;
    padding-top: 1rem;
    font-size: 0.8rem;
    color: #7F8C8D;
}
