* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-color: #FAFAFA;
    --text-primary: #333333;
    --text-secondary: #666666;
    --accent-color: #007ACC;
    --card-bg: #FFFFFF;
    --navbar-bg: rgba(250, 250, 250, 0.95);
    --shadow: rgba(0, 0, 0, 0.1);
    --gradient-start: #007ACC;
    --gradient-end: #00D0FF;
}

[data-theme="dark"] {
    --bg-color: #121212;
    --text-primary: #DADADA;
    --text-secondary: #AAAAAA;
    --accent-color: #00D0FF;
    --card-bg: #1E1E1E;
    --navbar-bg: rgba(18, 18, 18, 0.95);
    --shadow: rgba(0, 0, 0, 0.3);
    --gradient-start: #00D0FF;
    --gradient-end: #007ACC;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--bg-color);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    transition: all 0.3s ease;
}

/* Animated Background */
.bg-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.05;
}

.floating-shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--gradient-start), var(--gradient-end));
    animation: float 20s infinite linear;
}

.shape-1 { width: 100px; height: 100px; top: 20%; left: 10%; animation-delay: 0s; }
.shape-2 { width: 150px; height: 150px; top: 60%; right: 15%; animation-delay: -7s; }
.shape-3 { width: 80px; height: 80px; bottom: 30%; left: 60%; animation-delay: -14s; }

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-30px) rotate(120deg); }
    66% { transform: translateY(20px) rotate(240deg); }
}

/* Welcome Popup */
.welcome-popup {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 250px;
    background: var(--card-bg);
    border-radius: 20px;
    box-shadow: 0 10px 30px var(--shadow);
    border: 2px solid var(--accent-color);
    z-index: 10000;
    transform: translateY(100px) scale(0.8);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    overflow: hidden;
}

.welcome-popup.show {
    transform: translateY(0) scale(1);
    opacity: 1;
}

.welcome-popup.hide {
    transform: translateY(100px) scale(0.8);
    opacity: 0;
}

.popup-content {
    padding: 1.5rem;
    text-align: center;
    position: relative;
}

.popup-mascot {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1rem;
    display: block;
    border: 3px solid var(--accent-color);
    animation: bounce 2s infinite;
}

.popup-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.popup-text {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.4;
}

.popup-close {
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    border: none;
    font-size: 1.2rem;
    color: var(--text-secondary);
    cursor: pointer;
    transition: color 0.3s ease;
}

.popup-close:hover {
    color: var(--accent-color);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Toast Notification */
.toast {
    position: fixed;
    top: 20px;
    right: 20px;
    background: var(--card-bg);
    color: var(--text-primary);
    padding: 1rem 1.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px var(--shadow);
    border-left: 4px solid var(--accent-color);
    z-index: 10001;
    transform: translateX(400px);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.toast.show {
    transform: translateX(0);
    opacity: 1;
}

.toast.success {
    border-left-color: #10B981;
}

.toast.error {
    border-left-color: #EF4444;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--navbar-bg);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar.scrolled {
    padding: 0.5rem 0;
    box-shadow: 0 4px 20px var(--shadow);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    background: linear-gradient(45deg, var(--gradient-start), var(--gradient-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    align-items: center;
}

.nav-link {
    color: var(--text-primary);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.4rem 0.8rem;
    border-radius: 25px;
}

.nav-link:hover {
    color: var(--accent-color);
    background: rgba(255, 255, 255, 0.1);
}

.theme-toggle {
    background: none;
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    position: relative;
    overflow: hidden;
}

.theme-toggle:hover {
    background: var(--accent-color);
    color: var(--bg-color);
}

/* Enhanced Button Styles with Glowing Border */
.btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--gradient-start), var(--gradient-end), var(--gradient-start));
    background-size: 200% 200%;
    border-radius: 50px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
    animation: borderGlow 2s linear infinite;
}

.btn:hover::before {
    opacity: 1;
}

@keyframes borderGlow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.btn-primary {
    background: linear-gradient(45deg, var(--gradient-start), var(--gradient-end));
    color: white;
}

.btn-secondary {
    background: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px var(--shadow);
}

.btn-secondary:hover {
    background: var(--accent-color);
    color: var(--bg-color);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    padding: 0 2rem;
}

.hero-content {
    max-width: 800px;
    z-index: 2;
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, var(--gradient-start), var(--gradient-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 1s ease-out;
}

.hero p {
    font-size: 1.3rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.4s both;
}

/* Sections */
.section {
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    background: linear-gradient(45deg, var(--gradient-start), var(--gradient-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Projects Section */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.project-card {
    background: var(--card-bg);
    border-radius: 20px;
    box-shadow: 0 10px 30px var(--shadow);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.project-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(45deg, var(--gradient-start), var(--gradient-end));
    z-index: 2;
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px var(--shadow);
}

.project-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 0;
}

.project-content {
    padding: 2rem;
}

.project-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.project-card p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.project-link {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.project-link:hover {
    transform: translateX(5px);
}

/* Downloads Section */
.downloads-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.download-card {
    background: var(--card-bg);
    border-radius: 20px;
    box-shadow: 0 10px 30px var(--shadow);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.download-card:hover {
    transform: translateY(-5px);
}

.download-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 0;
}

.download-content {
    padding: 2rem;
}

.subscriber-only {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--accent-color);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 3;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Updates Section - Mevcut stilinizi şununla değiştirin: */
#updates .updates-container {
    /* ESKİ STİLLERİ SİLİN */
    /* display: grid; */
    /* grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); */
    /* gap: 1.5rem; */
    /* max-width: 100%; */
}

.update-item {
    background: var(--bg-color);
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    border-left: 4px solid var(--accent-color);
    transition: all 0.3s ease;
    position: relative;
}

.update-item:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 15px var(--shadow);
}

.update-item:last-child {
    margin-bottom: 0;
}

.update-date {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.update-title {
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.update-description {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

.update-tag {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: var(--accent-color);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
}

/* Community Section */
.community-content {
    text-align: center;
}

/* Community Features - Eski grid stilini kaldırın */
.community-features {
    /* ESKİ STİLLERİ KALDIRIN */
    /* display: grid; */
    /* grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); */
    /* gap: 2rem; */
    /* margin: 3rem 0; */
}

.feature-item {
    /* ESKİ STİLLERİ KALDIRIN */
    /* display: flex; */
    /* align-items: center; */
    /* gap: 1rem; */
    /* background: var(--card-bg); */
    /* padding: 1.5rem; */
    /* border-radius: 20px; */
    /* box-shadow: 0 10px 30px var(--shadow); */
    /* transition: all 0.3s ease; */
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px var(--shadow);
}

.feature-icon {
    font-size: 2rem;
    display: block;
    flex-shrink: 0;
}

.feature-item p {
    margin: 0;
    font-weight: 500;
    color: var(--text-primary);
    text-align: left;
}

.discord-btn {
    background: #5865F2;
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    margin-top: 1rem;
    transition: all 0.3s ease;
    font-weight: 600;
    position: relative;
    overflow: hidden;
}

.discord-btn::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #5865F2, #7289DA, #5865F2);
    background-size: 200% 200%;
    border-radius: 50px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
    animation: borderGlow 2s linear infinite;
}

.discord-btn:hover::before {
    opacity: 1;
}

.discord-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(88, 101, 242, 0.3);
}



/* Form Section */
.form-container {
    max-width: 600px;
    margin: 0 auto;
    background: var(--card-bg);
    padding: 3rem;
    border-radius: 30px;
    box-shadow: 0 20px 40px var(--shadow);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-primary);
    font-size: 1rem;
}

.form-input, .form-textarea, .form-select {
    width: 100%;
    padding: 1rem 1.5rem;
    border: 2px solid rgba(0, 122, 204, 0.1);
    border-radius: 15px;
    background: var(--bg-color);
    color: var(--text-primary);
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-input:focus, .form-textarea:focus, .form-select:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(0, 122, 204, 0.1);
}

.form-textarea {
    min-height: 120px;
    resize: vertical;
}

.form-submit {
    width: 100%;
    margin-top: 1rem;
}

/* Footer */
.footer {
    text-align: center;
    padding: 3rem 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.social-link {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--card-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--text-primary);
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px var(--shadow);
}

.social-link:hover {
    transform: translateY(-2px);
    background: var(--accent-color);
    color: white;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Buton Parlayan Çizgi Animasyonu */
.btn {
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--gradient-start), var(--gradient-end), var(--gradient-start));
    border-radius: 50px;
    opacity: 0;
    z-index: -1;
    transition: opacity 0.3s ease;
    animation: rotate 3s linear infinite;
}

.btn:hover::before {
    opacity: 1;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: inherit;
    border-radius: 50px;
    z-index: -1;
}

/* Responsive Güncellemeleri */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--navbar-bg);
        flex-direction: column;
        padding: 1rem 0;
        box-shadow: 0 4px 20px var(--shadow);
    }

    .nav-menu.active {
        display: flex;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 200px;
    }

    .welcome-popup {
        width: 220px;
        bottom: 15px;
        left: 15px;
    }

    .popup-mascot {
        width: 60px;
        height: 60px;
    }

    .community-features {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    #updates .updates-container {
        grid-template-columns: 1fr;
    }

    #members .members-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .member-card {
        padding: 1.5rem;
    }

    .member-avatar {
        width: 60px;
        height: 60px;
    }

    .form-container {
        padding: 2rem;
    }

    .toast {
        right: 15px;
        left: 15px;
        transform: translateY(-100px);
    }

    .toast.show {
        transform: translateY(0);
    }
}

.updates-scroll-container {
    background: var(--card-bg);
    border-radius: 25px;
    padding: 1.5rem;
    box-shadow: 0 15px 35px var(--shadow);
    max-height: 500px;
    position: relative;
}

.updates-list {
    max-height: 300px;
    overflow-y: auto;
    padding-right: 1rem;
}

.updates-list::-webkit-scrollbar {
    width: 8px;
}

.updates-list::-webkit-scrollbar-track {
    background: var(--bg-color);
    border-radius: 10px;
}

.updates-list::-webkit-scrollbar-thumb {
    background: var(--accent-color);
    border-radius: 10px;
}

.updates-list::-webkit-scrollbar-thumb:hover {
    background: var(--gradient-start);
}

/* Community Section - Screenshot Style */
.community-section {
    background: var(--card-bg);
    border-radius: 30px;
    padding: 2rem;
    box-shadow: 0 20px 40px var(--shadow);
}

.community-container {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.community-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    line-height: 1.8;
}

.community-section .community-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 3rem 0;
    align-items: center;
}

.community-section .feature-item {
    font-size: 1rem;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}


/* Projeler bölümü için ek stiller */
        .projects-more {
            text-align: center;
            margin-top: 2rem;
        }

        .btn-outline {
            background: transparent;
            border: 2px solid var(--accent-color);
            color: var(--accent-color);
            padding: 1rem 2rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }

        .btn-outline:hover {
            background: var(--accent-color);
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(0, 122, 204, 0.3);
        }

        /* Responsive güncellemeler */
        @media (max-width: 768px) {
            .projects-more {
                margin-top: 1.5rem;
            }
            
            .btn-outline {
                padding: 0.8rem 1.5rem;
                font-size: 0.9rem;
            }
        }

/* Forum Section Styles */
.forum-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.forum-card {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px var(--shadow);
    transition: all 0.3s ease;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.forum-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(45deg, var(--gradient-start), var(--gradient-end));
    z-index: 2;
}

.forum-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px var(--shadow);
}

.forum-card:nth-child(1):hover {
    border-color: #28a745;
}

.forum-card:nth-child(2):hover {
    border-color: #007ACC;
}

.forum-card:nth-child(3):hover {
    border-color: #ffc107;
}

.forum-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.forum-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.forum-content p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.forum-stats {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.forum-stats span {
    background: rgba(0, 122, 204, 0.1);
    color: var(--accent-color);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.forum-cta {
    background: var(--card-bg);
    border-radius: 25px;
    padding: 3rem 2rem;
    text-align: center;
    box-shadow: 0 15px 35px var(--shadow);
    border: 2px solid rgba(0, 122, 204, 0.1);
    position: relative;
    overflow: hidden;
}

.forum-cta::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--gradient-start), var(--gradient-end), var(--gradient-start));
    background-size: 200% 200%;
    border-radius: 25px;
    z-index: -1;
    opacity: 0.1;
    animation: borderGlow 3s linear infinite;
}

.forum-cta-content h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
    background: linear-gradient(45deg, var(--gradient-start), var(--gradient-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.forum-cta-content p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.forum-btn {
    font-size: 1.2rem;
    padding: 1.2rem 2.5rem;
    position: relative;
    overflow: hidden;
}

.forum-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.5s ease;
}

.forum-btn:hover::before {
    width: 300px;
    height: 300px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .forum-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .forum-card {
        padding: 1.5rem;
    }
    
    .forum-icon {
        font-size: 2.5rem;
    }
    
    .forum-stats {
        flex-direction: column;
        align-items: center;
    }
    
    .forum-cta {
        padding: 2rem 1rem;
    }
    
    .forum-cta-content h3 {
        font-size: 1.5rem;
    }
    
    .forum-btn {
        font-size: 1rem;
        padding: 1rem 2rem;
    }
}

/* Dark theme adjustments */
[data-theme="dark"] .forum-card {
    background: var(--card-bg);
    border-color: rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .forum-stats span {
    background: rgba(0, 212, 255, 0.1);
    color: var(--accent-color);
}