/* Community Page Styles */

/* Community Hero Section */
.community-hero-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(7, 11, 40, 0.95) 0%, rgba(26, 26, 46, 0.95) 100%);
    position: relative;
    overflow: hidden;
}
.game-play-section.game-play-section2{
    background: url('../images/game-play-bg-2.jpg') center center / cover no-repeat;
    background-position: center center;
}
.community-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/home/h5.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.2;
    z-index: -1;
}

.community-hero-section .section-heading {
    position: relative;
    z-index: 2;
}

.community-hero-section .subtitle {
    color: #00a2ff;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.community-hero-section .title {
    color: #fff;
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.community-hero-section .text {
    font-size: 18px;
    color: #d1d5db;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto;
}

/* Community Image Section */
.community-image-section {
    padding: 60px 0;
    background: #0b122e;
    position: relative;
}

.community-image-content {
    text-align: center;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.community-image-content img {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: cover;
    border-radius: 20px;
    transition: transform 0.3s ease;
}

.community-image-content:hover img {
    transform: scale(1.02);
}

.community-image-content::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0, 162, 255, 0.1) 0%, rgba(254, 160, 54, 0.1) 100%);
    border-radius: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.community-image-content:hover::after {
    opacity: 1;
}

/* Community Stats Section */
.community-stats-section {
    padding: 80px 0;
    background: #0b122e;
}

.stat-box {
    text-align: center;
    padding: 40px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
}

.stat-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 162, 255, 0.2);
    border-color: #00a2ff;
}

.stat-box .icon {
    margin-bottom: 20px;
}

.stat-box .icon i {
    font-size: 48px;
    color: #00a2ff;
    text-shadow: 0 0 20px rgba(0, 162, 255, 0.5);
}

.stat-box .number {
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.stat-box .label {
    font-size: 16px;
    color: #d1d5db;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Social Features Section */
.social-features-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    position: relative;
}

.social-features-section .section-heading {
    margin-bottom: 60px;
}

.social-features-section .subtitle {
    color: #00a2ff;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.social-features-section .title {
    color: #fff;
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    backdrop-filter: blur(10px);
    margin-bottom: 30px;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 162, 255, 0.15);
    border-color: rgba(0, 162, 255, 0.3);
}

.feature-card .icon {
    text-align: center;
    margin-bottom: 25px;
}

.feature-card .icon i {
    font-size: 48px;
    color: #00a2ff;
    text-shadow: 0 0 20px rgba(0, 162, 255, 0.5);
}

.feature-card h3 {
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    text-align: center;
}

.feature-card p {
    color: #d1d5db;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
    text-align: center;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    color: #d1d5db;
    font-size: 14px;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #00d4aa;
    font-weight: bold;
}

/* Top Creators Section */
.top-creators-section {
    padding: 100px 0;
    background: #0b122e;
    position: relative;
}

.top-creators-section .section-heading {
    margin-bottom: 60px;
}

.top-creators-section .subtitle {
    color: #00a2ff;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.top-creators-section .title {
    color: #fff;
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.top-creators-section .text {
    color: #d1d5db;
    font-size: 18px;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.creator-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    text-align: center;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
}

.creator-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 162, 255, 0.15);
    border-color: rgba(0, 162, 255, 0.3);
}

.creator-avatar {
    position: relative;
    margin-bottom: 20px;
    display: inline-block;
}

.creator-avatar img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #00a2ff;
    object-fit: cover;
}

.rank-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: linear-gradient(45deg, #fea036, #f7b230);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
    color: #fff;
    box-shadow: 0 2px 10px rgba(254, 160, 54, 0.3);
}

.rank-badge i {
    margin-right: 3px;
}

.creator-info h4 {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 5px;
}

.creator-info > span {
    color: #00a2ff;
    font-size: 14px;
    font-weight: 500;
    display: block;
    margin-bottom: 20px;
}

.creator-info .stats {
    display: flex;
    justify-content: space-around;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
}

.creator-info .stat {
    text-align: center;
}

.creator-info .stat .number {
    display: block;
    color: #00a2ff;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
}

.creator-info .stat .label {
    color: #d1d5db;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Forum Preview Section */
.forum-preview-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

.forum-preview-section .section-heading {
    margin-bottom: 60px;
}

.forum-preview-section .subtitle {
    color: #00a2ff;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.forum-preview-section .title {
    color: #fff;
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0;
}

.forum-category {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
}

.forum-category h3 {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.forum-category h3 i {
    color: #00a2ff;
    margin-right: 10px;
}

.forum-post {
    display: flex;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.forum-post:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.post-avatar {
    margin-right: 15px;
}

.post-avatar img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.post-content {
    flex: 1;
}

.post-content h4 {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 1.3;
}

.post-content p {
    color: #d1d5db;
    font-size: 14px;
    margin-bottom: 10px;
    line-height: 1.4;
}

.post-meta {
    font-size: 12px;
    color: #9ca3af;
}

.post-meta span {
    margin-right: 8px;
}

/* Guidelines Section */
.guidelines-section {
    padding: 100px 0;
    background: #0b122e;
}

.guidelines-section .section-heading {
    margin-bottom: 60px;
}

.guidelines-section .subtitle {
    color: #00a2ff;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.guidelines-section .title {
    color: #fff;
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0;
}

.guideline-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 40px 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    text-align: center;
    height: 100%;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
}

.guideline-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 162, 255, 0.15);
    border-color: rgba(0, 162, 255, 0.3);
}

.guideline-card .icon {
    margin-bottom: 20px;
}

.guideline-card .icon i {
    font-size: 48px;
    color: #00a2ff;
    text-shadow: 0 0 20px rgba(0, 162, 255, 0.5);
}

.guideline-card h4 {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
}

.guideline-card p {
    color: #d1d5db;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 0;
}

.join-community-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.join-community-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/home/h5.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.15;
    z-index: -1;
}

.join-community-content {
    position: relative;
    z-index: 2;
}

.join-community-content h2 {
    color: #fff;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.join-community-content > p {
    color: #d1d5db;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.community-benefits {
    margin: 50px 0;
}

.benefit-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
    margin-bottom: 30px;
}

.benefit-item i {
    font-size: 36px;
    color: #00a2ff;
    margin-bottom: 15px;
    text-shadow: 0 0 20px rgba(0, 162, 255, 0.5);
}

.benefit-item span {
    color: #fff;
    font-size: 16px;
    font-weight: 500;
}

.join-community-content .mybtn1 {
    margin: 30px 0 20px;
    padding: 15px 40px;
    font-size: 18px;
}

.small-text {
    color: #9ca3af;
    font-size: 14px;
    margin-bottom: 0;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .community-hero-section,
    .community-image-section,
    .social-features-section,
    .top-creators-section,
    .forum-preview-section,
    .guidelines-section,
    .join-community-section {
        padding: 60px 0;
    }

    .community-hero-section .title,
    .social-features-section .title,
    .top-creators-section .title,
    .forum-preview-section .title,
    .guidelines-section .title,
    .join-community-content h2 {
        font-size: 32px;
    }

    .community-stats-section {
        padding: 60px 0;
    }

    .community-image-content {
        margin: 0 15px;
    }

    .community-image-content img {
        max-height: 300px;
    }

    .stat-box {
        padding: 30px 15px;
        margin-bottom: 20px;
    }

    .feature-card,
    .creator-card,
    .guideline-card {
        padding: 30px 20px;
        margin-bottom: 20px;
    }

    .forum-category {
        padding: 20px;
    }

    .forum-post {
        flex-direction: column;
        text-align: center;
    }

    .post-avatar {
        margin: 0 auto 15px;
    }

    .creator-info .stats {
        flex-direction: column;
        gap: 15px;
    }

    .benefit-item {
        margin-bottom: 20px;
    }
}

@media (max-width: 575px) {
    .community-hero-section,
    .community-image-section,
    .social-features-section,
    .top-creators-section,
    .forum-preview-section,
    .guidelines-section,
    .join-community-section {
        padding: 40px 0;
    }

    .community-hero-section .title,
    .social-features-section .title,
    .top-creators-section .title,
    .forum-preview-section .title,
    .guidelines-section .title,
    .join-community-content h2 {
        font-size: 28px;
        line-height: 1.3;
    }

    .community-stats-section {
        padding: 40px 0;
    }

    .community-image-content {
        margin: 0 15px;
    }

    .community-image-content img {
        max-height: 250px;
    }

    .stat-box {
        padding: 25px 15px;
    }

    .stat-box .icon i {
        font-size: 36px;
    }

    .stat-box .number {
        font-size: 28px;
    }

    .feature-card .icon i,
    .guideline-card .icon i {
        font-size: 36px;
    }

    .community-benefits {
        margin: 30px 0;
    }

    .benefit-item i {
        font-size: 28px;
    }
} 