* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: #0f0f0f;
    color: #e0e0e0;
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

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

header {
    background-color: #1a1a1a;
    border-bottom: 1px solid #2a2a2a;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

nav {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

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

nav a:hover {
    color: #667eea;
}

nav a.active {
    color: #667eea;
}

.discord-btn {
    background: linear-gradient(135deg, #5865F2 0%, #4752C4 100%);
    color: white !important;
    padding: 0.5rem 1.2rem;
    border-radius: 6px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.discord-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(88, 101, 242, 0.4);
}

main {
    flex: 1;
}

.hero {
    padding: 4rem 0 6rem;
    text-align: center;
}

.hero h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero > .container > p {
    font-size: 1.3rem;
    color: #9a9a9a;
    margin-bottom: 3rem;
}

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

.feature {
    background-color: #1a1a1a;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #2a2a2a;
    transition: transform 0.3s, border-color 0.3s;
}

.feature:hover {
    transform: translateY(-5px);
    border-color: #667eea;
}

.feature h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: #f0f0f0;
}

.feature p {
    color: #9a9a9a;
    line-height: 1.8;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: transform 0.2s, box-shadow 0.2s;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.reviews-section {
    padding: 3rem 0 4rem;
}

.reviews-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

#reviews-container {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.review-card {
    background-color: #1a1a1a;
    border: 1px solid #2a2a2a;
    border-radius: 10px;
    padding: 1.5rem;
    transition: transform 0.2s, border-color 0.2s;
}

.review-card:hover {
    transform: translateY(-2px);
    border-color: #3a3a3a;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.review-user-info {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.review-username {
    font-weight: 600;
    color: #e0e0e0;
    font-size: 1rem;
}

.review-rating {
    font-size: 1.1rem;
    color: #ffd700;
}

.review-date {
    color: #6a6a6a;
    font-size: 0.9rem;
}

.review-text {
    color: #c0c0c0;
    line-height: 1.7;
}

.loading {
    text-align: center;
    padding: 2rem;
    color: #6a6a6a;
    font-size: 1rem;
    display: none;
}

.loading.show {
    display: block;
}

footer {
    background-color: #1a1a1a;
    border-top: 1px solid #2a2a2a;
    padding: 2rem 0;
    margin-top: auto;
    text-align: center;
    color: #6a6a6a;
}

@media (max-width: 768px) {
    .hero h2 {
        font-size: 2rem;
    }
    
    .hero > .container > p {
        font-size: 1.1rem;
    }
    
    .hero-features {
        grid-template-columns: 1fr;
    }
    
    nav {
        width: 100%;
        justify-content: center;
    }
    
    header .container {
        justify-content: center;
        text-align: center;
    }
}
