* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #0a0e27;
    color: #e0e0e0;
    overflow-x: hidden;
}

/* Background with moon and wolf theme */
.background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 50%, #0d1117 100%);
    z-index: -2;
}

.background::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(100, 150, 255, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    top: 50px;
    right: 100px;
    box-shadow: 0 0 60px rgba(100, 150, 255, 0.4);
    z-index: -1;
}

.background::after {
    content: '🐺';
    position: absolute;
    font-size: 200px;
    opacity: 0.15;
    bottom: -50px;
    left: -50px;
    z-index: -1;
    filter: drop-shadow(0 0 50px rgba(100, 150, 255, 0.2));
}

/* Header/Navigation */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background: rgba(10, 14, 39, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid #0066ff;
    position: sticky;
    top: 0;
    z-index: 100;
}

.title {
    font-size: 2.5em;
    font-weight: bold;
    letter-spacing: 2px;
}

.lunar-text {
    color: #0066ff;
    text-shadow: 0 0 20px rgba(0, 102, 255, 0.8);
}

/* Discord Button */
.discord-btn {
    background: linear-gradient(135deg, #0066ff 0%, #0052cc 100%);
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-size: 1em;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(0, 102, 255, 0.4);
}

.discord-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(0, 102, 255, 0.8);
    border: 2px solid #00d4ff;
}

/* Main Container */
.container {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
    z-index: 1;
}

/* Box Base Styling */
.hero-box,
.about-box,
.staff-box,
.why-us-box,
.info-box {
    background: rgba(20, 30, 60, 0.7);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(0, 102, 255, 0.3);
    border-radius: 15px;
    padding: 30px;
    margin: 20px 0;
    transition: all 0.3s ease;
}

.hero-box:hover,
.about-box:hover,
.staff-box:hover,
.why-us-box:hover,
.info-box:hover {
    border-color: #0066ff;
    box-shadow: 0 0 30px rgba(0, 102, 255, 0.6), inset 0 0 30px rgba(0, 102, 255, 0.1);
    transform: translateY(-5px);
}

/* Hero Section */
.hero-box {
    text-align: center;
    padding: 60px 30px;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.1) 0%, rgba(20, 30, 60, 0.7) 100%);
}

.hero-box h2 {
    color: #0066ff;
    font-size: 3em;
    margin-bottom: 15px;
    text-shadow: 0 0 20px rgba(0, 102, 255, 0.5);
}

.hero-box p {
    font-size: 1.3em;
    color: #b0b0ff;
}

/* Info Grid */
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.info-box h3 {
    color: #0066ff;
    margin-bottom: 15px;
    font-size: 1.5em;
    text-shadow: 0 0 10px rgba(0, 102, 255, 0.4);
}

.info-box p {
    line-height: 1.6;
    color: #d0d0d0;
}

/* About Section */
.about-box h2 {
    color: #0066ff;
    font-size: 2.2em;
    margin-bottom: 20px;
    text-shadow: 0 0 15px rgba(0, 102, 255, 0.5);
}

.about-box p {
    line-height: 1.8;
    margin-bottom: 15px;
    font-size: 1.1em;
}

/* Staff Section */
.staff-box h2 {
    color: #0066ff;
    font-size: 2.2em;
    margin-bottom: 30px;
    text-align: center;
    text-shadow: 0 0 15px rgba(0, 102, 255, 0.5);
}

.staff-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.staff-member {
    background: rgba(15, 25, 50, 0.8);
    border: 2px solid rgba(0, 102, 255, 0.3);
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
}

.staff-member:hover {
    border-color: #0066ff;
    box-shadow: 0 0 25px rgba(0, 102, 255, 0.5), inset 0 0 25px rgba(0, 102, 255, 0.1);
    transform: translateY(-5px);
}

.staff-avatar {
    font-size: 3em;
    margin-bottom: 15px;
}

.staff-member h3 {
    color: #0066ff;
    font-size: 1.3em;
    margin-bottom: 5px;
}

.staff-member .role {
    color: #0099ff;
    font-weight: bold;
    margin-bottom: 5px;
}

.staff-member .subtitle {
    color: #7080ff;
    font-style: italic;
    font-size: 0.9em;
}

/* Why Us Section */
.why-us-box h2 {
    color: #0066ff;
    font-size: 2.2em;
    margin-bottom: 25px;
    text-shadow: 0 0 15px rgba(0, 102, 255, 0.5);
}

.benefits-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.benefits-list li {
    background: rgba(0, 102, 255, 0.1);
    padding: 15px 20px;
    border-left: 4px solid #0066ff;
    border-radius: 5px;
    transition: all 0.3s ease;
    cursor: default;
}

.benefits-list li:hover {
    background: rgba(0, 102, 255, 0.2);
    transform: translateX(10px);
    box-shadow: 0 0 15px rgba(0, 102, 255, 0.4);
}

/* AI Chatbot */
.ai-chatbot {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.ai-button {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0066ff 0%, #0052cc 100%);
    border: 3px solid #00d4ff;
    color: white;
    font-size: 2em;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 25px rgba(0, 102, 255, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
}

.ai-button:hover {
    transform: scale(1.1);
    box-shadow: 0 0 35px rgba(0, 102, 255, 0.9);
}

.ai-popup {
    position: absolute;
    bottom: 90px;
    right: 0;
    width: 350px;
    background: rgba(15, 25, 50, 0.95);
    backdrop-filter: blur(10px);
    border: 2px solid #0066ff;
    border-radius: 15px;
    box-shadow: 0 0 40px rgba(0, 102, 255, 0.5);
    display: none;
    flex-direction: column;
    max-height: 500px;
}

.ai-popup.active {
    display: flex;
}

.ai-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.2) 0%, transparent 100%);
    padding: 15px 20px;
    border-bottom: 2px solid rgba(0, 102, 255, 0.3);
    border-radius: 13px 13px 0 0;
}

.ai-header h3 {
    color: #0066ff;
    margin: 0;
    font-size: 1.2em;
}

.close-btn {
    background: none;
    border: none;
    color: #0066ff;
    font-size: 1.3em;
    cursor: pointer;
    transition: all 0.3s ease;
}

.close-btn:hover {
    color: #00d4ff;
    transform: rotate(90deg);
}

.ai-messages {
    flex: 1;
    overflow-y: auto;
    padding: 15px;
}

.ai-message {
    color: #d0d0d0;
    line-height: 1.6;
}

.ai-message p {
    margin: 10px 0;
}

.ai-message ul {
    list-style: none;
    margin: 10px 0;
    padding-left: 15px;
}

.ai-message li {
    color: #0099ff;
    margin: 5px 0;
}

.ai-input {
    display: flex;
    gap: 10px;
    padding: 15px;
    border-top: 2px solid rgba(0, 102, 255, 0.3);
}

.ai-input input {
    flex: 1;
    background: rgba(30, 40, 70, 0.8);
    border: 1px solid #0066ff;
    border-radius: 8px;
    padding: 10px 15px;
    color: #e0e0e0;
    font-size: 0.9em;
}

.ai-input input::placeholder {
    color: #707080;
}

.ai-input input:focus {
    outline: none;
    box-shadow: 0 0 15px rgba(0, 102, 255, 0.5);
    border-color: #00d4ff;
}

.ai-input button {
    background: linear-gradient(135deg, #0066ff 0%, #0052cc 100%);
    color: white;
    border: none;
    border-radius: 8px;
    padding: 10px 20px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
}

.ai-input button:hover {
    box-shadow: 0 0 15px rgba(0, 102, 255, 0.6);
    transform: translateY(-2px);
}

/* Footer */
.footer {
    text-align: center;
    padding: 30px 20px;
    background: rgba(10, 14, 39, 0.9);
    border-top: 2px solid #0066ff;
    color: #707080;
    margin-top: 50px;
}

.footer a {
    color: #0066ff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer a:hover {
    color: #00d4ff;
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header {
        flex-direction: column;
        gap: 15px;
        padding: 15px 20px;
    }

    .title {
        font-size: 1.8em;
    }

    .hero-box h2 {
        font-size: 2em;
    }

    .container {
        margin: 20px auto;
    }

    .ai-popup {
        width: 90vw;
        max-width: 350px;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }

    .staff-grid {
        grid-template-columns: 1fr;
    }

    .benefits-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .header {
        padding: 10px 15px;
    }

    .title {
        font-size: 1.3em;
    }

    .discord-btn {
        padding: 10px 20px;
        font-size: 0.9em;
    }

    .container {
        padding: 0 10px;
    }

    .hero-box,
    .about-box,
    .staff-box,
    .why-us-box,
    .info-box {
        padding: 20px;
        margin: 15px 0;
    }

    .hero-box h2 {
        font-size: 1.5em;
    }

    .ai-button {
        width: 60px;
        height: 60px;
        font-size: 1.5em;
    }

    .ai-popup {
        bottom: 75px;
        width: 95vw;
    }
}
