/*
Theme Name: Getinhost
Theme URI: https://getinhost.COM
Author: Getinhost Team
Author URI: https://getinhost.COM
Description: A premium domain & hosting theme with space/galaxy aesthetics and glassmorphism UI. Fully customizable via admin panel.
Version: 1.0.0
License: GPL v2 or later
Text Domain: getinhost
Tags: hosting, domain, business, dark-mode, responsive, custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready
*/

/* Theme screenshot will be added via WordPress admin */

/* ক্যাটাগরি মেনুর জন্য স্টাইল */
.categories-menu {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 0.5rem;
    padding-top: 0.75rem;
}

/* ভিডিও কার্ডের জন্য স্টাইল */
.video-card {
    transition: transform 0.3s ease;
}

.video-card:hover {
    transform: translateY(-5px);
}

.video-card .play-button {
    transition: all 0.3s ease;
}

.video-card:hover .play-button {
    transform: scale(1.1);
}

/* ব্লগ কার্ডের জন্য স্টাইল */
.blog-card {
    transition: all 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

/* রেসপনসিভ অ্যাডজাস্টমেন্ট */
@media (max-width: 768px) {
    .categories-menu ul {
        flex-direction: column;
        align-items: center;
    }
    
    .categories-menu li {
        margin: 0.25rem 0;
    }
}