/* ===== CSS RESET & BASE STYLES ===== */
:root {
    --primary-color: #ff8c42;
    --accent-color: #ffb347;
    --text-light: #333;
    --text-dark: #666;
    --bg-light: #fff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #fff3e0 0%, #fff8f0 100%);
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== HEADER STYLES ===== */
.header {
    background: linear-gradient(135deg, #ff8c42 0%, #ffb347 100%);
    box-shadow: 0 4px 20px rgba(255, 140, 66, 0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-text {
    display: flex;
    align-items: center;
}

.logo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.logo-text h1 {
    color: #fff;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
    line-height: 1;
    white-space: nowrap;
}

.nav {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    display: inline-flex;
    align-items: center;
    height: auto;
    line-height: 1.4;
    box-sizing: border-box;
}

.nav-link:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--accent-color);
}

.nav-link.active {
    background: var(--accent-color);
    color: white;
}

/* Official Website Link Special Styling */
.nav-link.official-website {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
    font-weight: 600;
    border: 1px solid transparent;
    position: relative;
    /* 确保与其他链接相同的尺寸 */
    height: auto;
    line-height: normal;
    display: inline-flex;
    align-items: center;
    box-sizing: border-box;
}

.nav-link.official-website:hover {
    background: linear-gradient(135deg, #f7931e, #ff6b35);
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(255, 107, 53, 0.3);
    color: white;
    border-color: rgba(255, 255, 255, 0.2);
}

.nav-link.official-website:active {
    transform: translateY(0);
}

.social-links {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.social-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    transition: all 0.3s ease;
    filter: brightness(0) invert(1);
}

.social-icon:hover {
    transform: scale(1.1);
    filter: brightness(0) invert(1) drop-shadow(0 0 10px rgba(255, 255, 255, 0.5));
}



/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.1;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    z-index: 1;
}

.hero-text h2 {
    font-size: 3rem;
    font-weight: 700;
    color: #ff6b35;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-text p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
}

.hero-stats {
    display: flex;
    gap: 2rem;
}

.stat {
    text-align: center;
    padding: 1rem;
    background: rgba(255, 140, 66, 0.1);
    border-radius: 15px;
    border: 2px solid rgba(255, 140, 66, 0.2);
    backdrop-filter: blur(10px);
}

.stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ff6b35;
}

.stat-label {
    font-size: 0.9rem;
    color: #666;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: visible;
    padding: 1rem;
}

.bonk-head {
    max-width: 350px;
    max-height: 350px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 10px 30px rgba(255, 140, 66, 0.3));
    animation: float 3s ease-in-out infinite;
    border-radius: 10px;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

/* ===== MAIN CONTENT STYLES ===== */
.main-content {
    padding: 4rem 0;
}

.main-content h3 {
    font-size: 2rem;
    font-weight: 600;
    color: #ff6b35;
    margin-bottom: 2rem;
    text-align: center;
}

/* ===== PRICE CHART SECTION ===== */
.price-chart-section {
    margin-bottom: 4rem;
    background: #fff;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(255, 140, 66, 0.1);
    border: 2px solid rgba(255, 140, 66, 0.1);
}

.price-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.price-header h3 {
    margin: 0;
    color: #ff6b35;
    font-size: 2rem;
    font-weight: 600;
}

.chart-toggle {
    display: flex;
    gap: 0.5rem;
    background: rgba(255, 140, 66, 0.1);
    padding: 0.3rem;
    border-radius: 25px;
    border: 1px solid rgba(255, 140, 66, 0.2);
}

.toggle-btn {
    background: transparent;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #666;
    white-space: nowrap;
}

.toggle-btn:hover {
    background: rgba(255, 140, 66, 0.1);
    color: #ff6b35;
}

.toggle-btn.active {
    background: linear-gradient(135deg, #ff8c42 0%, #ffb347 100%);
    color: #fff;
    box-shadow: 0 2px 10px rgba(255, 140, 66, 0.3);
}

.price-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.price-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.current-price {
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(255, 140, 66, 0.1) 0%, rgba(255, 179, 71, 0.1) 100%);
    border-radius: 15px;
    border: 1px solid rgba(255, 140, 66, 0.2);
}

.price-label {
    display: block;
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0.5rem;
}

.price-value {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #ff6b35;
    margin-bottom: 0.5rem;
}

.price-change {
    font-size: 1rem;
    font-weight: 600;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    display: inline-block;
}

.price-change.positive {
    background: rgba(76, 175, 80, 0.1);
    color: #4CAF50;
}

.price-change.negative {
    background: rgba(244, 67, 54, 0.1);
    color: #f44336;
}

.token-stats {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.stat-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: rgba(255, 140, 66, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(255, 140, 66, 0.1);
}

.stat-label {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

.stat-value {
    font-size: 1rem;
    font-weight: 600;
    color: #ff6b35;
}

.chart-container {
    background: rgba(255, 140, 66, 0.02);
    border-radius: 15px;
    padding: 1rem;
    border: 1px solid rgba(255, 140, 66, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

.dexscreener-embed {
    width: 100%;
    height: 400px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.dexscreener-embed iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 10px;
}

#priceChart {
    max-width: 100%;
    height: auto;
}

.token-info {
    padding: 1rem;
    background: rgba(255, 140, 66, 0.03);
    border-radius: 10px;
    border: 1px solid rgba(255, 140, 66, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.contract-address {
    font-family: 'Courier New', monospace;
    color: #ff6b35;
    font-weight: 600;
    font-size: 0.9rem;
    word-break: break-all;
}

.copy-address-btn {
    background: linear-gradient(135deg, #ff8c42 0%, #ffb347 100%);
    color: #fff;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.copy-address-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 140, 66, 0.3);
}

/* ===== QUICK ACTIONS SECTION ===== */
.quick-actions {
    margin-bottom: 4rem;
}

.action-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.action-card {
    background: #fff;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(255, 140, 66, 0.1);
    border: 2px solid rgba(255, 140, 66, 0.1);
    transition: all 0.3s ease;
}

.action-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(255, 140, 66, 0.2);
    border-color: rgba(255, 140, 66, 0.3);
}

.action-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.action-card h4 {
    color: #ff6b35;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.action-card p {
    color: #666;
    margin-bottom: 1.5rem;
}

.action-btn {
    background: linear-gradient(135deg, #ff8c42 0%, #ffb347 100%);
    color: #fff;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 140, 66, 0.3);
}

.action-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 140, 66, 0.4);
}

/* ===== FORUM CATEGORIES SECTION ===== */
.forum-categories {
    margin-bottom: 4rem;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1.5rem;
}

.category-card {
    background: #fff;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(255, 140, 66, 0.1);
    border: 2px solid rgba(255, 140, 66, 0.1);
    transition: all 0.3s ease;
}

.category-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255, 140, 66, 0.15);
    border-color: rgba(255, 140, 66, 0.2);
}

.category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.category-header h4 {
    color: #ff6b35;
    font-size: 1.2rem;
    font-weight: 600;
}

.post-count {
    background: rgba(255, 140, 66, 0.1);
    color: #ff6b35;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.category-card p {
    color: #666;
    margin-bottom: 1rem;
}

.category-stats {
    font-size: 0.9rem;
    color: #999;
}

/* ===== RECENT POSTS SECTION ===== */
.recent-posts {
    margin-bottom: 4rem;
}

.posts-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.post-item {
    background: #fff;
    border-radius: 15px;
    padding: 1.5rem;
    display: flex;
    gap: 1rem;
    box-shadow: 0 5px 20px rgba(255, 140, 66, 0.1);
    border: 1px solid rgba(255, 140, 66, 0.1);
    transition: all 0.3s ease;
}

.post-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 140, 66, 0.15);
}

.post-avatar img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 140, 66, 0.2);
}

.post-content {
    flex: 1;
}

.post-content h4 {
    color: #ff6b35;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.post-content p {
    color: #666;
    margin-bottom: 1rem;
}

.post-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.9rem;
}

.author {
    color: #ff6b35;
    font-weight: 500;
}

.time, .replies {
    color: #999;
}

/* ===== FOOTER STYLES ===== */
.footer {
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
    color: #fff;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #fff;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a img {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    transition: all 0.3s ease;
    filter: brightness(0) invert(1);
}

.footer-social a img:hover {
    transform: scale(1.1);
    filter: brightness(0) invert(1) drop-shadow(0 0 10px rgba(255, 255, 255, 0.5));
}



.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.8);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .header-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 1rem;
    }
    
    .social-links {
        display: none;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-text h2 {
        font-size: 2rem;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .bonk-head {
        max-width: 250px;
        max-height: 250px;
        width: auto;
        height: auto;
    }
    
    .action-grid {
        grid-template-columns: 1fr;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
    }
    
    .post-item {
        flex-direction: column;
        text-align: center;
    }
    
    .post-meta {
        justify-content: center;
    }
    
    .price-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .token-info {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }
    
    .dexscreener-embed {
        height: 300px;
    }
    
    .chart-container {
        min-height: 300px;
        padding: 0.5rem;
    }
    
    .price-header {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
        gap: 1rem;
    }
    
    .chart-toggle {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-text h2 {
        font-size: 1.5rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .main-content h3 {
        font-size: 1.5rem;
    }
    
    .action-card,
    .category-card {
        padding: 1.5rem;
    }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.action-card,
.category-card,
.post-item {
    animation: fadeInUp 0.6s ease forwards;
}

.action-card:nth-child(2) { animation-delay: 0.1s; }
.action-card:nth-child(3) { animation-delay: 0.2s; }
.action-card:nth-child(4) { animation-delay: 0.3s; }

/* ===== SCROLLBAR STYLES ===== */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #ff8c42 0%, #ffb347 100%);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
}

/* ===== LOADING STYLES ===== */
.loading {
    overflow: hidden;
}

.loading::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ff8c42 0%, #ffb347 100%);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.loading::after {
    content: '';
    position: fixed;
    top: 50%;
    left: 50%;
    width: 50px;
    height: 50px;
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-top: 4px solid #fff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    z-index: 10000;
    transform: translate(-50%, -50%);
}

@keyframes spin {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

.loaded .loading::before,
.loaded .loading::after {
    display: none;
}

/* ===== MOBILE MENU STYLES ===== */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    transition: transform 0.2s ease;
    margin-left: auto;
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }
    
    .mobile-menu-toggle:hover {
        transform: scale(1.1);
    }
    
    .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(255, 140, 66, 0.95);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 1rem;
        border-radius: 0 0 15px 15px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    }
    
    .nav.mobile-menu-open {
        display: flex;
    }
    
    .nav-link {
        padding: 1rem;
        text-align: center;
        border-radius: 10px;
        margin-bottom: 0.5rem;
    }
}

/* ===== NOTIFICATION STYLES ===== */
.notification {
    font-family: 'Inter', sans-serif;
}

.notification-content {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.notification-close {
    background: none;
    border: none;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    margin-left: auto;
    padding: 0;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.2s ease;
}

.notification-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* ===== ENHANCED HOVER EFFECTS ===== */
.logo:hover {
    transform: scale(1.1) rotate(5deg);
    transition: transform 0.3s ease;
}

.bonk-head:hover {
    animation-play-state: paused;
    transform: scale(1.05);
}

/* ===== FOCUS STYLES FOR ACCESSIBILITY ===== */
.nav-link:focus,
.action-btn:focus,
button:focus {
    outline: 2px solid #fff;
    outline-offset: 2px;
}

.category-card:focus,
.post-item:focus {
    outline: 2px solid #ff8c42;
    outline-offset: 2px;
}

/* ===== PRINT STYLES ===== */
@media print {
    .header,
    .footer,
    .social-links,
    .action-grid,
    .notification {
        display: none !important;
    }
    
    body {
        background: white !important;
    }
    
    .hero {
        page-break-after: always;
    }
}

/* ===== MODAL STYLES ===== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    backdrop-filter: blur(5px);
}

.modal-content {
    background: white;
    border-radius: 20px;
    max-width: 800px;
    max-height: 90vh;
    width: 90%;
    overflow-y: auto;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem;
    border-bottom: 1px solid rgba(255, 140, 66, 0.1);
    background: linear-gradient(135deg, rgba(255, 140, 66, 0.05) 0%, rgba(255, 179, 71, 0.05) 100%);
    border-radius: 20px 20px 0 0;
}

.modal-header h3 {
    margin: 0;
    color: #ff6b35;
    font-size: 1.5rem;
    font-weight: 600;
}

.modal-close {
    background: none;
    border: none;
    font-size: 2rem;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: rgba(255, 140, 66, 0.1);
    color: #ff6b35;
    transform: scale(1.1);
}

.modal-body {
    padding: 2rem;
}

/* ===== FORM STYLES ===== */
.modal-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 600;
    color: #333;
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.8rem;
    border: 2px solid rgba(255, 140, 66, 0.2);
    border-radius: 10px;
    font-size: 0.9rem;
    transition: border-color 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ff8c42;
    box-shadow: 0 0 0 3px rgba(255, 140, 66, 0.1);
}

.form-group small {
    color: #666;
    font-size: 0.8rem;
}

.form-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 140, 66, 0.1);
}

.btn-primary {
    background: linear-gradient(135deg, #ff8c42 0%, #ffb347 100%);
    color: white;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 140, 66, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #666;
    border: 2px solid #ddd;
    padding: 0.8rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.btn-secondary:hover {
    background: #f5f5f5;
    border-color: #bbb;
    transform: translateY(-1px);
}

/* ===== SUPPORT CONTENT STYLES ===== */
.support-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.support-section {
    padding: 1.5rem;
    border: 1px solid rgba(255, 140, 66, 0.1);
    border-radius: 15px;
    background: rgba(255, 140, 66, 0.02);
}

.support-section h4 {
    margin: 0 0 1rem 0;
    color: #ff6b35;
    font-size: 1.2rem;
}

.quick-help-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1rem;
}

.help-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: white;
    border: 2px solid rgba(255, 140, 66, 0.1);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.help-item:hover {
    border-color: #ff8c42;
    background: rgba(255, 140, 66, 0.05);
    transform: translateY(-2px);
}

.help-icon {
    font-size: 1.5rem;
}

.resources-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.resource-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: white;
    border: 1px solid rgba(255, 140, 66, 0.1);
    border-radius: 10px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.resource-link:hover {
    background: rgba(255, 140, 66, 0.05);
    border-color: #ff8c42;
    transform: translateY(-2px);
}

.resource-icon {
    font-size: 1.5rem;
    min-width: 40px;
    text-align: center;
}

.resource-link strong {
    color: #ff6b35;
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.resource-link p {
    margin: 0;
    color: #666;
    font-size: 0.9rem;
}

/* ===== ROADMAP STYLES ===== */
.roadmap-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.roadmap-intro {
    text-align: center;
    padding: 1rem;
    background: rgba(255, 140, 66, 0.05);
    border-radius: 10px;
}

.roadmap-timeline {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    position: relative;
}

.roadmap-timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, #ff8c42, #ffb347);
}

.roadmap-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    position: relative;
}

.roadmap-marker {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 3px solid #ff8c42;
    background: white;
    position: relative;
    z-index: 2;
    flex-shrink: 0;
}

.roadmap-item.completed .roadmap-marker {
    background: linear-gradient(135deg, #4CAF50, #45a049);
    border-color: #4CAF50;
}

.roadmap-item.active .roadmap-marker {
    background: linear-gradient(135deg, #ff8c42, #ffb347);
    border-color: #ff6b35;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(255, 140, 66, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(255, 140, 66, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 140, 66, 0); }
}

.roadmap-item.upcoming .roadmap-marker {
    background: #f5f5f5;
    border-color: #ddd;
}

.roadmap-content-item {
    flex: 1;
    padding: 1.5rem;
    background: white;
    border: 1px solid rgba(255, 140, 66, 0.1);
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.roadmap-content-item h4 {
    margin: 0 0 1rem 0;
    color: #ff6b35;
    font-size: 1.1rem;
}

.roadmap-content-item ul {
    margin: 0;
    padding-left: 1.5rem;
}

.roadmap-content-item li {
    margin-bottom: 0.5rem;
    color: #666;
}

.roadmap-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.stat-card {
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(255, 140, 66, 0.1) 0%, rgba(255, 179, 71, 0.1) 100%);
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255, 140, 66, 0.2);
}

.stat-card .stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #ff6b35;
    margin-bottom: 0.5rem;
}

.stat-card .stat-label {
    color: #666;
    font-size: 0.9rem;
    font-weight: 500;
}

/* ===== ANNOUNCEMENTS STYLES ===== */
.announcements-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.announcement-item {
    padding: 1.5rem;
    background: white;
    border: 1px solid rgba(255, 140, 66, 0.1);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.announcement-item:hover {
    background: rgba(255, 140, 66, 0.02);
    border-color: #ff8c42;
    transform: translateY(-2px);
}

.announcement-item.featured {
    border-color: #ff8c42;
    background: linear-gradient(135deg, rgba(255, 140, 66, 0.05) 0%, rgba(255, 179, 71, 0.05) 100%);
}

.announcement-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
    gap: 1rem;
}

.announcement-header h4 {
    margin: 0;
    color: #ff6b35;
    font-size: 1.1rem;
    flex: 1;
}

.announcement-time {
    color: #999;
    font-size: 0.8rem;
    white-space: nowrap;
}

.announcement-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 140, 66, 0.1);
    font-size: 0.9rem;
}

.announcement-author {
    color: #ff6b35;
    font-weight: 600;
}

.announcement-replies {
    color: #666;
}

/* ===== MARKET ANALYSIS STYLES ===== */
.market-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.market-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
}

.analysis-posts {
    padding: 1.5rem;
    background: rgba(255, 140, 66, 0.02);
    border-radius: 15px;
    border: 1px solid rgba(255, 140, 66, 0.1);
}

.analysis-posts h4 {
    margin: 0 0 1rem 0;
    color: #ff6b35;
    font-size: 1.2rem;
}

.analysis-posts .post-item {
    padding: 1rem;
    margin-bottom: 1rem;
    background: white;
    border-radius: 10px;
    border: 1px solid rgba(255, 140, 66, 0.1);
}

.analysis-posts .post-item:last-child {
    margin-bottom: 0;
}

.analysis-posts h5 {
    margin: 0 0 0.5rem 0;
    color: #ff6b35;
    font-size: 1rem;
}

.analysis-posts p {
    margin: 0 0 0.5rem 0;
    color: #666;
    font-size: 0.9rem;
}

.analysis-posts small {
    color: #999;
    font-size: 0.8rem;
}

/* ===== COMMUNITY CREATIONS STYLES ===== */
.creations-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.creations-intro {
    text-align: center;
    padding: 1rem;
    background: rgba(255, 140, 66, 0.05);
    border-radius: 10px;
}

.creations-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.creation-item {
    padding: 1.5rem;
    background: white;
    border: 1px solid rgba(255, 140, 66, 0.1);
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
}

.creation-item:hover {
    background: rgba(255, 140, 66, 0.02);
    border-color: #ff8c42;
    transform: translateY(-3px);
}

.creation-image {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.creation-item h5 {
    margin: 0 0 0.5rem 0;
    color: #ff6b35;
    font-size: 1.1rem;
}

.creation-item p {
    margin: 0 0 1rem 0;
    color: #666;
    font-size: 0.9rem;
}

.creation-item small {
    color: #999;
    font-size: 0.8rem;
}

.creation-resources {
    padding: 1.5rem;
    background: rgba(255, 140, 66, 0.02);
    border-radius: 15px;
    border: 1px solid rgba(255, 140, 66, 0.1);
}

.creation-resources h4 {
    margin: 0 0 1rem 0;
    color: #ff6b35;
    font-size: 1.2rem;
}

/* ===== RESPONSIVE MODAL STYLES ===== */
@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        max-height: 95vh;
        margin: 10px;
    }
    
    .modal-header,
    .modal-body {
        padding: 1.5rem;
    }
    
    .modal-header h3 {
        font-size: 1.3rem;
    }
    
    .quick-help-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .roadmap-timeline::before {
        left: 15px;
    }
    
    .roadmap-marker {
        width: 30px;
        height: 30px;
    }
    
    .creations-gallery {
        grid-template-columns: 1fr;
    }
    
    .market-stats {
        grid-template-columns: 1fr;
    }
    
    .roadmap-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .form-actions {
        flex-direction: column;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
    }
}

/* FAQ Toggle Animation */
.faq-question:hover {
    background: var(--accent-light);
}

.faq-answer {
    transition: all 0.3s ease;
    overflow: hidden;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

/* Page Sections */
.page-section {
    display: none;
}

.page-section.active {
    display: block;
}

/* Discussions Page Styles */
.discussions-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem 0;
}

.discussions-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.discussion-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
}

.discussion-stats .stat {
    text-align: center;
}

.discussion-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.discussion-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    cursor: pointer;
}

.discussion-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--accent-color);
}

.discussion-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.discussion-content h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #ff6b35;
}

.discussion-content p {
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.discussion-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: #888;
}

.hot-topics {
    margin-top: 3rem;
}

.hot-topics-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hot-topic-item {
    display: flex;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.hot-topic-item:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--accent-color);
}

.topic-icon {
    font-size: 1.5rem;
    margin-top: 0.2rem;
}

.topic-content h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #ff6b35;
}

.topic-content p {
    color: #666;
    margin-bottom: 1rem;
}

.topic-stats {
    display: flex;
    gap: 1rem;
    font-size: 0.9rem;
    color: #888;
}

/* Support Page Styles */
.support-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem 0;
}

.support-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.support-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.support-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.support-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--accent-color);
}

.support-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.support-card h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #ff6b35;
}

.support-card p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.support-btn {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.support-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 165, 0, 0.4);
}

.faq-section {
    margin-top: 3rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 2rem;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem;
    background: rgba(255, 255, 255, 0.05);
    cursor: pointer;
    margin: 0;
    color: #333;
    transition: all 0.3s ease;
}

.faq-toggle {
    font-size: 1.2rem;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.faq-answer {
    padding: 0 1.2rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 1.2rem;
    max-height: 200px;
}

.contact-form-section {
    margin-top: 3rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 2rem;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #333;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid rgba(255, 140, 66, 0.3);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.9);
    color: #333;
    font-size: 1rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    background: rgba(255, 255, 255, 1);
}

.submit-btn {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 165, 0, 0.4);
}

/* Official Resources Section */
.official-resources {
    margin-top: 3rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 2rem;
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.resource-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.resource-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--accent-color);
}

.resource-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.resource-card h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #ff6b35;
}

.resource-card p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.resource-btn {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.resource-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 165, 0, 0.4);
}

/* Community Page Styles */
.community-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem 0;
}

.community-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.community-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
}

.community-stats .stat {
    text-align: center;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.project-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.project-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--accent-color);
}

.project-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.project-card h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #ff6b35;
}

.project-card p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.project-btn {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.project-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 165, 0, 0.4);
}

.family-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.family-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.family-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--accent-color);
}

.family-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.family-card h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #ff6b35;
}

.family-card p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.family-btn {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.family-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(139, 92, 246, 0.4);
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.event-card {
    display: flex;
    gap: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.event-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--accent-color);
}

.event-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: var(--accent-color);
    color: white;
    padding: 1rem;
    border-radius: 10px;
    min-width: 80px;
}

.event-date .month {
    font-size: 0.9rem;
    font-weight: 600;
}

.event-date .day {
    font-size: 1.5rem;
    font-weight: bold;
}

.event-content h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #ff6b35;
}

.event-content p {
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.event-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.9rem;
    color: #888;
}

.events-cta {
    text-align: center;
    margin-top: 2rem;
}

.cta-btn {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    font-size: 1.1rem;
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 165, 0, 0.4);
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.social-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
}

.social-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--accent-color);
}

.social-img {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    object-fit: cover;
}

.social-info h4 {
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
    color: #ff6b35;
}

.social-info p {
    color: #666;
    margin-bottom: 0.3rem;
    font-size: 0.9rem;
}

.social-followers {
    font-size: 0.8rem;
    color: var(--accent-color);
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 768px) {
    .discussion-stats,
    .community-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .discussion-grid,
    .support-grid,
    .projects-grid,
    .family-grid,
    .events-grid,
    .social-grid {
        grid-template-columns: 1fr;
    }
    
    .event-card {
        flex-direction: column;
        text-align: center;
    }
    
    .event-date {
        align-self: center;
    }
    
    .topic-stats {
        flex-direction: column;
        gap: 0.5rem;
    }
} 