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

:root {
    --primary: #d4a053;      /* Warm Gold */
    --secondary: #a8a29e;    /* Warm Gray */
    --accent: #10b981;       /* Success Green */
    --dark-bg: #3d3634;      /* Warm Dark */
    --card-bg: #4a4240;      /* Warm Card */
    --text: #e7e5e4;         /* Stone Light */
    --text-muted: #a8a29e;   /* Stone Muted */
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--dark-bg);
    color: var(--text);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
}

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

/* Navbar */
.navbar {
    background: rgba(44, 38, 36, 0.95);
    border-bottom: 1px solid rgba(212, 160, 83, 0.2);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: 1.6rem;
    font-weight: 800;
    text-decoration: none;
    letter-spacing: -0.5px;
    background: linear-gradient(90deg, #d4a053, #10b981, #d4a053, #10b981);
    background-size: 300% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: logo-shimmer 4s linear infinite;
}

@keyframes logo-shimmer {
    0% { background-position: 300% 50%; }
    100% { background-position: 0% 50%; }
}

.nav-links a {
    color: var(--text);
    text-decoration: none;
    margin-left: 2rem;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--primary);
}

/* Hamburger menu button */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 101;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: all 0.3s;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Hero */
.hero {
    text-align: center;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, rgba(212, 160, 83, 0.08) 0%, rgba(16, 185, 129, 0.08) 100%);
    border-radius: 20px;
    margin: 2rem auto;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #d4a053, #10b981);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Site Cards */
.site-card {
    background: var(--card-bg);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(212, 160, 83, 0.15);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
}

.site-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 8px 25px rgba(212, 160, 83, 0.2);
}

.site-card.featured {
    border: 2px solid var(--accent);
}

.badge-featured {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--accent);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.85rem;
}

.site-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.site-info h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.stars {
    color: #fbbf24;
    font-size: 1.5rem;
}

.rating-value {
    color: var(--text-muted);
    font-weight: 600;
}

/* Buttons */
.cta-button {
    background: linear-gradient(135deg, #d4a053, #c08a3a);
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: transform 0.3s;
}

.cta-button:hover {
    transform: scale(1.05);
}

.cta-button-large {
    padding: 1rem 2.5rem;
    font-size: 1.2rem;
}

/* Site Details */
.site-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.detail {
    background: rgba(212, 160, 83, 0.1);
    padding: 0.75rem;
    border-radius: 8px;
}

.site-description {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* Pros/Cons */
.pros-cons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.pros h4 {
    color: var(--accent);
    margin-bottom: 0.5rem;
}

.cons h4 {
    color: #f59e0b;
    margin-bottom: 0.5rem;
}

.pros ul, .cons ul {
    list-style: none;
}

.pros li::before {
    content: '✓ ';
    color: var(--accent);
}

.cons li::before {
    content: '⚠ ';
    color: #f59e0b;
}

.read-more {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
}

.read-more:hover {
    text-decoration: underline;
}

/* Breadcrumbs */
.breadcrumbs {
    background: rgba(0, 0, 0, 0.15);
    padding: 0.6rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.breadcrumbs ol {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    font-size: 0.85rem;
}

.breadcrumbs li + li::before {
    content: '›';
    color: var(--text-muted);
    margin-right: 0.5rem;
}

.breadcrumbs a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.2s;
}

.breadcrumbs a:hover {
    color: var(--accent);
    text-decoration: underline;
}

.breadcrumbs .active span {
    color: var(--text-muted);
}

/* Ad Banner Placeholders */
.ad-banner {
    padding: 0.5rem 0;
}

.ad-placeholder {
    background: rgba(255, 255, 255, 0.03);
    border: 1px dashed rgba(212, 160, 83, 0.2);
    border-radius: 8px;
    text-align: center;
    padding: 1.5rem;
    color: var(--text-muted);
    font-size: 0.8rem;
    opacity: 0.5;
}

.ad-banner-top .ad-placeholder,
.ad-banner-bottom .ad-placeholder {
    max-width: 728px;
    margin: 0 auto;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ad-banner-inline .ad-placeholder {
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ad-banner-article .ad-placeholder {
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 768px) {
    .ad-banner-top .ad-placeholder,
    .ad-banner-bottom .ad-placeholder {
        height: 60px;
    }

    .ad-banner-inline .ad-placeholder {
        height: 200px;
    }
}

/* Footer */
.footer {
    text-align: center;
    padding: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: 4rem;
    color: var(--text-muted);
}

/* Detail Pages */
.detail-page, .article-page {
    max-width: 900px;
    margin: 2rem auto;
}

.rating-large {
    font-size: 2rem;
    margin: 1rem 0;
}

.cta-section {
    text-align: center;
    margin: 3rem 0;
}

.content-section {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
}

.info-list {
    list-style: none;
    padding: 1rem 0;
}

.info-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* News */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.news-card {
    background: var(--card-bg);
    padding: 1.5rem;
    border-radius: 10px;
}

.news-card h3 a {
    color: var(--text);
    text-decoration: none;
}

.news-card h3 a:hover {
    color: var(--primary);
}

.date {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.back-link {
    color: var(--primary);
    text-decoration: none;
    display: inline-block;
    margin-top: 2rem;
}

/* Responsive — 768px */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(44, 38, 36, 0.98);
        border-bottom: 1px solid rgba(212, 160, 83, 0.2);
        padding: 1rem 0;
        flex-direction: column;
        text-align: center;
    }

    .nav-links.open {
        display: flex;
    }

    .nav-links a {
        margin: 0;
        padding: 0.75rem 1.5rem;
        display: block;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .navbar .container {
        position: relative;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero {
        padding: 2.5rem 1.5rem;
    }

    .site-header {
        flex-direction: column;
        gap: 1rem;
    }

    .site-info h3 {
        font-size: 1.4rem;
    }

    .site-card {
        padding: 1.5rem;
    }

    .pros-cons {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .site-details {
        grid-template-columns: 1fr 1fr;
    }

    .news-grid {
        grid-template-columns: 1fr;
    }

    .content-section {
        padding: 1.5rem;
    }

    .cta-button-large {
        padding: 0.85rem 1.5rem;
        font-size: 1rem;
    }
}

/* Responsive — 480px */
@media (max-width: 480px) {
    .container {
        padding: 12px;
    }

    .hero h1 {
        font-size: 1.5rem;
    }

    .hero {
        padding: 2rem 1rem;
        border-radius: 12px;
        margin: 1rem auto;
    }

    .logo {
        font-size: 1.2rem;
    }

    .site-info h3 {
        font-size: 1.2rem;
    }

    .site-card {
        padding: 1.25rem 1rem;
    }

    .badge-featured {
        font-size: 0.75rem;
        padding: 0.35rem 0.75rem;
    }

    .site-details {
        grid-template-columns: 1fr;
    }

    .detail-page, .article-page {
        margin: 1rem auto;
        padding: 0 0.5rem;
    }

    .rating-large {
        font-size: 1.5rem;
    }

    .footer {
        margin-top: 2rem;
        padding: 1.5rem 1rem;
        font-size: 0.85rem;
    }
}
