* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a0000 50%, #000000 100%);
    color: #e0e0e0;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
}

#particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.container {
    max-width: 1200px;
    padding: 40px 20px;
    position: relative;
    z-index: 1;
}

header {
    text-align: center;
    margin-bottom: 60px;
}

header h1 {
    font-size: 4rem;
    color: #ff0000;
    margin-bottom: 10px;
    text-shadow: 0 0 30px rgba(255, 0, 0, 0.6);
}

.subtitle {
    font-size: 1.3rem;
    color: #888;
}

.projects {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.project-card {
    background: rgba(10, 0, 0, 0.8);
    border: 2px solid rgba(255, 0, 0, 0.3);
    border-radius: 15px;
    padding: 35px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    filter: drop-shadow(0 0 10px rgba(255, 0, 0, 0.5));
}

.project-card:hover {
    transform: translateY(-10px);
    border-color: #ff0000;
    box-shadow: 0 20px 60px rgba(255, 0, 0, 0.5);
}

.project-card h2 {
    font-size: 2rem;
    color: #ff0000;
    margin-bottom: 15px;
    text-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
}

.project-card p {
    color: #aaa;
    font-size: 1.1rem;
}

.status {
    display: inline-block;
    padding: 8px 18px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: bold;
    margin-bottom: 15px;
}

.status.available {
    background: rgba(255, 0, 0, 0.2);
    color: #ff0000;
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.4);
}

.status.coming-soon {
    background: rgba(255, 165, 0, 0.2);
    color: #ffa500;
    box-shadow: 0 0 15px rgba(255, 165, 0, 0.4);
}

.discord-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    padding: 12px 25px;
    background: linear-gradient(135deg, #ff0000, #cc0000);
    color: #fff;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(255, 0, 0, 0.4);
    cursor: pointer;
    z-index: 10;
    position: relative;
}

.discord-link:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 40px rgba(255, 0, 0, 0.7);
}

.fade-in {
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.volume-control {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(10, 0, 0, 0.9);
    padding: 15px 25px;
    border-radius: 50px;
    border: 2px solid rgba(255, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 5px 20px rgba(255, 0, 0, 0.3);
}

.volume-icon {
    font-size: 1.5rem;
    filter: drop-shadow(0 0 5px rgba(255, 0, 0, 0.5));
}

#volumeSlider {
    width: 120px;
    height: 5px;
    background: rgba(255, 0, 0, 0.2);
    outline: none;
    border-radius: 5px;
    cursor: pointer;
}

#volumeSlider::-webkit-slider-thumb {
    appearance: none;
    width: 15px;
    height: 15px;
    background: #ff0000;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.8);
}

#volumeSlider::-moz-range-thumb {
    width: 15px;
    height: 15px;
    background: #ff0000;
    border-radius: 50%;
    cursor: pointer;
    border: none;
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.8);
}

.sound-prompt {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.sound-prompt-content {
    text-align: center;
    animation: fadeInUp 0.5s ease-out;
}

.sound-prompt-content h2 {
    font-size: 5rem;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 20px rgba(255, 0, 0, 0.8));
}

.sound-prompt-content p {
    font-size: 1.5rem;
    color: #ff0000;
    margin-bottom: 30px;
    text-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
}

.sound-prompt-content button {
    padding: 15px 40px;
    font-size: 1.2rem;
    background: linear-gradient(135deg, #ff0000, #cc0000);
    color: #fff;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    font-weight: bold;
    box-shadow: 0 5px 20px rgba(255, 0, 0, 0.5);
    transition: all 0.3s ease;
}

.sound-prompt-content button:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 40px rgba(255, 0, 0, 0.8);
}
