/* ========== REVIEW FORGE - GLOBAL STYLES ========== */
/* Domain: reviewforge.reviews | Theme: Danger Red */

@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&family=Source+Sans+3:wght@400;500;600;700&display=swap');

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

:root {
    --red-dark: #7A0000;
    --red-primary: #B71C1C;
    --red-accent: #E53935;
    --red-light: #FF5252;
    --green-dark: #1B5E20;
    --green-primary: #2E7D32;
    --green-light: #43A047;
    --green-accent: #66BB6A;
    --bg-body: #0D0D0D;
    --bg-card: #1A1A1A;
    --bg-card-hover: #222222;
    --bg-section: #141414;
    --text-primary: #F5F5F5;
    --text-secondary: #B0B0B0;
    --text-muted: #777777;
    --gold: #FFB300;
    --gold-dim: #FF8F00;
    --border-color: #2A2A2A;
    --border-red: #4A0000;
    --font-heading: 'Oswald', sans-serif;
    --font-body: 'Source Sans 3', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-body);
    color: var(--text-primary);
    line-height: 1.7;
    font-size: 17px;
    -webkit-font-smoothing: antialiased;
}

a {
    color: var(--red-light);
    text-decoration: none;
    transition: color 0.2s;
}

a:hover {
    color: var(--gold);
}

img {
    max-width: 100%;
    height: auto;
}

/* ========== HEADER / NAV ========== */

.site-header {
    background: linear-gradient(180deg, #1A0000 0%, var(--bg-body) 100%);
    border-bottom: 3px solid var(--red-primary);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 24px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: var(--red-primary);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    font-family: var(--font-heading);
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.logo-text span {
    color: var(--red-accent);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
    list-style: none;
}

.nav-links a {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 500;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 6px 0;
    border-bottom: 2px solid transparent;
    transition: all 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--red-light);
    border-bottom-color: var(--red-accent);
}

.badge-verified {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: var(--green-dark);
    color: var(--green-accent);
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: var(--font-heading);
}

.badge-verified::before {
    content: "\2713";
    font-size: 13px;
}

/* ========== HERO ========== */

.hero {
    background: linear-gradient(135deg, #1A0000 0%, #0D0D0D 50%, #001A00 100%);
    padding: 80px 24px 60px;
    text-align: center;
    border-bottom: 1px solid var(--border-red);
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: 52px;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero h1 .red {
    color: var(--red-accent);
}

.hero h1 .green {
    color: var(--green-accent);
}

.hero p {
    font-size: 19px;
    color: var(--text-secondary);
    max-width: 720px;
    margin: 0 auto 36px;
    line-height: 1.7;
}

/* ========== SEARCH BAR ========== */

.search-wrap {
    max-width: 600px;
    margin: 0 auto 20px;
    position: relative;
}

.search-wrap input {
    width: 100%;
    padding: 16px 24px 16px 50px;
    font-size: 17px;
    font-family: var(--font-body);
    background: var(--bg-card);
    border: 2px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-primary);
    outline: none;
    transition: border-color 0.2s;
}

.search-wrap input::placeholder {
    color: var(--text-muted);
}

.search-wrap input:focus {
    border-color: var(--red-accent);
}

.search-icon {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-size: 18px;
    pointer-events: none;
}

/* ========== SECTIONS ========== */

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 60px 0;
}

.section-dark {
    background: var(--bg-section);
}

.section-title {
    font-family: var(--font-heading);
    font-size: 34px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.section-title .red {
    color: var(--red-accent);
}

.section-subtitle {
    font-size: 17px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 700px;
}

/* ========== CATEGORY CARDS ========== */

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.category-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-left: 4px solid var(--red-primary);
    border-radius: 6px;
    padding: 28px 24px;
    transition: all 0.25s;
    display: block;
    text-decoration: none;
}

.category-card:hover {
    background: var(--bg-card-hover);
    border-left-color: var(--red-accent);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(183, 28, 28, 0.15);
}

.category-card h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.category-card p {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 12px;
    line-height: 1.6;
}

.category-card .count {
    font-size: 12px;
    color: var(--red-light);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ========== COMPANY LIST (Category Page) ========== */

.company-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

.company-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    transition: all 0.2s;
    text-decoration: none;
}

.company-item:hover {
    background: var(--bg-card-hover);
    border-color: var(--red-primary);
    transform: translateX(4px);
}

.company-info h3 {
    font-family: var(--font-heading);
    font-size: 19px;
    font-weight: 600;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.company-info p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
}

.company-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}

.company-meta .location {
    font-size: 13px;
    color: var(--text-muted);
}

.view-reviews-btn {
    background: var(--red-primary);
    color: #fff;
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 600;
    padding: 8px 18px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
    transition: background 0.2s;
}

.company-item:hover .view-reviews-btn {
    background: var(--red-accent);
}

/* ========== REVIEWS (Company Page) ========== */

.review-section {
    margin-bottom: 50px;
}

.review-section h2 {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding-bottom: 14px;
    margin-bottom: 24px;
    border-bottom: 2px solid var(--border-color);
}

.review-section.positive h2 {
    color: var(--green-accent);
    border-bottom-color: var(--green-dark);
}

.review-section.negative h2 {
    color: var(--red-light);
    border-bottom-color: var(--red-dark);
}

.review-card {
    border-radius: 8px;
    padding: 24px 28px;
    margin-bottom: 16px;
    border-left: 5px solid;
}

.review-card.positive {
    background: linear-gradient(135deg, rgba(27, 94, 32, 0.15) 0%, rgba(27, 94, 32, 0.05) 100%);
    border-left-color: var(--green-primary);
    border: 1px solid rgba(46, 125, 50, 0.25);
    border-left: 5px solid var(--green-primary);
}

.review-card.negative {
    background: linear-gradient(135deg, rgba(183, 28, 28, 0.15) 0%, rgba(183, 28, 28, 0.05) 100%);
    border-left-color: var(--red-primary);
    border: 1px solid rgba(183, 28, 28, 0.25);
    border-left: 5px solid var(--red-primary);
}

.review-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
    flex-wrap: wrap;
    gap: 10px;
}

.review-header h3 {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.review-source {
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 600;
}

.review-stars {
    color: var(--gold);
    font-size: 15px;
    letter-spacing: 2px;
}

.review-stars.low {
    color: var(--red-light);
}

.review-card p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.75;
    margin-bottom: 14px;
}

.review-link {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 6px 14px;
    border-radius: 4px;
    transition: all 0.2s;
}

.review-card.positive .review-link {
    color: var(--green-accent);
    border: 1px solid var(--green-dark);
}

.review-card.positive .review-link:hover {
    background: var(--green-dark);
    color: #fff;
}

.review-card.negative .review-link {
    color: var(--red-light);
    border: 1px solid var(--red-dark);
}

.review-card.negative .review-link:hover {
    background: var(--red-dark);
    color: #fff;
}

/* ========== COMPANY HEADER (Company Page) ========== */

.company-header {
    background: linear-gradient(135deg, #1A0000 0%, var(--bg-body) 100%);
    padding: 50px 24px 40px;
    border-bottom: 2px solid var(--red-primary);
}

.company-header-inner {
    max-width: 1280px;
    margin: 0 auto;
}

.breadcrumb {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.breadcrumb a {
    color: var(--text-muted);
}

.breadcrumb a:hover {
    color: var(--red-light);
}

.breadcrumb span {
    margin: 0 8px;
}

.company-header h1 {
    font-family: var(--font-heading);
    font-size: 40px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
    line-height: 1.2;
}

.company-header h1 .red {
    color: var(--red-accent);
}

.company-header .company-tagline {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 20px;
    max-width: 800px;
    line-height: 1.7;
}

.company-details {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    font-size: 14px;
    color: var(--text-muted);
}

.company-details .detail {
    display: flex;
    align-items: center;
    gap: 6px;
}

.company-details .detail strong {
    color: var(--text-secondary);
}

/* ========== CATEGORY HEADER ========== */

.category-header {
    background: linear-gradient(135deg, #1A0000 0%, #0D0D0D 100%);
    padding: 50px 24px 40px;
    border-bottom: 2px solid var(--red-primary);
}

.category-header-inner {
    max-width: 1280px;
    margin: 0 auto;
}

.category-header h1 {
    font-family: var(--font-heading);
    font-size: 40px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
    line-height: 1.2;
}

.category-header p {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 800px;
    line-height: 1.7;
}

/* ========== CONTACT FORM ========== */

.contact-section {
    max-width: 640px;
    margin: 0 auto;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.form-group label {
    display: block;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 18px;
    font-size: 16px;
    font-family: var(--font-body);
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    color: var(--text-primary);
    outline: none;
    transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--red-accent);
}

.form-group textarea {
    min-height: 140px;
    resize: vertical;
}

.btn-submit {
    display: inline-block;
    background: var(--red-primary);
    color: #fff;
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    padding: 14px 36px;
    border: none;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: background 0.2s;
}

.btn-submit:hover {
    background: var(--red-accent);
}

/* ========== FOOTER ========== */

.site-footer {
    background: #0A0A0A;
    border-top: 2px solid var(--border-red);
    padding: 50px 24px 30px;
    margin-top: 60px;
}

.footer-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.7;
    margin-top: 12px;
}

.footer-col h4 {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 8px;
}

.footer-col ul li a {
    color: var(--text-muted);
    font-size: 14px;
    transition: color 0.2s;
}

.footer-col ul li a:hover {
    color: var(--red-light);
}

.footer-bottom {
    max-width: 1280px;
    margin: 30px auto 0;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 13px;
    color: var(--text-muted);
}

/* ========== ABOUT PAGE ========== */

.about-content {
    max-width: 800px;
}

.about-content h2 {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 40px 0 16px;
    color: var(--red-light);
}

.about-content h2:first-child {
    margin-top: 0;
}

.about-content p {
    color: var(--text-secondary);
    margin-bottom: 16px;
    line-height: 1.8;
}

/* ========== STATS BAR ========== */

.stats-bar {
    display: flex;
    gap: 40px;
    padding: 30px 0;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-item .num {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 700;
    color: var(--red-accent);
}

.stat-item .label {
    font-size: 13px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ========== RESPONSIVE ========== */

@media (max-width: 900px) {
    .footer-inner {
        grid-template-columns: 1fr 1fr;
    }
    .hero h1 {
        font-size: 34px;
    }
    .company-header h1,
    .category-header h1 {
        font-size: 28px;
    }
}

@media (max-width: 600px) {
    .header-inner {
        flex-direction: column;
        gap: 12px;
    }
    .nav-links {
        gap: 16px;
    }
    .hero {
        padding: 50px 16px 40px;
    }
    .hero h1 {
        font-size: 26px;
    }
    .footer-inner {
        grid-template-columns: 1fr;
    }
    .company-item {
        flex-direction: column;
        align-items: flex-start;
    }
    .company-meta {
        width: 100%;
        justify-content: space-between;
    }
    .review-header {
        flex-direction: column;
        align-items: flex-start;
    }
    .stats-bar {
        gap: 24px;
    }
}


/* ========== PLATFORM CARDS (company page) ========== */
.platforms-section { margin-top: 20px; }
.platforms-section h2 {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding-bottom: 14px;
    margin-bottom: 8px;
    border-bottom: 2px solid var(--red-primary);
    color: var(--text-primary);
}
.platforms-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 24px;
}
.platform-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 22px 24px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    text-decoration: none;
    color: var(--text-primary);
    transition: all 0.2s;
}
.platform-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--red-primary);
    transform: translateX(4px);
}
.platform-icon {
    width: 56px;
    height: 56px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    flex-shrink: 0;
}
.platform-info { flex: 1; }
.platform-info h4 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-primary);
}
.platform-info p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
}
.platform-arrow {
    font-size: 22px;
    color: var(--red-light);
    font-weight: 700;
    flex-shrink: 0;
}

/* ========== SPECIFIC REVIEW LINKS (Juego-style highlights) ========== */
.specific-reviews-section {
    margin-bottom: 40px;
    padding: 24px;
    background: rgba(183, 28, 28, 0.08);
    border-left: 4px solid var(--red-primary);
    border-radius: 8px;
}
.specific-reviews-section h2 {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 8px;
    color: var(--red-light);
}
.specific-link-card {
    display: block;
    padding: 18px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    margin-bottom: 12px;
    text-decoration: none;
    transition: all 0.2s;
}
.specific-link-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--red-primary);
}
.specific-link-card p {
    color: var(--text-secondary);
    margin: 8px 0 12px;
    font-size: 15px;
    line-height: 1.6;
}
.specific-link-meta {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 6px;
}
.specific-link-platform {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 600;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
}
.specific-link-type {
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.specific-link-type.negative {
    background: var(--red-dark);
    color: #fff;
}
.specific-link-type.positive {
    background: var(--green-dark);
    color: #fff;
}
.specific-link-arrow {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 600;
    color: var(--red-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 600px) {
    .platform-card { flex-wrap: wrap; }
    .platform-info { width: calc(100% - 76px); }
    .platform-arrow { width: 100%; text-align: right; }
}
