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

body {
    font-family: Arial, sans-serif;
    background: black;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.container {
    background-image: linear-gradient(to bottom right, rgb(197, 71, 255), rgb(189, 0, 203));
    border-radius: 10px;
    padding: 30px;
    width: 100%;
    max-width: 600px;
}

h1 {
    text-align: center;
    color: #ffffff;
    margin-bottom: 30px;
    font-size: 2em;
}

.input-section {
    margin-bottom: 30px;
}

textarea {
    width: 100%;
    height: 200px;
    padding: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    font-family: inherit;
    resize: vertical;
}

textarea:focus {
    outline: none;
    border-color: #007bff;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.stat-card {
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    color: #333;
    padding: 20px;
    border-radius: 5px;
    text-align: center;
}

.stat-number {
    font-size: 2em;
    font-weight: bold;
    margin-bottom: 5px;
    display: block;
}

.stat-label {
    font-size: 0.9em;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.additional-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.mini-stat {
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    padding: 15px;
    border-radius: 5px;
    text-align: center;
}

.mini-stat .number {
    font-size: 1.5em;
    font-weight: bold;
    color: #333;
    display: block;
}

.mini-stat .label {
    font-size: 0.8em;
    color: #666;
    margin-top: 5px;
}

button {
    background: #000000;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    display: block;
    margin: 20px auto 0;
    transition: all .3s ease-in-out;
}

button:hover {
    background: #301b39;
}

p {
    text-align: center;
    color: white;
}

@media (max-width: 480px) {
    .container {
        padding: 20px;
        background-image: linear-gradient(to bottom right, rgb(197, 71, 255), rgb(189, 0, 203));
    }
    
    h1 {
        font-size: 1.5em;
    }
    
    textarea {
        height: 150px;
        padding: 10px;
    }
    
    .stats-container {
        grid-template-columns: 1fr 1fr;
    }
    
    .additional-stats {
        grid-template-columns: 1fr 1fr;
    }
}