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

body {
    font-family: 'Poppins', sans-serif;
    background-color: #121212;
    color: white;
    padding: 20px;
}

header {
    text-align: center;
    padding: 20px;
    background-color: #1e1e1e;
    border-bottom: 2px solid #333;
}

h1 {
    font-size: 3em;
    color: #ffbf00;
}

p {
    font-size: 1.2em;
    margin-top: 10px;
}

.tool-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 20px;
}

.tool {
    background-color: #1e1e1e;
    padding: 20px;
    margin: 10px;
    border-radius: 8px;
    width: 280px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.7);
}

h2 {
    color: #ffbf00;
    margin-bottom: 10px;
}

input, textarea {
    width: 100%;
    padding: 8px;
    margin-bottom: 10px;
    border-radius: 4px;
    border: 1px solid #555;
    background-color: #333;
    color: #fff;
    font-family: 'Poppins', sans-serif;
}

button {
    width: 100%;
    padding: 10px;
    margin-top: 10px;
    background-color: #ffbf00;
    border: none;
    color: black;
    font-weight: bold;
    cursor: pointer;
    border-radius: 4px;
    font-family: 'Poppins', sans-serif;
}

button:hover {
    background-color: #e6a800;
}

footer {
    text-align: center;
    padding: 20px;
    background-color: #1e1e1e;
    color: white;
    margin-top: 20px;
}

footer a {
    color: #ffbf00;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

.result-output {
    display: none;
    padding: 10px;
    border-radius: 4px;
    background-color: #222;
    border: 1px solid #444;
    max-width: 100%;
    word-wrap: break-word;
    overflow: auto;
}

.result-output a {
    color: #5389ff;
    text-decoration: underline;
}

.result-output a:hover {
    color: #4a7dbf;
}

.result-output.has-content {
    display: block;
}

.qr-code {
    display: block;
    margin: 10px auto;
    max-width: 100%;
    height: auto;
}

.qr-link {
    color: #ffbf00;
    text-decoration: none;
    cursor: pointer;
}

.qr-link:hover {
    text-decoration: underline;
}

#discord-result button {
background: #ff4444 !important;
color: white !important;
font-weight: bold;
}
#discord-result button:hover {
background: #cc0000 !important;
}

#qr-decoder-result code {
background: #333;
padding: 2px 6px;
border-radius: 4px;
font-family: monospace;
color: #ffbf00;
}
