/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f6f0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Cinzel', serif;
    font-weight: 700;
    color: #2c1810;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #8b4513;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

/* Navigation */
.navbar {
    background: linear-gradient(135deg, #8b4513 0%, #a0522d 100%);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #d4af37;
}

.logo-text {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    background-color: rgba(255,255,255,0.2);
    color: #d4af37;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #fff;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), 
                url('../images/hero-bg.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    position: relative;
    margin-top: 80px;
}

.hero-content {
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 1rem;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.5);
    color: #fff;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    display: inline-block;
}

.btn-primary {
    background: linear-gradient(135deg, #d4af37 0%, #ffd700 100%);
    color: #2c1810;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.6);
}

.btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.btn-secondary:hover {
    background: #fff;
    color: #2c1810;
    transform: translateY(-2px);
}

/* Stats Section */
.stats {
    background: linear-gradient(135deg, #2c1810 0%, #8b4513 100%);
    padding: 4rem 0;
    color: #fff;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255,255,255,0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

.stat-item i {
    font-size: 3rem;
    color: #d4af37;
    margin-bottom: 1rem;
}

.stat-item h3 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: #fff;
}

.stat-item p {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Features Preview */
.features-preview {
    padding: 5rem 0;
    background: #f8f6f0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 1px solid #e0d6c0;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.feature-card i {
    font-size: 3rem;
    color: #8b4513;
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c1810;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
}

/* News Section */
.news {
    padding: 5rem 0;
    background: #fff;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.news-card {
    background: #f8f6f0;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.news-image {
    height: 200px;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.news-card:hover .news-image img {
    transform: scale(1.1);
}

.news-content {
    padding: 1.5rem;
}

.news-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #2c1810;
}

.news-date {
    color: #8b4513;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.news-content p {
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.read-more {
    color: #8b4513;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: #d4af37;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #2c1810 0%, #8b4513 100%);
    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-section h3,
.footer-section h4 {
    color: #d4af37;
    margin-bottom: 1rem;
}

.footer-section p {
    margin-bottom: 1rem;
    opacity: 0.9;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #fff;
    text-decoration: none;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.footer-section ul li a:hover {
    opacity: 1;
    color: #d4af37;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: #fff;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #d4af37;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.2);
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background-color: #8b4513;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .news-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: 2rem;
    }

    .container {
        padding: 0 15px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-card,
.news-card,
.stat-item {
    animation: fadeInUp 0.6s ease-out;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #2c1810 0%, #8b4513 100%);
    padding: 8rem 0 4rem;
    text-align: center;
    color: #fff;
    margin-top: 80px;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #fff;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* About Page Styles */
.about-content {
    padding: 5rem 0;
    background: #f8f6f0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #2c1810;
}

.about-text h3 {
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
    color: #8b4513;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #666;
}

.about-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.server-features {
    padding: 5rem 0;
    background: #fff;
}

.feature-item {
    background: #f8f6f0;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.feature-item i {
    font-size: 3rem;
    color: #8b4513;
    margin-bottom: 1.5rem;
}

.staff-team {
    padding: 5rem 0;
    background: #f8f6f0;
}

.staff-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.staff-member {
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.staff-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.staff-avatar {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #d4af37;
}

.staff-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.staff-role {
    color: #8b4513;
    font-weight: 600;
    margin-bottom: 1rem;
}

.staff-description {
    color: #666;
    line-height: 1.6;
}

.server-stats {
    padding: 5rem 0;
    background: #fff;
}

.stat-card {
    background: #f8f6f0;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #8b4513;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    color: #666;
}

.community-values {
    padding: 5rem 0;
    background: #f8f6f0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.value-item {
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.value-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.value-item i {
    font-size: 3rem;
    color: #8b4513;
    margin-bottom: 1.5rem;
}

.cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #2c1810 0%, #8b4513 100%);
    color: #fff;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #fff;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Rules Page Styles */
.rules-content {
    padding: 5rem 0;
    background: #f8f6f0;
}

.rules-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.rules-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2c1810;
}

.rules-intro p {
    font-size: 1.1rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
}

.rules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.rule-category {
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.rule-category h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #8b4513;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.rule-category h3 i {
    color: #d4af37;
}

.rule-list {
    list-style: none;
}

.rule-list li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.rule-list li:before {
    content: "•";
    color: #8b4513;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.punishment-system {
    background: #fff;
    padding: 3rem;
    border-radius: 15px;
    margin-bottom: 3rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.punishment-system h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: #2c1810;
}

.punishment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.punishment-level {
    background: #f8f6f0;
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    border-left: 4px solid #8b4513;
}

.punishment-level h3 {
    color: #8b4513;
    margin-bottom: 0.5rem;
}

.appeal-process {
    background: #fff;
    padding: 3rem;
    border-radius: 15px;
    margin-bottom: 3rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.appeal-process h2 {
    margin-bottom: 1.5rem;
    color: #2c1810;
}

.appeal-process ol {
    padding-left: 1.5rem;
}

.appeal-process li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.rule-updates {
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 3rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.rule-agreement {
    background: #fff;
    padding: 3rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.rule-agreement h2 {
    margin-bottom: 1rem;
    color: #2c1810;
}

.rule-agreement p {
    margin-bottom: 2rem;
    color: #666;
}

.agreement-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Whitelist Page Styles */
.whitelist-content {
    padding: 5rem 0;
    background: #f8f6f0;
}

.whitelist-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.whitelist-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2c1810;
}

.whitelist-intro p {
    font-size: 1.1rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
}

.alert {
    padding: 1rem 1.5rem;
    border-radius: 10px;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.whitelist-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.application-form {
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.application-form h3 {
    margin-bottom: 2rem;
    color: #2c1810;
}

.whitelist-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-section {
    border: 1px solid #e0d6c0;
    padding: 1.5rem;
    border-radius: 10px;
    background: #f8f6f0;
}

.form-section h4 {
    margin-bottom: 1rem;
    color: #8b4513;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2c1810;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #8b4513;
}

.form-group small {
    display: block;
    margin-top: 0.25rem;
    color: #666;
    font-size: 0.9rem;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    cursor: pointer;
    line-height: 1.4;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin-top: 0.25rem;
}

.form-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.whitelist-info {
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.whitelist-info h3 {
    margin-bottom: 2rem;
    color: #2c1810;
}

.process-steps {
    margin-bottom: 2rem;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.step-number {
    width: 30px;
    height: 30px;
    background: #8b4513;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    flex-shrink: 0;
}

.step-content h4 {
    margin-bottom: 0.5rem;
    color: #2c1810;
}

.step-content p {
    color: #666;
    line-height: 1.5;
}

.application-tips {
    margin-bottom: 2rem;
}

.application-tips h4 {
    margin-bottom: 1rem;
    color: #2c1810;
}

.application-tips ul {
    list-style: none;
    padding-left: 0;
}

.application-tips li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.5;
}

.application-tips li:before {
    content: "✓";
    color: #8b4513;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.contact-support {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #e0d6c0;
}

.contact-support h4 {
    margin-bottom: 1rem;
    color: #2c1810;
}

.contact-support p {
    margin-bottom: 1.5rem;
    color: #666;
}

/* Contact Page Styles */
.contact-content {
    padding: 5rem 0;
    background: #f8f6f0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.contact-form-section {
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.contact-form-section h2 {
    margin-bottom: 1rem;
    color: #2c1810;
}

.contact-form-section p {
    margin-bottom: 2rem;
    color: #666;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.contact-info-section {
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.contact-info-section h2 {
    margin-bottom: 2rem;
    color: #2c1810;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e0d6c0;
}

.contact-method:last-child {
    border-bottom: none;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: #8b4513;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-details h3 {
    margin-bottom: 0.5rem;
    color: #2c1810;
}

.contact-details p {
    color: #666;
    margin-bottom: 0.5rem;
}

.contact-details a {
    color: #8b4513;
    text-decoration: none;
    font-weight: 600;
}

.contact-details a:hover {
    color: #d4af37;
}

.btn-discord {
    background: #7289da;
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    text-decoration: none;
    display: inline-block;
    transition: background 0.3s ease;
}

.btn-discord:hover {
    background: #5b6eae;
}

.staff-availability {
    margin-top: 2rem;
}

.staff-availability h3 {
    margin-bottom: 1rem;
    color: #2c1810;
}

.availability-grid {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.availability-item {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid #e0d6c0;
}

.availability-item:last-child {
    border-bottom: none;
}

.day {
    font-weight: 600;
    color: #2c1810;
}

.time {
    color: #666;
}

.staff-directory {
    padding: 4rem 0;
    background: #fff;
}

.staff-card {
    background: #f8f6f0;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.staff-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.staff-contact {
    margin-top: 1rem;
}

.staff-discord {
    color: #8b4513;
    text-decoration: none;
    font-weight: 600;
}

.staff-discord:hover {
    color: #d4af37;
}

.faq-section {
    padding: 4rem 0;
    background: #f8f6f0;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.faq-item {
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.faq-item h3 {
    margin-bottom: 1rem;
    color: #2c1810;
}

.faq-item p {
    color: #666;
    line-height: 1.6;
}

.faq-item a {
    color: #8b4513;
    text-decoration: none;
    font-weight: 600;
}

.faq-item a:hover {
    color: #d4af37;
}

/* Features Page Styles */
.features-overview {
    padding: 5rem 0;
    background: #f8f6f0;
}

.overview-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.overview-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #2c1810;
}

.overview-content p {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.8;
}

.core-features {
    padding: 5rem 0;
    background: #fff;
}

.feature-card.large {
    padding: 3rem;
    margin-bottom: 2rem;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: #8b4513;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 2rem;
}

.feature-list {
    list-style: none;
    padding-left: 0;
    margin-top: 1.5rem;
}

.feature-list li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.5;
}

.feature-list li:before {
    content: "✓";
    color: #8b4513;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.job-systems {
    padding: 5rem 0;
    background: #f8f6f0;
}

.jobs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.job-category {
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.job-category h3 {
    margin-bottom: 1.5rem;
    color: #8b4513;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.job-category h3 i {
    color: #d4af37;
}

.job-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.job-item {
    padding: 1rem;
    background: #f8f6f0;
    border-radius: 10px;
    border-left: 4px solid #8b4513;
}

.job-item h4 {
    margin-bottom: 0.5rem;
    color: #2c1810;
}

.job-item p {
    color: #666;
    line-height: 1.5;
}

.custom-systems {
    padding: 5rem 0;
    background: #fff;
}

.systems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.system-card {
    background: #f8f6f0;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.system-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.system-icon {
    width: 60px;
    height: 60px;
    background: #8b4513;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 1.5rem;
}

.qol-features {
    padding: 5rem 0;
    background: #f8f6f0;
}

.qol-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.qol-item {
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.qol-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.qol-item i {
    font-size: 2.5rem;
    color: #8b4513;
    margin-bottom: 1.5rem;
}

.tech-specs {
    padding: 5rem 0;
    background: #fff;
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.spec-item {
    background: #f8f6f0;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.spec-item h3 {
    margin-bottom: 1.5rem;
    color: #8b4513;
}

.spec-item ul {
    list-style: none;
    padding-left: 0;
}

.spec-item li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.5;
}

.spec-item li:before {
    content: "•";
    color: #8b4513;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.features-cta {
    padding: 5rem 0;
    background: linear-gradient(135deg, #2c1810 0%, #8b4513 100%);
    color: #fff;
    text-align: center;
}

/* Donate Page Styles */
.donation-overview {
    padding: 5rem 0;
    background: #f8f6f0;
}

.overview-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.donation-tiers {
    padding: 5rem 0;
    background: #fff;
}

.tiers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.tier-card {
    background: #f8f6f0;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
}

.tier-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.tier-card.featured {
    border: 3px solid #d4af37;
    transform: scale(1.05);
}

.tier-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: #d4af37;
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.tier-header h3 {
    margin-bottom: 1rem;
    color: #2c1810;
}

.tier-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #8b4513;
    margin-bottom: 2rem;
}

.tier-price span {
    font-size: 1rem;
    color: #666;
}

.tier-benefits {
    margin-bottom: 2rem;
}

.tier-benefits ul {
    list-style: none;
    padding-left: 0;
    text-align: left;
}

.tier-benefits li {
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    line-height: 1.4;
}

.tier-benefits i {
    color: #8b4513;
    font-size: 0.9rem;
}

.one-time-donations {
    padding: 5rem 0;
    background: #f8f6f0;
}

.section-subtitle {
    text-align: center;
    margin-bottom: 3rem;
    color: #666;
    font-size: 1.1rem;
}

.donation-amounts {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin-bottom: 3rem;
}

.amount-option {
    background: #fff;
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.amount-option:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.amount {
    font-size: 2rem;
    font-weight: 700;
    color: #8b4513;
    margin-bottom: 0.5rem;
}

.custom-donation {
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    max-width: 400px;
    margin: 0 auto;
}

.custom-donation h3 {
    margin-bottom: 1.5rem;
    color: #2c1810;
    text-align: center;
}

.custom-donation-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.donation-impact {
    padding: 5rem 0;
    background: #fff;
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.impact-item {
    background: #f8f6f0;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.impact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.impact-icon {
    width: 60px;
    height: 60px;
    background: #8b4513;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 1.5rem;
}

.donation-stats {
    padding: 5rem 0;
    background: linear-gradient(135deg, #2c1810 0%, #8b4513 100%);
    color: #fff;
}

.donation-faq {
    padding: 5rem 0;
    background: #f8f6f0;
}

.supporter-testimonials {
    padding: 5rem 0;
    background: #fff;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: #f8f6f0;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.testimonial-content {
    margin-bottom: 1.5rem;
}

.testimonial-content p {
    font-style: italic;
    line-height: 1.6;
    color: #666;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info h4 {
    margin-bottom: 0.25rem;
    color: #2c1810;
}

.author-info span {
    color: #8b4513;
    font-size: 0.9rem;
}

.donation-cta {
    padding: 5rem 0;
    background: linear-gradient(135deg, #2c1810 0%, #8b4513 100%);
    color: #fff;
    text-align: center;
}

/* Connect Page Styles */
.server-info {
    padding: 5rem 0;
    background: #f8f6f0;
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.server-details {
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.server-details h2 {
    margin-bottom: 2rem;
    color: #2c1810;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 0.75rem;
    background: #f8f6f0;
    border-radius: 8px;
}

.label {
    font-weight: 600;
    color: #2c1810;
    min-width: 120px;
}

.value {
    color: #666;
    flex: 1;
}

.status-online {
    color: #4CAF50 !important;
    font-weight: 600;
}

.copy-btn {
    background: #8b4513;
    color: #fff;
    border: none;
    padding: 0.5rem;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.copy-btn:hover {
    background: #a0522d;
}

.quick-connect {
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
}

.quick-connect h3 {
    margin-bottom: 1rem;
    color: #2c1810;
}

.quick-connect p {
    margin-bottom: 1.5rem;
    color: #666;
}

.connect-note {
    font-size: 0.9rem;
    color: #999;
    margin-top: 1rem;
}

.connection-requirements {
    padding: 5rem 0;
    background: #fff;
}

.requirements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.requirement-item {
    background: #f8f6f0;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.requirement-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.requirement-icon {
    width: 60px;
    height: 60px;
    background: #8b4513;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 1.5rem;
}

.setup-instructions {
    padding: 5rem 0;
    background: #f8f6f0;
}

.instructions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.instruction-step {
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    display: flex;
    gap: 1.5rem;
}

.step-number {
    width: 40px;
    height: 40px;
    background: #8b4513;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    flex-shrink: 0;
}

.step-content h3 {
    margin-bottom: 1rem;
    color: #2c1810;
}

.step-content ol {
    padding-left: 1.5rem;
}

.step-content li {
    margin-bottom: 0.5rem;
    line-height: 1.5;
    color: #666;
}

.step-content a {
    color: #8b4513;
    text-decoration: none;
    font-weight: 600;
}

.step-content a:hover {
    color: #d4af37;
}

.troubleshooting {
    padding: 5rem 0;
    background: #fff;
}

.troubleshooting-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.trouble-item {
    background: #f8f6f0;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.trouble-item h3 {
    margin-bottom: 1rem;
    color: #2c1810;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.trouble-item h3 i {
    color: #8b4513;
}

.trouble-item ul {
    list-style: none;
    padding-left: 0;
}

.trouble-item li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.5;
    color: #666;
}

.trouble-item li:before {
    content: "•";
    color: #8b4513;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.rules-reminder {
    padding: 5rem 0;
    background: linear-gradient(135deg, #2c1810 0%, #8b4513 100%);
    color: #fff;
    text-align: center;
}

.reminder-content h2 {
    margin-bottom: 1rem;
    color: #fff;
}

.reminder-content p {
    margin-bottom: 2rem;
    opacity: 0.9;
}

.reminder-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.community-links {
    padding: 5rem 0;
    background: #f8f6f0;
}

.links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.community-link {
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.community-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.community-link i {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.community-link .fa-discord {
    color: #7289da;
}

.community-link .fa-youtube {
    color: #ff0000;
}

.community-link .fa-twitter {
    color: #1da1f2;
}

.community-link h3 {
    margin-bottom: 1rem;
    color: #2c1810;
}

.community-link p {
    margin-bottom: 1.5rem;
    color: #666;
    line-height: 1.5;
}

.btn-youtube {
    background: #ff0000;
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    text-decoration: none;
    display: inline-block;
    transition: background 0.3s ease;
}

.btn-youtube:hover {
    background: #cc0000;
}

.btn-twitter {
    background: #1da1f2;
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    text-decoration: none;
    display: inline-block;
    transition: background 0.3s ease;
}

.btn-twitter:hover {
    background: #0d8bd9;
}

.server-status {
    padding: 5rem 0;
    background: #fff;
}

.status-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.status-item {
    background: #f8f6f0;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.status-indicator {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    flex-shrink: 0;
}

.status-indicator.online {
    background: #4CAF50;
}

.status-info h3 {
    margin-bottom: 0.5rem;
    color: #2c1810;
    font-size: 1rem;
}

.status-text {
    font-size: 1.5rem;
    font-weight: 600;
    color: #8b4513;
    margin-bottom: 0.25rem;
}

.status-details {
    font-size: 0.9rem;
    color: #666;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #8b4513;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #a0522d;
}
