/* 重置默认样式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}

/* 容器 */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 头部样式 */
.header {
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 60px;
}

.logo {
    font-size: 22px;
    font-weight: bold;
    color: #2196F3;
}

.nav ul {
    display: flex;
    list-style: none;
}

.nav ul li {
    margin-left: 20px;
}

.nav ul li a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

.nav ul li a:hover {
    color: #2196F3;
}

/* 汉堡菜单按钮 */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: #333;
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* 主要内容区域 */
main {
    margin-top: 60px;
}

/* 英雄区域 */
.hero {
    background: linear-gradient(135deg, #2196F3, #1976D2);
    color: white;
    padding: 30px 0;
    text-align: center;
    overflow: hidden;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><rect width="1" height="1" fill="rgba(255,255,255,0.05)"/></svg>');
    opacity: 0.1;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-text {
    flex: 1;
    text-align: left;
}

.hero h2 {
    font-size: 48px;
    margin-bottom: 15px;
    font-weight: 800;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
    background: linear-gradient(to right, #ffffff, #e3f2fd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 20px;
    margin-bottom: 25px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.95);
    max-width: 600px;
    font-weight: 500;
}

.download-buttons {
    margin-bottom: 15px;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    margin: 0 10px;
    font-size: 18px;
    letter-spacing: 0.5px;
}

.btn-primary {
    background-color: #fff;
    color: #2196F3;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid #fff;
    color: #fff;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.version-info {
    margin-top: 15px;
    font-size: 14px;
    opacity: 0.8;
    display: flex;
    align-items: center;
    gap: 15px;
}

.version-info span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.version-info span::before {
    content: '•';
    color: rgba(255,255,255,0.5);
}

.platform-tags {
    margin-top: 15px;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.platform-tags span {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 16px;
    transition: all 0.3s;
    backdrop-filter: blur(5px);
    font-weight: 500;
}

.platform-tags span:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.stats {
    display: flex;
    justify-content: flex-start;
    gap: 30px;
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.stat-item {
    text-align: left;
}

.stat-number {
    display: block;
    font-size: 36px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 5px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.stat-label {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero-image::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 70%);
    border-radius: 50%;
    z-index: -1;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    max-height: 280px;
    object-fit: contain;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.1));
}

.floating {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
    100% {
        transform: translateY(0px);
    }
}

/* 响应式设计 */
@media (max-width: 768px) {
    .hero {
        padding: 40px 0;
    }

    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .hero-text {
        text-align: center;
    }

    .hero p {
        margin: 0 auto 25px;
    }

    .hero-image img {
        max-height: 220px;
    }

    .hero h2 {
        font-size: 40px;
    }

    .stats {
        justify-content: center;
        gap: 30px;
    }

    .btn {
        padding: 10px 25px;
        font-size: 16px;
    }

    .platform-tags span {
        font-size: 14px;
        padding: 6px 12px;
    }

    .stat-number {
        font-size: 32px;
    }

    .stat-label {
        font-size: 15px;
    }

    .menu-toggle {
        display: flex;
    }

    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: #fff;
        padding: 80px 20px 20px;
        transition: right 0.3s ease;
        box-shadow: -2px 0 5px rgba(0,0,0,0.1);
    }

    .nav.active {
        right: 0;
    }

    .nav ul {
        flex-direction: column;
    }

    .nav ul li {
        margin: 0 0 15px 0;
    }

    .nav ul li a {
        display: block;
        padding: 10px 0;
        font-size: 16px;
    }

    /* 汉堡菜单动画 */
    .menu-toggle.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }

    /* 遮罩层 */
    .nav-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0,0,0,0.5);
        z-index: 999;
    }

    .nav-overlay.active {
        display: block;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 30px 0;
    }

    .hero h2 {
        font-size: 32px;
    }

    .hero p {
        font-size: 16px;
    }

    .hero-image img {
        max-height: 160px;
    }

    .btn {
        padding: 10px 20px;
        font-size: 15px;
    }

    .stats {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

    .stat-item {
        text-align: center;
    }

    .platform-tags span {
        font-size: 13px;
        padding: 5px 10px;
    }

    .stat-number {
        font-size: 28px;
    }

    .stat-label {
        font-size: 14px;
    }

    .nav {
        width: 100%;
        max-width: none;
    }

    .nav ul li a {
        font-size: 15px;
    }
}

/* 功能特点区域 */
.features {
    padding: 60px 0;
    background-color: #f8f9fa;
    position: relative;
    overflow: hidden;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(33, 150, 243, 0.2), transparent);
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header h2 {
    font-size: 32px;
    color: #333;
    margin-bottom: 12px;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #2196F3;
    border-radius: 3px;
}

.section-header p {
    color: #666;
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, #2196F3, #1976D2);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: #e3f2fd;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    position: relative;
}

.feature-icon i {
    font-size: 24px;
    color: #2196F3;
}

.feature-content h3 {
    font-size: 20px;
    color: #333;
    margin-bottom: 12px;
    font-weight: 600;
}

.feature-content p {
    color: #666;
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 15px;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    color: #555;
    font-size: 14px;
}

.icon-check {
    width: 18px;
    height: 18px;
    background: #e3f2fd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 8px;
    position: relative;
}

.icon-check::after {
    content: '✓';
    color: #2196F3;
    font-size: 12px;
    font-weight: bold;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .features {
        padding: 40px 0;
    }

    .section-header {
        margin-bottom: 30px;
    }

    .section-header h2 {
        font-size: 32px;
    }

    .section-header p {
        font-size: 16px;
        padding: 0 15px;
    }

    .feature-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 15px;
        padding: 0 15px;
    }

    .feature-card {
        padding: 15px;
    }

    .feature-icon {
        width: 50px;
        height: 50px;
    }

    .feature-icon i {
        font-size: 24px;
    }

    .feature-content h3 {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .features {
        padding: 30px 0;
    }

    .section-header h2 {
        font-size: 24px;
    }

    .section-header p {
        font-size: 15px;
    }

    .feature-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .feature-card {
        padding: 15px;
    }

    .feature-icon {
        width: 45px;
        height: 45px;
        margin-bottom: 15px;
    }

    .feature-icon i {
        font-size: 22px;
    }

    .feature-content h3 {
        font-size: 18px;
    }

    .feature-content p {
        font-size: 14px;
    }

    .feature-list li {
        font-size: 14px;
    }
}

/* 使用指南区域 */
.guide {
    padding: 60px 0;
    background-color: #f8f9fa;
    position: relative;
    overflow: hidden;
}

.guide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(33, 150, 243, 0.2), transparent);
}

.guide-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.guide-card {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(33, 150, 243, 0.1);
}

.guide-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, #2196F3, #1976D2);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.guide-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.guide-card:hover::before {
    opacity: 1;
}

.guide-icon {
    width: 50px;
    height: 50px;
    background: #e3f2fd;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    position: relative;
}

.guide-icon i {
    font-size: 28px;
    color: #2196F3;
}

.guide-content h3 {
    font-size: 20px;
    color: #333;
    margin-bottom: 12px;
    font-weight: 600;
}

.guide-content p {
    color: #666;
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 20px;
}

.guide-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.guide-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    padding: 12px;
    background: #f8f9fa;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.guide-list li:hover {
    background: #e3f2fd;
    transform: translateX(5px);
}

.guide-step {
    width: 35px;
    height: 35px;
    background: #2196F3;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 15px;
    margin-right: 12px;
    flex-shrink: 0;
}

.guide-step-content {
    flex: 1;
}

.guide-step-content h4 {
    font-size: 16px;
    color: #333;
    margin-bottom: 5px;
    font-weight: 600;
}

.guide-step-content p {
    font-size: 14px;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .guide {
        padding: 40px 0;
    }

    .guide-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 15px;
        padding: 0 15px;
    }

    .guide-card {
        padding: 15px;
    }

    .guide-icon {
        width: 50px;
        height: 50px;
    }

    .guide-icon i {
        font-size: 24px;
    }

    .guide-content h3 {
        font-size: 20px;
    }

    .guide-list li {
        padding: 12px;
    }

    .guide-step {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .guide {
        padding: 30px 0;
    }

    .guide-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .guide-card {
        padding: 15px;
    }

    .guide-icon {
        width: 45px;
        height: 45px;
        margin-bottom: 15px;
    }

    .guide-icon i {
        font-size: 22px;
    }

    .guide-content h3 {
        font-size: 18px;
    }

    .guide-content p {
        font-size: 14px;
    }

    .guide-list li {
        padding: 10px;
    }

    .guide-step {
        width: 30px;
        height: 30px;
        font-size: 13px;
    }

    .guide-step-content h4 {
        font-size: 15px;
    }

    .guide-step-content p {
        font-size: 13px;
    }
}

/* FAQ区域 */
.faq {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.faq h2 {
    text-align: center;
    margin-bottom: 50px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.faq-item {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.faq-item h3 {
    color: #2196F3;
    margin-bottom: 15px;
}

/* 新闻动态区域 */
.news {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.news h2 {
    text-align: center;
    margin-bottom: 50px;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.news-item {
    background: #f5f5f5;
    padding: 30px;
    border-radius: 10px;
    transition: transform 0.3s;
}

.news-item:hover {
    transform: translateY(-5px);
}

.news-date {
    color: #666;
    font-size: 14px;
    margin: 10px 0;
    font-weight: 500;
}

/* 下载区域 */
.download {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.download h2 {
    text-align: center;
    margin-bottom: 50px;
}

.download-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.download-option {
    background: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.download-option .version,
.download-option .size {
    color: #666;
    margin: 5px 0;
    font-weight: 500;
}

/* 移动端下载区域 */
.mobile-download {
    margin-top: 50px;
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.mobile-download h3 {
    margin-bottom: 20px;
    color: #2196F3;
}

.app-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* 页脚 */
.footer {
    background-color: #333;
    color: white;
    padding: 30px 0 15px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.footer-section h3 {
    margin-bottom: 10px;
    color: #2196F3;
    font-size: 18px;
}

.footer-section p {
    margin: 8px 0;
    opacity: 0.8;
    font-size: 14px;
    line-height: 1.4;
}

.copyright {
    text-align: center;
    padding-top: 15px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 13px;
    opacity: 0.7;
}

/* 安全中心样式 */
.security {
    padding: 60px 0;
    background-color: #f8f9fa;
    position: relative;
    overflow: hidden;
}

.security::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(33, 150, 243, 0.2), transparent);
}

.security-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.security-card {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(33, 150, 243, 0.1);
}

.security-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, #2196F3, #1976D2);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.security-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.security-card:hover::before {
    opacity: 1;
}

.security-icon {
    width: 50px;
    height: 50px;
    background: #e3f2fd;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    position: relative;
}

.security-icon i {
    font-size: 28px;
    color: #2196F3;
}

.security-content h3 {
    font-size: 20px;
    color: #333;
    margin-bottom: 12px;
    font-weight: 600;
}

.security-content p {
    color: #666;
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 20px;
}

.security-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.security-feature {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px;
    background: #f8f9fa;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.security-feature:hover {
    background: #e3f2fd;
    transform: translateX(5px);
}

.feature-icon {
    width: 35px;
    height: 35px;
    background: #fff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon i {
    font-size: 20px;
    color: #2196F3;
}

.feature-info {
    flex: 1;
}

.feature-info h4 {
    font-size: 15px;
    color: #333;
    margin-bottom: 4px;
    font-weight: 600;
}

.feature-info p {
    font-size: 13px;
    color: #666;
    margin: 0;
    line-height: 1.4;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .security {
        padding: 40px 0;
    }

    .security-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 15px;
        padding: 0 15px;
    }

    .security-card {
        padding: 15px;
    }

    .security-icon {
        width: 50px;
        height: 50px;
    }

    .security-icon i {
        font-size: 24px;
    }

    .security-content h3 {
        font-size: 20px;
    }

    .security-feature {
        padding: 12px;
    }

    .feature-icon {
        width: 35px;
        height: 35px;
    }

    .feature-icon i {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .security {
        padding: 30px 0;
    }

    .security-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .security-card {
        padding: 15px;
    }

    .security-icon {
        width: 45px;
        height: 45px;
        margin-bottom: 15px;
    }

    .security-icon i {
        font-size: 22px;
    }

    .security-content h3 {
        font-size: 18px;
    }

    .security-content p {
        font-size: 14px;
    }

    .security-feature {
        padding: 10px;
    }

    .feature-icon {
        width: 30px;
        height: 30px;
    }

    .feature-icon i {
        font-size: 16px;
    }

    .feature-info h4 {
        font-size: 15px;
    }

    .feature-info p {
        font-size: 13px;
    }
}

/* 用户社区样式 */
.community {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.community h2 {
    text-align: center;
    margin-bottom: 50px;
}

.community-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.community-item {
    text-align: center;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 10px;
    transition: all 0.3s;
}

.community-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.community-item h3 {
    color: #2196F3;
    margin-bottom: 15px;
}

.community-item p {
    margin-bottom: 20px;
    color: #666;
}

.btn-community {
    display: inline-block;
    padding: 10px 20px;
    background-color: #2196F3;
    color: white;
    border-radius: 5px;
    text-decoration: none;
    transition: all 0.3s;
    margin-top: 20px;
    font-weight: 500;
}

.btn-community:hover {
    background-color: #1976D2;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(33, 150, 243, 0.2);
} 