/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    background: #0a0a0f;
    color: #ffffff;
    min-height: 100vh;
    line-height: 1.8;
}

a {
    color: #7c3aed;
    text-decoration: none;
}
a:hover {
    color: #8b5cf6;
}

::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #0a0a0f;
}
::-webkit-scrollbar-thumb {
    background: #7c3aed;
    border-radius: 4px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== HEADER ===== */
.header {
    padding: 16px 0;
    border-bottom: 1px solid #1a1a2e;
    background: #0a0a0f;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

/* ===== LOGO - INCREASED SIZE ===== */
.logo {
    font-size: 2rem;
    font-weight: 800;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo span {
    color: #7c3aed;
}

.logo .logo-icon {
    font-size: 2.2rem;
}

/* ===== NAVIGATION - LARGER TEXT ===== */
.nav-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 28px;
    list-style: none;
}

.nav-links a {
    color: #a0a0c0;
    font-size: 1.15rem;
    font-weight: 500;
    padding: 6px 0;
    position: relative;
    transition: color 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
    color: #ffffff;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2.5px;
    background: #7c3aed;
    transition: width 0.3s;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
}

.mobile-toggle span {
    display: block;
    width: 28px;
    height: 2.5px;
    background: #ffffff;
    border-radius: 2px;
    transition: 0.3s;
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}
.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== MAIN ===== */
.main {
    padding: 30px 0 50px;
}

/* ===== HERO - SMALLER HEADING ===== */
.hero {
    text-align: center;
    margin-bottom: 40px;
    padding: 16px 0;
}

.hero h1 {
    font-size: 1.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #fff 0%, #7c3aed 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
    letter-spacing: -0.5px;
    line-height: 1.3;
}

.hero p {
    color: #a0a0c0;
    font-size: 1.05rem;
    max-width: 750px;
    margin: 0 auto;
}

/* ===== GENERATOR ===== */
.generator-section {
    margin-bottom: 40px;
    padding: 28px 0;
    border-top: 1px solid #1a1a2e;
    border-bottom: 1px solid #1a1a2e;
}

.generator-section label {
    display: block;
    font-weight: 600;
    font-size: 0.95rem;
    color: #a0a0c0;
    margin-bottom: 8px;
}

.generator-section textarea {
    width: 100%;
    min-height: 110px;
    padding: 14px 18px;
    background: #0d0d18;
    border: 1px solid #1a1a2e;
    border-radius: 8px;
    color: #ffffff;
    font-size: 1rem;
    font-family: inherit;
    resize: vertical;
    transition: border 0.3s;
}

.generator-section textarea:focus {
    outline: none;
    border-color: #7c3aed;
}

.generator-section textarea::placeholder {
    color: #4a4a5a;
}

/* ===== SLIDER ===== */
.slider-group {
    margin: 20px 0 24px;
}

.slider-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6px;
}

.slider-header label {
    margin-bottom: 0;
    font-size: 0.9rem;
}

.slider-value {
    font-weight: 700;
    color: #7c3aed;
    font-size: 1rem;
    min-width: 45px;
    text-align: right;
}

.slider-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: #4a4a5a;
    margin-top: 4px;
}

input[type="range"] {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 6px;
    border-radius: 4px;
    background: #1a1a2e;
    outline: none;
    transition: background 0.2s;
}

input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #7c3aed;
    cursor: pointer;
    border: 2px solid #0a0a0f;
    transition: transform 0.3s;
}

input[type="range"]::-webkit-slider-thumb:hover {
    transform: scale(1.15);
}

input[type="range"]::-moz-range-thumb {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #7c3aed;
    cursor: pointer;
    border: 2px solid #0a0a0f;
}

input[type="range"]::-moz-range-track {
    height: 6px;
    border-radius: 4px;
    background: #1a1a2e;
}

/* ===== OUTPUT ===== */
.output-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 6px;
}

.result-item {
    background: #0d0d18;
    border: 1px solid #1a1a2e;
    border-radius: 8px;
    padding: 10px 14px;
    display: flex;
    align-items: stretch;
    gap: 12px;
}

.result-item .result-label {
    font-size: 0.65rem;
    font-weight: 600;
    color: #4a4a5a;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    writing-mode: vertical-lr;
    text-orientation: mixed;
    padding: 2px 6px;
    min-width: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.result-item textarea {
    flex: 1;
    min-height: 56px;
    padding: 8px 12px;
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 0.95rem;
    font-family: inherit;
    resize: none;
    overflow-y: auto;
    line-height: 1.6;
}

.result-item textarea:focus {
    outline: none;
}

.copy-btn {
    padding: 6px 16px;
    background: #7c3aed;
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.8rem;
    font-weight: 600;
    transition: background 0.3s;
    height: 38px;
    align-self: center;
    white-space: nowrap;
}

.copy-btn:hover {
    background: #8b5cf6;
}

.copy-btn.copied {
    background: #10b981;
}

.generator-actions {
    display: flex;
    gap: 12px;
    margin-top: 18px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    border: 1px solid #1a1a2e;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
    background: transparent;
    color: #a0a0c0;
}

.btn:hover {
    background: #1a1a2e;
    color: #ffffff;
}

/* ===== CONTENT SECTIONS - SMALLER HEADINGS ===== */
.content-section {
    margin-bottom: 40px;
    padding: 20px 0;
    border-bottom: 1px solid #1a1a2e;
}

.content-section:last-of-type {
    border-bottom: none;
}

.content-section h2 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.content-section h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-top: 22px;
    margin-bottom: 8px;
}

.content-section p {
    color: #a0a0c0;
    margin-bottom: 14px;
    font-size: 1rem;
}

.content-section ul {
    color: #a0a0c0;
    padding-left: 24px;
    margin-bottom: 14px;
    font-size: 1rem;
}

.content-section ul li {
    margin-bottom: 6px;
}

.content-section .example-box {
    background: #0d0d18;
    border: 1px solid #1a1a2e;
    border-radius: 6px;
    padding: 12px 18px;
    margin: 8px 0 16px;
    font-size: 1.1rem;
    color: #7c3aed;
    word-break: break-all;
}

/* ===== PLATFORM CARDS ===== */
.platform-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    gap: 10px;
    margin: 14px 0 18px;
}

.platform-card {
    background: #0d0d18;
    border: 1px solid #1a1a2e;
    border-radius: 8px;
    padding: 12px 14px;
    text-align: center;
    transition: border 0.3s, transform 0.3s;
    cursor: default;
}

.platform-card:hover {
    border-color: #7c3aed;
    transform: translateY(-2px);
}

.platform-card .platform-icon {
    font-size: 1.6rem;
    display: block;
    margin-bottom: 4px;
}

.platform-card .platform-name {
    color: #a0a0c0;
    font-size: 0.82rem;
    font-weight: 500;
}

/* ===== INFO GRID ===== */
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 18px;
    margin: 16px 0;
}

.info-card {
    background: transparent;
    border: 1px solid #1a1a2e;
    border-radius: 8px;
    padding: 20px;
    transition: border 0.3s;
}

.info-card:hover {
    border-color: #7c3aed;
}

.info-card h3 {
    font-size: 1.05rem;
    margin-bottom: 6px;
    margin-top: 0;
}

.info-card p {
    color: #a0a0c0;
    font-size: 0.92rem;
    margin-bottom: 0;
}

/* ===== FEATURE LIST ===== */
.feature-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 12px;
    margin: 14px 0;
}

.feature-item {
    background: #0d0d18;
    border: 1px solid #1a1a2e;
    border-radius: 6px;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.feature-item .icon {
    font-size: 1.4rem;
}

.feature-item span {
    color: #a0a0c0;
    font-size: 0.95rem;
}

/* ===== TABLE ===== */
.style-table {
    width: 100%;
    border-collapse: collapse;
    margin: 16px 0;
    background: #0d0d18;
    border-radius: 6px;
    overflow: hidden;
}

.style-table th {
    background: #1a1a2e;
    color: #ffffff;
    padding: 12px 16px;
    text-align: left;
    font-weight: 600;
    font-size: 0.95rem;
}

.style-table td {
    padding: 10px 16px;
    border-bottom: 1px solid #1a1a2e;
    color: #a0a0c0;
    font-size: 0.92rem;
}

.style-table tr:hover td {
    background: #0d0d18;
}

/* ===== FAQ ===== */
.faq-item {
    border: 1px solid #1a1a2e;
    border-radius: 6px;
    margin-bottom: 10px;
    overflow: hidden;
    background: transparent;
}

.faq-question {
    width: 100%;
    padding: 16px 20px;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: inherit;
    transition: background 0.3s;
}

.faq-question:hover {
    background: #0d0d18;
}

.faq-icon {
    font-size: 1.2rem;
    color: #4a4a5a;
    transition: transform 0.3s;
    flex-shrink: 0;
    margin-left: 16px;
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    padding: 0 20px;
}

.faq-item.open .faq-answer {
    max-height: 300px;
    padding: 0 20px 16px;
}

.faq-answer p {
    color: #a0a0c0;
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* ===== CTA SECTION ===== */
.cta-section {
    text-align: center;
    padding: 32px 0;
    border-top: 1px solid #1a1a2e;
    border-bottom: 1px solid #1a1a2e;
    margin-bottom: 40px;
}

.cta-section h2 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.cta-section p {
    color: #a0a0c0;
    font-size: 1.05rem;
    max-width: 650px;
    margin: 0 auto;
}

/* ===== FOOTER ===== */
.footer {
    background: #0a0a0f;
    border-top: 1px solid #1a1a2e;
    padding: 36px 0 20px;
    margin-top: 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 32px;
    margin-bottom: 24px;
}

.footer-brand .logo {
    font-size: 1.3rem;
    margin-bottom: 8px;
    display: inline-block;
}

.footer-brand p {
    color: #4a4a5a;
    font-size: 0.92rem;
    max-width: 320px;
}

.footer-links h4 {
    font-size: 0.92rem;
    color: #a0a0c0;
    margin-bottom: 10px;
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 6px;
}

.footer-links ul li a {
    color: #4a4a5a;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-links ul li a:hover {
    color: #ffffff;
}

.footer-bottom {
    border-top: 1px solid #1a1a2e;
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    color: #4a4a5a;
    font-size: 0.85rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        padding: 16px 0;
        border-top: 1px solid #1a1a2e;
        margin-top: 12px;
        gap: 6px;
    }

    .nav-links.open {
        display: flex;
    }

    .mobile-toggle {
        display: flex;
    }

    .logo {
        font-size: 1.6rem;
    }
    
    .logo .logo-icon {
        font-size: 1.8rem;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .hero p {
        font-size: 0.95rem;
    }

    .content-section h2 {
        font-size: 1.4rem;
    }

    .content-section h3 {
        font-size: 1.1rem;
    }

    .generator-section {
        padding: 18px 0;
    }

    .result-item {
        flex-wrap: wrap;
        padding: 10px 12px;
    }

    .result-item .result-label {
        writing-mode: horizontal-tb;
        min-width: auto;
        font-size: 0.6rem;
        padding: 0 6px;
    }

    .result-item textarea {
        min-height: 44px;
        font-size: 0.88rem;
    }

    .platform-grid {
        grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
    }

    .info-grid {
        grid-template-columns: 1fr;
    }

    .feature-list {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .style-table {
        font-size: 0.82rem;
    }

    .style-table th,
    .style-table td {
        padding: 8px 10px;
    }

    .cta-section h2 {
        font-size: 1.4rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .logo {
        font-size: 1.4rem;
    }
    
    .logo .logo-icon {
        font-size: 1.6rem;
    }

    .hero h1 {
        font-size: 1.5rem;
    }

    .generator-actions {
        flex-direction: column;
    }

    .generator-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .copy-btn {
        font-size: 0.7rem;
        padding: 4px 12px;
        height: 32px;
    }

    .content-section p,
    .content-section ul {
        font-size: 0.92rem;
    }

    .platform-grid {
        grid-template-columns: repeat(auto-fit, minmax(90px, 1fr));
        gap: 8px;
    }
    
    .platform-card {
        padding: 10px 8px;
    }
    
    .platform-card .platform-icon {
        font-size: 1.3rem;
    }
    
    .platform-card .platform-name {
        font-size: 0.7rem;
    }
}
/* ===== CONTACT PAGE ===== */
.contact-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 20px;
}

@media (max-width: 768px) {
    .contact-section {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 16px;
    background: #0d0d18;
    border: 1px solid #1a1a2e;
    border-radius: 8px;
    padding: 18px 20px;
    transition: border 0.3s;
}

.contact-method:hover {
    border-color: #7c3aed;
}

.contact-icon {
    font-size: 1.8rem;
    flex-shrink: 0;
}

.contact-method h3 {
    font-size: 1rem;
    margin-bottom: 2px;
    color: #fff;
}

.contact-method p {
    color: #a0a0c0;
    font-size: 0.95rem;
    margin: 0;
}

.contact-method p a {
    color: #7c3aed;
}

.contact-method p a:hover {
    color: #8b5cf6;
}

/* ===== CONTACT FORM ===== */
.contact-form {
    background: #0d0d18;
    border: 1px solid #1a1a2e;
    border-radius: 8px;
    padding: 28px 24px;
}

.contact-form h2 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 18px;
}

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: #a0a0c0;
    margin-bottom: 4px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px 14px;
    background: #0a0a0f;
    border: 1px solid #1a1a2e;
    border-radius: 6px;
    color: #ffffff;
    font-size: 0.95rem;
    font-family: inherit;
    transition: border 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #7c3aed;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #4a4a5a;
}

.btn-primary {
    background: #7c3aed;
    color: #fff;
    padding: 12px 28px;
    border: none;
    border-radius: 6px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
    width: 100%;
}

.btn-primary:hover {
    background: #8b5cf6;
}

.form-status {
    margin-top: 14px;
    padding: 12px 16px;
    border-radius: 6px;
    display: none;
    font-size: 0.95rem;
}

.form-status.success {
    display: block;
    background: rgba(16, 185, 129, 0.15);
    color: #10b981;
    border: 1px solid #10b981;
}

.form-status.error {
    display: block;
    background: rgba(239, 68, 68, 0.15);
    color: #ef4444;
    border: 1px solid #ef4444;
}

/* ===== PAGE HERO ===== */
.page-hero {
    text-align: center;
    margin-bottom: 32px;
}

.page-hero h1 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.page-hero p {
    color: #a0a0c0;
    font-size: 1.05rem;
}
/* ===== GENERATOR CARD - FULL WIDTH ===== */
.generator-card {
    background: #16162a;
    border: 1px solid #2a2a4a;
    border-radius: 12px;
    padding: 28px 24px 32px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    margin-bottom: 40px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.generator-card label {
    display: block;
    font-weight: 600;
    font-size: 0.95rem;
    color: #a0a0c0;
    margin-bottom: 8px;
}

.generator-card textarea {
    width: 100%;
    max-width: 100%;
    min-height: 120px;
    padding: 16px 20px;
    background: #0d0d18;
    border: 1px solid #2a2a4a;
    border-radius: 12px;
    color: #ffffff;
    font-size: 1.1rem;
    font-family: inherit;
    resize: vertical;
    transition: border 0.3s, box-shadow 0.3s;
    box-sizing: border-box;
}

.generator-card textarea:focus {
    outline: none;
    border-color: #7c3aed;
    box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.3);
}

.generator-card textarea::placeholder {
    color: #4a4a5a;
}

/* ===== SLIDER ===== */
.slider-group {
    margin: 24px 0 28px;
    width: 100%;
}

.slider-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6px;
}

.slider-header label {
    margin-bottom: 0;
    font-size: 0.95rem;
    color: #a0a0c0;
}

.slider-value {
    font-weight: 700;
    color: #7c3aed;
    font-size: 1.1rem;
    min-width: 45px;
    text-align: right;
}

.slider-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: #4a4a5a;
    margin-top: 4px;
}

input[type="range"] {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 6px;
    border-radius: 4px;
    background: #1a1a2e;
    outline: none;
    transition: background 0.2s;
}

input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #7c3aed;
    cursor: pointer;
    border: 2px solid #0a0a0f;
    box-shadow: 0 0 16px rgba(124, 58, 237, 0.3);
    transition: transform 0.3s;
}

input[type="range"]::-webkit-slider-thumb:hover {
    transform: scale(1.15);
}

input[type="range"]::-moz-range-thumb {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #7c3aed;
    cursor: pointer;
    border: 2px solid #0a0a0f;
    box-shadow: 0 0 16px rgba(124, 58, 237, 0.3);
}

input[type="range"]::-moz-range-track {
    height: 6px;
    border-radius: 4px;
    background: #1a1a2e;
}

/* ===== OUTPUT RESULTS ===== */
.output-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 8px;
    width: 100%;
}

.result-item {
    background: #0d0d18;
    border: 1px solid #2a2a4a;
    border-radius: 8px;
    padding: 12px 16px;
    display: flex;
    align-items: stretch;
    gap: 12px;
    width: 100%;
    box-sizing: border-box;
    transition: border 0.3s;
}

.result-item:hover {
    border-color: #3a3a5a;
}

.result-item .result-label {
    font-size: 0.7rem;
    font-weight: 600;
    color: #4a4a5a;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    writing-mode: vertical-lr;
    text-orientation: mixed;
    padding: 2px 6px;
    min-width: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.result-item textarea {
    flex: 1;
    min-height: 60px;
    padding: 10px 14px;
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 1rem;
    font-family: inherit;
    resize: none;
    overflow-y: auto;
    line-height: 1.6;
    width: 100%;
    box-sizing: border-box;
}

.result-item textarea:focus {
    outline: none;
}

.result-item textarea::selection {
    background: #7c3aed;
    color: #fff;
}

.copy-btn {
    padding: 8px 20px;
    background: #7c3aed;
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 600;
    transition: background 0.3s, transform 0.3s;
    height: 40px;
    align-self: center;
    white-space: nowrap;
    flex-shrink: 0;
}

.copy-btn:hover {
    background: #8b5cf6;
    transform: scale(1.04);
}

.copy-btn.copied {
    background: #10b981;
}

.copy-btn:active {
    transform: scale(0.95);
}

/* ===== BUTTONS ===== */
.generator-actions {
    display: flex;
    gap: 12px;
    margin-top: 20px;
    flex-wrap: wrap;
    width: 100%;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border: 1px solid #1a1a2e;
    border-radius: 6px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
    background: transparent;
    color: #a0a0c0;
}

.btn:hover {
    background: #1a1a2e;
    color: #ffffff;
}

.btn-primary {
    background: #7c3aed;
    color: #fff;
    border: none;
}

.btn-primary:hover {
    background: #8b5cf6;
}

.btn-secondary {
    background: transparent;
    color: #a0a0c0;
    border: 1px solid #1a1a2e;
}

.btn-secondary:hover {
    background: #1a1a2e;
    color: #ffffff;
}