/* --- Footer & Clock Styling --- */
.main-footer {
    background: #090b14;
    padding: 40px 20px;
    border-top: 1px solid rgba(103, 238, 73, 0.1);
    margin-top: 50px;
    color: #fff;
}

.footer-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.footer-section {
    flex: 1;
    min-width: 250px;
    margin-bottom: 20px;
}

.footer-title { color: #67EE49; margin-bottom: 10px; }
.copyright-text { color: #b0b8c9; font-size: 0.9rem; line-height: 1.6; }
.dev-link { cursor: pointer; transition: 0.3s; }
.dev-link:hover { color: #67EE49; }

/* Clock Box */
.clock-box { text-align: center; }
.digital-clock-wrapper {
    background: #15182a;
    padding: 15px 25px;
    border-radius: 12px;
    border: 1px solid #67EE49;
    display: inline-block;
    transition: box-shadow 0.5s ease-in-out;
}

#digital-clock {
    color: #67EE49;
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-shadow: 0 0 10px rgba(103, 238, 73, 0.5);
    font-family: 'Courier New', Courier, monospace;
}

.clock-label {
    margin: 5px 0 0;
    font-size: 0.8rem;
    color: #3dadff;
    text-transform: uppercase;
    font-weight: bold;
}

/* Links & Social */
.links-social { text-align: right; }
.policy-links a {
    color: #fff;
    text-decoration: none;
    margin-left: 15px;
    font-size: 0.9rem;
}
.policy-links a:hover { color: #67EE49; }

.social-links { margin-top: 20px; }
.social-links a {
    color: #fff;
    text-decoration: none;
    margin-left: 15px;
}
.admin-link { color: #67EE49 !important; font-weight: bold; }

/* Responsive */
@media (max-width: 768px) {
    .footer-container { flex-direction: column; text-align: center; }
    .links-social { text-align: center; }
    .policy-links a { margin: 0 7px; }
}

/* ইউনিক কন্টেইনার */
.mkt-button-group {
    display: flex;
    gap: 10px;
    padding: 10px 0;
    width: 100%;
}

/* ইউনিক বাটন ক্লাস - যেন অন্য কোথাও ডিজাইন নষ্ট না হয় */
.custom-btn-mkt {
    flex: 1;
    padding: 12px 5px;
    border-radius: 8px;
    text-decoration: none !important;
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: 0.3s;
    color: white !important;
    border: none !important;
    outline: none !important;
}

/* বিস্তারিত বাটন কালার */
.btn-details-mkt {
    background-color: #6366f1 !important;
}

/* ভিডিও গ্যালারি বাটন কালার */
.btn-gallery-mkt {
    background-color: #2ecc71 !important;
}

/* হোভার ইফেক্ট */
.custom-btn-mkt:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

/* আইকন সাইজ */
.custom-btn-mkt i {
    font-size: 16px;
}