/* 
 * TubePelis Custom Theme Overrides 
 * Changes primary accent color to Cyan/Neon Blue
 */

:root {
  --tp-primary: #00bfff;
  --tp-primary-hover: #00a2d9;
  --tp-bg-dark: #0f172a;
  --tp-bg-darker: #0b1121;
}

/* Override existing borders and buttons that were yellow */
.bkcnpels, .titbkcnt, #ft, .btn_g {
    border-color: var(--tp-primary) !important;
}
.btn_g, .telegram-float {
    background-color: var(--tp-primary) !important;
}
.btn_g:hover, .telegram-float:hover {
    background-color: var(--tp-primary-hover) !important;
}

/* Custom Footer Design */
.tubepelis-footer {
    background: var(--tp-bg-dark);
    border-top: 3px solid var(--tp-primary);
    padding: 40px 20px 20px;
    color: #cbd5e1;
    font-family: 'Inter', sans-serif;
    margin-top: 30px;
}
.tubepelis-footer .footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
}
.footer-brand {
    flex: 1 1 300px;
}
.footer-brand .footer-logo {
    max-width: 200px;
    margin-bottom: 15px;
}
.footer-brand .footer-desc {
    font-size: 14px;
    line-height: 1.6;
    color: #94a3b8;
}
.footer-links, .footer-legal {
    flex: 1 1 200px;
}
.tubepelis-footer h4 {
    color: #fff;
    font-size: 16px;
    margin-bottom: 20px;
    font-weight: 600;
    position: relative;
    padding-bottom: 10px;
}
.tubepelis-footer h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--tp-primary);
}
.tubepelis-footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.tubepelis-footer ul li {
    margin-bottom: 12px;
}
.tubepelis-footer ul li a {
    color: #cbd5e1;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s ease;
}
.tubepelis-footer ul li a:hover {
    color: var(--tp-primary);
}
.footer-telegram {
    display: inline-block;
    background: var(--tp-primary);
    color: #fff !important;
    padding: 8px 16px;
    border-radius: 4px;
    font-weight: 600;
    transition: background 0.3s ease;
    margin-top: 5px;
}
.footer-telegram:hover {
    background: var(--tp-primary-hover);
    color: #fff !important;
}
.footer-bottom {
    max-width: 1200px;
    margin: 40px auto 0;
    padding-top: 20px;
    border-top: 1px solid #1e293b;
    text-align: center;
    font-size: 13px;
    color: #64748b;
}

/* Telegram Floating Button Adjustments */
.telegram-float {
    background: var(--tp-primary) !important;
    box-shadow: 0 4px 15px rgba(0, 191, 255, 0.4) !important;
}
@keyframes pulse-telegram {
    0% { box-shadow: 0 0 0 0 rgba(0, 191, 255, 0.7); }
    70% { box-shadow: 0 0 0 12px rgba(0, 191, 255, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 191, 255, 0); }
}
