/* --- Base, Header, and Footer Styles (from your code) --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', sans-serif;
}

body {
    background: #0B0C10;
    color: #C5C6C7;
    line-height: 1.6;
}

.header {
    background: #1F2833;
    padding: 1.5rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid #45A29E;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-circle {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #66FCF1, #45A29E);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 1rem;
}

.logo-circle span {
    font-size: 1.5rem;
    font-weight: bold;
    color: #1F2833;
}

.header h1 {
    color: #66FCF1;
    font-size: 2rem;
}

.nav-links {
    display: flex;
    gap: 1.5rem;
    list-style: none;
}

.nav-links a {
    color: #C5C6C7;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.nav-links a:hover {
    background: #66FCF1;
    color: #1F2833;
}

.footer {
    background: #1F2833;
    padding: 2rem 1rem;
    margin-top: 2rem;
    text-align: center;
    color: #C5C6C7;
    border-top: 2px solid #66FCF1;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1rem;
}

.footer-links a, .social-icons a {
    color: #C5C6C7;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover, .social-icons a:hover {
    color: #66FCF1;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1rem;
    font-size: 1.5rem;
}


/* --- New Generator Tool Styles --- */
.container {
    max-width: 800px;
    margin: 3rem auto;
    padding: 0 1rem;
}

.generator-wrapper {
    background: #1F2833;
    padding: 2.5rem;
    border-radius: 15px;
    border: 1px solid #45A29E;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.generator-header {
    text-align: center;
    margin-bottom: 2rem;
}

.generator-header h2 {
    color: #66FCF1;
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.form-group input {
    width: 100%;
    padding: 0.8rem 1rem;
    background: #0B0C10;
    border: 1px solid #45A29E;
    border-radius: 8px;
    color: #C5C6C7;
    font-size: 1rem;
}

.form-group input:focus {
    outline: none;
    border-color: #66FCF1;
    box-shadow: 0 0 0 3px rgba(102, 252, 241, 0.2);
}

.length-inputs {
    display: flex;
    gap: 1rem;
}

.generate-btn {
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
    font-weight: bold;
    color: #1F2833;
    background: linear-gradient(135deg, #66FCF1, #45A29E);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.generate-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(102, 252, 241, 0.2);
}

.output-container {
    margin-top: 2.5rem;
    border-top: 1px solid #45A29E;
    padding-top: 2rem;
}

.output-container h3 {
    text-align: center;
    margin-bottom: 1.5rem;
    color: #66FCF1;
}

.description-box {
    position: relative;
    background: #0B0C10;
    border: 1px solid #45A29E;
    border-radius: 8px;
    padding: 1.5rem;
}

#description-output {
    white-space: pre-wrap; /* Allows text to wrap */
    word-wrap: break-word;
    color: #C5C6C7;
    font-family: 'Segoe UI', sans-serif;
    font-size: 0.95rem;
    max-height: 400px;
    overflow-y: auto;
}

.copy-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #45A29E;
    color: #fff;
    border: none;
    border-radius: 5px;
    padding: 0.5rem 0.8rem;
    cursor: pointer;
    transition: background-color 0.3s;
}

.copy-btn:hover {
    background: #66FCF1;
    color: #0B0C10;
}

@media (max-width: 768px) {
    .header {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }
    .generator-wrapper {
        padding: 1.5rem;
    }
}