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

body{
    background:#050505;
    color:#fff;
    font-family:'Inter',sans-serif;
    overflow-x:hidden;
}

button{
    font-family:'Inter',sans-serif;
}

.main-content{
    width:100%;
    padding:30px 60px;
}

/* NAVBAR */

.top-navbar{
    width:100%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:20px;
    margin-bottom:50px;
    flex-wrap:wrap;
}

.nav-left{
    display:flex;
    align-items:center;
    gap:14px;
    flex-wrap:wrap;
}

.nav-btn,
.admin-btn{
    height:48px;
    padding:0 22px;
    border:none;
    outline:none;
    border-radius:14px;
    background:#0c0c0c;
    color:#fff;
    border:1px solid rgba(255,0,0,.15);
    cursor:pointer;
    font-size:14px;
    transition:.3s ease;
}

.nav-btn:hover,
.admin-btn:hover{
    border-color:#ff1a1a;
    box-shadow:0 0 20px rgba(255,0,0,.16);
    transform:translateY(-2px);
}

.active-nav{
    border-color:#ff1a1a;
    box-shadow:0 0 20px rgba(255,0,0,.16);
}

/* HERO */

.hero-section{
    width:100%;
    display:grid;
    grid-template-columns:1fr 430px;
    align-items:center;
    gap:40px;
    margin-bottom:42px;
}

.hero-left h1{
    font-size:70px;
    line-height:1.05;
    margin:20px 0;
    font-weight:800;
    text-shadow:0 0 20px rgba(255,0,0,.12);
}

.hero-left h1 span{
    color:#ff1a1a;
}

.hero-left p{
    color:#8a8a8a;
    font-size:17px;
    line-height:1.7;
    max-width:620px;
}

.hero-badge{
    display:inline-flex;
    align-items:center;
    height:42px;
    padding:0 18px;
    border-radius:999px;
    background:rgba(255,0,0,.08);
    border:1px solid rgba(255,0,0,.18);
    color:#ff4d4d;
    font-size:13px;
    font-weight:600;
    letter-spacing:.5px;
}

.hero-right{
    display:flex;
    justify-content:center;
    align-items:center;
    min-height:430px;
}

/* 3D SHIELD */

.shield-panel{
    width:390px;
    height:390px;
    position:relative;
    display:flex;
    align-items:center;
    justify-content:center;
    perspective:1200px;
    cursor:grab;
    user-select:none;
}

.shield-panel:active{
    cursor:grabbing;
}

.shield-bg{
    position:absolute;
    width:100%;
    height:100%;
    object-fit:contain;
    pointer-events:none;
    user-select:none;
}

.shield-3d{
    width:215px;
    height:215px;
    position:relative;
    transform-style:preserve-3d;
    will-change:transform;
    transition:transform .03s linear;
}

.shield-img{
    width:100%;
    height:100%;
    object-fit:contain;
    pointer-events:none;
    user-select:none;
}

/* STATS */

.stats-grid{
    width:100%;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
    margin-bottom:40px;
}

.stat-card{
    background:#0c0c0c;
    border:1px solid rgba(255,0,0,.12);
    border-radius:22px;
    padding:28px;
    position:relative;
    overflow:hidden;
    backdrop-filter:blur(20px);
}

.stat-card h2{
    font-size:34px;
    margin-bottom:10px;
}

.stat-card p{
    color:#b3b3b3;
    margin-bottom:8px;
}

.stat-card span{
    color:#666;
    font-size:13px;
}

/* SEARCH */

.search-section{
    width:100%;
    display:flex;
    align-items:center;
    gap:18px;
    margin-bottom:50px;
    flex-wrap:wrap;
}

.search-section input,
.search-section select{
    height:58px;
    background:#0c0c0c;
    border:1px solid rgba(255,0,0,.12);
    border-radius:16px;
    padding:0 20px;
    color:#fff;
    outline:none;
    font-size:14px;
}

.search-section input{
    flex:1;
    min-width:280px;
}

.search-section select{
    width:220px;
}

.search-section input:focus,
.search-section select:focus{
    border-color:#ff1a1a;
    box-shadow:0 0 20px rgba(255,0,0,.12);
}

.search-btn{
    height:58px;
    padding:0 30px;
    border:none;
    border-radius:16px;
    background:#ff1a1a;
    color:#fff;
    cursor:pointer;
    font-weight:600;
    transition:.3s ease;
}

.search-btn:hover{
    box-shadow:0 0 25px rgba(255,0,0,.25);
}

/* REPORTS */

.section-title{
    margin-bottom:28px;
    position:relative;
    padding-left:18px;
}

.section-title::before{
    content:'';
    position:absolute;
    left:0;
    top:4px;
    width:4px;
    height:34px;
    border-radius:999px;
    background:#ff1a1a;
}

.section-title h2{
    font-size:28px;
}

.reports-grid{
    width:100%;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:24px;
}

.report-card{
    background:#0c0c0c;
    border:1px solid rgba(255,0,0,.12);
    border-radius:24px;
    padding:28px;
    position:relative;
    overflow:hidden;
    transition:.3s ease;
}

.report-card{
    height: 420px;
    display: flex;
    flex-direction: column;
}

.report-buttons{
    margin-top: auto;
}

.report-top{
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    gap:20px;
    margin-bottom:20px;
}

.report-top h3{
    font-size:22px;
    margin-bottom:6px;
}

.report-top span{
    color:#777;
    font-size:13px;
}

.report-top h4{
    color:#27d267;
    font-size:22px;
}

.report-desc{
    line-height: 1.6;
    min-height: 52px;

    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;

    overflow: hidden;
    text-overflow: ellipsis;
}

.report-tags{
    display:flex;
    gap:12px;
    flex-wrap:wrap;
    margin-bottom:28px;
}

.report-tags span{
    height:38px;
    padding:0 16px;
    border-radius:999px;
    border:1px solid rgba(255,255,255,.12);
    display:flex;
    align-items:center;
    color:#fff;
    font-size:13px;
}

.report-buttons{
    display:flex;
    gap:14px;
}

.report-buttons button{
    flex:1;
    height:52px;
    border:none;
    border-radius:14px;
    background:#111;
    color:#fff;
    border:1px solid rgba(255,0,0,.15);
    cursor:pointer;
    transition:.3s ease;
}

.report-buttons button:hover{
    border-color:#ff1a1a;
    box-shadow:0 0 20px rgba(255,0,0,.18);
}

/* FOOTER */

.bottom-footer{
    width:100%;
    display:flex;
    justify-content:center;
    align-items:center;
    gap:20px;
    padding:45px 0;
    margin-top:80px;
}

.footer-btn{
    width:220px;
    height:58px;
    border:none;
    outline:none;
    border-radius:14px;
    background:#0c0c0c;
    color:#fff;
    font-size:15px;
    font-weight:500;
    border:1px solid rgba(255,0,0,.15);
    cursor:pointer;
    transition:.3s ease;
}

.footer-btn:hover{
    border-color:#ff1a1a;
    box-shadow:0 0 20px rgba(255,0,0,.18);
    transform:translateY(-2px);
}

/* RESPONSIVE */

@media(max-width:1200px){
    .hero-section{
        grid-template-columns:1fr 360px;
    }

    .shield-panel{
        width:340px;
        height:340px;
    }

    .shield-3d{
        width:190px;
        height:190px;
    }

    .reports-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .stats-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:768px){
    .main-content{
        padding:20px;
    }

    .top-navbar{
        margin-bottom:35px;
    }

    .nav-left{
        width:100%;
        overflow-x:auto;
        flex-wrap:nowrap;
        padding-bottom:8px;
    }

    .nav-btn{
        white-space:nowrap;
    }

    .hero-section{
        grid-template-columns:1fr;
        gap:20px;
        margin-bottom:35px;
    }

    .hero-left h1{
        font-size:44px;
    }

    .hero-right{
        min-height:auto;
    }

    .shield-panel{
        width:310px;
        height:310px;
    }

    .shield-3d{
        width:170px;
        height:170px;
    }

    .stats-grid{
        grid-template-columns:1fr;
    }

    .reports-grid{
        grid-template-columns:1fr;
    }

    .search-section{
        flex-direction:column;
        align-items:stretch;
    }

    .search-section input,
    .search-section select,
    .search-btn{
        width:100%;
    }

    .bottom-footer{
        flex-direction:column;
        padding:35px 20px;
    }

    .footer-btn{
        width:100%;
    }
}
.report-buttons button:nth-child(1){
    background:#0c0c0c;
    border:1px solid rgba(255,255,255,.14);
    color:#fff;
}

.report-buttons button:nth-child(2),
.proof-btn{
    background:linear-gradient(180deg,#ff1a1a,#b00000);
    border:1px solid #ff1a1a;
    color:#fff;
    box-shadow:0 0 22px rgba(255,0,0,.28);
}

.report-buttons button:nth-child(2):hover,
.proof-btn:hover{
    box-shadow:0 0 35px rgba(255,0,0,.45);
}
.simple-footer{
    padding: 35px 20px;
    text-align: center;
    margin-top: 40px;
}

.footer-links{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 35px;
    margin-bottom: 20px;
}

.footer-links a{
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
}

.footer-links a:hover{
    opacity: .8;
}

.footer-info h3{
    color: #ffffff;
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: 700;
}

.footer-info p{
    color: #ffffff;
    font-size: 14px;
    margin-bottom: 8px;
}

.footer-info span{
    color: #bdbdbd;
    font-size: 13px;
}

@media(max-width:768px){

    .footer-links{
        gap: 25px;
    }

    .footer-info h3{
        font-size: 18px;
    }

}
.stat-card{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
}

.stat-icon{
    width:70px;
    height:70px;

    display:flex;
    align-items:center;
    justify-content:center;

    flex-shrink:0;
    overflow:hidden;
}

.stat-icon img{
    width:70px;
    height:70px;

    object-fit:contain;
    display:block;

    filter:
        drop-shadow(0 0 4px rgba(255,0,0,.5))
        drop-shadow(0 0 8px rgba(255,0,0,.3));
}
.desktop-notice{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.85);
    display:flex;
    justify-content:center;
    align-items:center;
    z-index:99999;
}

.desktop-box{
    width:90%;
    max-width:400px;
    background:#0a0a0a;
    border:1px solid rgba(255,0,0,.3);
    border-radius:16px;
    padding:25px;
    text-align:center;
}

.desktop-box h2{
    color:#fff;
    margin-bottom:10px;
}

.desktop-box p{
    color:#aaa;
    margin-bottom:20px;
}

.desktop-box button{
    background:#ff1a1a;
    color:white;
    border:none;
    padding:12px 25px;
    border-radius:10px;
    cursor:pointer;
}
.full-report-desc{
    color:#d6d6d6;
    line-height:1.9;
    white-space:normal;
    overflow:visible;
    text-overflow:unset;
    max-height:none;
    display:block;
}
.full-report-desc{
    color:#d6d6d6;
    line-height:1.8;
    white-space:pre-wrap;
    overflow:visible;
    text-overflow:unset;
    max-height:none;
    display:block;
    margin:24px 0 28px;
}

main .report-card{
    height:auto !important;
}

main .report-buttons{
    margin-top:25px !important;
}
.report-status{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:max-content;
    padding:7px 14px;
    border-radius:999px;
    font-size:12px;
    font-weight:700;
    letter-spacing:.4px;
    margin-bottom:12px;
}

.report-status.verified{
    color:#38ff7b;
    background:rgba(0,255,100,.10);
    border:1px solid rgba(0,255,100,.35);
    box-shadow:0 0 18px rgba(0,255,100,.25);
}

.report-status.unverified{
    color:#ff4d4d;
    background:rgba(255,0,0,.10);
    border:1px solid rgba(255,0,0,.35);
    box-shadow:0 0 18px rgba(255,0,0,.25);
}
.report-meta{
    display:flex;
    flex-direction:column;
    align-items:flex-end;
    gap:10px;
}

.report-meta span{
    color:#d8c98a;
    font-size:13px;
    font-weight:600;
}

.report-meta h4{
    color:#27d267;
    font-size:22px;
}
