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

body {
    background-color: #000;
    color: #0f0;
    font-family: 'Courier New', monospace;
    overflow: hidden;
    position: relative;
    height: 100vh;
}

/* Effet Matrix code rain */
.matrix-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

.matrix-char {
    position: absolute;
    top: -20px;
    color: rgba(0, 255, 0, 0.7);
    font-size: 14px;
    opacity: 0.8;
    text-shadow:
        0 0 5px #fff,
        0 0 10px #fff,
        0 0 15px #0f0,
        0 0 20px #0f0;
}

/* Contenu principal */
.content-wrapper {
    max-width: 800px;
    margin: 2rem auto;
    padding: 2rem;
    background-color: rgba(0, 20, 0, 0.7);
    border: 1px solid #0f0;
    border-radius: 5px;
    box-shadow:
        0 0 15px rgba(0, 255, green, 0.3),
        inset 0 0 15px rgba(0, green, green, 0.2);
}

h1 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    text-shadow:
        0 0 10px #fff,
        0 0 20px #fff,
        0 0 30px #0f0;
}

.subtitle {
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 2rem;
    color: #aaffaa;
}

.status-indicator {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.status-label {
    font-weight: bold;
}

.status-text {
    padding: 8px 16px;
    border-radius: 4px;
    font-weight: bold;
}

.status-private {
    background-color: #ff4444;
    color: white;
}

.info-box {
    margin-bottom: 2rem;
}

.info-box h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #ffff99;
}

.features-list ul {
    list-style-type: none;
    padding-left: 0;
}

.features-list li {
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.features-list li::before {
    content: "•";
    color: #0f0;
    position: absolute;
    left: 0;
}

.footer-note {
    text-align: center;
    font-style: italic;
    opacity: 0.8;
}

/* Easter Egg */
#easter-egg-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.easter-egg-content {
    background-color: rgba(0, 25, 0, 0.95);
    border: 2px solid #0f0;
    border-radius: 10px;
    padding: 2rem;
    max-width: 500px;
    text-align: center;
    box-shadow:
        0 0 30px rgba(0, green, 0, 0.4),
        inset 0 0 20px rgba(0, green, green, 0.3);
}

.easter-egg-content h2 {
    color: #ffff66;
    margin-bottom: 1rem;
}

.easter-egg-svg {
    margin-bottom: 1rem;
}

.btn-close {
    background-color: #ff4444;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 4px;
    cursor: pointer;
    font-family: 'Courier New', monospace;
    font-size: 1rem;
}

.btn-close:hover {
    background-color: #ff6666;
}

/* Easter Egg Trigger Element */
.easter-egg-trigger {
    position: fixed;
    bottom: 20px;
    right: 20px;
    cursor: pointer;
    z-index: 9999;
    opacity: 0.7;
    transition: all 0.2s ease-in-out;
}

.easter-egg-trigger:hover {
    opacity: 1;
    transform: scale(1.1);
}

/* Responsive design */
@media (max-width: 768px) {
    .content-wrapper {
        margin: 1rem;
        padding: 1rem;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .status-indicator {
        flex-direction: column;
        gap: 0.5rem;
    }
}
