/* CSS Reset & Variables */
:root {
    --primary-bg: #ffffff;
    --text-color: #333333;
    --header-bg: #000000;
    --header-text: #ffffff;
    --button-bg: #000000;
    --button-text: #ffffff;
    --card-bg: #f9f9f9;
    --border-radius: 8px;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'Roboto', sans-serif; background-color: var(--primary-bg); color: var(--text-color); line-height: 1.6; }
a { text-decoration: none; color: inherit; }

/* Header Navigation */
header { background-color: var(--header-bg); color: var(--header-text); padding: 1rem 5%; display: flex; justify-content: space-between; align-items: center; box-shadow: 0 4px 12px rgba(0,0,0,0.1); }
.logo img { max-height: 60px; display: block; }
.nav-links { display: flex; gap: 2rem; }
.nav-links a { font-weight: 500; transition: opacity 0.3s ease; }
.nav-links a:hover, .nav-links a.active { opacity: 0.7; }

/* Main Content & Typgraphy */
main { padding: 4rem 5%; max-width: 1400px; margin: 0 auto; min-height: 60vh; }
h1.section-title { text-align: center; font-size: 2.5rem; margin-bottom: 3rem; }

/* Hero Section (Index) */
.hero { position: relative; min-height: 80vh; display: flex; align-items: center; justify-content: center; padding: 4rem 5%; color: #ffffff; text-align: center; overflow: hidden; margin: -4rem -5%; }
.hero-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; z-index: 1; }
.hero-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.6); z-index: 2; }
.hero-content { position: relative; z-index: 3; max-width: 800px; display: flex; flex-direction: column; align-items: center; gap: 1.5rem; }
.hero-content h1 { font-size: 3rem; line-height: 1.2; text-shadow: 0 2px 4px rgba(0,0,0,0.5); }
.hero-content p { font-size: 1.2rem; line-height: 1.6; text-shadow: 0 1px 3px rgba(0,0,0,0.5); }
.hero-buttons { display: flex; gap: 1.5rem; margin-top: 1.5rem; flex-wrap: wrap; justify-content: center; }

/* Buttons */
.btn { display: inline-block; background-color: var(--button-bg); color: var(--button-text); padding: 0.75rem 1.5rem; border-radius: 50px; text-align: center; font-weight: 500; transition: background-color 0.3s ease; border: none; cursor: pointer; }
.btn:hover { background-color: #333333; }
.hero-buttons .btn { background-color: var(--button-text); color: var(--button-bg); padding: 1rem 2rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; box-shadow: 0 4px 12px rgba(0,0,0,0.2); }
.hero-buttons .btn:hover { background-color: #e0e0e0; transform: translateY(-2px); box-shadow: 0 6px 16px rgba(0,0,0,0.3); }

/* Grid Layouts (Scams & Creators) */
.scam-grid, .creator-grid { display: grid; gap: 2.5rem; }
.scam-grid { grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); }
.creator-grid { grid-template-columns: repeat(auto-fill, minmax(400px, 1fr)); }
.scam-card, .creator-card { background: var(--card-bg); border-radius: var(--border-radius); padding: 1.5rem; display: flex; flex-direction: column; box-shadow: 0 2px 8px rgba(0,0,0,0.05); transition: transform 0.3s ease; }
.creator-card { padding: 2rem; }
.scam-card:hover, .creator-card:hover { transform: translateY(-5px); }
.scam-image { width: 100%; aspect-ratio: 1 / 1; object-fit: contain; margin-bottom: 1.5rem; }
.scam-title, .creator-title { font-size: 1.4rem; margin-bottom: 1rem; line-height: 1.3; }
.creator-title { font-size: 1.6rem; }
.scam-description, .creator-description { font-size: 1rem; margin-bottom: 1.5rem; flex-grow: 1; }
.creator-description p { margin-bottom: 1rem; }

/* About & Contact Grids */
.about-grid { display: grid; grid-template-columns: 1fr; gap: 4rem; align-items: center; justify-items: center; max-width: 800px; margin: 0 auto; }
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 4rem; align-items: center; justify-items: center; max-width: 800px; margin: 0 auto; }
.about-text p { font-size: 1.15rem; line-height: 1.8; margin-bottom: 1.5rem; color: #444; }
.about-image img, .contact-image img { width: 100%; height: auto; border-radius: var(--border-radius); box-shadow: 0 4px 20px rgba(0,0,0,0.1); object-fit: cover; }
.contact-intro { font-size: 1.15rem; margin-bottom: 2rem; color: #444; }
.contact-form { display: flex; flex-direction: column; gap: 1.5rem; background: var(--card-bg); padding: 2rem; border-radius: var(--border-radius); box-shadow: 0 2px 8px rgba(0,0,0,0.05); }
.form-group { display: flex; flex-direction: column; gap: 0.5rem; }
.form-group label { font-weight: 500; }
.form-group input, .form-group textarea { width: 100%; padding: 0.75rem; border: 1px solid #ccc; border-radius: 4px; font-family: inherit; font-size: 1rem; }
.form-group textarea { resize: vertical; min-height: 150px; }

/* Individual Scam Detail Layout */
main.scam-detail-main { max-width: 1000px; }
.back-link { display: inline-block; margin-bottom: 2rem; color: #666; font-weight: 500; transition: color 0.3s ease; }
.back-link:hover { color: #000; }
.scam-detail-content { display: flex; flex-direction: column; gap: 2.5rem; }
.scam-detail-image { width: 100%; max-width: 400px; margin: 0 auto; display: block; }
.scam-detail-text h1 { font-size: 2.5rem; margin-bottom: 1.5rem; text-align: center; }
.scam-detail-text h3 { font-size: 1.5rem; margin-top: 2rem; margin-bottom: 1rem; color: #c7161f; }
.scam-detail-text p, .scam-detail-text li { font-size: 1.15rem; line-height: 1.8; margin-bottom: 1.5rem; color: #444; }
.scam-detail-text ul, .scam-detail-text ol { margin-bottom: 1.5rem; padding-left: 2rem; }
.scam-detail-text li { margin-bottom: 0.5rem; }

/* Footer */
footer { background-color: var(--card-bg); padding: 2rem 5%; text-align: center; margin-top: 4rem; }
footer .nav-links { justify-content: center; margin-bottom: 1rem; }

/* Responsive */
@media (max-width: 900px) {
    .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .contact-image { grid-row: 1; }
}
@media (max-width: 768px) {
    header { flex-direction: column; gap: 1rem; }
    .nav-links { flex-wrap: wrap; justify-content: center; gap: 1rem; }
    .hero-content h1 { font-size: 2.2rem; }
    .hero-content p { font-size: 1.05rem; }
    .creator-grid { grid-template-columns: 1fr; }
    .scam-detail-text h1 { font-size: 2rem; }
}
