/* Authority Section Styles */
.authority-section {
    padding: 80px 0;
    background: linear-gradient(to bottom, #000000, #0a0a0a);
    position: relative;
    overflow: hidden;
}

/* Grid Pattern Overlay */
.authority-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.5;
    pointer-events: none;
}

.authority-title {
    font-size: clamp(2rem, 5vw, 3rem);
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.highlight-red {
    color: #ff0000;
    text-shadow: 0 0 20px rgba(255, 0, 0, 0.4);
}

.authority-proof {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}

.channel-proof-img {
    max-width: 100%;
    width: 600px;
    border-radius: 15px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.channel-proof-img:hover {
    transform: scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
}

/* New Authority Badge Styles */
.authority-badge-container {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    padding: 12px 30px;
    margin-top: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    flex-wrap: wrap;
}

.authority-stat {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #e0e0e0;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
}

.check-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background: #25d366;
    /* WhatsApp/Check Green */
    color: #000;
    border-radius: 50%;
    font-size: 12px;
    font-weight: bold;
    box-shadow: 0 0 10px rgba(37, 211, 102, 0.4);
}

.stat-number {
    font-weight: 700;
    color: #fff;
}

.stat-label {
    color: #aaa;
    font-weight: 400;
}

.stat-separator {
    width: 1px;
    height: 20px;
    background: rgba(255, 255, 255, 0.2);
}

/* Lightbox */
.image-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.image-lightbox.active {
    opacity: 1;
    pointer-events: all;
}

.lightbox-img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 10px;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.image-lightbox.active .lightbox-img {
    transform: scale(1);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 40px;
    color: #fff;
    cursor: pointer;
    z-index: 10001;
}

.authority-text {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.authority-paragraph {
    font-size: 1.2rem;
    color: #ccc;
    margin-bottom: 25px;
    line-height: 1.6;
    padding-left: 20px;
    border-left: 2px solid rgba(255, 0, 0, 0.3);
}

.highlight-text {
    background: linear-gradient(90deg, rgba(255, 0, 0, 0.1), transparent);
    padding: 15px 20px;
    border-left: 4px solid #ff0000;
    border-radius: 0 10px 10px 0;
    color: #fff;
}

.red-text {
    color: #ff0000;
}

.final-punch {
    font-size: 1.4rem;
    text-align: center;
    border: none;
    padding: 0;
    margin-top: 40px;
}

.authority-closing {
    text-align: center;
    font-size: 1rem;
    color: #888;
    font-style: italic;
    margin-top: 20px;
}

.authority-arrow {
    display: flex;
    justify-content: center;
    margin: 30px 0;
    animation: bounce 2s infinite;
}

.authority-cta {
    display: block;
    width: fit-content;
    margin: 0 auto;
    background: #ff0000;
    color: #fff;
    padding: 20px 40px;
    font-size: 1.2rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.5);
    transition: transform 0.2s, box-shadow 0.2s;
    text-align: center;
}

.authority-cta:hover {
    transform: scale(1.05);
    box-shadow: 0 0 40px rgba(255, 0, 0, 0.7);
}

@media (max-width: 768px) {
    .authority-badge-container {
        flex-direction: column;
        gap: 10px;
        padding: 20px;
        border-radius: 20px;
    }

    .stat-separator {
        width: 100%;
        height: 1px;
        background: rgba(255, 255, 255, 0.1);
    }
}