/* --- Variables --- */
:root {
    --gaming-red: #ff0000;
    --dark-bg: #111111;
    --white: #ffffff;
    --shadow: 0 5px 20px rgba(255, 0, 0, 0.2);
}

/* --- Main Header Styling --- */
.main-header {
    background: var(--white);
    padding: 10px 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 9999;
    border-bottom: 4px solid var(--gaming-red); /* Strong Red Line */
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
}

/* --- Logo: Bada aur Clear --- */
.site-logo {
    height: 80px; /* Bada Size */
    width: auto;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.logo-link:hover .site-logo {
    transform: scale(1.1) rotate(-2deg);
}

/* --- Desktop Menu --- */
.desktop-menu a {
    margin: 0 20px;
    text-decoration: none;
    font-weight: 700;
    color: #222;
    text-transform: uppercase;
    font-size: 15px;
    letter-spacing: 0.5px;
    position: relative;
    transition: 0.3s;
}
.desktop-menu a:hover {
    color: var(--gaming-red);
}
.desktop-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0%;
    height: 3px;
    background: var(--gaming-red);
    transition: 0.3s;
}
.desktop-menu a:hover::after {
    width: 100%;
}

/* --- Premium Red Contact Button --- */
.red-contact-btn {
    background: var(--gaming-red);
    color: var(--white) !important;
    padding: 12px 25px;
    border-radius: 5px; /* Square/Gaming look */
    font-weight: 800;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    box-shadow: var(--shadow);
    border: 2px solid var(--gaming-red);
    animation: pulse-red 1.5s infinite; /* Blinking Effect */
    transition: 0.3s ease;
}

.red-contact-btn:hover {
    background: #000;
    color: var(--gaming-red) !important;
    border-color: var(--gaming-red);
    animation: none; /* Hover par blink stop */
}

/* --- Animations --- */

/* 1. Blinking Pulse Animation */
@keyframes pulse-red {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.7); }
    70% { transform: scale(1.05); box-shadow: 0 0 0 15px rgba(255, 0, 0, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 0, 0, 0); }
}

/* 2. Phone Icon Shake (Ring) */
.phone-ring {
    animation: ring 0.5s infinite;
}
@keyframes ring {
    0% { transform: rotate(0); }
    25% { transform: rotate(15deg); }
    50% { transform: rotate(0); }
    75% { transform: rotate(-15deg); }
    100% { transform: rotate(0); }
}

/* --- Social Icons --- */
.social-icon {
    font-size: 20px;
    color: #333;
    margin-left: 15px;
    transition: 0.3s;
}
.social-icon:hover {
    color: var(--gaming-red);
    transform: translateY(-5px);
}

/* --- Mobile Drawer Improvements --- */
.drawer {
    position: fixed;
    top: 0; left: -300px;
    width: 280px; height: 100%;
    background: var(--dark-bg);
    z-index: 10000;
    transition: 0.4s;
    padding: 20px;
}
.drawer.active { left: 0; }
.drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 20px;
    border-bottom: 1px solid #333;
}
.close-icon { color: var(--gaming-red); font-size: 25px; cursor: pointer; }
.drawer-body a {
    display: block;
    color: #fff;
    padding: 15px 0;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px solid #222;
}
.drawer-body a i { margin-right: 10px; color: var(--gaming-red); }

.drawer-overlay {
    position: fixed;
    top:0; left:0; width:100%; height:100%;
    background: rgba(0,0,0,0.7);
    display:none; z-index:9999;
}
.drawer-overlay.active { display:block; }

/* Spacer to prevent content overlap */
.header-spacer { height: 110px; }

/* GLOBAL SETTINGS */
:root { --red: #ff0000; --black: #111; --white: #fff; }
body { font-family: 'Poppins', sans-serif; overflow-x: hidden; }
.text-red { color: var(--red); }

/* HERO SECTION */
.hero-premium {
    background: linear-gradient(135deg, #fdfdfd 0%, #ebebeb 100%);
    /* padding: 100px 0; */
    border-bottom: 5px solid var(--red);
}
.badge-new {
    background: var(--red); color: #fff; padding: 5px 15px;
    font-size: 12px; font-weight: 700; border-radius: 50px;
}
.main-title { font-size: 40px; font-weight: 800; color: var(--black); margin-top: 15px; }
.hero-desc { font-size: 18px; color: #555; margin: 20px 0; }
.btn-main {
    background: var(--red); color: #fff; padding: 15px 40px;
    text-decoration: none; font-weight: 700; border-radius: 5px;
    display: inline-block; transition: 0.3s;
}
.btn-main:hover { background: #000; color: #fff; transform: scale(1.05); }

/* STATS BAR */
.stats-bar { background: #000; color: #fff; padding: 40px 0; }
.stats-bar h3 { font-size: 40px; font-weight: 800; color: var(--red); margin: 0; }
.stats-bar p { margin: 0; text-transform: uppercase; font-size: 12px; color: #888; }

/* PRODUCT BOXES */
.product-box {
    background: #fff; border-radius: 10px; overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05); transition: 0.3s;
}
.product-box:hover { transform: translateY(-10px); box-shadow: 0 10px 30px rgba(255,0,0,0.2); }
.img-placeholder { position: relative; height: 200px; background: #eee; overflow: hidden; }
.img-placeholder img { width: 100%; height: 100%; object-fit: cover; }
.play-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.4); display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 30px; opacity: 0; transition: 0.3s; text-decoration: none;
}
.product-box:hover .play-overlay { opacity: 1; }
.view-demo { color: var(--red); text-decoration: none; font-weight: 700; font-size: 13px; }

/* STEP BOXES */
.step-box { padding: 20px; text-align: center; }
.step-num {
    font-size: 50px; font-weight: 800; color: rgba(255,255,255,0.1);
    margin-bottom: -30px;
}
.step-box h4 { position: relative; font-weight: 700; color: var(--red); }

/* FEATURE LIST */
.feature-list { list-style: none; padding: 0; }
.feature-list li { margin-bottom: 15px; font-size: 17px; }
.feature-list i { color: var(--red); margin-right: 10px; }

/* ANIMATIONS */
@keyframes floating {
    from { transform: translateY(0px); }
    to { transform: translateY(-20px); }
}
.floating-anim { animation: floating 2s infinite alternate ease-in-out; }

.text-red { color: #ff0000; }
.line-red { width: 80px; height: 4px; background: #ff0000; margin-top: 10px; }

.product-box {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    transition: all 0.4s ease;
    border: 1px solid #eee;
}

.product-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(255, 0, 0, 0.2);
    border-color: #ff0000;
}

.img-placeholder {
    position: relative;
    height: 220px;
    overflow: hidden;
    background: #f8f8f8;
}

.img-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s ease;
}

.product-box:hover .img-placeholder img {
    transform: scale(1.1);
}

.play-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 40px;
    opacity: 0;
    transition: 0.3s ease;
    text-decoration: none;
}

.product-box:hover .play-overlay {
    opacity: 1;
}

.play-overlay i {
    text-shadow: 0 0 20px rgba(255, 0, 0, 0.8);
}

.view-demo {
    color: #ff0000;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.view-demo:hover {
    text-decoration: underline;
    color: #000;
}

/* --- FAQ Styling --- */
.faq-section {
    background-color: #f8f9fa;
}

.line-red {
    width: 60px;
    height: 4px;
    background: #ff0000;
    margin-top: 10px;
}

/* Accordion Item Styling */
.custom-faq .accordion-item {
    border-radius: 10px !important;
    overflow: hidden;
}

.custom-faq .accordion-button {
    background-color: #ffffff;
    color: #333;
    padding: 20px;
    font-size: 17px;
    box-shadow: none !important;
}

.custom-faq .accordion-button:not(.collapsed) {
    background-color: #ffffff;
    color: #ff0000;
    border-bottom: 1px solid #f1f1f1;
}

/* Red Arrow for Accordion */
.custom-faq .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ff0000'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.custom-faq .accordion-body {
    background-color: #fff;
    line-height: 1.8;
    font-size: 15px;
}

.text-red {
    color: #ff0000 !important;
}

/* Hover Effect */
.custom-faq .accordion-item:hover {
    transform: translateX(5px);
    transition: 0.3s ease;
}

/* --- Hero Premium Styling --- */
.hero-premium {
    background: linear-gradient(135deg, #ffffff 0%, #f4f4f4 100%);
    /* padding: 120px 0 80px; */
    position: relative;
    overflow: hidden;
    border-bottom: 5px solid #ff0000;
}

.badge-gaming {
    background: rgba(255, 0, 0, 0.1);
    color: #ff0000;
    padding: 8px 20px;
    font-weight: 700;
    font-size: 13px;
    border-radius: 50px;
    letter-spacing: 1px;
    display: inline-block;
    border: 1px solid rgba(255, 0, 0, 0.2);
}

.main-title {
    font-size: 40px;
    font-weight: 800;
    line-height: 1.1;
    color: #111;
}

.text-red {
    color: #ff0000;
}

.hero-desc {
    font-size: 18px;
    color: #555;
    margin: 25px 0;
    line-height: 1.6;
    max-width: 600px;
}

/* Feature Tags */
.feat-tag {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    background: #fff;
    padding: 5px 12px;
    border-radius: 5px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

/* Buttons */
.btn-main {
    background: #ff0000;
    color: #fff !important;
    padding: 15px 35px;
    font-weight: 700;
    border-radius: 5px;
    text-decoration: none;
    transition: 0.3s;
    box-shadow: 0 10px 20px rgba(255, 0, 0, 0.3);
}

.btn-main:hover {
    background: #000;
    transform: translateY(-3px);
}

.btn-wa {
    background: #25D366;
    color: #fff !important;
    padding: 15px 35px;
    font-weight: 700;
    border-radius: 5px;
    text-decoration: none;
    transition: 0.3s;
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.2);
}

.btn-wa:hover {
    background: #1eb954;
    transform: translateY(-3px);
}

/* Image & Animation */
.hero-image-container {
    position: relative;
   
}

.floating-anim {
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

.experience-tag {
    position: absolute;
    bottom: 20px;
    left: 0;
    background: #000;
    color: #fff;
    padding: 15px 25px;
    border-radius: 10px;
    border-left: 5px solid #ff0000;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.experience-tag strong {
    font-size: 24px;
    display: block;
    color: #ff0000;
}

.experience-tag span {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* --- Added Styles for WhatsApp --- */
.header-wa-btn {
    background: #25d366;
    color: white !important;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 20px;
    transition: 0.3s;
    text-decoration: none;
}
.header-wa-btn:hover {
    background: #128c7e;
    transform: scale(1.1);
}

/* Floating Button CSS */
.floating-wa {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25d366;
    color: white !important;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    z-index: 9999;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    text-decoration: none;
    transition: 0.3s;
}
.floating-wa:hover {
    transform: scale(1.1);
    background: #128c7e;
}

/* Tooltip on hover */
.wa-tooltip {
    position: absolute;
    right: 75px;
    background: #333;
    color: #fff;
    padding: 5px 15px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
}
.floating-wa:hover .wa-tooltip {
    opacity: 1;
    visibility: visible;
}

/* Animation for attention */
.floating-wa i {
    animation: wa-shake 2s infinite;
}
@keyframes wa-shake {
    0%, 90%, 100% { transform: rotate(0); }
    92% { transform: rotate(10deg); }
    94% { transform: rotate(-10deg); }
    96% { transform: rotate(10deg); }
    98% { transform: rotate(-10deg); }
}

@media (max-width: 768px) {
    .floating-wa { bottom: 20px; right: 20px; width: 50px; height: 50px; font-size: 28px; }
}

/* --- About Page Styles --- */
.tracking-widest { letter-spacing: 4px; }
.fw-extrabold { font-weight: 800; }

.about-hero {
    background: #fdfdfd;
    padding: 100px 0 60px;
}

.line-red { width: 80px; height: 5px; background: #ff0000; margin-top: 15px; }

/* Image Stack */
.about-image-stack { position: relative; }
.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: #ff0000;
    color: #fff;
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(255, 0, 0, 0.4);
}
.experience-badge .num { font-size: 40px; font-weight: 800; display: block; line-height: 1; }
.experience-badge .txt { font-size: 12px; font-weight: 600; text-transform: uppercase; }

/* Philosophy Cards */
.philo-card {
    background: #222;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: 0.4s ease;
    height: 100%;
    border-bottom: 5px solid transparent;
}
.philo-card i { font-size: 45px; color: #ff0000; }
.philo-card h4 { font-weight: 700; margin: 20px 0; }
.philo-card:hover { transform: translateY(-10px); background: #333; border-color: #ff0000; }
.philo-card.active { border-color: #ff0000; background: #333; }

/* Icon Box */
.icon-sm {
    width: 60px; height: 60px; background: #fff1f1;
    color: #ff0000; border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 24px; flex-shrink: 0;
}

/* CTA Gradient */
.bg-red-gradient {
    background: linear-gradient(135deg, #ff0000 0%, #b30000 100%);
}

.counter { font-size: 45px; color: #ff0000; margin-bottom: 5px; }

/* Product Page Specific CSS */
.bg-red { background: #ff0000; }

.products-banner {
    background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), url('../img/product-bg.jpg');
    background-size: cover;
    background-position: center;
}

.product-card-premium {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: 0.4s;
    height: 100%;
    border: 1px solid #eee;
}

.product-card-premium:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border-color: #ff0000;
}

.product-img-wrap {
    position: relative;
    height: 200px;
    background: #f9f9f9;
    overflow: hidden;
}

.product-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

.product-card-premium:hover .product-img-wrap img {
    transform: scale(1.1);
}

.stock-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #28a745;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 20px;
    text-transform: uppercase;
}

.product-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.3s;
}

.product-card-premium:hover .product-overlay {
    opacity: 1;
}

.overlay-yt {
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    border: 2px solid #fff;
    padding: 8px 15px;
    border-radius: 50px;
}

.overlay-yt:hover {
    background: #ff0000;
    border-color: #ff0000;
    color: #fff;
}

.product-title {
    font-size: 16px;
    font-weight: 700;
    color: #111;
    margin-bottom: 5px;
}

.price-tag {
    color: #ff0000;
    font-weight: 800;
    font-size: 15px;
}

.btn-buy-wa {
    background: #25d366;
    color: #fff !important;
    text-decoration: none;
    text-align: center;
    padding: 10px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 14px;
    transition: 0.3s;
}

.btn-buy-wa:hover {
    background: #1eb954;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
}

@media (max-width: 576px) {
    .product-img-wrap { height: 160px; }
    .product-title { font-size: 14px; }
}

/* --- Contact Page Styles --- */
.contact-hero {
    background: linear-gradient(rgba(0,0,0,0.85), rgba(0,0,0,0.85)), url('../img/contact-bg.jpg');
    background-size: cover;
    padding: 80px 0;
}

.icon-box-red {
    width: 50px;
    height: 50px;
    background: #ff0000;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-size: 20px;
    flex-shrink: 0;
}

.custom-input {
    border: 1px solid #ddd;
    padding: 12px 15px;
    border-radius: 8px;
    font-size: 15px;
}

.custom-input:focus {
    border-color: #ff0000;
    box-shadow: 0 0 0 0.25rem rgba(255, 0, 0, 0.1);
}

.btn-submit-red {
    background: #ff0000;
    color: #fff;
    border: none;
    padding: 15px;
    border-radius: 8px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.3s;
}

.btn-submit-red:hover {
    background: #000;
    transform: translateY(-3px);
}

.social-circle {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: #ff0000;
    border: 1px solid #eee;
    border-radius: 50%;
    text-decoration: none;
    transition: 0.3s;
}

.social-circle:hover {
    background: #ff0000;
    color: #fff;
}

/* --- Footer Styling --- */
.site-footer {
    background: #0a0a0a;
    color: #fff;
    border-top: 4px solid #ff0000;
}

.footer-logo {
    height: 55px;
    filter: brightness(0) invert(1); /* Makes logo white for dark bg */
}

.footer-heading {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 18px;
    position: relative;
    padding-bottom: 10px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background: #ff0000;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #bbb;
    text-decoration: none;
    transition: 0.3s;
    font-size: 15px;
}

.footer-links a:hover {
    color: #ff0000;
    padding-left: 10px;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    color: #bbb;
    font-size: 15px;
}

.footer-socials .social-link {
    display: inline-flex;
    width: 40px;
    height: 40px;
    background: #222;
    color: #fff;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 10px;
    transition: 0.3s;
    text-decoration: none;
}

.footer-socials .social-link:hover {
    background: #ff0000;
    transform: translateY(-5px);
}

.footer-wa-btn {
    background: #25d366;
    color: #fff !important;
    padding: 10px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 700;
    display: inline-block;
    transition: 0.3s;
}

.footer-wa-btn:hover {
    background: #128c7e;
    transform: scale(1.05);
}

.footer-bottom {
    background: #000;
    border-top: 1px solid #222;
}

.text-red { color: #ff0000; }