/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #FF6B6B;
    --secondary-color: #4ECDC4;
    --dark-color: #2C3E50;
    --light-color: #F8F9FA;
    --text-color: #333;
    --gray-color: #6C757D;
    --border-color: #DEE2E6;
    --success-color: #28A745;
    --danger-color: #DC3545;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: #fff;
}

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

/* Header Styles */
.header {
    background-color: var(--dark-color);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
}

.logo img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.logo h1 {
    font-size: 1.5rem;
    font-weight: 700;
}

.nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav a:hover {
    color: var(--secondary-color);
}

.mobile-menu-toggle {
    display: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: #fff;
    padding: 5rem 0;
    text-align: center;
}

.hero-content h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.tagline {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.social-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: #fff;
    color: var(--primary-color);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn-social {
    background-color: rgba(255, 255, 255, 0.2);
    color: #fff;
    border-color: #fff;
}

.btn-social:hover {
    background-color: #fff;
    color: var(--primary-color);
}

/* About Section */
.about {
    padding: 5rem 0;
    background-color: var(--light-color);
}

.about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--dark-color);
    text-align: center;
}

.about-text {
    margin-bottom: 3rem;
}

.about-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.about-text a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.about-text a:hover {
    text-decoration: underline;
}

.about-image {
    text-align: center;
}

.about-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Why Section */
.why-section {
    padding: 5rem 0;
    background-color: #fff;
}

.why-section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--dark-color);
    text-align: center;
}

.why-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

.why-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.problem-list {
    list-style: none;
    margin: 2rem 0;
}

.problem-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.problem-list i {
    color: var(--danger-color);
    font-size: 1.2rem;
    margin-top: 0.2rem;
}

.highlight {
    font-weight: 600;
    color: var(--dark-color);
}

.mission-statement {
    background-color: var(--secondary-color);
    color: #fff;
    padding: 1.5rem;
    border-radius: 10px;
    font-size: 1.3rem;
    font-weight: 600;
    text-align: center;
    margin: 2rem 0;
}

.feature-list {
    background-color: var(--light-color);
    padding: 1.5rem;
    border-radius: 10px;
    margin: 2rem 0;
}

.feature-list p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.feature-list p:last-child {
    margin-bottom: 0;
}

.why-image {
    text-align: center;
}

.why-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Mission Section */
.mission-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
}

.mission-section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.mission-content .intro {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.mission-content p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.mission-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.mission-card {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
}

.mission-card:hover {
    transform: translateY(-10px);
    background-color: rgba(255, 255, 255, 0.15);
}

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

.mission-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.mission-card p {
    font-size: 1rem;
    line-height: 1.7;
}

.conclusion {
    font-weight: 600;
    font-size: 1.2rem;
    text-align: center;
    margin-top: 2rem;
}

.conclusion-title {
    font-size: 2rem;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.brand-statement {
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
    margin-top: 2rem;
    padding: 1.5rem;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

/* FAQ Section */
.faq-section {
    padding: 5rem 0;
    background-color: var(--light-color);
}

.faq-section h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--dark-color);
    text-align: center;
}

.faq-list {
    margin-bottom: 3rem;
}

.faq-item {
    background-color: #fff;
    margin-bottom: 1rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.faq-question {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--dark-color);
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: var(--light-color);
}

.faq-question i {
    color: var(--secondary-color);
    font-size: 1.5rem;
}

.faq-answer {
    padding: 0 1.5rem 1.5rem 4rem;
    font-size: 1rem;
    line-height: 1.8;
    color: var(--gray-color);
}

.faq-answer a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.faq-answer a:hover {
    text-decoration: underline;
}

.blog-image {
    text-align: center;
    margin: 3rem 0;
}

.blog-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.description {
    background-color: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.description p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.responsible {
    font-style: italic;
    color: var(--gray-color);
}

.responsible a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

/* Footer Styles */
.footer {
    background-color: var(--dark-color);
    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-logo img {
    width: 50px;
    height: 50px;
    margin-bottom: 1rem;
}

.footer-logo h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.footer-logo p {
    opacity: 0.8;
}

.footer-column h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

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

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

.footer-column a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: var(--secondary-color);
}

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

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #fff;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
}

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

.footer-bottom p {
    margin-bottom: 0.5rem;
    opacity: 0.7;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .hero-content h2 {
        font-size: 2rem;
    }
    
    .tagline {
        font-size: 1.2rem;
    }
    
    .social-links {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .about-content h2,
    .why-section h2,
    .mission-section h2,
    .faq-section h2 {
        font-size: 2rem;
    }
    
    .mission-cards {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .social-icons {
        justify-content: center;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .mission-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.about-content,
.why-content,
.mission-content,
.faq-list {
    animation: fadeIn 0.8s ease-out;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Page Header Styles */
.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: #fff;
    padding: 4rem 0 3rem;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Page Content Styles */
.page-content {
    padding: 4rem 0;
    background-color: var(--light-color);
}

.content-wrapper {
    background-color: #fff;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    max-width: 900px;
    margin: 0 auto;
}

.content-wrapper h2 {
    color: var(--dark-color);
    font-size: 2rem;
    margin: 2rem 0 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid var(--secondary-color);
}

.content-wrapper h3 {
    color: var(--dark-color);
    font-size: 1.5rem;
    margin: 1.5rem 0 1rem;
}

.content-wrapper p {
    line-height: 1.8;
    margin-bottom: 1rem;
}

.content-wrapper ul {
    margin: 1rem 0 1rem 2rem;
    line-height: 1.8;
}

.content-wrapper ul li {
    margin-bottom: 0.5rem;
}

.update-date {
    color: var(--gray-color);
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

/* Value Cards */
.value-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.value-card {
    background-color: var(--light-color);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.value-card i {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.value-card h3 {
    margin: 1rem 0;
    font-size: 1.3rem;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: #fff;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    margin: 3rem 0;
}

.cta-section h3 {
    color: #fff;
    margin-bottom: 1.5rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-secondary {
    background-color: #fff;
    color: var(--primary-color);
    border: 2px solid #fff;
}

.btn-secondary:hover {
    background-color: transparent;
    color: #fff;
}

/* Notice Box */
.notice-box {
    background-color: #FFF3CD;
    border-left: 4px solid #FFC107;
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 5px;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.notice-box i {
    font-size: 1.5rem;
    color: #856404;
}

.notice-box p {
    margin: 0;
    color: #856404;
}

/* Contact Page Styles */
.contact-intro {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.contact-card {
    background-color: #fff;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-10px);
}

.contact-icon {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.contact-card h3 {
    font-size: 1.5rem;
    margin: 1rem 0;
    color: var(--dark-color);
}

.contact-card p {
    color: var(--gray-color);
    margin-bottom: 1.5rem;
}

.faq-contact {
    background-color: #fff;
    padding: 3rem;
    border-radius: 15px;
    margin: 3rem 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.faq-contact h2 {
    color: var(--dark-color);
    margin-bottom: 2rem;
    text-align: center;
}

.faq-item-page {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.faq-item-page:last-child {
    border-bottom: none;
}

.faq-item-page h3 {
    color: var(--dark-color);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.faq-item-page h3 i {
    color: var(--secondary-color);
    margin-right: 0.5rem;
}

.contact-notice {
    background-color: #E7F3FF;
    border-left: 4px solid var(--secondary-color);
    padding: 2rem;
    margin: 3rem 0;
    border-radius: 5px;
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.contact-notice i {
    font-size: 2rem;
    color: var(--secondary-color);
}

.contact-notice h3 {
    margin: 0 0 0.5rem 0;
    color: var(--dark-color);
}

.social-connect {
    text-align: center;
    margin: 3rem 0;
}

.social-connect h2 {
    margin-bottom: 1rem;
}

.social-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    color: #fff;
}

.social-btn.facebook {
    background-color: #1877F2;
}

.social-btn.facebook:hover {
    background-color: #145dbf;
    transform: translateY(-3px);
}

.social-btn.discord {
    background-color: #5865F2;
}

.social-btn.discord:hover {
    background-color: #4752c4;
    transform: translateY(-3px);
}

/* Logo Link Style */
.logo a {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: inherit;
}

/* Active Nav Link */
.nav a.active {
    color: var(--secondary-color);
    border-bottom: 2px solid var(--secondary-color);
}

/* Review Page Styles */
.review-article {
    background-color: #fff;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    max-width: 1000px;
    margin: 0 auto;
}

.article-intro {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, #FFF5F7 0%, #FFF0F5 100%);
    border-left: 4px solid var(--primary-color);
    border-radius: 5px;
}

.article-section {
    margin: 3rem 0;
}

.article-section h2 {
    color: var(--dark-color);
    font-size: 2rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid var(--secondary-color);
}

.section-intro {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--gray-color);
    margin-bottom: 2rem;
}

/* Story Review Card */
.story-review {
    display: flex;
    gap: 2rem;
    margin: 2rem 0;
    padding: 2rem;
    background-color: var(--light-color);
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.story-review:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.story-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--secondary-color);
    min-width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: #fff;
    border-radius: 15px;
    flex-shrink: 0;
}

.story-content {
    flex: 1;
}

.story-image {
    width: 100%;
    margin-bottom: 1.5rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.story-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.story-image:hover img {
    transform: scale(1.05);
}

.story-content h3 {
    font-size: 1.5rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.story-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.badge {
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}

.badge-hot {
    background-color: #FF6B6B;
    color: #fff;
}

.badge-full {
    background-color: #28A745;
    color: #fff;
}

.genre {
    padding: 0.3rem 0.8rem;
    background-color: #E9ECEF;
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--gray-color);
}

.story-content p {
    line-height: 1.8;
    margin-bottom: 1rem;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

/* Suggestion List */
.suggestion-list {
    margin: 2rem 0;
}

.suggestion-item {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    margin-bottom: 1rem;
    background-color: var(--light-color);
    border-radius: 10px;
    transition: background-color 0.3s ease;
}

.suggestion-item:hover {
    background-color: #E3F2FD;
}

.suggestion-item i {
    color: #FFD700;
    font-size: 1.3rem;
    margin-top: 0.2rem;
}

.suggestion-item strong {
    display: block;
    color: var(--dark-color);
    margin-bottom: 0.3rem;
}

.suggestion-desc {
    font-size: 0.9rem;
    color: var(--gray-color);
}

/* Highlight Section */
.highlight-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding: 3rem;
    border-radius: 15px;
    margin: 3rem 0;
}

.highlight-section h2 {
    color: #fff;
    border-bottom-color: rgba(255, 255, 255, 0.3);
}

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

.benefit-item {
    text-align: center;
}

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

.benefit-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #fff;
}

.benefit-item p {
    font-size: 1rem;
    line-height: 1.6;
}

/* Article Conclusion */
.article-conclusion {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid var(--border-color);
}

.article-conclusion h2 {
    text-align: center;
    margin-bottom: 1.5rem;
}

.article-conclusion p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.cta-box {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: #fff;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    margin-top: 2rem;
}

.cta-box h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #fff;
}

.cta-box .btn {
    background-color: #fff;
    color: var(--primary-color);
    font-size: 1.2rem;
    padding: 1rem 2.5rem;
}

.cta-box .btn:hover {
    transform: scale(1.05);
}

/* Responsive for Review Page */
@media (max-width: 768px) {
    .review-article {
        padding: 1.5rem;
    }
    
    .story-review {
        flex-direction: column;
        gap: 1rem;
    }
    
    .story-number {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .article-intro {
        padding: 1.5rem;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}