.jmt-forum-layout {
    min-height: 100vh;
}

.jmt-forum-hero {
    background: linear-gradient(135deg, rgba(147, 51, 234, 0.1), rgba(236, 72, 153, 0.1));
}

.jmt-forum-topics {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.jmt-forum-topics::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(147, 51, 234, 0.1), transparent);
    transition: left 1s ease;
    animation: jmtForumGlow 4s ease-in-out infinite;
}

@keyframes jmtForumGlow {
    0%, 100% {
        left: -100%;
    }
    50% {
        left: 100%;
    }
}

.jmt-topic-item {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.jmt-topic-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(147, 51, 234, 0.15);
}

.jmt-topic-badge {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.jmt-topic-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.jmt-topic-item:hover .jmt-topic-badge::before {
    left: 100%;
}

@media (max-width: 768px) {
    .jmt-forum-topics {
        padding: 1.5rem;
    }
    
    .jmt-topic-item {
        padding: 1.5rem;
    }
}