@import url('https://fonts.googleapis.com/css2?family=Bruno+Ace+SC&family=Jura:wght@300..700&family=Montserrat:wght@300;400;700&display=swap');

:root {
    --primary-gold: #d29322;
    --secondary-gold: #d2b664;
    --black: #000000;
    --white: #ffffff;
}

body {
    background-color: var(--black);
    color: var(--white);
    font-family: 'Jura', sans-serif;
    overflow-x: hidden;
}

.grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(210, 147, 34, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(210, 147, 34, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
    z-index: 1;
}

@keyframes gridMove {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(50px);
    }
}


.hero-section {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.95)),
                url('/assets/images/bg.jpg') center/cover;
    overflow: hidden;
}

.hero-content {
    text-align: center;
    z-index: 2;
}

.hero-title {
    font-family: 'Bruno Ace SC', cursive;
    font-size: 4rem;
    color: var(--primary-gold);
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 0.5rem;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 3rem;
    font-weight: 300;
}

.cta-button {
    background-color: var(--primary-gold);
    color: var(--black);
    padding: 1rem 2.5rem;
    font-size: 1.2rem;
    border: none;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.2rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.cta-button:hover {
    background-color: var(--secondary-gold);
    color: var(--black);
    transform: translateY(-2px);
}

.features-section {
    padding: 6rem 0;
    background-color: rgba(210, 182, 100, 0.05);
    position: relative;
}

.features-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-gold), transparent);
}

.feature-card {
    background-color: rgba(0, 0, 0, 0.5);
    border: 1px solid var(--primary-gold);
    padding: 2rem;
    margin: 1rem;
    text-align: left;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.feature-card::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg, transparent, var(--primary-gold), transparent);
}

.feature-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    margin-bottom: 1.5rem;
    border: 1px solid var(--primary-gold);
}

.feature-content {
    padding: 1rem;
}

.section-title {
    font-family: 'Bruno Ace SC', cursive;
    color: var(--primary-gold);
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

/* Showcase section */
.showcase-section {
    padding: 6rem 0;
    background-color: rgba(0, 0, 0, 0.8);
}

.terminal-preview {
    border: 2px solid var(--primary-gold);
    padding: 2rem;
    border-radius: 4px;
    position: relative;
    margin-top: 2rem;
}

.terminal-header {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--black);
    padding: 0 1rem;
    color: var(--primary-gold);
    font-family: 'Bruno Ace SC', cursive;
}

/* Stats section */
.stats-section {
    padding: 4rem 0;
    background-color: rgba(210, 182, 100, 0.05);
}

.stat-item {
    text-align: center;
    padding: 2rem;
}

.stat-number {
    font-size: 3rem;
    color: var(--primary-gold);
    font-family: 'Bruno Ace SC', cursive;
}

.stat-label {
    color: var(--white);
    margin-top: 1rem;
    font-size: 1.2rem;
}

/* Footer styles */
.footer {
    padding: 4rem 0 2rem;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.9);
    position: relative;
}

.community-seal {
    max-width: 200px;
    margin-bottom: 1rem;
}

.copyright {
    color: var(--primary-gold);
    font-size: 0.9rem;
    margin-top: 1rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .feature-card {
        margin-bottom: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }
}