/* Version 3: Dynamic Design with Sparkles */

/* Override forum-wrapper and forum-container max-width for v3 to use full width */
.forum-wrapper:has(.homepage-v3-wrapper) {
    max-width: 100% !important;
    padding: 0 !important;
    width: 100% !important;
}

.forum-container:has(.homepage-v3-wrapper) {
    max-width: 100% !important;
    width: 100% !important;
    padding: 0 !important;
}

.homepage-v3-wrapper {
    padding: 0;
    max-width: 100%;
    margin: 0;
    width: 100%;
    position: relative;
    min-height: 100vh;
    box-sizing: border-box;
}

/* Ensure full width for v3 content */
.homepage-v3-wrapper .hero-v3,
.homepage-v3-wrapper .stats-grid-v3,
.homepage-v3-wrapper .news-section-v3,
.homepage-v3-wrapper .main-layout-v3 {
    max-width: 100%;
    width: 100%;
}

/* Sparkles Container */
.sparkles-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.sparkle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #ffffff;
    border-radius: 50%;
    box-shadow: 0 0 6px rgba(255, 255, 255, 0.8),
                0 0 12px rgba(102, 126, 234, 0.6),
                0 0 18px rgba(118, 75, 162, 0.4);
    animation: sparkleFloat 3s ease-in-out infinite;
    opacity: 0;
}

.sparkle:nth-child(2n) {
    width: 3px;
    height: 3px;
    animation-duration: 4s;
    animation-delay: 0.5s;
}

.sparkle:nth-child(3n) {
    width: 5px;
    height: 5px;
    animation-duration: 5s;
    animation-delay: 1s;
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.9),
                0 0 16px rgba(240, 147, 251, 0.7),
                0 0 24px rgba(118, 75, 162, 0.5);
}

@keyframes sparkleFloat {
    0% {
        opacity: 0;
        transform: translateY(0) scale(0);
    }
    10% {
        opacity: 1;
        transform: translateY(-10px) scale(1);
    }
    90% {
        opacity: 1;
        transform: translateY(-100px) scale(1);
    }
    100% {
        opacity: 0;
        transform: translateY(-120px) scale(0);
    }
}

/* Sparkles Overlay for Cards */
.sparkles-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
    border-radius: inherit;
}

.sparkles-overlay .sparkle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: #ffffff;
    border-radius: 50%;
    box-shadow: 0 0 4px rgba(255, 255, 255, 0.8),
                0 0 8px rgba(102, 126, 234, 0.6);
    animation: sparkleCard 2s ease-in-out infinite;
    opacity: 0;
}

@keyframes sparkleCard {
    0%, 100% {
        opacity: 0;
        transform: scale(0);
    }
    50% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Hero Section */
.hero-v3 {
    position: relative;
    padding: 80px 24px;
    margin-bottom: 40px;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.2) 0%, rgba(118, 75, 162, 0.2) 50%, rgba(240, 147, 251, 0.2) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    z-index: 1;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.hero-v3::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.hero-content-v3 {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 32px;
    max-width: 100%;
    margin: 0 auto;
}

.hero-logo-v3 {
    position: relative;
    flex-shrink: 0;
}

.logo-glow-v3 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 140px;
    height: 140px;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.4) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulseGlow 3s ease-in-out infinite;
    filter: blur(20px);
}

@keyframes pulseGlow {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.3);
        opacity: 0.8;
    }
}

.logo-img-v3 {
    width: 100px;
    height: 100px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(102, 126, 234, 0.5),
                0 0 60px rgba(118, 75, 162, 0.3);
    position: relative;
    z-index: 1;
    animation: logoFloat 4s ease-in-out infinite;
}

@keyframes logoFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.hero-text-v3 {
    flex: 1;
}

.hero-title-v3 {
    font-size: 48px;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 16px 0;
    text-shadow: 0 2px 20px rgba(102, 126, 234, 0.5),
                 0 0 40px rgba(118, 75, 162, 0.3);
    animation: titleGlow 3s ease-in-out infinite;
}

@keyframes titleGlow {
    0%, 100% {
        text-shadow: 0 2px 20px rgba(102, 126, 234, 0.5),
                     0 0 40px rgba(118, 75, 162, 0.3);
    }
    50% {
        text-shadow: 0 2px 30px rgba(102, 126, 234, 0.8),
                     0 0 60px rgba(118, 75, 162, 0.5);
    }
}

.hero-subtitle-v3 {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.3);
}

/* Stats Grid with Sparkles */
.stats-grid-v3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    margin-bottom: 40px;
    padding: 0 24px;
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.stat-card-v3 {
    position: relative;
    background: rgba(47, 49, 54, 0.7);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 28px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.stat-card-v3::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.2) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    animation: rotate 15s linear infinite;
}

.stat-card-v3:hover::before {
    opacity: 1;
}

.stat-card-v3:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.4),
                0 0 40px rgba(118, 75, 162, 0.3);
    border-color: rgba(255, 255, 255, 0.3);
}

.stat-icon-v3 {
    width: 70px;
    height: 70px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
}

.stat-card-v3:hover .stat-icon-v3 {
    transform: scale(1.1) rotate(5deg);
}

.stat-members-v3 .stat-icon-v3 {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.4), rgba(118, 75, 162, 0.4));
    color: #667eea;
    box-shadow: 0 0 20px rgba(102, 126, 234, 0.5);
}

.stat-threads-v3 .stat-icon-v3 {
    background: linear-gradient(135deg, rgba(87, 242, 135, 0.4), rgba(46, 213, 115, 0.4));
    color: #57F287;
    box-shadow: 0 0 20px rgba(87, 242, 135, 0.5);
}

.stat-posts-v3 .stat-icon-v3 {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.4), rgba(255, 152, 0, 0.4));
    color: #FFC107;
    box-shadow: 0 0 20px rgba(255, 193, 7, 0.5);
}

.stat-online-v3 .stat-icon-v3 {
    background: linear-gradient(135deg, rgba(237, 66, 69, 0.4), rgba(231, 29, 54, 0.4));
    color: #ED4245;
    box-shadow: 0 0 20px rgba(237, 66, 69, 0.5);
}

.stat-content-v3 {
    flex: 1;
    position: relative;
    z-index: 2;
}

.stat-value-v3 {
    font-size: 36px;
    font-weight: 800;
    color: var(--discord-text-primary, #ffffff);
    line-height: 1.2;
    margin-bottom: 8px;
    text-shadow: 0 0 10px rgba(102, 126, 234, 0.3);
}

.stat-label-v3 {
    font-size: 14px;
    color: var(--discord-text-secondary, #b9bbbe);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* News Section */
.news-section-v3 {
    margin-bottom: 40px;
    padding: 0 24px;
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.news-card-v3 {
    position: relative;
    background: rgba(47, 49, 54, 0.7);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.4s ease;
}

.news-card-v3:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 70px rgba(102, 126, 234, 0.4),
                0 0 50px rgba(118, 75, 162, 0.3);
    border-color: rgba(255, 255, 255, 0.3);
}

.news-image-v3 {
    width: 100%;
    height: 320px;
    overflow: hidden;
    position: relative;
}

.news-image-v3 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.news-card-v3:hover .news-image-v3 img {
    transform: scale(1.1);
}

.news-content-v3 {
    padding: 36px;
    position: relative;
    z-index: 2;
}

.news-meta-v3 {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
    font-size: 13px;
    color: var(--discord-text-secondary, #b9bbbe);
}

.news-date-v3,
.news-author-v3 {
    display: flex;
    align-items: center;
    gap: 8px;
}

.news-title-v3 {
    font-size: 36px;
    font-weight: 800;
    color: var(--discord-text-primary, #ffffff);
    margin: 0 0 20px 0;
    line-height: 1.3;
    text-shadow: 0 0 20px rgba(102, 126, 234, 0.3);
}

.news-excerpt-v3 {
    font-size: 17px;
    line-height: 1.8;
    color: var(--discord-text-secondary, #b9bbbe);
    margin: 0 0 28px 0;
}

.news-actions-v3 {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.btn-v3 {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-v3::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-v3:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary-v3 {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.5),
                0 0 30px rgba(118, 75, 162, 0.3);
}

.btn-primary-v3:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.7),
                0 0 50px rgba(118, 75, 162, 0.5);
}

.btn-secondary-v3 {
    background: rgba(47, 49, 54, 0.8);
    color: var(--discord-text-primary, #ffffff);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary-v3:hover {
    background: rgba(54, 57, 63, 0.9);
    border-color: rgba(102, 126, 234, 0.6);
    box-shadow: 0 0 20px rgba(102, 126, 234, 0.3);
}

/* Main Layout */
.main-layout-v3 {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 28px;
    align-items: start;
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 100%;
    padding: 0 24px;
    margin: 0;
    box-sizing: border-box;
}

.main-content-v3 {
    width: 100%;
    background: rgba(47, 49, 54, 0.7);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 24px;
    overflow: hidden;
}

.tabs-v3 {
    display: flex;
    background: rgba(54, 57, 63, 0.7);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.tab-v3 {
    padding: 20px 28px;
    color: var(--discord-text-secondary, #b9bbbe);
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
}

.tab-v3::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.tab-v3:hover {
    color: var(--discord-text-primary, #ffffff);
    background: rgba(102, 126, 234, 0.1);
}

.tab-v3.active {
    color: #667eea;
    background: rgba(102, 126, 234, 0.05);
}

.tab-v3.active::before {
    transform: scaleX(1);
}

.content-v3 {
    background: var(--discord-background, #36393f);
    min-height: 400px;
    padding: 24px;
}

/* Sidebar */
.sidebar-v3 {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.widget-v3 {
    position: relative;
    background: rgba(47, 49, 54, 0.7);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
}

.widget-v3:hover {
    border-color: rgba(255, 255, 255, 0.25);
    box-shadow: 0 15px 50px rgba(102, 126, 234, 0.3),
                0 0 30px rgba(118, 75, 162, 0.2);
    transform: translateY(-2px);
}

.widget-header-v3 {
    padding: 20px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(54, 57, 63, 0.7);
    position: relative;
    z-index: 2;
}

.widget-title-v3 {
    font-size: 15px;
    font-weight: 700;
    color: var(--discord-text-primary, #ffffff);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.widget-title-v3 i {
    color: #667eea;
    font-size: 16px;
    filter: drop-shadow(0 0 8px rgba(102, 126, 234, 0.6));
}

.widget-content-v3 {
    padding: 20px;
    position: relative;
    z-index: 2;
}

/* Categories, Trending, Posters, Online Users */
.categories-v3,
.trending-v3,
.posters-v3 {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.category-v3 {
    padding: 14px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.category-v3:hover {
    background: rgba(102, 126, 234, 0.15);
    transform: translateX(4px);
}

.category-header-v3 {
    font-size: 14px;
    font-weight: 600;
    color: var(--discord-text-primary, #ffffff);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.trending-item-v3 {
    padding: 14px;
    border-radius: 12px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: block;
    border: 1px solid transparent;
}

.trending-item-v3:hover {
    background: rgba(102, 126, 234, 0.15);
    transform: translateX(4px);
    border-color: rgba(102, 126, 234, 0.3);
}

.trending-title-v3 {
    font-size: 14px;
    font-weight: 600;
    color: var(--discord-text-primary, #ffffff);
    margin-bottom: 8px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.trending-meta-v3 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 12px;
    color: var(--discord-text-secondary, #b9bbbe);
    gap: 12px;
}

.trending-meta-v3 span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.poster-item-v3 {
    padding: 14px;
    border-radius: 12px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    border: 1px solid transparent;
}

.poster-item-v3:hover {
    background: rgba(102, 126, 234, 0.15);
    transform: translateX(4px);
    border-color: rgba(102, 126, 234, 0.3);
}

.poster-name-v3 {
    font-size: 14px;
    font-weight: 600;
    color: var(--discord-text-primary, #ffffff);
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 6px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.poster-stats-v3 {
    font-size: 12px;
    color: var(--discord-text-secondary, #b9bbbe);
}

.forums-v3 {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-left: 24px;
}

.forum-link-v3 {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 10px;
    text-decoration: none;
    color: var(--discord-text-secondary, #b9bbbe);
    font-size: 13px;
    transition: all 0.3s ease;
}

.forum-link-v3:hover {
    background: rgba(102, 126, 234, 0.15);
    color: var(--discord-text-primary, #ffffff);
    transform: translateX(4px);
}

.poster-rank-v3 {
    width: 32px;
    height: 32px;
    border-radius: 10px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 0 15px rgba(102, 126, 234, 0.5);
}

.poster-avatar-v3 {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

/* Online Users - Text format (using styles from forum-index.css) */
/* Styles are inherited from .online-users-names in forum-index.css */
/* Additional v3-specific adjustments if needed */
.widget-content-v3 .online-users-names {
    padding: 8px 0;
    line-height: 1.6;
    font-size: 14px;
    color: var(--discord-text-primary, #dcddde);
    word-wrap: break-word;
}

/* Online User Links - V3 Styling */
.widget-content-v3 .online-user-name-link {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    display: inline;
}

.widget-content-v3 .online-user-name-link:hover {
    text-decoration: none;
}

.widget-content-v3 .online-user-name {
    color: var(--discord-text-primary, #dcddde);
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.widget-content-v3 .online-user-name-link:hover .online-user-name {
    color: #667eea;
    text-shadow: 0 0 8px rgba(102, 126, 234, 0.5);
}

.widget-content-v3 .online-user-name.user-founder {
    color: #FFD700;
    font-weight: 600;
    text-shadow: 0 0 8px rgba(255, 215, 0, 0.4);
}

.widget-content-v3 .online-user-name-link:hover .online-user-name.user-founder {
    color: #FFD700;
    text-shadow: 0 0 12px rgba(255, 215, 0, 0.7);
}

.widget-content-v3 .online-user-name.user-admin {
    color: #ED4245;
    font-weight: 600;
}

.widget-content-v3 .online-user-name-link:hover .online-user-name.user-admin {
    color: #ED4245;
    text-shadow: 0 0 10px rgba(237, 66, 69, 0.6);
}

.widget-content-v3 .online-user-name.user-moderator {
    color: #5865F2;
    font-weight: 600;
}

.widget-content-v3 .online-user-name-link:hover .online-user-name.user-moderator {
    color: #5865F2;
    text-shadow: 0 0 10px rgba(88, 101, 242, 0.6);
}

.widget-content-v3 .online-user-name.user-vip {
    color: #FFC107;
    font-weight: 600;
    text-shadow: 0 0 8px rgba(255, 193, 7, 0.4);
}

.widget-content-v3 .online-user-name-link:hover .online-user-name.user-vip {
    color: #FFC107;
    text-shadow: 0 0 12px rgba(255, 193, 7, 0.7);
}

.widget-content-v3 .online-users-more-text {
    color: var(--discord-text-secondary, #72767d);
    font-style: italic;
    margin-left: 4px;
    font-size: 13px;
}

/* Responsive */
@media (max-width: 1200px) {
    .main-layout-v3 {
        grid-template-columns: 1fr;
    }
    
    .sidebar-v3 {
        order: -1;
    }
    
    .stats-grid-v3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-content-v3 {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-title-v3 {
        font-size: 36px;
    }
    
    .stats-grid-v3 {
        grid-template-columns: 1fr;
    }
    
    .stat-card-v3 {
        padding: 24px;
    }
    
    .news-content-v3 {
        padding: 24px;
    }
    
    .news-title-v3 {
        font-size: 28px;
    }
}

/* Forum Table Styling - Integrated with Discord Theme */
.content-v3 .forum-table-container {
    overflow-x: auto;
    width: 100%;
    border-radius: 16px;
    position: relative;
    z-index: 2;
}

.content-v3 .forum-table {
    width: 100%;
    border-collapse: collapse;
    background: transparent;
}

.content-v3 .forum-table thead {
    background: rgba(47, 49, 54, 0.7);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    position: sticky;
    top: 0;
    z-index: 10;
}

.content-v3 .forum-table th {
    padding: 16px 20px;
    text-align: left;
    font-size: 12px;
    font-weight: 700;
    color: var(--discord-text-secondary, #b9bbbe);
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.content-v3 .forum-table tbody tr {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    background: transparent;
}

.content-v3 .forum-table tbody tr:hover {
    background: rgba(102, 126, 234, 0.15);
    transform: translateX(6px);
    box-shadow: 0 0 20px rgba(102, 126, 234, 0.2);
}

.content-v3 .forum-table tbody tr:last-child {
    border-bottom: none;
}

.content-v3 .forum-table td {
    padding: 16px 20px;
    font-size: 14px;
    color: var(--discord-text-primary, #ffffff);
    vertical-align: middle;
}

.content-v3 .thread-link {
    color: var(--discord-text-primary, #ffffff);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    text-shadow: 0 0 10px rgba(102, 126, 234, 0.2);
}

.content-v3 .thread-link:hover {
    color: #667eea;
    text-decoration: underline;
    text-shadow: 0 0 15px rgba(102, 126, 234, 0.5);
}

.content-v3 .forum-link {
    color: var(--discord-text-secondary, #b9bbbe);
    text-decoration: none;
    transition: all 0.3s ease;
}

.content-v3 .forum-link:hover {
    color: var(--discord-text-primary, #ffffff);
}

.content-v3 .last-post-avatar {
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    box-shadow: 0 0 10px rgba(102, 126, 234, 0.2);
}

.content-v3 .forum-table tbody tr:hover .last-post-avatar {
    border-color: rgba(102, 126, 234, 0.6);
    box-shadow: 0 0 20px rgba(102, 126, 234, 0.5);
    transform: scale(1.1);
}

.content-v3 .empty-state {
    text-align: center;
    padding: 60px 20px;
    color: var(--discord-text-secondary, #b9bbbe);
}

.content-v3 .empty-state i {
    font-size: 48px;
    margin-bottom: 16px;
    opacity: 0.5;
    color: #667eea;
    filter: drop-shadow(0 0 10px rgba(102, 126, 234, 0.5));
}

/* Frontpage Footer */
.frontpage-footer {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    text-align: center !important;
    padding: 32px 24px !important;
    margin-top: 64px !important;
    color: var(--discord-text-secondary, #72767d) !important;
    font-size: 12px !important;
    position: relative;
    z-index: 1;
}

