/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    background: white;
    min-height: 100vh;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
}

/* Header Styles */
.warning-header {
    text-align: center;
    margin-bottom: 30px;
    padding: 30px 20px;
    background: linear-gradient(135deg, #ff6b6b, #ee5a52);
    color: white;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.3);
}

.warning-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.2);
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: bold;
    font-size: 1.1em;
    margin-bottom: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.warning-badge i {
    font-size: 1.3em;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.main-title {
    font-size: 2.5em;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.subtitle {
    font-size: 1.3em;
    font-weight: 600;
    opacity: 0.9;
}

/* Image Container */
.image-container {
    position: relative;
    margin-bottom: 40px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.warning-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 107, 107, 0.8), rgba(238, 90, 82, 0.8));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
}

.image-overlay h2 {
    font-size: 3em;
    font-weight: 900;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    margin-bottom: 10px;
    letter-spacing: 3px;
}

.image-overlay h3 {
    font-size: 2em;
    font-weight: 700;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    letter-spacing: 2px;
}

/* Content Sections */
.content {
    padding: 0 10px;
}

section {
    margin-bottom: 40px;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 12px;
    border-left: 5px solid #ff6b6b;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

section h2 {
    color: #d63384;
    font-size: 1.8em;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
}

section h2 i {
    color: #ff6b6b;
    font-size: 1.2em;
}

/* Report Content */
.report-content p {
    margin-bottom: 15px;
    font-size: 1.1em;
    line-height: 1.7;
}

.highlight-box, .warning-box {
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.highlight-box {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    color: #856404;
}

.warning-box {
    background: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
}

.highlight-box i, .warning-box i {
    font-size: 1.5em;
    margin-top: 2px;
}

/* Social Accounts Grid */
.accounts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.account-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: white;
    border-radius: 8px;
    border: 1px solid #dee2e6;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.account-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.account-item i {
    font-size: 1.3em;
    color: #6c757d;
    width: 20px;
}

.account-item a {
    color: #d63384;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.account-item a:hover {
    color: #ff6b6b;
    text-decoration: underline;
}

.company-details a {
    color: #d63384;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.company-details a:hover {
    color: #ff6b6b;
    text-decoration: underline;
}

/* Company Info */
.company-details {
    background: white;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #dee2e6;
}

.company-details p {
    margin-bottom: 10px;
    font-size: 1.1em;
}

/* Evidence Section */
.scam-reports {
    margin: 20px 0;
}

.report-link {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 15px;
    background: #d1ecf1;
    border: 1px solid #bee5eb;
    border-radius: 8px;
    margin-bottom: 15px;
    color: #0c5460;
}

.report-link i {
    font-size: 1.2em;
    margin-top: 2px;
    color: #0c5460;
}

.report-link a {
    color: #0c5460;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.report-link a:hover {
    color: #ff6b6b;
    text-decoration: underline;
}

.reference-box {
    background: #d1ecf1;
    border: 1px solid #bee5eb;
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
    color: #0c5460;
}

.behavior-note {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
    color: #856404;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.behavior-note i {
    font-size: 1.5em;
    margin-top: 2px;
}

/* Protection Tips */
.tips-list {
    list-style: none;
    padding: 0;
}

.tips-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    padding: 15px;
    background: white;
    border-radius: 8px;
    border: 1px solid #dee2e6;
    font-size: 1.1em;
    line-height: 1.6;
}

.tips-list li i {
    color: #28a745;
    font-size: 1.2em;
    margin-top: 2px;
}

/* Footer */
.footer {
    background: #343a40;
    color: white;
    text-align: center;
    padding: 30px;
    border-radius: 12px;
    margin-top: 40px;
}

.footer-content p {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.footer i {
    color: #17a2b8;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .container {
        padding: 15px;
        margin: 0;
    }
    
    .warning-header {
        padding: 20px 15px;
    }
    
    .main-title {
        font-size: 2em;
        letter-spacing: 1px;
    }
    
    .subtitle {
        font-size: 1.1em;
    }
    
    .image-overlay h2 {
        font-size: 2em;
        letter-spacing: 2px;
    }
    
    .image-overlay h3 {
        font-size: 1.5em;
        letter-spacing: 1px;
    }
    
    section {
        padding: 20px 15px;
    }
    
    section h2 {
        font-size: 1.5em;
    }
    
    .accounts-grid {
        grid-template-columns: 1fr;
    }
    
    .highlight-box, .warning-box, .behavior-note {
        flex-direction: column;
        text-align: center;
    }
    
    .tips-list li {
        padding: 12px;
    }
    
    .footer-content p {
        flex-direction: column;
        gap: 5px;
    }
}

@media (max-width: 480px) {
    .main-title {
        font-size: 1.8em;
    }
    
    .warning-badge {
        font-size: 1em;
        padding: 8px 15px;
    }
    
    .image-overlay h2 {
        font-size: 1.8em;
    }
    
    .image-overlay h3 {
        font-size: 1.3em;
    }
    
    section h2 {
        font-size: 1.3em;
    }
    
    .report-content p {
        font-size: 1em;
    }
}

/* Print Styles */
@media print {
    body {
        background: white;
    }
    
    .container {
        box-shadow: none;
        padding: 0;
    }
    
    .warning-header {
        background: #ff6b6b !important;
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact;
    }
    
    .image-container {
        page-break-inside: avoid;
    }
    
    section {
        page-break-inside: avoid;
        margin-bottom: 20px;
    }
}