/* 
   OMNI-CORE.CSS 
   Project: FreeFireDimonds.com
   Standard: Absolute Pinnacle
   Design: Unique, High-Conversion, Zero Bloat
*/

:root {
    --primary-color: #FF2A2A;      /* Aggressive Gamer Red */
    --primary-hover: #E60000;
    --secondary-color: #FFB300;    /* Diamond Gold */
    --bg-dark: #0F1115;            /* Deep Space Black */
    --bg-card: #1A1D24;            /* Raised Card Background */
    --text-main: #E2E8F0;
    --text-muted: #94A3B8;
    --font-heading: 'Montserrat', system-ui, -apple-system, sans-serif;
    --font-body: 'Inter', system-ui, -apple-system, sans-serif;
    --transition-speed: 0.25s;
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Typography */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 800;
    line-height: 1.2;
    color: #FFF;
}

.highlight {
    color: var(--primary-color);
}

.highlight-text {
    color: var(--secondary-color);
}

a {
    color: var(--text-main);
    text-decoration: none;
    transition: color var(--transition-speed) ease;
}

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

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

/* Header */
.site-header {
    background-color: rgba(15, 17, 21, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 900;
    letter-spacing: -0.5px;
    text-transform: uppercase;
}

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

.main-nav a {
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Hero Section */
.hero-section {
    padding: 100px 0 80px;
    background: radial-gradient(circle at 50% 0%, rgba(255, 42, 42, 0.15) 0%, transparent 60%);
    text-align: center;
}

.trust-badge {
    display: inline-block;
    background: rgba(255, 179, 0, 0.1);
    color: var(--secondary-color);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 24px;
    border: 1px solid rgba(255, 179, 0, 0.2);
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 40px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, #D40000 100%);
    color: #FFF !important;
    font-weight: 800;
    font-size: 1.1rem;
    padding: 18px 40px;
    border-radius: var(--radius-md);
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 30px -10px rgba(255, 42, 42, 0.5);
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px -10px rgba(255, 42, 42, 0.7);
}

.pulse-btn {
    animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
    0% { box-shadow: 0 0 0 0 rgba(255, 42, 42, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(255, 42, 42, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 42, 42, 0); }
}

.hero-cta-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.secure-text {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* Sections */
.section-title {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 10px;
}

.section-desc {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 50px;
}

.products-section {
    padding: 60px 0;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.placeholder-product {
    background: var(--bg-card);
    border: 1px dashed rgba(255,255,255,0.1);
    border-radius: var(--radius-md);
    padding: 40px;
    text-align: center;
    color: var(--text-muted);
}
.placeholder-product .placeholder-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

/* SEO Pillar Content */
.seo-content-section {
    padding: 60px 0;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.pillar-article {
    background: var(--bg-card);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.pillar-article h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.pillar-article h3 {
    font-size: 1.4rem;
    margin: 30px 0 15px;
}

.pillar-article p {
    margin-bottom: 20px;
    font-size: 1.05rem;
    color: #CBD5E1;
}

.pillar-article strong {
    color: #FFF;
}

.benefit-list, .step-list {
    margin: 0 0 20px 20px;
    color: #CBD5E1;
}

.benefit-list li, .step-list li {
    margin-bottom: 10px;
}

/* FAQ Section */
.faq-section {
    padding: 60px 0;
    background: linear-gradient(to bottom, transparent, rgba(0,0,0,0.3));
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-card);
    border-radius: var(--radius-sm);
    padding: 20px 25px;
    margin-bottom: 15px;
    border-left: 4px solid var(--primary-color);
}

.faq-question {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.faq-answer p {
    color: var(--text-muted);
    font-size: 1rem;
}

/* Footer */
.site-footer {
    background-color: #08090B;
    padding: 60px 0 0;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    display: block;
    margin-bottom: 15px;
}

.footer-about p {
    color: var(--text-muted);
    max-width: 400px;
}

.footer-links h4 {
    margin-bottom: 20px;
}

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

.footer-links li {
    margin-bottom: 10px;
}

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

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

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding: 20px 0;
    text-align: center;
    color: #64748B;
    font-size: 0.9rem;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        height: auto;
        padding: 15px 20px;
    }
    
    .main-nav ul {
        margin-top: 15px;
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
    }
    
    .pillar-article {
        padding: 25px 20px;
    }
}
/* Product Cards */
.product-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 42, 42, 0.1);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: transform var(--transition-speed), box-shadow var(--transition-speed);
    display: flex;
    flex-direction: column;
    position: relative;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 42, 42, 0.2);
    border-color: rgba(255, 42, 42, 0.4);
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--secondary-color);
    color: #000;
    font-weight: 800;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    z-index: 2;
    text-transform: uppercase;
}

.product-img-wrapper {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #08090B;
}

.product-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-img-wrapper img {
    transform: scale(1.05);
}

.product-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-title {
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 15px;
    color: #FFF;
}

.diamond-details {
    margin-bottom: 15px;
}

.diamond-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 5px;
    border-bottom: 1px dashed rgba(255,255,255,0.05);
    padding-bottom: 5px;
}

.diamond-row.total {
    font-weight: 800;
    color: var(--secondary-color);
    border-bottom: none;
    font-size: 1.05rem;
}

.product-price {
    font-size: 1.8rem;
    font-weight: 900;
    color: #FFF;
    margin-bottom: 20px;
    text-align: center;
}

.currency {
    font-size: 1.2rem;
    color: var(--primary-color);
}

.btn-buy {
    width: 100%;
    background: linear-gradient(135deg, var(--primary-color) 0%, #D40000 100%);
    color: #FFFFFF !important;
    font-weight: 800;
    padding: 15px;
    border: none;
    border-radius: var(--radius-sm);
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    margin-top: auto;
    text-decoration: none;
    display: block;
    position: relative;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    animation: subtle-premium-pulse 4s infinite cubic-bezier(0.25, 0.8, 0.25, 1);
}

.btn-buy:hover {
    background: linear-gradient(135deg, #E60000 0%, #B30000 100%);
    color: #FFFFFF !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 42, 42, 0.4);
}

@keyframes subtle-premium-pulse {
    0% { box-shadow: 0 0 0 0 rgba(255, 42, 42, 0.3); }
    10% { box-shadow: 0 0 0 6px rgba(255, 42, 42, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 42, 42, 0); }
}

/* SEO Pinnacle Layout */
.seo-header {
    text-align: center;
    margin-bottom: 40px;
}
.seo-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}
.seo-lead {
    font-size: 1.15rem;
    color: #E2E8F0;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
}
.seo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
}
.seo-feature-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 35px;
    border-radius: var(--radius-md);
    transition: transform 0.3s ease;
}
.seo-feature-box:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 42, 42, 0.2);
    background: rgba(255, 255, 255, 0.05);
}
.seo-feature-box h3 {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}
.seo-feature-box p {
    font-size: 1.05rem;
    color: #CBD5E1;
    line-height: 1.7;
    margin-bottom: 20px;
}
.seo-deep-dive {
    background: linear-gradient(135deg, rgba(255,42,42,0.05) 0%, rgba(0,0,0,0) 100%);
    border-left: 4px solid var(--primary-color);
    padding: 30px 40px;
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
}
.seo-deep-dive h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
}
.seo-deep-dive p {
    font-size: 1.05rem;
    color: #CBD5E1;
    margin-bottom: 15px;
    line-height: 1.8;
}
@media (max-width: 992px) {
    .seo-grid { grid-template-columns: 1fr; }
    .seo-header h2 { font-size: 2rem; }
}

/* MASSIVE SEO LAYOUT UPDATES */
.seo-divider {
    border: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,42,42,0.3), transparent);
    margin: 50px 0;
}
.seo-content-row {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}
.seo-content-main {
    flex: 2;
}
.seo-content-main h3, .seo-content-main h4 {
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-size: 1.5rem;
}
.seo-content-main h4 {
    font-size: 1.2rem;
    color: #FFF;
    margin-top: 25px;
}
.seo-content-main p {
    font-size: 1.05rem;
    color: #CBD5E1;
    line-height: 1.7;
    margin-bottom: 20px;
}
.seo-sidebar {
    flex: 1;
    position: sticky;
    top: 100px;
}
.seo-stats-box {
    background: rgba(255, 42, 42, 0.05);
    border: 1px solid rgba(255, 42, 42, 0.1);
    padding: 30px;
    border-radius: var(--radius-md);
}
.seo-stats-box h4 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.seo-stats-box ul {
    list-style: none;
}
.seo-stats-box li {
    padding: 12px 0;
    border-bottom: 1px dashed rgba(255,255,255,0.05);
    color: #E2E8F0;
    font-size: 1rem;
}
.seo-stats-box li:last-child {
    border-bottom: none;
}
.seo-stats-box strong {
    color: var(--secondary-color);
}
.guide-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
}
.guide-card {
    background: var(--bg-card);
    padding: 25px;
    border-radius: var(--radius-sm);
    border-left: 3px solid var(--secondary-color);
}
.guide-card h4 {
    font-size: 1.15rem;
    margin-bottom: 10px;
    color: #FFF;
}
.guide-card p {
    font-size: 0.95rem;
    color: #94A3B8;
    margin-bottom: 0;
}
.seo-faq-mega-section {
    background: rgba(0, 0, 0, 0.2);
    padding: 40px;
    border-radius: var(--radius-lg);
    margin-top: 30px;
}
.faq-intro {
    font-size: 1.1rem;
    color: #CBD5E1;
    margin-bottom: 30px;
    text-align: center;
}
.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}
.faq-item-large {
    background: rgba(255, 255, 255, 0.02);
    padding: 25px;
    border-radius: var(--radius-sm);
}
.faq-item-large h4 {
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-size: 1.1rem;
}
.faq-item-large p {
    color: #94A3B8;
    font-size: 0.95rem;
    line-height: 1.6;
}
.seo-footer-text {
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.05);
    text-align: center;
}
.seo-footer-text p {
    font-size: 0.85rem;
    color: #64748B;
    line-height: 1.5;
}
@media (max-width: 992px) {
    .seo-content-row { flex-direction: column; }
    .seo-sidebar { position: relative; top: 0; width: 100%; }
    .guide-grid { grid-template-columns: 1fr; }
    .faq-grid { grid-template-columns: 1fr; }
}

/* MASSIVE ENCYCLOPEDIA LAYOUT */
.seo-encyclopedia {
    padding: 60px 0;
    margin-top: 40px;
}
.seo-massive-content-block {
    margin: 40px 0;
}
.seo-massive-content-block h3 {
    font-size: 1.8rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
    border-left: 5px solid var(--primary-color);
    padding-left: 15px;
}
.massive-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px;
    margin-top: 25px;
}
.massive-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: var(--radius-sm);
}
.massive-card h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 1.1rem;
}
.massive-card p {
    font-size: 0.9rem;
    color: #94A3B8;
    line-height: 1.5;
}
.massive-list {
    column-count: 2;
    column-gap: 40px;
    list-style: none;
    margin-top: 20px;
}
.massive-list li {
    margin-bottom: 15px;
    color: #CBD5E1;
    font-size: 0.95rem;
    break-inside: avoid;
}
.massive-list strong {
    color: var(--secondary-color);
}
.seo-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 25px;
    background: rgba(0,0,0,0.2);
    border-radius: var(--radius-md);
    overflow: hidden;
}
.seo-table th, .seo-table td {
    padding: 15px 20px;
    text-align: left;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.seo-table th {
    background: rgba(255,42,42,0.1);
    color: var(--secondary-color);
    font-weight: 800;
}
.status-green {
    color: #22c55e;
    font-weight: bold;
}
@media (max-width: 768px) {
    .massive-list { column-count: 1; }
    .seo-table { display: block; overflow-x: auto; }
}

/* FINAL SEO TYPOGRAPHY UPDATES */
.seo-content-body h3 {
    font-size: 1.6rem;
    color: var(--secondary-color);
    margin-top: 30px;
    margin-bottom: 15px;
}
.seo-content-body p {
    font-size: 1.05rem;
    color: #CBD5E1;
    line-height: 1.8;
    margin-bottom: 20px;
}
.seo-text-list {
    margin-bottom: 30px;
    padding-left: 20px;
}
.seo-text-list li {
    font-size: 1.05rem;
    color: #CBD5E1;
    line-height: 1.8;
    margin-bottom: 15px;
}
.seo-text-list strong {
    color: var(--secondary-color);
}
.seo-content-body a:hover {
    text-decoration: underline;
}

/* --- ABSOLUTE CEILING MEGA FOOTER SEO STYLES --- */
.gk-footer-wrapper {
    background-color: #09090b;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 60px 20px 20px;
    font-family: 'Open Sans', sans-serif;
    color: #a0aec0;
}

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

.gk-footer-brand h3 {
    color: #ffffff;
    font-size: 20px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -0.5px;
    margin-bottom: 15px;
}

.gk-footer-brand p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.gk-trust-badges {
    display: flex;
    gap: 10px;
    align-items: center;
}

.gk-trust-badges span {
    background: rgba(255, 255, 255, 0.1);
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 12px;
    color: #ffffff;
    font-weight: 600;
}

.gk-footer-links h4 {
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
}

.gk-footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.gk-footer-links li {
    margin-bottom: 12px;
}

.gk-footer-links a {
    color: #a0aec0;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s ease;
}

.gk-footer-links a:hover {
    color: #00ff88;
}

.gk-footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
    font-size: 12px;
    line-height: 1.5;
}

.gk-legal-disclaimer {
    color: #718096;
    margin-bottom: 10px;
    display: block;
}

.gk-copyright {
    color: #ffffff;
    font-weight: 600;
    display: block;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .gk-footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .gk-trust-badges {
        justify-content: center;
    }
}
