body {
    font-family: 'Architects Daughter', cursive;
    background-color: #f5f5f5;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%239C92AC' fill-opacity='0.1' fill-rule='evenodd'/%3E%3C/svg%3E");
    margin: 0;
    padding: 20px;
}

.container {
    max-width: 800px;
    margin: 0 auto;
}

h1 {
    text-align: center;
    color: #2c3e50;
    font-size: 3em;
    margin-bottom: 1em;
    text-decoration: underline;
    text-decoration-style: wavy;
    text-decoration-color: #e74c3c;
}

.command-card {
    background: white;
    border: 2px solid #333;
    border-radius: 10px;
    margin: 20px 0;
    padding: 20px;
    position: relative;
    box-shadow: 3px 3px 0 #333;
    transition: all 0.3s ease;
}

.command-card:hover {
    transform: translate(-3px, -3px);
    box-shadow: 6px 6px 0 #333;
}

.command-card h2 {
    margin: 0 0 10px 0;
    color: #2c3e50;
    border-bottom: 2px dashed #333;
    padding-bottom: 5px;
}

.command-card p {
    margin: 10px 0;
    color: #666;
}

.command-box {
    background: #f8f9fa;
    border: 1px dashed #666;
    border-radius: 5px;
    padding: 10px;
    font-family: monospace;
    position: relative;
    margin: 10px 0;
    white-space: pre-wrap;
    word-break: break-all;
}

.copy-btn {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: #2c3e50;
    color: white;
    border: 2px solid #333;
    border-radius: 5px;
    padding: 5px 10px;
    cursor: pointer;
    font-family: 'Architects Daughter', cursive;
    transition: all 0.3s ease;
}

.copy-btn:hover {
    background: #34495e;
    transform: translateY(-50%) scale(1.05);
}

footer {
    text-align: center;
    margin-top: 40px;
    color: #666;
    font-size: 0.9em;
}

@media (max-width: 600px) {
    .container {
        padding: 10px;
    }
    
    h1 {
        font-size: 2em;
    }
}
