/* About Page Styles */
.about-main {
    min-height: 100vh;
    background: linear-gradient(135deg, #111827, #1f2937, #000000);
    padding: 8rem 1rem 5rem;
}

.about-container {
    max-width: 75rem;
    margin: 0 auto;
    text-align: center;
}

.about-title {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    background: linear-gradient(90deg, #3b82f6, #a855f7, #ec4899);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

@media (min-width: 768px) {
    .about-title {
        font-size: 3.75rem;
    }
}

.about-hero {
    background: linear-gradient(90deg, rgba(31, 41, 55, 0.5), rgba(17, 24, 39, 0.5));
    border-radius: 1rem;
    padding: 2rem;
    border: 1px solid rgba(55, 65, 81, 0.5);
    margin-bottom: 3rem;
}

.about-description {
    font-size: 1.25rem;
    color: #d1d5db;
    margin-bottom: 2rem;
    line-height: 1.75;
}

.hero-tagline {
    text-align: center;
}

.tagline-main {
    font-size: 1.5rem;
    font-weight: 600;
    color: white;
}

.tagline-sub {
    font-size: 1.125rem;
    color: #60a5fa;
    margin-top: 0.5rem;
    display: block;
}

.mission-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 4rem;
}

@media (min-width: 768px) {
    .mission-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.mission-card {
    background: linear-gradient(135deg, rgba(31, 41, 55, 0.3), rgba(17, 24, 39, 0.3));
    border-radius: 0.75rem;
    padding: 1.5rem;
    border: 1px solid rgba(55, 65, 81, 0.5);
    text-align: left;
}

.mission-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.mission-description {
    color: #d1d5db;
    line-height: 1.75;
}

/* Stats Section */
.stats-section {
    margin-bottom: 4rem;
}

.stats-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: white;
    margin-bottom: 2rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.stat-card {
    background: linear-gradient(135deg, rgba(31, 41, 55, 0.5), rgba(17, 24, 39, 0.5));
    border-radius: 0.75rem;
    padding: 1.5rem;
    border: 1px solid rgba(55, 65, 81, 0.5);
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 900;
    color: #60a5fa;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #d1d5db;
    font-weight: 500;
}

/* Tech Section */
.tech-section {
    margin-bottom: 2rem;
}

.tech-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: white;
    margin-bottom: 2rem;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .tech-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.tech-item {
    background: linear-gradient(135deg, rgba(31, 41, 55, 0.3), rgba(17, 24, 39, 0.3));
    border-radius: 0.75rem;
    padding: 1.5rem;
    border: 1px solid rgba(55, 65, 81, 0.5);
    text-align: center;
    transition: transform 0.3s ease;
}

.tech-item:hover {
    transform: translateY(-4px);
}

.tech-icon {
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.tech-name {
    color: #d1d5db;
    font-weight: 500;
}

/* Support Page Styles */
.support-main {
    min-height: 100vh;
    background: linear-gradient(135deg, #111827, #1f2937, #000000);
    padding: 8rem 1rem 5rem;
}

.support-container {
    max-width: 75rem;
    margin: 0 auto;
    text-align: center;
}

.support-title {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    background: linear-gradient(90deg, #3b82f6, #a855f7, #ec4899);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

@media (min-width: 768px) {
    .support-title {
        font-size: 3.75rem;
    }
}

.support-description {
    font-size: 1.25rem;
    color: #d1d5db;
    max-width: 48rem;
    margin: 0 auto 3rem;
    line-height: 1.75;
}

/* Discord Section */
.discord-section {
    background: linear-gradient(90deg, rgba(31, 41, 55, 0.5), rgba(17, 24, 39, 0.5));
    border-radius: 1rem;
    padding: 2rem;
    border: 1px solid rgba(55, 65, 81, 0.5);
    margin-bottom: 3rem;
}

.discord-icon {
    font-size: 3.75rem;
    margin-bottom: 1.5rem;
}

.discord-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.discord-description {
    font-size: 1.125rem;
    color: #d1d5db;
    margin-bottom: 2rem;
}

.discord-btn-large {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: linear-gradient(90deg, #4f46e5, #7c3aed);
    color: white;
    border-radius: 0.75rem;
    font-size: 1.25rem;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    transform: scale(1);
}

.discord-btn-large:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 15px -3px rgba(79, 70, 229, 0.25);
}

/* Support Options */
.support-options {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .support-options {
        grid-template-columns: repeat(3, 1fr);
    }
}

.support-card {
    background: linear-gradient(135deg, rgba(31, 41, 55, 0.3), rgba(17, 24, 39, 0.3));
    border-radius: 0.75rem;
    padding: 1.5rem;
    border: 1px solid rgba(55, 65, 81, 0.5);
    text-align: center;
}

.support-icon {
    font-size: 2.25rem;
    margin-bottom: 1rem;
}

.support-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.support-card-description {
    color: #9ca3af;
    margin-bottom: 1rem;
}

.support-btn {
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    color: white;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.support-btn-blue {
    background: #2563eb;
}

.support-btn-blue:hover {
    background: #1d4ed8;
}

.support-btn-green {
    background: #059669;
}

.support-btn-green:hover {
    background: #047857;
}

.support-btn-purple {
    background: #7c3aed;
}

.support-btn-purple:hover {
    background: #6d28d9;
}

/* Support Features */
.support-features {
    background: linear-gradient(90deg, rgba(31, 41, 55, 0.5), rgba(17, 24, 39, 0.5));
    border-radius: 1rem;
    padding: 2rem;
    border: 1px solid rgba(55, 65, 81, 0.5);
    margin-bottom: 3rem;
}

.support-features-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
}

.support-features .features-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    text-align: left;
}

@media (min-width: 768px) {
    .support-features .features-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

.support-features .feature-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.support-features .feature-check {
    color: #10b981;
    font-size: 1.25rem;
    margin-top: 0.125rem;
}

.support-features .feature-content {
    flex: 1;
}

.support-features .feature-name {
    font-weight: 600;
    color: white;
    margin-bottom: 0.25rem;
}

.support-features .feature-desc {
    color: #9ca3af;
    font-size: 0.875rem;
}

/* FAQ Section */
.faq-section {
    margin-bottom: 2rem;
}

.faq-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: white;
    margin-bottom: 2rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .faq-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.faq-item {
    background: linear-gradient(135deg, rgba(31, 41, 55, 0.3), rgba(17, 24, 39, 0.3));
    border-radius: 0.75rem;
    padding: 1.5rem;
    border: 1px solid rgba(55, 65, 81, 0.5);
    text-align: left;
}

.faq-question {
    font-size: 1.125rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.75rem;
}

.faq-answer {
    color: #d1d5db;
    line-height: 1.6;
}
