/* =========================================
   1. GLOBAL NEW YEAR THEME (Professional Cyan)
   ========================================= */
:root {
    --brand-cyan: #06b6d4; /* Your Professional Cyan */
    --deep-bg: #050A0F;    /* Deep Midnight Navy */
    --cyan-glow: rgba(0, 255, 255, 0.4);
}

/* Force Cyan Buttons Everywhere */
.template-btn,
.template-btn.primary-btn,
.template-btn.secondary-btn,
div.friday-hosting-offer a.template-btn.primary-btn,
.black-friday-pricing-wrapper .template-btn,
.vps-pricing-table a.template-btn,
.footer-sb-form .template-btn,
.h5-domain-search-form .template-btn {
    background: var(--brand-cyan) !important;
    background-color: var(--brand-cyan) !important;
    border-color: var(--brand-cyan) !important;
    color: #000000 !important; /* Black text for readability on Cyan */
    font-weight: 700 !important;
    background-image: none !important;
    box-shadow: 0 4px 15px var(--cyan-glow) !important;
    transition: all 0.3s ease-in-out !important;
}

.template-btn:hover {
    background-color: #e6ffff !important; /* Lighter Cyan on hover */
    box-shadow: 0 6px 20px rgba(0, 255, 255, 0.6) !important;
    transform: translateY(-3px);
}

/* Festive Pulse Animation for New Year */
@keyframes pulse-cyan {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(0, 255, 255, 0.7); }
    70% { transform: scale(1.05); box-shadow: 0 0 0 15px rgba(0, 255, 255, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(0, 255, 255, 0); }
}
.pulse-effect {
    animation: pulse-cyan 2s infinite;
}

/* =========================================
   2. PRICING CARDS & TABS
   ========================================= */
.custom-bf-tabs .nav-link.active {
    background-color: var(--brand-cyan) !important;
    color: #000 !important;
    box-shadow: 0 4px 10px var(--cyan-glow);
}

/* Lifetime Deal Glow - Updated for 2026 */
.lifetime-deal {
    border: 2px solid var(--brand-cyan) !important;
    box-shadow: 0 0 25px rgba(0, 255, 255, 0.15) !important;
}
.lifetime-deal::after {
    content: "2026 BEST VALUE" !important;
    background: var(--brand-cyan) !important;
    color: #000 !important;
}

/* Badges */
.save-badge {
    background: rgba(0, 255, 255, 0.1); 
    color: var(--brand-cyan);
}
.discount-badge {
    color: var(--brand-cyan) !important;
    border: 1px solid var(--brand-cyan);
}

/* =========================================
   3. VPS PRICING TABLE (Cyan Accents)
   ========================================= */
body .vps-pricing-table table thead tr th.popular-column {
    border-top: 4px solid var(--brand-cyan) !important;
}

.popular-badge {
    background-color: var(--brand-cyan) !important; 
    color: #000 !important;
    box-shadow: 0 2px 10px var(--cyan-glow) !important;
}

.vps-pricing-table .price-stack h4 { 
    color: var(--brand-cyan) !important; 
}

/* =========================================
   4. DOMAIN SECTION & FOOTER
   ========================================= */
.domain-sale-ribbon {
    background: var(--brand-cyan) !important; 
    color: #000 !important;
}

.footer-nav li a:hover { 
    color: var(--brand-cyan) !important; 
}
.social-nav li a:hover { 
    background: var(--brand-cyan) !important; 
    color: #000 !important; 
}

/* =========================================
   5. LIVE STOCK DOT (Cyan)
   ========================================= */
.blink-dot {
    background-color: var(--brand-cyan) !important;
}
/* Sleek Midnight Background with a soft glow */
.new-year-hero {
    background: #050a0f; /* Base dark color */
    background-image: 
        radial-gradient(at 0% 0%, rgba(110, 0, 255, 0.15) 0px, transparent 50%), 
        radial-gradient(at 100% 0%, rgba(0, 255, 255, 0.1) 0px, transparent 50%);
    padding: 100px 0;
}

/* Glassmorphism Timer */
.countdown-timer li .box {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(0, 255, 255, 0.3) !important;
    backdrop-filter: blur(5px);
    color: #00FFFF !important; /* Professional Cyan */
    border-radius: 10px;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Subtitle under timer */
.countdown-timer li .subtitle {
    color: #ffffff;
    opacity: 0.7;
    margin-top: 10px;
}
/* 1. Global Background Fix */
.gb-hero {
    background-color: #050a0f; /* Base dark blue */
    background-image: radial-gradient(circle at 70% 30%, rgba(0, 255, 255, 0.08) 0%, transparent 50%);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

/* 2. Professional Cyan Utility Classes */
.clr-cyan { color: #00FFFF !important; }
.bgc-cyan { background-color: #00FFFF !important; }
.clr-black { color: #000000 !important; }

/* 3. Glassmorphism Countdown Timer */
.countdown-timer { list-style: none; padding: 0; gap: 15px; }
.countdown-timer li { text-align: center; }
.countdown-timer .box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(0, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    color: #00FFFF;
    font-size: 24px;
    font-weight: 700;
    width: 65px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
}
.countdown-timer .subtitle {
    display: block;
    font-size: 12px;
    color: #fff;
    margin-top: 8px;
    opacity: 0.6;
    text-transform: uppercase;
}

/* 4. Soft Hero Glow behind images */
.cyan-glow-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0, 255, 255, 0.15) 0%, transparent 70%);
    z-index: -1;
}

/* 5. Payment Badges */
.pay-badge {
    background: rgba(255, 255, 255, 0.05);
    padding: 6px 12px;
    border-radius: 6px;
    color: #fff;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(0, 255, 255, 0.1);
}

.tech-element-cyan {
    filter: hue-rotate(180deg) brightness(1.5);
    opacity: 0.3;
}
/* --- Global Improvements --- */
:root {
    --brand-cyan: #00FFFF;
    --dark-navy: #050a0f;
}

.gb-hero {
    background-color: var(--dark-navy);
    padding: 120px 0;
    overflow: hidden;
}

/* --- Title & Text Effects --- */
.glow-text {
    text-shadow: 0 0 15px rgba(0, 255, 255, 0.5);
    letter-spacing: 1px;
}

.text-gradient-cyan {
    background: linear-gradient(90deg, #fff, var(--brand-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* --- Glassmorphism Timer --- */
.glass-timer {
    gap: 15px;
    padding: 0;
}

.timer-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(0, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 10px;
    min-width: 75px;
    transition: transform 0.3s ease;
}

.timer-box:hover {
    transform: translateY(-5px);
    border-color: var(--brand-cyan);
    box-shadow: 0 5px 15px rgba(0, 255, 255, 0.2);
}

.timer-box .box {
    font-size: 28px !important;
    font-weight: 800 !important;
    color: var(--brand-cyan) !important;
    display: block;
    line-height: 1;
}

.timer-box .subtitle {
    font-size: 11px !important;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6) !important;
    margin-top: 5px;
    display: block;
}

/* --- CTA Button Pulse --- */
.btn-glow-pulse {
    position: relative;
    box-shadow: 0 0 0 0 rgba(0, 255, 255, 0.7);
    animation: pulse-cyan 2s infinite;
    transition: all 0.3s ease;
}

.btn-glow-pulse:hover {
    transform: scale(1.05);
    background-color: #fff !important;
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.8);
}

@keyframes pulse-cyan {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 255, 255, 0.4);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(0, 255, 255, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(0, 255, 255, 0);
    }
}

/* --- Payment Badges --- */
.pay-badge-modern {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 6px 12px;
    border-radius: 6px;
    color: #fff;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s;
}

.pay-badge-modern:hover {
    background: rgba(0, 255, 255, 0.1);
    border-color: var(--brand-cyan);
}

/* --- Hero Image Animations --- */
.floating-anim {
    animation: floating 4s ease-in-out infinite;
}

@keyframes floating {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

.rotating-slow {
    animation: rotate 20s linear infinite;
    opacity: 0.2;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.cyan-outer-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(0, 255, 255, 0.15) 0%, transparent 70%);
    z-index: 0;
    filter: blur(40px);
}
/* Happy New Year Text Overlay */
.hny-text-overlay {
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.6);
    color: #ffffff;
    font-size: 50px;
    font-weight: 950;
    text-transform: uppercase;
    opacity: 0;
    z-index: 100;
}

/* Container for the snow */
#snow-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
}

.snowflake {
    position: absolute;
    top: -10px;
    background: white;
    border-radius: 50%;
    opacity: 0.8;
    pointer-events: none;
    animation: fall linear infinite;
}

@keyframes fall {
    to {
        transform: translateY(100vh);
    }
}
/* 1. Slim Wrapper Fix */
.ny-tabs-wrapper {
    display: inline-flex;
    /* Forces the container to wrap tightly around content */
    background: #fcfdfe;
    /* Matches the clean white/light theme */
    padding: 5px;
    /* Tight inner spacing */
    border-radius: 100px;
    /* Perfect pill shape */
    border: 1px solid #eef2f6;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    margin: 0 auto 30px auto;
    /* Centers the container */
}

/* 2. List Reset (Crucial for removing unwanted bulk) */
.custom-ny-tabs {
    border: none !important;
    gap: 2px !important;
    /* Minimal gap between tab buttons */
    margin: 0 !important;
    /* Removes default UL margins */
    padding: 0 !important;
    /* Removes default UL paddings */
    list-style: none !important;
    display: flex !important;
    flex-wrap: nowrap !important;
}

/* 3. Slim Professional Buttons */
.custom-ny-tabs .nav-link {
    padding: 6px 16px !important;
    /* Slimmer height and width */
    font-size: 13.5px !important;
    /* Sharp, readable text */
    font-weight: 600 !important;
    border-radius: 100px !important;
    color: #5e6d82 !important;
    /* Modern slate gray */
    background: transparent !important;
    transition: all 0.25s ease-in-out !important;
    white-space: nowrap !important;
    border: none !important;
}

/* 4. Active Tab Branding (Professional Cyan) */
.custom-ny-tabs .nav-link.active {
    background-color: #00FFFF !important;
    /* Owrbit Cyan */
    color: #000000 !important;
    /* Black for readability */
    box-shadow: 0 3px 10px rgba(0, 255, 255, 0.35) !important;
}

/* 5. Mobile Fix: Horizontal Scroll on Small Screens */
/* --- Final Mobile Grid Fix --- */
@media (max-width: 768px) {

    /* 1. Remove the large container background to save space */
    .ny-tabs-wrapper {
        display: block !important;
        background: transparent !important;
        border: none !important;
        box-shadow: none !important;
        padding: 0 !important;
        width: 100% !important;
    }

    /* 2. Create a 2-column grid layout for all items */
    .custom-ny-tabs {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        /* 2 items per row */
        gap: 8px !important;
        /* Small gap between buttons */
        justify-content: stretch !important;
        overflow-x: visible !important;
        /* Disables scrolling */
        white-space: normal !important;
        /* Allows text to wrap if needed */
    }

    /* 3. Ensure buttons fill the grid and stay slim */
    .custom-ny-tabs .nav-link {
        width: 100% !important;
        padding: 10px 5px !important;
        /* Compact padding for small screens */
        font-size: 12px !important;
        text-align: center !important;
        background: #f8fafc !important;
        /* Light background for inactive tabs */
        border: 1px solid #e2e8f0 !important;
        margin: 0 !important;
    }

    /* 4. Keep the active button glowing */
    .custom-ny-tabs .nav-link.active {
        background-color: #00FFFF !important;
        color: #000000 !important;
        box-shadow: 0 4px 10px rgba(0, 255, 255, 0.3) !important;
        border: none !important;
    }
}
.ny-pricing-chat-pill {
    display: inline-flex;
    align-items: center;
    background: #f0fdff !important;
    /* Very light cyan tint */
    border: 1px dashed #00FFFF !important;
    /* Thin dashed cyan border */
    padding: 5px 15px !important;
    border-radius: 50px !important;
    font-size: 13px !important;
    color: #334155 !important;
    margin-top: 15px;
}

.ny-pricing-chat-pill a {
    color: #00b8d4 !important;
    /* Deeper Cyan for text contrast */
    font-weight: 800 !important;
    text-decoration: none !important;
    margin-left: 6px;
}
@keyframes pulse-cyan {
    0% {
        opacity: 0.3;
        transform: scale(1);
    }
        
    50% {
        opacity: 0.6;
        transform: scale(1.02);
    }
        
    100% {
        opacity: 0.3;
        transform: scale(1);
    }
}
        
/* Optional: Hover effect for TLD items */
.tld-item:hover {
    border-color: #0891b2 !important;
    background: #f0f9ff !important;
    transition: all 0.3s ease;
}