
@font-face {
    font-family: 'MinecraftFont';
    src: url('https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.0/fonts/HTML-CSS/TeX/woff/MathJax_Main-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'MinecraftFont', 'Courier New', monospace;
    color: #AAAAAA;
}

body {
    background-color: #1D1D1D;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect fill="%231D1D1D" width="100" height="100"/><path fill="%23191919" d="M0 10h100v10H0zM0 30h100v10H0zM0 50h100v10H0zM0 70h100v10H0zM0 90h100v10H0z"/></svg>');
    padding: 20px;
    height: 100vh;
    overflow-x: hidden;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background-color: rgba(15, 15, 15, 0.8);
    border: 4px solid #640000;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.7);
    position: relative;
    overflow: hidden;
}

.header {
    text-align: center;
    margin-bottom: 30px;
    position: relative;
}

h1 {
    color: #FF0000;
    font-size: 2.5rem;
    text-shadow: 3px 3px 0 #000, -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000;
    margin-bottom: 10px;
    letter-spacing: 2px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { text-shadow: 3px 3px 0 #000, -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000; }
    50% { text-shadow: 3px 3px 0 #000, -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 0 0 15px rgba(255, 0, 0, 0.7); }
    100% { text-shadow: 3px 3px 0 #000, -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000; }
}

.subtitle {
    color: #AAAAAA;
    font-size: 1rem;
    margin-bottom: 15px;
}

.input-container {
    display: flex;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

input {
    flex-grow: 1;
    padding: 12px;
    font-size: 1rem;
    background-color: #0F0F0F;
    border: 2px solid #640000;
    color: #FFFFFF;
}

button {
    padding: 12px 20px;
    background-color: #8B0000;
    border: 2px solid #640000;
    color: white;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    overflow: hidden;
}

button:hover {
    background-color: #A00000;
    transform: translateY(-2px);
}

button:active {
    transform: translateY(0);
}

.kill-list {
    list-style-type: none;
    position: relative;
    z-index: 2;
}

.kill-item {
    background-color: rgba(20, 20, 20, 0.7);
    margin-bottom: 10px;
    padding: 15px;
    border-left: 4px solid #8B0000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.kill-name {
    color: #8A2BE2; 
    font-weight: bold;
    font-size: 1.2rem;
    text-shadow: 1px 1px 0 #000;
}

.kill-reason {
    color: #FFFFFF; 
    margin-left: 20px;
    flex-grow: 1;
}

.delete-btn {
    background: none;
    border: none;
    color: #FF6666;
    cursor: pointer;
    padding: 5px 10px;
    font-size: 1rem;
}

.delete-btn:hover {
    color: #FF0000;
    transform: scale(1.2);
}

.controls {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.share-btn, .clear-all-btn {
    padding: 10px 15px;
    background-color: #333333;
    border: 2px solid #444444;
    color: #AAAAAA;
    cursor: pointer;
    transition: all 0.2s;
}

.share-btn:hover, .clear-all-btn:hover {
    background-color: #444444;
}

.clear-all-btn {
    background-color: #550000;
    border-color: #660000;
}

.clear-all-btn:hover {
    background-color: #660000;
}

@media (max-width: 600px) {
    .container {
        padding: 15px;
    }
    
    h1 {
        font-size: 1.8rem;
    }
    
    .input-container {
        flex-direction: column;
    }
    
    input {
        margin-bottom: 10px;
    }
    
    .kill-item {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .kill-reason {
        margin-left: 0;
        margin-top: 5px;
    }
    
    .delete-btn {
        position: absolute;
        top: 10px;
        right: 10px;
    }
}

.footer {
    text-align: center;
    padding: 20px;
    background-color: #222;
    color: white;
    position: fixed;
    bottom: 0;
    width: 100%;
}

.footer p {
    margin: 0;
}

.footer .youtube-btn {
    background: none;
    border: none;
    color: #FF6666;
    cursor: pointer;
    padding: 5px 10px;
    font-size: 1rem;
}

.footer .youtube-btn:hover {
    background-color: #660000; 
    transform: scale(1.2);
}



