/* Reports Page CSS */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #000000 100%);
    min-height: 100vh;
    color: #ffffff;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    margin-left: 320px;
}

/* Sidebar Styles */
.sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: 300px;
    height: 100vh;
    background: linear-gradient(180deg, #1a1a1a 0%, #000000 100%);
    border-right: 2px solid #333;
    padding: 20px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
}

.logo-section {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #333;
}

.menu-section {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.menu-item {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    color: #cccccc;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    margin-bottom: 5px;
}

.menu-item:hover {
    background: rgba(255, 255, 0, 0.1);
    color: #ffff00;
    transform: translateX(5px);
}

.menu-item.active {
    background: linear-gradient(45deg, #ffff00, #ff8800);
    color: #000;
    font-weight: bold;
}

.menu-icon {
    margin-right: 10px;
    font-size: 1.2rem;
}

/* Mobile Header */
.mobile-header {
    display: none;
}

.mobile-menu-toggle {
    display: none;
    background: linear-gradient(45deg, #ffff00, #ff8800);
    border: none;
    border-radius: 8px;
    color: #000;
    font-size: 1.3rem;
    padding: 10px 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: bold;
}

.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Header */
.header {
    text-align: center;
    margin-bottom: 40px;
    padding: 30px 0;
    border-bottom: 2px solid #333;
}

.header h1 {
    font-size: 3rem;
    background: linear-gradient(45deg, #ffffff, #ffff00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
    text-shadow: 0 0 20px rgba(255, 255, 0, 0.3);
}

.header p {
    color: #cccccc;
    font-size: 1.2rem;
}

.glow {
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from { text-shadow: 0 0 20px rgba(255, 255, 0, 0.3); }
    to { text-shadow: 0 0 30px rgba(255, 255, 0, 0.6); }
}

/* Section Titles */
.section-title {
    font-size: 2rem;
    background: linear-gradient(45deg, #ffffff, #ffff00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
    text-align: center;
}

.section-description {
    text-align: center;
    color: #cccccc;
    margin-bottom: 30px;
    font-size: 1.1rem;
}

/* Contact Section */
.contact-section {
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    border: 2px solid #333;
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.contact-card {
    background: linear-gradient(135deg, #2a2a2a, #3a3a3a);
    border: 2px solid #444;
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.whatsapp-card {
    border-color: #25D366;
}

.whatsapp-card:hover {
    border-color: #25D366;
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.2);
}

.telegram-card {
    border-color: #0088cc;
}

.telegram-card:hover {
    border-color: #0088cc;
    box-shadow: 0 15px 35px rgba(0, 136, 204, 0.2);
}

.contact-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.whatsapp-card .contact-icon {
    color: #25D366;
}

.telegram-card .contact-icon {
    color: #0088cc;
}

.contact-info h3 {
    color: #ffffff;
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.contact-info p {
    color: #cccccc;
    margin-bottom: 5px;
}

.contact-number, .contact-username {
    color: #ffff00 !important;
    font-weight: bold;
    font-size: 1.1rem;
}

.contact-btn {
    background: linear-gradient(45deg, #ffff00, #ff8800);
    color: #000000;
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 15px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.whatsapp-btn {
    background: linear-gradient(45deg, #25D366, #128C7E);
    color: #ffffff;
}

.telegram-btn {
    background: linear-gradient(45deg, #0088cc, #005f87);
    color: #ffffff;
}

.contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Reports Section */
.reports-section {
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    border: 2px solid #333;
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.reports-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.report-card {
    background: linear-gradient(135deg, #2a2a2a, #3a3a3a);
    border: 2px solid #444;
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.report-card:hover {
    border-color: #ffff00;
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(255, 255, 0, 0.1);
}

.report-icon {
    font-size: 2.5rem;
    color: #ffff00;
    margin-bottom: 15px;
}

.report-info h3 {
    color: #ffffff;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.report-info p {
    color: #cccccc;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.report-btn {
    background: linear-gradient(45deg, #ffff00, #ff8800);
    color: #000000;
    border: none;
    padding: 10px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.report-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 255, 0, 0.3);
}

/* Quick Actions */
.quick-actions {
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    border: 2px solid #333;
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.action-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.action-btn {
    background: linear-gradient(45deg, #ffff00, #ff8800);
    color: #000000;
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.action-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 255, 0, 0.3);
}

/* Help Section */
.help-section {
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    border: 2px solid #333;
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.help-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.help-card {
    background: linear-gradient(135deg, #2a2a2a, #3a3a3a);
    border: 2px solid #444;
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.help-card:hover {
    border-color: #ffff00;
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(255, 255, 0, 0.1);
}

.help-icon {
    font-size: 2rem;
    color: #ffff00;
    margin-bottom: 15px;
}

.help-card h3 {
    color: #ffffff;
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.help-card p {
    color: #cccccc;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.help-btn {
    background: linear-gradient(45deg, #ffff00, #ff8800);
    color: #000000;
    border: none;
    padding: 8px 16px;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.help-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 0, 0.3);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .container {
        margin-left: 0;
        padding: 15px;
        padding-top: 80px;
    }
    
    .mobile-header {
        display: flex;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 70px;
        background: linear-gradient(180deg, #1a1a1a 0%, #000000 100%);
        border-bottom: 2px solid #333;
        z-index: 1001;
        align-items: center;
        justify-content: space-between;
        padding: 0 20px;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .sidebar {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 280px;
        height: calc(100vh - 70px);
        transition: all 0.3s ease;
    }
    
    .sidebar.active {
        left: 0;
    }
    
    .header h1 {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .contact-cards {
        grid-template-columns: 1fr;
    }
    
    .reports-grid {
        grid-template-columns: 1fr;
    }
    
    .help-cards {
        grid-template-columns: 1fr;
    }
    
    .action-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .action-btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .mobile-header {
        padding: 0 15px;
        height: 65px;
    }
    
    .container {
        padding: 10px;
        padding-top: 75px;
    }
    
    .sidebar {
        width: 250px;
        top: 65px;
        height: calc(100vh - 65px);
    }
    
    .contact-card, .report-card, .help-card {
        padding: 15px;
    }
    
    .header h1 {
        font-size: 1.5rem;
    }
}