/* Base styles */
html {
    scroll-behavior: smooth;
}

body {
    background-color: #191d32;
    color: white;
}

/* Material Icons */
.material-icons {
    font-family: 'Material Icons';
    font-weight: normal;
    font-style: normal;
    font-size: 24px;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -webkit-font-feature-settings: 'liga';
    font-feature-settings: 'liga';
    -webkit-font-smoothing: antialiased;
}

/* Tailwind Custom Colors */
:root {
    --primary-red: #e34242;
    --dark-blue: #13162c;
    --bonus-green: #4CAF50;
}

/* Review feature cards */
.feature-card {
    border-radius: 0.75rem;
    padding: 1.25rem;
    background: linear-gradient(135deg, rgba(28,32,57,0.9), rgba(20,22,37,0.95));
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
    border: 1px solid rgba(255,255,255,0.06);
}
.feature-card h3 {
    color: #fff;
}
.feature-card p {
    color: #cbd5e1;
}
.feature-icon {
    display: inline-block;
    font-size: 1.75rem;
    line-height: 1;
    margin-right: 0.75rem;
    color: #ffffff;
    opacity: 0.95;
}
.card-gradient {
    background: linear-gradient(135deg, rgba(227,66,66,0.08), rgba(156,39,176,0.08));
}

/* Sticky mobile CTA */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(28,32,57,0.95);
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 0.75rem 1rem;
    z-index: 50;
}
@media (min-width: 768px) {
    .sticky-cta { display: none; }
}
@media (max-width: 767px) {
    .page-with-sticky main { padding-bottom: 0; padding-top: 34px; }
    .page-with-sticky footer { padding-bottom: 75px; }
}

/* Extra breathing room on pages with sticky CTA */
.page-with-sticky main {
    scroll-margin-top: 58px;
}

/* Optional desktop sidebar (if used later) */
.toc-aside {
    position: sticky;
    top: 100px;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 0.75rem;
    background-color: #1c2039;
    padding: 1rem;
}

/* Content Section Styling */
.content-section {
    background-color: #191d32;
    padding: 4rem 0;
}

.content-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.content-section h2 {
    font-size: 1.875rem;
    font-weight: bold;
    color: white;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
}

/* Footer pills */
.footer-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 0.35rem;
    padding: 0.5rem 0.9rem;
    min-height: 44px;
    border-radius: 0.85rem;
    background: linear-gradient(145deg, #1a1e33, #141827);
    border: 1px solid rgba(255,255,255,0.08);
    color: #cbd5f5;
    font-size: 0.95rem;
    white-space: nowrap;
    transition: all 0.2s ease;
    text-decoration: none;
}
.footer-pill:hover {
    color: #ffffff;
    border-color: rgba(227,66,66,0.35);
    box-shadow: 0 10px 24px rgba(0,0,0,0.25);
}

.content-section h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: white;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.content-section p {
    color: #d1d5db;
    line-height: 1.625;
    margin-bottom: 1rem;
}

.content-section p:last-child {
    margin-bottom: 1.5rem;
}

.content-section strong {
    color: white;
    font-weight: 600;
}

/* Responsive adjustments */
@media (min-width: 768px) {
    .content-section .container {
        padding: 0 2rem;
    }
    
    .content-section h2 {
        font-size: 2.25rem;
    }
    
    .content-section h3 {
        font-size: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .content-section .container {
        padding: 0 4rem;
    }
}
