/* ========================================
   2026 NOVELTY VS FAKE ID GUIDE - STYLES
   Professional SEO Landing Page Design
   ======================================== */

/* ========================================
   GLOBAL & UTILITY STYLES
   ======================================== */

.novelty-fake-guide-page {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.7;
    color: #333;
}

.novelty-fake-guide-page section {
    position: relative;
    overflow: hidden;
}

/* Text Gradient Effect */
.text-gradient {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

/* Section Headers */
.section-header {
    position: relative;
    z-index: 1;
}

.section-header h2 {
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    border-radius: 2px;
}

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

.hero-section {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 80px 0 60px;
    position: relative;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(102, 126, 234, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(118, 75, 162, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.hero-section .container {
    position: relative;
    z-index: 1;
}

.hero-section h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-section .lead {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    font-weight: 400;
    color: #555;
}

/* ========================================
   COMPLIANCE BANNER (High-Visibility Warning)
   ======================================== */

.compliance-banner {
    background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
    border: 3px solid #ffc107 !important;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(255, 193, 7, 0.3);
    animation: pulseGlow 3s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% {
        box-shadow: 0 8px 24px rgba(255, 193, 7, 0.3);
    }
    50% {
        box-shadow: 0 12px 32px rgba(255, 193, 7, 0.5);
    }
}

.compliance-banner .alert-heading {
    color: #856404;
    font-size: 1.3rem;
}

.compliance-banner p {
    color: #856404;
    font-size: 0.95rem;
    line-height: 1.6;
}

.compliance-banner strong {
    font-weight: 700;
}

.compliance-banner .bi-shield-exclamation {
    color: #ffc107;
    animation: shake 2s ease-in-out infinite;
}

@keyframes shake {
    0%, 100% {
        transform: translateX(0);
    }
    10%, 30%, 50%, 70%, 90% {
        transform: translateX(-2px);
    }
    20%, 40%, 60%, 80% {
        transform: translateX(2px);
    }
}

/* ========================================
   QUICK ANSWER BOX (Featured Snippet Style)
   ======================================== */

.quick-answer-section {
    background-color: #f8f9fa;
}

.quick-answer-section .card {
    border-left: 5px solid #0d6efd;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.quick-answer-section .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(13, 110, 253, 0.15);
}

.quick-answer-content {
    font-size: 1.05rem;
}

.quick-answer-content strong {
    color: #0d6efd;
}

/* ========================================
   COMPARISON TABLE
   ======================================== */

.comparison-section {
    background-color: #fff;
}

.comparison-table {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    font-size: 0.95rem;
}

.comparison-table thead {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: #fff;
}

.comparison-table th {
    padding: 1.25rem;
    font-weight: 600;
    font-size: 1.05rem;
    vertical-align: middle;
}

.comparison-table .dimension-col {
    width: 20%;
    background-color: #ecf0f1;
}

.comparison-table .legal-col {
    width: 40%;
    background-color: #d4edda;
}

.comparison-table .illegal-col {
    width: 40%;
    background-color: #f8d7da;
}

.comparison-table tbody td {
    padding: 1.25rem;
    vertical-align: top;
    border: 1px solid #dee2e6;
}

.comparison-table tbody .fw-bold {
    color: #2c3e50;
    font-size: 1rem;
}

/* Legal Cell Styling */
.comparison-table .legal-cell {
    background-color: #f1f9f4;
    border-left: 4px solid #28a745;
}

.comparison-table .legal-cell .badge {
    font-size: 0.75rem;
    padding: 0.4em 0.8em;
}

.comparison-table .legal-cell ul {
    margin-bottom: 0.5rem;
}

.comparison-table .legal-cell li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

/* Illegal Cell Styling */
.comparison-table .illegal-cell {
    background-color: #fdf4f5;
    border-left: 4px solid #dc3545;
}

.comparison-table .illegal-cell .badge {
    font-size: 0.75rem;
    padding: 0.4em 0.8em;
}

.comparison-table .illegal-cell ul {
    margin-bottom: 0.5rem;
}

.comparison-table .illegal-cell li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
    color: #721c24;
}

/* Visual Contrast: Color Coding */
.comparison-table .legal-cell .text-success {
    color: #155724 !important;
}

.comparison-table .illegal-cell .text-danger {
    color: #721c24 !important;
}

/* Table Footer */
.table-footer {
    margin-top: 2rem;
}

.table-footer p {
    font-size: 0.9rem;
}

/* Responsive Table */
@media (max-width: 1024px) {
    .comparison-table {
        font-size: 0.85rem;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 0.75rem;
    }
}

@media (max-width: 768px) {
    .comparison-table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }

    .comparison-table thead,
    .comparison-table tbody {
        display: block;
    }

    .comparison-table tr {
        display: block;
        margin-bottom: 1rem;
        border: 1px solid #dee2e6;
        border-radius: 8px;
    }

    .comparison-table td {
        display: block;
        width: 100% !important;
        text-align: left;
        border: none;
        border-bottom: 1px solid #dee2e6;
    }

    .comparison-table td::before {
        content: attr(data-label);
        font-weight: 700;
        display: block;
        margin-bottom: 0.5rem;
        color: #2c3e50;
    }
}

/* ========================================
   COMPLIANCE ANATOMY SECTION
   ======================================== */

.compliance-anatomy-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.compliance-feature-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 12px;
    overflow: hidden;
}

.compliance-feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.15);
}

.compliance-feature-card .icon-wrapper {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 50%;
    margin: 0 auto;
}

.compliance-feature-card h3 {
    color: #2c3e50;
}

.compliance-feature-card ul {
    list-style: none;
    padding-left: 0;
}

.compliance-feature-card ul li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
}

.compliance-feature-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: 700;
    font-size: 1.1rem;
}

/* Compliance Summary Card */
.compliance-summary {
    border: 2px solid #0d6efd;
    border-radius: 12px;
    background: linear-gradient(135deg, #f0f7ff 0%, #e6f3ff 100%);
}

.compliance-summary h3 {
    font-size: 1.5rem;
}

/* ========================================
   FAQ SECTION
   ======================================== */

.faq-section {
    background-color: #fff;
}

.faq-accordion .accordion-item {
    border: none;
    margin-bottom: 1rem;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.3s ease;
}

.faq-accordion .accordion-item:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.faq-accordion .accordion-button {
    background-color: #f8f9fa;
    color: #2c3e50;
    font-weight: 600;
    font-size: 1.05rem;
    padding: 1.25rem 1.5rem;
    border: none;
    transition: background-color 0.3s ease;
}

.faq-accordion .accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    box-shadow: none;
}

.faq-accordion .accordion-button:not(.collapsed) .bi {
    color: #fff;
}

.faq-accordion .accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(102, 126, 234, 0.25);
    border-color: #667eea;
}

.faq-accordion .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%232c3e50'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.faq-accordion .accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.faq-accordion .accordion-body {
    padding: 1.5rem;
    background-color: #fff;
    color: #555;
    line-height: 1.8;
}

.faq-accordion .accordion-body p:last-child {
    margin-bottom: 0;
}

.faq-accordion .accordion-body strong {
    color: #2c3e50;
}

.faq-accordion .accordion-body .alert {
    margin-top: 1rem;
}

.faq-accordion .accordion-body ul,
.faq-accordion .accordion-body ol {
    margin-top: 0.75rem;
    margin-bottom: 0.75rem;
}

.faq-accordion .accordion-body li {
    margin-bottom: 0.5rem;
}

/* FAQ Table Styling */
.faq-accordion .table {
    margin-top: 1rem;
}

.faq-accordion .table th {
    background-color: #f8f9fa;
    font-weight: 600;
    color: #2c3e50;
}

/* ========================================
   SAFE USAGE RESOURCES SECTION
   ======================================== */

.safe-usage-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.resource-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 12px;
    overflow: hidden;
    height: 100%;
}

.resource-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.15);
}

.resource-card .icon-wrapper {
    margin-bottom: 1rem;
}

.resource-card h3 {
    color: #2c3e50;
    font-size: 1.25rem;
}

.resource-card p {
    color: #6c757d;
    font-size: 0.95rem;
}

.resource-card .btn {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.resource-card .btn:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Additional Resources Card */
.additional-resources .card {
    border: 2px solid #0d6efd;
    border-radius: 12px;
    background: linear-gradient(135deg, #f0f7ff 0%, #e6f3ff 100%);
}

.additional-resources h3 {
    font-size: 1.5rem;
}

.additional-resources a {
    color: #0d6efd;
    font-weight: 500;
    transition: color 0.2s ease, transform 0.2s ease;
    display: inline-block;
}

.additional-resources a:hover {
    color: #0a58ca;
    transform: translateX(5px);
}

/* ========================================
   CALL-TO-ACTION SECTION
   ======================================== */

.cta-section {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.cta-section h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1.5rem;
}

.cta-section .lead {
    font-size: clamp(1rem, 2vw, 1.3rem);
    color: rgba(255, 255, 255, 0.9);
}

.cta-buttons {
    margin-top: 2rem;
}

.cta-buttons .btn {
    padding: 0.875rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-buttons .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.compliance-footer-note {
    margin-top: 3rem;
    padding-top: 2rem;
}

.compliance-footer-note p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* ========================================
   ALERT & BADGE STYLING
   ======================================== */

.alert-info {
    background-color: #d1ecf1;
    border-color: #bee5eb;
    color: #0c5460;
}

.alert-success {
    background-color: #d4edda;
    border-color: #c3e6cb;
    color: #155724;
}

.alert-warning {
    background-color: #fff3cd;
    border-color: #ffeaa7;
    color: #856404;
}

.alert-danger {
    background-color: #f8d7da;
    border-color: #f5c6cb;
    color: #721c24;
}

.badge {
    font-weight: 600;
    padding: 0.5em 0.9em;
    border-radius: 4px;
}

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

/* Tablets */
@media (max-width: 992px) {
    .hero-section {
        padding: 60px 0 40px;
    }

    .hero-section h1 {
        font-size: 2.5rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .compliance-banner .alert-heading {
        font-size: 1.1rem;
    }

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

/* Mobile Devices */
@media (max-width: 768px) {
    .hero-section {
        padding: 40px 0 30px;
    }

    .hero-section h1 {
        font-size: 1.75rem;
    }

    .hero-section .lead {
        font-size: 1rem;
    }

    .compliance-banner {
        padding: 1rem;
    }

    .compliance-banner .d-flex {
        flex-direction: column;
    }

    .compliance-banner .bi-shield-exclamation {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .section-header h2 {
        font-size: 1.5rem;
    }

    .comparison-table {
        font-size: 0.8rem;
    }

    .compliance-feature-card {
        margin-bottom: 1.5rem;
    }

    .cta-section h2 {
        font-size: 1.75rem;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 1rem !important;
    }

    .cta-buttons .btn {
        width: 100%;
    }
}

/* ========================================
   ACCESSIBILITY ENHANCEMENTS
   ======================================== */

/* Focus States */
a:focus,
button:focus,
.btn:focus {
    outline: 3px solid #667eea;
    outline-offset: 2px;
}

/* Skip to Content Link */
.skip-to-content {
    position: absolute;
    top: -40px;
    left: 0;
    background: #667eea;
    color: white;
    padding: 8px;
    text-decoration: none;
    z-index: 100;
}

.skip-to-content:focus {
    top: 0;
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    .comparison-table .legal-cell {
        border-left-width: 6px;
    }

    .comparison-table .illegal-cell {
        border-left-width: 6px;
    }

    .compliance-banner {
        border-width: 4px !important;
    }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ========================================
   PRINT STYLES
   ======================================== */

@media print {
    .compliance-banner,
    .cta-section,
    .hero-section {
        page-break-inside: avoid;
    }

    .comparison-table {
        font-size: 0.75rem;
    }

    .comparison-table thead {
        background: #000 !important;
        color: #fff !important;
    }

    a[href]::after {
        content: " (" attr(href) ")";
    }
}

/* ========================================
   DARK MODE SUPPORT (Optional)
   ======================================== */

@media (prefers-color-scheme: dark) {
    /* Optional: Add dark mode styles if needed */
    /* This can be implemented if the site supports dark mode */
}
