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

body {
    background-color: #000;
    color: #fff;
    font-family: 'Inter', sans-serif;
    height: 100vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

#matrix {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.content {
    position: relative;
    z-index: 2;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    padding: 20px;
    max-width: 800px;
}

.title {
    font-family: 'Share Tech Mono', monospace;
    font-size: 5rem;
    font-weight: 800;
    color: #0f0;
    text-shadow: 0 0 10px #0f0, 0 0 20px #0f0, 0 0 40px #0f0, 0 0 80px #0f0;
    letter-spacing: 4px;
    border: 4px solid #0f0;
    padding: 10px 40px;
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.5), inset 0 0 20px rgba(0, 255, 0, 0.5);
    background: rgba(0, 0, 0, 0.7);
    margin-bottom: 10px;
}

.description {
    font-size: 1.3rem;
    line-height: 1.6;
    color: #f0f0f0;
    font-weight: 400;
    text-shadow: 0 2px 4px rgba(0,0,0,0.8);
    background: rgba(0, 0, 0, 0.6);
    padding: 25px;
    border-radius: 12px;
}

.buttons {
    display: flex;
    gap: 40px;
    margin-top: 20px;
}

.btn {
    padding: 15px 35px;
    font-size: 1.1rem;
    font-weight: 800;
    color: white;
    border: none;
    border-radius: 40px;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    text-shadow: 0 1px 2px rgba(0,0,0,0.5);
    letter-spacing: 1px;
}

.pill-red {
    background-color: #d32f2f;
    border: 2px solid #ff5252;
    box-shadow: 0 0 20px rgba(211, 47, 47, 0.7), inset 0 0 10px rgba(255, 255, 255, 0.4);
}

.pill-red:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(211, 47, 47, 0.9), inset 0 0 15px rgba(255, 255, 255, 0.6);
}

.pill-blue {
    background-color: #1976d2;
    border: 2px solid #448aff;
    box-shadow: 0 0 20px rgba(25, 118, 210, 0.7), inset 0 0 10px rgba(255, 255, 255, 0.4);
}

.pill-blue:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(25, 118, 210, 0.9), inset 0 0 15px rgba(255, 255, 255, 0.6);
}

/* Modal Styles */
.modal {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.85);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
    backdrop-filter: blur(5px);
}
.modal.hidden {
    display: none;
}
.modal-content {
    background: rgba(0, 15, 0, 0.95);
    border: 2px solid #0f0;
    padding: 40px;
    text-align: center;
    box-shadow: 0 0 30px #0f0;
    border-radius: 8px;
    max-width: 400px;
    width: 90%;
}
.modal-content h2 {
    color: #0f0;
    margin-bottom: 25px;
    font-family: 'Share Tech Mono', monospace;
    letter-spacing: 1px;
}
.modal-content input {
    background: rgba(0, 40, 0, 0.5);
    border: 1px solid #0f0;
    color: #0f0;
    padding: 15px;
    font-size: 1.2rem;
    font-family: monospace;
    width: 100%;
    margin-bottom: 20px;
    outline: none;
    border-radius: 4px;
}
.modal-content input:focus {
    box-shadow: 0 0 15px rgba(0, 255, 0, 0.5);
}
.btn-matrix {
    background: transparent;
    color: #0f0;
    border: 1px solid #0f0;
    padding: 10px 20px;
    font-family: 'Share Tech Mono', monospace;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.2s;
    margin: 5px;
}
.btn-matrix:hover {
    background: #0f0;
    color: #000;
    box-shadow: 0 0 15px #0f0;
}
.btn-cancel {
    border-color: #f00;
    color: #f00;
}
.btn-cancel:hover {
    background: #f00;
    color: #000;
    box-shadow: 0 0 15px #f00;
}
.error {
    color: #ff3333;
    margin-top: 15px;
    font-family: 'Share Tech Mono', monospace;
    text-shadow: 0 0 5px #ff0000;
}

@media screen and (max-width: 600px) {
    .title {
        font-size: 3rem;
        padding: 10px 20px;
        word-break: break-word;
    }
    .description {
        font-size: 1rem;
        padding: 15px;
    }
    .buttons {
        flex-direction: column;
        gap: 20px;
        width: 100%;
    }
    .btn {
        width: 100%;
    }
}
