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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    background-image: url('https://i.postimg.cc/HWrHH3c4/29825-2026-04-11-21-20-26-517901.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 100vh;
    color: #ffffff;
    line-height: 1.6;
}

/* Navigation - FIXED AT TOP */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    background: linear-gradient(135deg, #5865F2, #8ea1ff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.nav-links {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

/* Rounded square nav buttons */
.nav-btn {
    background: rgba(88, 101, 242, 0.3);
    color: white;
    padding: 8px 18px;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.2s ease;
    border: 1px solid rgba(88, 101, 242, 0.5);
}

.nav-btn:hover {
    background: #5865F2;
    transform: scale(1.05);
}

/* MAIN CONTENT - Add spacing so it doesn't hide under fixed navbar */
main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 20px 20px 20px;
}

/* Container for pages without <main> tag */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 20px 20px 20px;
}

/* Glass morphism base */
.card, footer {
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 16px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

/* Hero Card */
.hero-card {
    text-align: center;
    padding: 50px 40px;
    margin-bottom: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.glow-text {
    font-size: 4rem;
    font-weight: bold;
    background: linear-gradient(135deg, #fff, #5865F2);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 20px;
}

.tagline {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: #e0e0e0;
}

.description {
    max-width: 700px;
    margin: 0 auto 30px;
    color: #cccccc;
}

/* Rounded Square Buttons (Blurple) */
.blurple-btn {
    display: inline-block;
    background: #5865F2;
    color: white;
    padding: 14px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
}

.blurple-btn:hover {
    background: #4752c4;
    transform: scale(1.05);
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 20px;
}

.feature-card {
    padding: 25px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-card h3 {
    margin-bottom: 15px;
    color: #5865F2;
}

.feature-card p {
    color: #cccccc;
}

/* Page Header */
.page-header {
    padding: 30px;
    margin-bottom: 30px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.inline-code {
    background: rgba(0, 0, 0, 0.5);
    padding: 3px 8px;
    border-radius: 8px;
    font-family: monospace;
    color: #5865F2;
}

.small-text {
    font-size: 0.9rem;
    color: #aaaaaa;
}

/* Command Sections */
.command-section {
    padding: 25px;
    margin-bottom: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.command-section h2 {
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #5865F2;
    display: inline-block;
}

.command-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.command-item {
    padding: 10px 15px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    transition: all 0.2s ease;
}

.command-item:hover {
    background: rgba(88, 101, 242, 0.2);
    transform: translateX(5px);
}

.command-name code {
    background: rgba(0, 0, 0, 0.6);
    padding: 4px 10px;
    border-radius: 8px;
    font-family: monospace;
    font-size: 0.9rem;
    color: #8ea1ff;
    word-break: break-all;
}

.command-desc {
    margin-top: 5px;
    color: #bbbbbb;
    font-size: 0.9rem;
}

/* Team Page */
.team-header {
    text-align: center;
    padding: 40px;
    margin-bottom: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.big-title {
    font-size: 3.5rem;
    margin-bottom: 15px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.team-card {
    text-align: center;
    padding: 30px 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.team-avatar {
    width: 150px;
    height: 150px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #5865F2;
}

.team-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-card h3 {
    margin-bottom: 8px;
}

.team-role {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    margin-bottom: 15px;
}

.team-role.creator {
    background: #5865F2;
}

.team-role.dev {
    background: #23a55a;
}

.team-role.supporter {
    background: #faa61a;
}

.team-card p {
    color: #cccccc;
    font-size: 0.9rem;
}

/* Community Page */
.community-card {
    text-align: center;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.community-card h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.discord-info {
    margin: 40px 0;
    padding: 30px;
    background: rgba(88, 101, 242, 0.2);
    border-radius: 16px;
}

.discord-icon {
    font-size: 4rem;
    margin-bottom: 15px;
}

.discord-btn {
    margin-top: 20px;
    display: inline-block;
}

/* Support Page */
.support-header {
    text-align: center;
    padding: 30px;
    margin-bottom: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.support-header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.support-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 30px;
}

.support-card {
    text-align: center;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.support-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.support-card h2 {
    margin-bottom: 10px;
}

.contact-info {
    background: rgba(0, 0, 0, 0.5);
    padding: 10px;
    border-radius: 10px;
    margin: 15px 0;
    font-family: monospace;
    word-break: break-all;
}

.support-note {
    padding: 25px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.support-note ul {
    margin-top: 15px;
    padding-left: 20px;
}

.support-note li {
    margin: 8px 0;
}

.support-note a {
    color: #5865F2;
    text-decoration: none;
}

.support-note a:hover {
    text-decoration: underline;
}

/* Footer */
footer {
    text-align: center;
    padding: 20px;
    margin: 20px auto;
    font-size: 0.8rem;
    color: #888888;
    border: 1px solid rgba(255, 255, 255, 0.05);
    max-width: 400px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        text-align: center;
    }
    
    main, .container {
        padding-top: 140px;
    }
    
    .glow-text {
        font-size: 2.5rem;
    }
    
    .big-title {
        font-size: 2.5rem;
    }
    
    .command-name code {
        font-size: 0.75rem;
        word-break: break-word;
    }
    
    .card:hover {
        transform: none;
    }
    
    .nav-btn:hover {
        transform: none;
    }
    
    .blurple-btn:hover {
        transform: none;
    }
    
    .team-avatar {
        width: 100px;
        height: 100px;
    }
}

/* Tap effect for mobile */
@media (max-width: 768px) {
    .card:active {
        transform: scale(0.98);
    }
    
    .nav-btn:active {
        transform: scale(0.95);
    }
    
    .blurple-btn:active {
        transform: scale(0.95);
    }
}