/* 1. Global Reset */
* {
    box-sizing: border-box; /* Prevents padding from breaking the grid */
}

body {
    background-color: #0f172a;
    color: #f1f5f9;
    font-family: 'Inter', sans-serif;
    margin: 0;
    line-height: 1.6;
}

/* 2. Sophisticated Header */
header {
    background-color: rgba(30, 41, 59, 0.9);
    backdrop-filter: blur(10px);
    padding: 20px;
    border-bottom: 1px solid #334155;
    position: sticky;
    top: 0;
    z-index: 1000;
}
.logo {
    font-size: 1.8rem;
    font-weight: 800;          /* Very Bold */
    letter-spacing: -1.5px;    /* Tighter letters look more 'expensive' */
    color: #f8fafc;
    margin: 0;
    text-transform: uppercase;
}

.logo span {
    color: #f59e0b;            /* Your Amber Gold */
    font-weight: 300;          /* Very Thin/Light */
    letter-spacing: 1px;       /* Spread the thin letters out slightly */
    margin-left: 2px;
}
.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

header h1 {
    margin: 0;
    font-size: 1.8rem;
    color: #f59e0b;
}

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

nav ul li a {
    color: #94a3b8;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

/* 3. THE GRID (The fix is here!) */
.review-grid {
    display: grid !important; /* '!important' forces the browser to obey */
    grid-template-columns: repeat(3, 1fr); 
    gap: 30px;
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

/* 4. Review Cards */
.review-card {
    background-color: #1e293b;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #334155;
    transition: transform 0.3s ease;
}

.review-card:hover {
    transform: translateY(-10px);
    border-color: #f59e0b;
}

.review-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.review-card h3 {
    padding: 15px 15px 0;
    margin: 0;
    color: #f8fafc;
}

.review-card p {
    padding: 10px 15px;
    color: #94a3b8;
    font-size: 0.9rem;
}

.review-card a {
    display: inline-block;
    margin: 0 15px 20px;
    color: #f59e0b;
    text-decoration: none;
    font-weight: bold;
}

/* 5. Ad Slots */
.ad-top, .ad-bottom {
    background: #1e293b;
    width: 100%;
    max-width: 728px;
    height: 90px;
    margin: 30px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px dashed #334155;
    color: #475569;
}
.newsletter-box {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    padding: 60px 20px;
    text-align: center;
    border-top: 1px solid #334155;
    border-bottom: 1px solid #334155;
    margin: 40px 0;
}

.newsletter-box h3 {
    color: #f59e0b;
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.newsletter-box input {
    padding: 12px 20px;
    width: 300px;
    background: #0f172a;
    border: 1px solid #334155;
    color: white;
    border-radius: 4px;
    outline: none;
}

.newsletter-box button {
    padding: 12px 25px;
    background: #f59e0b;
    color: #0f172a;
    border: none;
    font-weight: bold;
    border-radius: 4px;
    cursor: pointer;
    margin-left: 10px;
    transition: 0.3s;
}

.newsletter-box button:hover {
    background: #d97706;
}
/* Responsive Design for Mobile */
@media (max-width: 900px) {
    .review-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 columns for tablets */
    }
    .header-container {
        flex-direction: column;
        gap: 20px;
    }
}

@media (max-width: 600px) {
    .review-grid {
        grid-template-columns: 1fr; /* 1 column for phones */
    }
    .ad-top, .ad-bottom {
        width: 100%; /* Resize ads for small screens */
        height: auto;
        padding: 20px;
    }
}