:root {
    --primary-yellow: #FFEB3B;
    --neon-yellow: #FFD700;
    --black: #000000;
    --dark-gray: #1a1a1a;
    --light-gray: #333333;
    --white: #FFFFFF;
    --text-gray: #CCCCCC;
    --border-gray: #444444;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: var(--black);
    color: var(--white);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

header {
    background: linear-gradient(135deg, var(--dark-gray) 0%, var(--black) 100%);
    border-bottom: 3px solid var(--neon-yellow);
    padding: 2rem 0;
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.1);
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.logo {
    height: 60px;
    width: auto;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.5));
}

h1 {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 2px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    line-height: 1.2;
}

h1 span {
    display: block;
}

h1 span:last-child {
    font-size: 1.5rem;
    font-weight: normal;
    text-transform: none;
    letter-spacing: 1px;
    margin-top: 0.25rem;
}

.tagline {
    color: var(--text-gray);
    font-size: 1.1rem;
    margin-top: 0.5rem;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    flex: 1;
}

.intro {
    background: var(--dark-gray);
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid var(--neon-yellow);
    margin-bottom: 2rem;
}

.intro h2 {
    color: var(--neon-yellow);
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.features-section {
    background: var(--dark-gray);
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    border-left: 4px solid var(--neon-yellow);
}

.features-section details {
    cursor: pointer;
}

.features-section summary {
    list-style: none;
    cursor: pointer;
    outline: none;
}

.features-section summary::-webkit-details-marker {
    display: none;
}

.features-section summary::marker {
    display: none;
}

.features-section summary::before {
    content: "▼";
    color: var(--neon-yellow);
    margin-right: 0.5rem;
    display: inline-block;
    transition: transform 0.3s;
}

.features-section details[open] summary::before {
    transform: rotate(180deg);
}

.features-section h2 {
    color: var(--neon-yellow);
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    text-align: center;
    display: inline-block;
}

.features-section summary:hover h2 {
    color: var(--primary-yellow);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.feature-card {
    background: var(--light-gray);
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 3px solid var(--neon-yellow);
    transition: all 0.3s;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.2);
    border-left-width: 4px;
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

.feature-card h3 {
    color: var(--neon-yellow);
    margin-bottom: 0.75rem;
    font-size: 1.2rem;
}

.feature-card p {
    color: var(--text-gray);
    line-height: 1.6;
    font-size: 0.9rem;
    margin: 0;
}

.help-intro {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1rem;
    line-height: 1.6;
    padding: 1rem;
    background: var(--light-gray);
    border-radius: 6px;
    border-left: 3px solid var(--neon-yellow);
}

.builder-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
    align-items: start;
}

@media (max-width: 968px) {
    .builder-container {
        grid-template-columns: 1fr;
    }
    
    .preview-panel {
        position: relative !important;
        top: auto !important;
    }
}

.builder-panel {
    background: var(--dark-gray);
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid var(--border-gray);
}

.preview-panel {
    background: var(--dark-gray);
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid var(--border-gray);
    position: sticky;
    top: 2rem;
    max-height: calc(100vh - 4rem);
    overflow-y: auto;
}

.builder-panel h2, .preview-panel h2 {
    color: var(--neon-yellow);
    margin-bottom: 1rem;
    font-size: 1.5rem;
    border-bottom: 2px solid var(--neon-yellow);
    padding-bottom: 0.5rem;
}

.directive-group {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: var(--light-gray);
    border-radius: 6px;
    border-left: 3px solid var(--neon-yellow);
}

.directive-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.directive-label {
    font-weight: bold;
    color: var(--white);
    font-size: 1.1rem;
}

.directive-toggle {
    background: var(--dark-gray);
    border: 2px solid var(--neon-yellow);
    color: var(--neon-yellow);
    padding: 0.5rem 1rem;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.directive-toggle:hover {
    background: var(--neon-yellow);
    color: var(--black);
}

.directive-toggle.active {
    background: var(--neon-yellow);
    color: var(--black);
}

.directive-description {
    font-size: 0.9rem;
    color: var(--text-gray);
    margin-bottom: 0.75rem;
    line-height: 1.5;
}

.input-wrapper {
    position: relative;
    width: 100%;
}

.directive-input {
    width: 100%;
    padding: 0.75rem;
    padding-right: 2.5rem;
    background: var(--black);
    border: 1px solid var(--border-gray);
    border-radius: 4px;
    color: var(--white);
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.clear-input-btn {
    position: absolute;
    right: 0.5rem;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: var(--text-gray);
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    transition: all 0.2s;
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.clear-input-btn:hover {
    color: var(--neon-yellow);
    background: rgba(255, 215, 0, 0.1);
    transform: translateY(-50%) scale(1.1);
}

.clear-input-btn:active {
    transform: translateY(-50%) scale(0.95);
}

.directive-input:focus {
    outline: none;
    border-color: var(--neon-yellow);
    box-shadow: 0 0 0 2px rgba(255, 215, 0, 0.2);
}

.directive-input::placeholder {
    color: var(--text-gray);
}

.directive-input:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.directive-input.required-empty {
    border-color: #F44336;
    border-width: 2px;
    background: rgba(244, 67, 54, 0.1);
    animation: pulse-warning 2s infinite;
}

@keyframes pulse-warning {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(244, 67, 54, 0.4);
    }
    50% {
        box-shadow: 0 0 0 4px rgba(244, 67, 54, 0.1);
    }
}

.directive-group.has-error {
    border-left-color: #F44336;
}

.value-required-warning {
    color: #F44336;
    font-size: 0.85rem;
    margin-top: 0.5rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.value-required-warning::before {
    content: "⚠️";
    font-size: 1rem;
}

.btn-primary:disabled, .btn-secondary:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
    background: var(--light-gray) !important;
    color: var(--text-gray) !important;
    border-color: var(--border-gray) !important;
}

.validation-message {
    background: rgba(244, 67, 54, 0.2);
    border: 1px solid #F44336;
    color: #F44336;
    padding: 1rem;
    border-radius: 6px;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    line-height: 1.6;
}

.validation-message strong {
    display: block;
    margin-bottom: 0.5rem;
}

.implementation-section {
    margin-top: 1.5rem;
    padding: 1rem;
    background: var(--dark-gray);
    border-radius: 8px;
    border: 1px solid var(--border-gray);
}

.implementation-section details {
    cursor: pointer;
}

.implementation-section summary {
    list-style: none;
    cursor: pointer;
    outline: none;
}

.implementation-section summary::-webkit-details-marker {
    display: none;
}

.implementation-section summary::marker {
    display: none;
}

.implementation-section summary::before {
    content: "▼";
    color: var(--neon-yellow);
    margin-right: 0.5rem;
    display: inline-block;
    transition: transform 0.3s;
    font-size: 0.8rem;
}

.implementation-section details[open] summary::before {
    transform: rotate(180deg);
}

.implementation-section h3 {
    color: var(--neon-yellow);
    font-size: 1rem;
    margin: 0;
    display: inline-block;
}

.implementation-section summary:hover h3 {
    color: var(--primary-yellow);
}

.implementation-content {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-gray);
}

.implementation-intro {
    color: var(--text-gray);
    margin-bottom: 1rem;
    font-size: 0.85rem;
    line-height: 1.6;
}

.implementation-item {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: var(--light-gray);
    border-radius: 6px;
    border-left: 3px solid var(--neon-yellow);
}

.implementation-item h4 {
    color: var(--neon-yellow);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.implementation-item p {
    color: var(--text-gray);
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.code-block {
    display: block;
    background: var(--black);
    padding: 0.75rem;
    border-radius: 4px;
    color: var(--neon-yellow);
    font-family: 'Courier New', monospace;
    font-size: 0.75rem;
    line-height: 1.6;
    overflow-x: auto;
    margin: 0.5rem 0;
    border: 1px solid var(--border-gray);
    white-space: pre-wrap;
    word-break: break-all;
}

.implementation-note {
    color: var(--text-gray);
    font-size: 0.8rem;
    font-style: italic;
    margin-top: 0.5rem;
    padding-left: 0.5rem;
    border-left: 2px solid var(--border-gray);
}

.implementation-tip {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 6px;
    border-left: 3px solid var(--neon-yellow);
    color: var(--text-gray);
    font-size: 0.85rem;
    line-height: 1.6;
}

.implementation-tip strong {
    color: var(--neon-yellow);
}

.cta-section {
    margin-top: 1.5rem;
    padding: 1rem;
    background: linear-gradient(135deg, var(--light-gray) 0%, var(--dark-gray) 100%);
    border-radius: 8px;
    border: 2px solid var(--neon-yellow);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.2);
}

.cta-section h3 {
    color: var(--neon-yellow);
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    text-align: center;
}

.cta-section p {
    color: var(--text-gray);
    line-height: 1.5;
    margin-bottom: 0.75rem;
    font-size: 0.85rem;
}

.cta-features {
    list-style: none;
    padding: 0;
    margin: 0.75rem 0;
    color: var(--text-gray);
    font-size: 0.8rem;
}

.cta-features li {
    padding: 0.25rem 0;
    padding-left: 1.25rem;
    position: relative;
    line-height: 1.4;
}

.cta-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--neon-yellow);
    font-weight: bold;
    font-size: 0.9rem;
}

.cta-button {
    display: block;
    width: 100%;
    padding: 0.75rem;
    background: var(--neon-yellow);
    color: var(--black);
    text-align: center;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.9rem;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s;
    margin-top: 0.75rem;
    border: 2px solid var(--neon-yellow);
}

.cta-button:hover {
    background: var(--primary-yellow);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
    transform: translateY(-2px);
}

.help-text {
    font-size: 0.85rem;
    color: var(--text-gray);
    margin-top: 0.5rem;
    font-style: italic;
}

.security-score {
    background: var(--dark-gray);
    padding: 1rem;
    border-radius: 6px;
    border: 2px solid var(--border-gray);
    margin-bottom: 1rem;
}

.security-score-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.security-score-label {
    color: var(--text-gray);
    font-size: 0.9rem;
    font-weight: bold;
}

.security-score-value {
    font-size: 1.5rem;
    font-weight: bold;
    font-family: 'Courier New', monospace;
}

.security-score-rating {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.security-score-details {
    color: var(--text-gray);
    font-size: 0.85rem;
    font-style: italic;
}

.security-score-breakdown {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-gray);
}

.security-score-breakdown strong {
    color: var(--white);
    font-size: 0.9rem;
    display: block;
    margin-bottom: 0.5rem;
}

.directive-scores-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.directive-scores-list li {
    display: flex;
    justify-content: space-between;
    padding: 0.4rem 0;
    font-size: 0.85rem;
    border-bottom: 1px solid var(--dark-gray);
}

.directive-scores-list li:last-child {
    border-bottom: none;
}

.directive-name {
    color: var(--text-gray);
    font-family: 'Courier New', monospace;
}

.directive-score {
    font-weight: bold;
    font-family: 'Courier New', monospace;
}

.csp-output {
    background: var(--black);
    padding: 1rem;
    border-radius: 6px;
    border: 1px solid var(--border-gray);
    margin-bottom: 0.75rem;
    word-break: break-all;
    min-height: 200px;
    max-height: 300px;
    overflow-y: auto;
}

.csp-output code {
    color: var(--neon-yellow);
    font-family: 'Courier New', monospace;
    font-size: 0.95rem;
    line-height: 1.8;
}

.actions {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.btn-primary, .btn-secondary {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background: var(--neon-yellow);
    color: var(--black);
    flex: 1;
}

.btn-primary:hover {
    background: var(--primary-yellow);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: var(--neon-yellow);
    border: 2px solid var(--neon-yellow);
    flex: 1;
}

.btn-secondary:hover {
    background: var(--neon-yellow);
    color: var(--black);
}

.test-result {
    padding: 1rem;
    border-radius: 6px;
    margin-top: 1rem;
    line-height: 1.8;
    font-size: 0.95rem;
}

.test-result.success {
    background: rgba(76, 175, 80, 0.2);
    border: 1px solid #4CAF50;
    color: #4CAF50;
}

.test-result.error {
    background: rgba(244, 67, 54, 0.2);
    border: 1px solid #F44336;
    color: #F44336;
}

.test-result strong {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.test-result.error strong:first-child {
    color: #F44336;
}

.hidden {
    display: none;
}

.help-section {
    background: var(--dark-gray);
    padding: 2rem;
    border-radius: 8px;
    margin-top: 2rem;
}

.help-section h2 {
    color: var(--neon-yellow);
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    border-bottom: 2px solid var(--neon-yellow);
    padding-bottom: 0.5rem;
}

.help-item {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--light-gray);
    border-radius: 6px;
    border-left: 4px solid var(--neon-yellow);
}

.help-item h3 {
    color: var(--neon-yellow);
    margin-bottom: 0.75rem;
    font-size: 1.3rem;
}

.help-item p {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.help-item code {
    background: var(--black);
    padding: 0.2rem 0.5rem;
    border-radius: 3px;
    color: var(--neon-yellow);
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
}

footer {
    background: var(--dark-gray);
    border-top: 1px solid var(--border-gray);
    padding: 1.5rem;
    text-align: center;
    color: var(--text-gray);
    margin-top: auto;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-copyright {
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
    color: var(--text-gray);
}

.footer-links {
    margin-bottom: 0.75rem;
    font-size: 0.75rem;
    line-height: 1.8;
    flex-wrap: wrap;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
}

.footer-links a {
    color: var(--text-gray);
    text-decoration: none;
    transition: all 0.3s;
    white-space: nowrap;
}

.footer-links a:hover {
    color: var(--neon-yellow);
    text-decoration: underline;
}

.footer-separator {
    color: var(--border-gray);
    margin: 0 0.25rem;
}

.footer-main-links {
    margin-top: 0.75rem;
    font-size: 0.9rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.footer-main-links a {
    color: var(--neon-yellow);
    text-decoration: none;
    transition: all 0.3s;
}

.footer-main-links a:hover {
    color: var(--primary-yellow);
    text-decoration: underline;
}

@media (max-width: 768px) {
    .footer-links {
        font-size: 0.7rem;
        gap: 0.25rem;
    }
    
    .footer-separator {
        margin: 0 0.15rem;
    }
    
    .footer-main-links {
        font-size: 0.85rem;
    }
}

.special-values {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.special-value-btn {
    padding: 0.4rem 0.8rem;
    background: var(--dark-gray);
    border: 1px solid var(--neon-yellow);
    color: var(--neon-yellow);
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.85rem;
    transition: all 0.2s;
}

.special-value-btn:hover {
    background: var(--neon-yellow);
    color: var(--black);
}

.special-value-btn.active {
    background: var(--neon-yellow) !important;
    color: var(--black) !important;
    font-weight: bold;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(4px);
    animation: fadeIn 0.3s;
}

.modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.modal-content {
    background: var(--dark-gray);
    border: 2px solid var(--neon-yellow);
    border-radius: 8px;
    width: 90%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 8px 32px rgba(255, 215, 0, 0.3);
    animation: slideDown 0.3s;
}

@keyframes slideDown {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-gray);
}

.modal-header h3 {
    color: var(--neon-yellow);
    margin: 0;
    font-size: 1.5rem;
}

.modal-close {
    background: transparent;
    border: none;
    color: var(--text-gray);
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
    padding: 0;
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    border-radius: 4px;
}

.modal-close:hover {
    color: var(--neon-yellow);
    background: rgba(255, 215, 0, 0.1);
}

.modal-body {
    padding: 1.5rem;
}

.modal-description {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.modal-input-group {
    margin-bottom: 1.5rem;
}

.modal-input-group label {
    display: block;
    color: var(--white);
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    color: var(--white);
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    font-weight: normal;
}

.checkbox-label code {
    background: var(--dark-gray);
    padding: 0.2rem 0.4rem;
    border-radius: 3px;
    color: var(--neon-yellow);
    font-size: 0.9em;
}

.checkbox-input {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--neon-yellow);
}

.domain-input-wrapper {
    display: flex;
    align-items: center;
    background: var(--black);
    border: 1px solid var(--border-gray);
    border-radius: 4px;
    overflow: hidden;
}

.protocol-prefix {
    padding: 0.75rem;
    background: var(--light-gray);
    color: var(--neon-yellow);
    font-family: 'Courier New', monospace;
    font-weight: bold;
    border-right: 1px solid var(--border-gray);
    white-space: nowrap;
}

.domain-input {
    flex: 1;
    padding: 0.75rem;
    background: var(--black);
    border: none;
    color: var(--white);
    font-family: 'Courier New', monospace;
    font-size: 0.95rem;
    outline: none;
}

.domain-input:focus {
    background: var(--black);
}

.domain-input-wrapper:focus-within {
    border-color: var(--neon-yellow);
    box-shadow: 0 0 0 2px rgba(255, 215, 0, 0.2);
}

.domain-error {
    color: #F44336;
    font-size: 0.85rem;
    margin-top: 0.5rem;
    padding: 0.5rem;
    background: rgba(244, 67, 54, 0.1);
    border-radius: 4px;
    border-left: 3px solid #F44336;
}

.modal-examples {
    margin-top: 1.5rem;
    padding: 1rem;
    background: var(--light-gray);
    border-radius: 4px;
    border-left: 3px solid var(--neon-yellow);
}

.modal-examples strong {
    color: var(--neon-yellow);
    display: block;
    margin-bottom: 0.5rem;
}

.modal-examples ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.modal-examples li {
    color: var(--text-gray);
    padding: 0.25rem 0;
    font-size: 0.9rem;
}

.modal-examples code {
    background: var(--black);
    padding: 0.2rem 0.5rem;
    border-radius: 3px;
    color: var(--neon-yellow);
    font-family: 'Courier New', monospace;
    font-size: 0.85rem;
}

.modal-footer {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    border-top: 1px solid var(--border-gray);
}

.modal-footer .btn-primary,
.modal-footer .btn-secondary {
    flex: 1;
    margin: 0;
}

