/* General Body & Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #0d0d0d;
    color: #ffffff;
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
}

#SITE_CONTAINER {
    max-width: 900px;
    margin: 0 auto;
    background-color: #1a1a1a;
    min-height: 100vh;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
    position: relative;
    padding-bottom: 50px;
}

/* Typography & Colors */
.highlight-gold { color: #ffd700; }
.gold-text { color: #ffcc00; text-shadow: 0px 2px 4px rgba(0,0,0,0.8); }
.white-text { color: #ffffff; }
.neon-blue { color: #00ffff; text-shadow: 0 0 5px #00ffff, 0 0 10px #0000ff; }
.neon-green { color: #39ff14; text-shadow: 0 0 5px #39ff14, 0 0 10px #006400; }
.text-center { text-align: center; }
.mb-20 { margin-bottom: 20px; }
.mt-40 { margin-top: 40px; }

/* Blinking Animation */
@keyframes blinker {
    50% { opacity: 0; }
}
.blink {
    animation: blinker 1s linear infinite;
    color: #ff0000;
}

/* Floating WhatsApp Button */
.float-btn {
    position: fixed;
    bottom: 30px;
    right: 20px;
    background-color: #25d366;
    color: white;
    padding: 10px 15px;
    border-radius: 50px;
    text-align: center;
    text-decoration: none;
    font-weight: bold;
    z-index: 1000;
    box-shadow: 0px 4px 10px rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid white;
    animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { transform: scale(1.05); box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* Header */
.header {
    background: linear-gradient(180deg, #330000 0%, #110000 100%);
    text-align: center;
    padding: 30px 15px;
    border-bottom: 3px solid #ffcc00;
}
.logo-title {
    font-size: 32px;
    font-weight: 900;
    letter-spacing: 2px;
    margin-bottom: 5px;
    text-transform: uppercase;
}
.sub-title {
    color: #aaaaaa;
    font-size: 16px;
    margin-bottom: 20px;
}
.helpline-box {
    display: inline-block;
    background: #ff0000;
    padding: 10px 25px;
    border: 2px solid #ffd700;
    border-radius: 5px;
    font-size: 22px;
    font-weight: bold;
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.6);
}
.helpline-text { color: white; margin-right: 10px; }
.helpline-number { color: #ffff00; }

/* Content Wrappers */
.content-wrapper {
    padding: 20px;
    margin: 15px;
    background: rgba(40, 40, 40, 0.5);
    border-radius: 8px;
    border: 1px solid #444;
}

/* Announcement */
.announcement-container {
    background: #1a0000;
    border: 2px solid #ff0000;
    text-align: center;
}
.alert-text {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
}
.desc-text {
    color: #dddddd;
    font-size: 16px;
    line-height: 1.5;
}

/* Section Titles */
.section-title {
    text-align: center;
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: bold;
    text-transform: uppercase;
}

/* Images & Videos */
.image-box, .video-box {
    width: 100%;
    margin-top: 15px;
    margin-bottom: 15px;
    overflow: hidden;
    border-radius: 10px;
}
.responsive-img {
    width: 100%;
    height: auto;
    display: block;
}
.shadow-gold {
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.4);
    border: 3px solid #ffcc00;
}
.neon-border {
    border: 2px solid #39ff14;
    box-shadow: 0 0 15px #39ff14;
}

.video-box video {
    width: 100%;
    border: 4px solid #00ffff;
    border-radius: 5px;
    background-color: #000;
    box-shadow: 0 0 20px rgba(0,255,255,0.4);
}

/* Buttons */
.center-btn-wrapper { text-align: center; margin-top: 20px; margin-bottom: 10px; }
.action-btn {
    display: inline-block;
    background: linear-gradient(90deg, #ff0000, #cc0000);
    color: #ffff00;
    padding: 15px 30px;
    font-size: 20px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 5px;
    border: 2px solid #ffff00;
    box-shadow: 0 0 10px rgba(255,0,0,0.8);
    transition: all 0.3s ease;
}
.action-btn:hover {
    background: linear-gradient(90deg, #cc0000, #ff0000);
    box-shadow: 0 0 20px rgba(255,255,0,0.6);
}

.call-to-action { text-align: center; border: none; background: transparent; }
.giant-wa-btn {
    display: block;
    background-color: #25d366;
    color: white;
    font-size: 26px;
    font-weight: 900;
    padding: 20px;
    text-align: center;
    text-decoration: none;
    border-radius: 10px;
    border: 3px solid white;
    box-shadow: 0 0 20px rgba(37, 211, 102, 0.6);
    animation: pulse-green 2s infinite;
}

/* Boss Section Description */
.boss-desc {
    color: #dfdfdf;
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    margin-top: 15px;
}

/* Footer */
.footer-contact {
    text-align: center;
    padding: 30px;
    background: #111;
    border-top: 2px solid #ffcc00;
    margin-top: 40px;
}
.footer-contact h2 {
    color: #ffcc00;
    margin-bottom: 10px;
}
.footer-contact .ph-num {
    font-size: 30px;
    font-weight: 900;
    color: #ff0000;
    margin-bottom: 10px;
}
.copyright {
    color: #777;
    font-size: 12px;
}
