* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #0a0a0a;
    color: #fff;
    overflow-x: hidden;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* NAVBAR */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 2px solid rgba(237, 28, 36, 0.3);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    text-shadow: 0 0 10px rgba(237, 28, 36, 0.5);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #ED1C24;
    transition: width 0.3s;
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-menu a:hover {
    color: #ED1C24;
}

/* BUTTONS */
.btn-primary {
    background: #ED1C24;
    color: #fff;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s;
    border: 2px solid #ED1C24;
    cursor: pointer;
}

.btn-primary:hover {
    background: transparent;
    color: #ED1C24;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(237, 28, 36, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #fff;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s;
    border: 2px solid #fff;
    cursor: pointer;
}

.btn-secondary:hover {
    background: #fff;
    color: #0a0a0a;
    transform: translateY(-2px);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.btn-small {
    background: #ED1C24;
    color: #fff;
    border: none;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-small:hover {
    background: #ff3333;
    transform: scale(1.05);
}

/* HERO SECTION */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.highlight {
    color: #ED1C24;
    text-shadow: 0 0 20px rgba(237, 28, 36, 0.5);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #FFD700;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #ccc;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.hero-spots {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(#ED1C24 2px, transparent 2px);
    background-size: 50px 50px;
    opacity: 0.1;
    pointer-events: none;
}

/* FLOATING KWAMIS */
.floating-kwamis {
    position: relative;
    height: 400px;
    animation: float 6s ease-in-out infinite;
}

.kwami {
    position: absolute;
    font-size: 4rem;
    filter: drop-shadow(0 0 20px rgba(237, 28, 36, 0.5));
    animation: spin 10s linear infinite;
}

.tikki { top: 20%; left: 20%; animation-delay: 0s; }
.plagg { top: 60%; left: 60%; animation-delay: 2s; }
.nooroo { top: 30%; left: 70%; animation-delay: 4s; }
.trixx { top: 70%; left: 30%; animation-delay: 6s; }
.longg { top: 40%; left: 40%; animation-delay: 8s; }
.wayzz { top: 50%; left: 50%; animation-delay: 10s; }

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* SECTIONS */
section {
    padding: 100px 0;
}

.section-title {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 1rem;
    color: #fff;
}

.section-subtitle {
    text-align: center;
    color: #ccc;
    font-size: 1.2rem;
    margin-bottom: 4rem;
}

/* FEATURES GRID */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s;
    border: 1px solid rgba(237, 28, 36, 0.2);
    backdrop-filter: blur(10px);
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: #ED1C24;
    box-shadow: 0 10px 30px rgba(237, 28, 36, 0.2);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #FFD700;
}

.feature-card p {
    color: #ccc;
    line-height: 1.6;
}

/* COMMANDS SECTION */
.commands {
    background: linear-gradient(135deg, rgba(237, 28, 36, 0.1) 0%, transparent 100%);
}

.commands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.command-category {
    background: rgba(0, 0, 0, 0.5);
    border-radius: 15px;
    padding: 1.5rem;
    border: 1px solid rgba(237, 28, 36, 0.3);
}

.command-category h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #FFD700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cat-emoji {
    font-size: 1.5rem;
}

.command-category ul {
    list-style: none;
}

.command-category li {
    margin-bottom: 0.5rem;
    color: #ccc;
}

.command-category code {
    background: rgba(237, 28, 36, 0.2);
    padding: 0.2rem 0.4rem;
    border-radius: 5px;
    color: #FFD700;
    font-family: 'Courier New', monospace;
}

.commands-footer {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
}

.commands-footer h3 {
    color: #FFD700;
    margin: 1.5rem 0 0.5rem;
}

.commands-footer h3:first-child {
    margin-top: 0;
}

.commands-footer p {
    color: #ccc;
    line-height: 1.8;
}

.help-text {
    font-size: 1.2rem;
    color: #ED1C24 !important;
    font-weight: 600;
    margin-top: 2rem;
}

/* STATS SECTION */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-card {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.3);
    transition: all 0.3s;
}

.stat-card:hover {
    transform: scale(1.05);
    border-color: #ED1C24;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: #ED1C24;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #FFD700;
    font-size: 1.1rem;
}

/* DASHBOARD SECTION (NEW) */
.dashboard {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9) 0%, rgba(237, 28, 36, 0.2) 100%);
}

.dashboard-login {
    text-align: center;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    border: 2px dashed #ED1C24;
}

.dashboard-login p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #FFD700;
}

.dashboard-content {
    background: rgba(0, 0, 0, 0.8);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid #ED1C24;
}

.dashboard-header {
    text-align: center;
    margin-bottom: 2rem;
}

.dashboard-header h3 {
    font-size: 2rem;
    color: #FFD700;
    margin-bottom: 0.5rem;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.dashboard-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 1.5rem;
    border: 1px solid rgba(237, 28, 36, 0.3);
}

.warning-card { grid-column: 1 / 2; }
.stats-card { grid-column: 2 / 3; }
.reports-card { grid-column: 1 / 2; }
.config-card { grid-column: 2 / 3; }

.dashboard-card h3 {
    color: #FFD700;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.dashboard-card h3 i {
    color: #ED1C24;
}

.flagged-list, .reports-list {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.flagged-item, .report-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    font-size: 0.9rem;
}

.flagged-type, .report-user {
    font-weight: 600;
    color: #ED1C24;
    min-width: 100px;
}

.flagged-user, .report-reason {
    color: #FFD700;
    flex: 1;
}

.flagged-count, .report-time {
    color: #888;
    font-size: 0.8rem;
    margin-right: 0.5rem;
}

.stats-card canvas {
    height: 200px;
    margin-bottom: 1rem;
}

.stats-mini {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
    text-align: center;
}

.stats-mini div {
    background: rgba(237, 28, 36, 0.1);
    padding: 0.5rem;
    border-radius: 8px;
    border: 1px solid rgba(237, 28, 36, 0.3);
}

.stats-mini span {
    display: block;
    font-size: 0.8rem;
    color: #888;
}

.action-buttons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
}

.action-btn {
    background: rgba(237, 28, 36, 0.2);
    border: 1px solid #ED1C24;
    color: #fff;
    padding: 0.8rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
}

.action-btn:hover {
    background: #ED1C24;
    transform: translateY(-2px);
}

.dashboard-features {
    margin-top: 2rem;
    text-align: center;
}

.dashboard-features h3 {
    color: #FFD700;
    margin-bottom: 1rem;
}

.features-mini-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 0.5rem;
}

.mini-feature {
    background: rgba(255, 255, 255, 0.05);
    padding: 0.5rem;
    border-radius: 8px;
    font-size: 0.9rem;
    color: #ccc;
}

/* SUPPORT SECTION */
.support-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.support-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    border: 1px solid rgba(255, 215, 0, 0.3);
    transition: all 0.3s;
}

.support-card:hover {
    transform: translateY(-5px);
    border-color: #ED1C24;
}

.support-card i {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.discord-icon { color: #5865F2; }
.bug-icon { color: #ED1C24; }
.idea-icon { color: #FFD700; }

.support-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #fff;
}

.support-card p {
    color: #ccc;
    margin-bottom: 1.5rem;
}

.server-stats-mini {
    text-align: center;
    margin-top: 2rem;
    padding: 1rem;
    background: rgba(88, 101, 242, 0.1);
    border-radius: 10px;
    border: 1px solid #5865F2;
}

.server-stats-mini p {
    color: #fff;
    font-size: 1.1rem;
}

/* FAQ SECTION */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 1.5rem;
    border: 1px solid rgba(237, 28, 36, 0.2);
}

.faq-item h3 {
    color: #FFD700;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.faq-item p {
    color: #ccc;
    line-height: 1.6;
}

.faq-item code {
    background: rgba(237, 28, 36, 0.2);
    padding: 0.2rem 0.4rem;
    border-radius: 5px;
    color: #FFD700;
}

/* FOOTER */
.footer {
    background: rgba(0, 0, 0, 0.8);
    border-top: 2px solid rgba(237, 28, 36, 0.3);
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo p {
    color: #ccc;
    margin-top: 1rem;
    font-size: 0.9rem;
}

.footer-links h4, .footer-social h4 {
    color: #FFD700;
    margin-bottom: 1rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #ED1C24;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icon {
    color: #fff;
    font-size: 1.5rem;
    transition: all 0.3s;
}

.social-icon:hover {
    color: #ED1C24;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #888;
    font-size: 0.9rem;
}

/* RESPONSIVE DESIGN */
@media (max-width: 1024px) {
    .dashboard-grid {
        grid-template-columns: 1fr;
    }
    
    .warning-card, .stats-card, .reports-card, .config-card {
        grid-column: auto;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .floating-kwamis {
        height: 300px;
    }
    
    .kwami {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-mini {
        grid-template-columns: 1fr;
    }
    
    .action-buttons {
        grid-template-columns: 1fr;
    }
}

/* ANIMATIONS */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-card, .command-category, .stat-card, .support-card, .faq-item, .dashboard-card {
    animation: fadeIn 0.6s ease-out forwards;
}