/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #f0f0f0;
    background-color: #1a1a1a;
}

a {
    text-decoration: none;
    color: #ff6b6b;
}

a:hover {
    color: #ff8e8e;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 10px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.2;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background-color: #ff6b6b;
    color: white;
}

.btn-primary:hover {
    background-color: #ff8e8e;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(255, 107, 107, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: #ff6b6b;
    border: 2px solid #ff6b6b;
}

.btn-secondary:hover {
    background-color: rgba(255, 107, 107, 0.1);
    color: #ff8e8e;
    transform: translateY(-2px);
}

.btn-large {
    padding: 15px 30px;
    font-size: 1.1rem;
}

/* Header */
.site-header {
    background-color: #222;
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    margin: 1;
}

.logo h1 a {
    color: #ff6b6b;
    font-size: 1.5rem;
    font-weight: 800;
}

.main-nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-nav ul li {
    margin-left: 1.5rem;
}

.main-nav ul li a {
    color: #f0f0f0;
    font-weight: 600;
    transition: color 0.3s ease;
    padding: 0.5rem 0;
}

.main-nav ul li a:hover {
    color: #ff6b6b;
}

.main-nav ul li .nav-donate {
    padding: 0.5rem 1rem;
    margin-left: 1rem;
    background-color: transparent;
    color: #ff6b6b;
    border: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.main-nav ul li .nav-donate:hover {
    background-color: rgba(255, 107, 107, 0.1);
    color: #ff8e8e;
    transform: none;
    box-shadow: none;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #f0f0f0;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #2c003e 0%, #5a1a6a 100%);
    padding: 2rem 0;
    text-align: center;
}

.hero-content h1 {
    margin-bottom: 1.5rem;
    color: white;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #e0e0e0;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

/* Game Modes Section */
.game-modes {
    padding: 2rem 0;
    background-color: #1a1a1a;
}

.section-title {
    text-align: center;
    margin-bottom: 1rem;
    color: #ff6b6b;
}

.section-subtitle {
    text-align: center;
    margin-bottom: 1rem;
    color: #b0b0b0;
    font-size: 1.1rem;
}

.modes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.mode-card {
    background-color: #222;
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #333;
}

.mode-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.mode-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.mode-card h3 {
    margin-bottom: 1rem;
    color: #ff6b6b;
}

.centered-cta {
    text-align: center;
}

/* Features Section */
.features {
    padding: 2rem 0;
    background-color: #222;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-item {
    text-align: center;
    padding: 0rem;
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.feature-item h3 {
    margin-bottom: 1rem;
    color: #ff6b6b;
}

/* Testimonials Section */
.testimonials {
    padding: 2rem 0;
    background-color: #1a1a1a;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background-color: #222;
    border-radius: 8px;
    padding: 2rem;
    border: 1px solid #333;
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    font-weight: 600;
    color: #ff6b6b;
}

/* Blog Preview Section */
.blog-preview {
    padding: 1rem 0;
    background-color: #222;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.blog-card {
    background-color: #1a1a1a;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease;
    border: 1px solid #333;
}

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-image-placeholder {
    height: 200px;
    background-color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
}

.blog-image {
    height: 200px;
    overflow: hidden;
    border-radius: 8px 8px 0 0;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-content {
    padding: 1.5rem;
}

.blog-content h3 {
    margin-bottom: 0.5rem;
}

.blog-excerpt {
    color: #b0b0b0;
    margin-bottom: 1rem;
}

.read-more {
    color: #ff6b6b;
    font-weight: 600;
}

/* Blog Page Styles */
.blog-content {
    padding: 2rem 0;
    background-color: #1a1a1a;
}

.blog-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.search-bar {
    display: flex;
    gap: 0.5rem;
}

.search-bar input {
    padding: 0.75rem;
    border-radius: 4px;
    border: 1px solid #333;
    background-color: #222;
    color: #f0f0f0;
    min-width: 250px;
}

.category-filter select {
    padding: 0.75rem;
    border-radius: 4px;
    border: 1px solid #333;
    background-color: #222;
    color: #f0f0f0;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.category {
    background-color: #ff6b6b;
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-weight: 600;
}

.date {
    color: #b0b0b0;
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
}

.page-info {
    color: #b0b0b0;
}

/* Article Page Styles */
.article-content {
    padding: 5rem 0;
    background-color: #1a1a1a;
}

.article-header {
    margin-bottom: 2rem;
}

.article-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    color: #b0b0b0;
}

.article-image {
    width: 100%;
    height: 400px;
    background-color: #333;
    border-radius: 8px;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    overflow: hidden;
}

.article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.article-body {
    /*max-width: 800px;*/
    margin: 0 auto;
}

.article-body p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.7;
    text-align: justify;
}

.article-body h2 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #ff6b6b;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #333;
}

.article-body h3 {
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    color: #ff8e8e;
}

.article-body ol {
    margin-bottom: 2rem;
    margin-top: 1rem;
    padding-left: 1.5rem;
}

.article-body ol li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.related-articles {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #333;
}

.related-articles .section-title {
    text-align: left;
}

/* Final CTA Section */
.final-cta {
    padding: 2rem 0;
    text-align: center;
    background: linear-gradient(135deg, #5a1a6a 0%, #2c003e 100%);
}

.final-cta h2 {
    color: white;
    margin-bottom: 1rem;
}

.final-cta p {
    color: #e0e0e0;
    max-width: 700px;
    margin: 0 auto 1rem;
}

.support-text {
    margin: 2rem auto 2rem;
    max-width: 700px;
}

/* About Page Styles */
.about-content {
    padding: 2rem 0;
    background-color: #1a1a1a;
}

.content-section {
    margin-bottom: 3rem;
    
}

.content-section h2 {
    color: #ff6b6b;
    margin-bottom: 1.5rem;
}

.mission-points {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.mission-point h3 {
    color: #ff6b6b;
    margin-bottom: 0.5rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.value-card {
    background-color: #222;
    border-radius: 8px;
    padding: 1.5rem;
    border: 1px solid #333;
}

.value-card h3 {
    color: #ff6b6b;
    margin-bottom: 1rem;
}

.commitment-list {
    list-style-type: none;
    margin: 1.5rem 0;
}

.commitment-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.commitment-list li:before {
    content: "✓";
    color: #ff6b6b;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.team-section {
    padding: 2rem 0;
    background-color: #222;
    text-align: center;
}

.team-section h2 {
    color: #ff6b6b;
    margin-bottom: 1.5rem;
}

.team-section p {
    max-width: 800px;
    margin: 0 auto 1rem;
}

/* Support Page Styles */
.support-content {
    padding: 2rem 0;
    background-color: #1a1a1a;
}

.support-list {
    list-style-type: none;
    margin: 1.5rem 0;
}

.support-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.support-list li:before {
    content: "✓";
    color: #ff6b6b;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.support-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.support-option {
    background-color: #222;
    border-radius: 8px;
    padding: 1.5rem;
    border: 1px solid #333;
}

.support-option h3 {
    color: #ff6b6b;
    margin-bottom: 1rem;
}

.donation-widget {
    text-align: center;
    background-color: #222;
    border-radius: 8px;
    padding: 2rem;
    margin: 2rem 0;
    border: 1px solid #333;
}

.donation-widget p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.other-support {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.support-item {
    text-align: center;
}

.support-item h3 {
    color: #ff6b6b;
    margin-bottom: 1rem;
}

.gratitude-section {
    padding: 2rem 0;
    background: linear-gradient(135deg, #5a1a6a 0%, #2c003e 100%);
    text-align: center;
}

.gratitude-section h2 {
    color: white;
    margin-bottom: 1.5rem;
}

.gratitude-section p {
    color: #e0e0e0;
    max-width: 800px;
    margin: 0 auto 1.5rem;
}

.gratitude-section .btn {
    margin-top: 1.5rem;
}

/* Contact Page Styles */
.contact-content {
    padding: 2rem 0;
    background-color: #1a1a1a;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin: 3rem 0;
}

.contact-method {
    margin-bottom: 2rem;
}

.contact-method h3 {
    color: #ff6b6b;
    margin-bottom: 1rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border-radius: 4px;
    border: 1px solid #333;
    background-color: #222;
    color: #f0f0f0;
    font-family: inherit;
}

.form-group textarea {
    resize: vertical;
}

.faq-list {
    list-style-type: none;
    margin: 1.5rem 0;
}

.faq-list li {
    margin-bottom: 0.5rem;
}

.faq-list a {
    color: #ff6b6b;
    text-decoration: underline;
}

.faq-list a:hover {
    color: #ff8e8e;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin: 1rem 0;
}

.social-link {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: #222;
    border-radius: 4px;
    border: 1px solid #333;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: #ff6b6b;
    color: white;
    border-color: #ff6b6b;
}

/* Legal Pages Styles */
.legal-content {
    padding: 2rem 0;
    background-color: #1a1a1a;
}

.legal-list {
    list-style-type: none;
    margin: 1.5rem 0;
    padding-left: 1rem;
}

.legal-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.legal-list li:before {
    content: "•";
    color: #ff6b6b;
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* FAQ Styles */
.faq-item {
    margin-bottom: 2rem;
}

.faq-item h3 {
    color: #ff6b6b;
    margin-bottom: 0.5rem;
}

/* Footer */
.site-footer {
    background-color: #222;
    padding: 2rem 0 1rem;
    border-top: 1px solid #333;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    color: #ff6b6b;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #b0b0b0;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #ff6b6b;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    color: #b0b0b0;
    font-size: 0.9rem;
}

.footer-bottom a {
    color: #b0b0b0;
}

.footer-bottom a:hover {
    color: #ff6b6b;
}
