/* Cafe Name Generator Styles - All classes prefixed with cng- */

/* Reset and Base Styles */
.cng-body {
    margin: 0;
    padding: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: #ffffff;
    color: #1f2937;
    min-height: 100vh;
    line-height: 1.5;
}

* {
    box-sizing: border-box;
}

.cng-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

.cng-section-wrapper {
    max-width: 1152px;
    margin: 0 auto;
}

.cng-icon {
    width: 24px;
    height: 24px;
}

/* Header */
.cng-header {
    background: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    position: sticky;
    top: 0;
    z-index: 50;
}

.cng-header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

.cng-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cng-logo-icon {
    width: 32px;
    height: 32px;
    background: #7c3aed;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
}

.cng-logo-text {
    font-size: 1.125rem;
    color: #1f2937;
}

.cng-nav {
    display: none;
    align-items: center;
    gap: 2rem;
}

@media (min-width: 768px) {
    .cng-nav {
        display: flex;
    }
}

.cng-nav-link {
    font-size: 0.875rem;
    color: #374151;
    text-decoration: none;
    transition: color 0.2s;
}

.cng-nav-link:hover {
    color: #7c3aed;
}

/* Hero Section */
.cng-hero {
    background: linear-gradient(to bottom right, #eff6ff, #fce7f3, #dbeafe);
    padding: 4rem 0;
}

@media (min-width: 768px) {
    .cng-hero {
        padding: 5rem 0;
    }
}

.cng-hero-grid {
    display: grid;
    gap: 3rem;
    align-items: center;
    max-width: 1152px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .cng-hero-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.cng-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #dbeafe;
    color: #1d4ed8;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.cng-badge-dot {
    width: 0.5rem;
    height: 0.5rem;
    background: #2563eb;
    border-radius: 9999px;
}

.cng-hero-title {
    font-size: 2.25rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .cng-hero-title {
        font-size: 3rem;
    }
}

.cng-title-dark {
    color: #1e3a8a;
}

.cng-title-gradient {
    background: linear-gradient(to right, #7c3aed, #ec4899);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cng-hero-subtitle {
    font-size: 1.125rem;
    color: #4b5563;
    margin-bottom: 2rem;
}

.cng-subtitle-gradient {
    font-weight: 500;
    background: linear-gradient(to right, #7c3aed, #ec4899);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cng-hero-stats {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.cng-stat-number {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    background: linear-gradient(to right, #7c3aed, #ec4899);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cng-stat-label {
    font-size: 0.875rem;
    color: #6b7280;
}

.cng-hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.cng-btn-primary {
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    color: #ffffff;
    background: linear-gradient(to right, #7c3aed, #ec4899);
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cng-btn-primary:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.cng-btn-secondary {
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    color: #4b5563;
    background: transparent;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cng-btn-secondary:hover {
    gap: 0.75rem;
}

.cng-btn-icon {
    width: 1rem;
    height: 1rem;
}

.cng-hero-image-wrapper {
    position: relative;
}

.cng-hero-image {
    border-radius: 1rem;
    overflow: hidden;
    border: 2px solid #fff;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.5), 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.cng-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cng-badge-instant,
.cng-badge-creative {
    position: absolute;
    background: #ffffff;
    border-radius: 9999px;
    padding: 0.5rem 1rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    z-index: 10;
}

.cng-badge-instant {
    top: 1rem;
    left: 1rem;
}

.cng-badge-creative {
    bottom: 1rem;
    right: 1rem;
}

.cng-badge-emoji {
    font-size: 0.875rem;
}

.cng-badge-text {
    font-size: 0.875rem;
    font-weight: 500;
    color: #1f2937;
}

/* Benefits Section */
.cng-benefits {
    padding: 4rem 0;
    background: linear-gradient( to bottom, #ffffff, rgba(239, 246, 255, 0.3), #ffffff );
}

.cng-section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.cng-section-title {
    font-size: 1.875rem;
    margin-bottom: 0.75rem;
}

@media (min-width: 768px) {
    .cng-section-title {
        font-size: 2.25rem;
    }
}

.cng-title-normal {
    color: #1f2937;
}

.cng-title-highlight {
    font-weight: 700;
    background: linear-gradient(to right, #7c3aed, #ec4899);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cng-title-purple {
    color: #7c3aed;
}

.cng-section-description {
    color: #6b7280;
    max-width: 42rem;
    margin: 0 auto;
}

.cng-benefits-grid {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .cng-benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .cng-benefits-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.cng-benefit-card {
    background: #ffffff;
    border-radius: 1rem;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s;
}

.cng-benefit-card:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    transform: translateY(-0.25rem);
}

.cng-benefit-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: #ffffff;
}

.cng-icon-blue {
    background: #3b82f6;
}

.cng-icon-purple {
    background: #a855f7;
}

.cng-icon-pink {
    background: #ec4899;
}

.cng-icon-indigo {
    background: #6366f1;
}

.cng-benefit-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.cng-benefit-description {
    font-size: 0.875rem;
    color: #6b7280;
}

/* Generator Section */
.cng-generator {
    padding: 4rem 0;
}

@media (min-width: 768px) {
    .cng-generator {
        padding: 5rem 0;
    }
}

.cng-generator-wrapper {
    max-width: 48rem;
    margin: 0 auto;
}

.cng-form-card {
    padding: 2rem;
    background: #ffffff;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
}

.cng-form-header {
    margin-bottom: 1.5rem;
}

.cng-form-header-content {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.cng-form-icon {
    width: 2rem;
    height: 2rem;
    background: #7c3aed;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
}

.cng-form-title {
    font-size: 1.125rem;
    color: #1f2937;
}

.cng-form-subtitle {
    font-size: 0.875rem;
    color: #6b7280;
}

.cng-form-fields {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.cng-form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.cng-label {
    color: #1f2937;
    font-size: 0.875rem;
    font-weight: 500;
}

.cng-select,
.cng-input {
    width: 100%;
    height: 3rem;
    background: #ffffff;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    padding: 0 0.75rem;
    font-size: 0.875rem;
    color: #1f2937;
    transition: all 0.2s;
}
.cng-select,
.cng-select:focus,
.cng-input,
.cng-input:focus {
    outline: none;
    border-color: #7c3aed;
    box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.1);
}

.cng-generate-btn {
    width: 100%;
    height: 3rem;
    background: linear-gradient( to right, #2563eb, #9333ea );
    color: #ffffff;
    border: none;
    border-radius: 0.5rem;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.cng-generate-btn:hover:not(:disabled) {
    background: #6d28d9;
}

.cng-generate-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.cng-generate-btn .cng-btn-icon {
    width: 1.25rem;
    height: 1.25rem;
}

@keyframes cng-spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.cng-spin {
    animation: cng-spin 1s linear infinite;
}

/* Results Section */
.cng-results {
    margin-top: 3rem;
}

.cng-results-header {
    text-align: center;
    margin-bottom: 2rem;
}

.cng-results-title {
    font-size: 1.5rem;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.cng-results-subtitle {
    color: #6b7280;
}

.cng-names-grid {
    display: grid;
    gap: 1rem;
}

@media (min-width: 640px) {
    .cng-names-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .cng-names-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.cng-name-card {
    padding: 1rem;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.2s;
}

.cng-name-card:hover {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border-color: #d8b4fe;
}

.cng-name-card-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cng-name-text {
    color: #1f2937;
    transition: color 0.2s;
}

.cng-name-card:hover .cng-name-text {
    color: #7c3aed;
}

.cng-copy-icon {
    width: 1rem;
    height: 1rem;
    color: #9ca3af;
    transition: color 0.2s;
}

.cng-name-card:hover .cng-copy-icon {
    color: #7c3aed;
}

.cng-check-icon {
    width: 1rem;
    height: 1rem;
    color: #16a34a;
}

.cng-results-actions {
    text-align: center;
    margin-top: 2rem;
}

.cng-regenerate-btn {
    border: 2px solid #7c3aed;
    color: #6d28d9;
    background: transparent;
    border-radius: 0.5rem;
    padding: 0.5rem 1.5rem;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.cng-regenerate-btn:hover {
    background: #f3e8ff;
}

.cng-regenerate-btn .cng-btn-icon {
    width: 1rem;
    height: 1rem;
}

/* How It Works Section */
.cng-how-it-works {
    padding: 4rem 0;
    background: linear-gradient(to bottom right, #eff6ff, #faf5ff, #fdf2f8);
}

.cng-how-title {
    font-size: 1.875rem;
    font-weight: 700;
    background: linear-gradient(to right, #7c3aed, #ec4899);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .cng-how-title {
        font-size: 2.25rem;
    }
}

.cng-tabs {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: #ffffff;
    border-radius: 9999px;
    padding: 0.75rem 1.5rem;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.cng-tab {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: opacity 0.2s;
}

.cng-tab-active {
    opacity: 1;
}

.cng-tab:not(.cng-tab-active) {
    opacity: 0.6;
}

.cng-tab:not(.cng-tab-active):hover {
    opacity: 1;
}

.cng-tab-icon {
    width: 1rem;
    height: 1rem;
    color: #f59e0b;
}

.cng-tab-icon-inactive {
    color: #ef4444;
}

.cng-tab-text {
    font-size: 0.875rem;
    font-weight: 500;
}

.cng-tab-active .cng-tab-text {
    color: #3b82f6;
}

.cng-tab:not(.cng-tab-active) .cng-tab-text {
    color: #6b7280;
}

.cng-guidance-grid {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .cng-guidance-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .cng-guidance-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.cng-guidance-card {
    background: #ffffff;
    border-radius: 1rem;
    padding: 1.5rem;
    transition: all 0.3s;
}

.cng-guidance-card:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    transform: translateY(-0.25rem);
}

.cng-guidance-content {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.cng-guidance-number {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-weight: 700;
    flex-shrink: 0;
}

.cng-number-blue {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
}

.cng-number-purple {
    background: linear-gradient(135deg, #a855f7, #7c3aed);
}

.cng-number-pink {
    background: linear-gradient(135deg, #ec4899, #db2777);
}

.cng-guidance-title {
    font-size: 1.0625rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.cng-guidance-description {
    font-size: 0.875rem;
    color: #6b7280;
    line-height: 1.6;
}

/* Blog Section */
.cng-blog {
    padding: 4rem 0;
    background: #ffffff;
}

.cng-blog-gradient {
    background: linear-gradient(to right, #10b981, #3b82f6);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cng-blog-grid {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .cng-blog-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.cng-blog-card {
    background: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
}

.cng-blog-card:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    transform: translateY(-0.25rem);
    border-color: #93c5fd;
}

.cng-blog-image {
    aspect-ratio: 4/3;
    overflow: hidden;
}

.cng-blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cng-blog-content {
    padding: 1.5rem;
}

.cng-blog-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1f2937;
    line-height: 1.4;
    margin-bottom: 0.75rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.cng-blog-description {
    font-size: 0.875rem;
    color: #6b7280;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.cng-blog-actions {
    text-align: center;
}

.cng-view-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    border: 2px solid #e5e7eb;
    color: #1f2937;
    background: #ffffff;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.cng-view-all-btn:hover {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

/* FAQ Section */
.cng-faq {
    padding: 4rem 0;
    background: #f9fafb;
}

.cng-faq-wrapper {
    max-width: 48rem;
    margin: 0 auto;
}

.cng-accordion {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.cng-accordion-item {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    padding: 0 1.5rem;
}

.cng-accordion-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    border: none;
    background: transparent;
    color: #1f2937;
    font-size: 1rem;
    text-align: left;
    cursor: pointer;
    transition: all 0.2s;
}
.cng-accordion-item span {
    white-space: break-spaces;
}
.cng-accordion-trigger:hover {
    text-decoration: none;
}

.cng-accordion-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: #6b7280;
    flex-shrink: 0;
    transition: transform 0.2s;
}

.cng-accordion-item.cng-active .cng-accordion-icon {
    transform: rotate(180deg);
}

.cng-accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.cng-accordion-item.cng-active .cng-accordion-content {
    max-height: 500px;
    transition: max-height 0.3s ease-in;
}

.cng-accordion-content p {
    color: #6b7280;
    line-height: 1.6;
    padding-bottom: 1rem;
    margin: 0;
}

/* Footer */
.cng-footer {
    background: #0f172a;
    color: #d1d5db;
    padding: 3rem 0;
}

.cng-footer-wrapper {
    max-width: 1152px;
    margin: 0 auto;
}

.cng-footer-brand {
    text-align: center;
    margin-bottom: 2rem;
}

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

.cng-footer-logo-icon {
    width: 2rem;
    height: 2rem;
    background: #7c3aed;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
}

.cng-footer-logo-text {
    font-size: 1.25rem;
    color: #ffffff;
}

.cng-footer-description {
    font-size: 0.875rem;
    color: #9ca3af;
    max-width: 42rem;
    margin: 0 auto 1rem;
}

.cng-footer-stats {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    font-size: 0.875rem;
}

.cng-footer-stat {
    text-align: center;
}

.cng-footer-stat-number {
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 0.25rem;
}

.cng-footer-stat-label {
    color: #9ca3af;
}

.cng-footer-bottom {
    border-top: 1px solid #1e293b;
    padding-top: 2rem;
    text-align: center;
    font-size: 0.875rem;
    color: #9ca3af;
}

.cng-footer-disclaimer {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.cng-footer-copyright {
    margin: 0;
}

/* Modal */
.cng-modal {
    position: fixed;
    inset: 0;
    z-index: 50;
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cng-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
}

.cng-modal-content {
    position: relative;
    background: #ffffff;
    border-radius: 1rem;
    max-width: 28rem;
    width: 100%;
    padding: 2rem;
    z-index: 51;
}

.cng-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 1.25rem;
    height: 1.25rem;
    color: #9ca3af;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: color 0.2s;
}

.cng-modal-close:hover {
    color: #4b5563;
    background: #fff;
}

.cng-modal-body {
    text-align: center;
}

.cng-modal-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.cng-modal-title-gradient {
    background: linear-gradient(to right, #7c3aed, #ec4899);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cng-modal-icon {
    width: 4rem;
    height: 4rem;
    background: #f3f4f6;
    border-radius: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: #7c3aed;
}

.cng-modal-name-section {
    margin-bottom: 1.5rem;
}

.cng-modal-label {
    font-size: 0.875rem;
    color: #6b7280;
    margin-bottom: 0.75rem;
}

.cng-modal-name-box {
    background: #f9fafb;
    border-radius: 0.5rem;
    padding: 1rem;
    border: 1px solid #e5e7eb;
}

.cng-modal-name {
    font-size: 1.125rem;
    color: #1f2937;
    margin: 0;
}

.cng-modal-copy-btn {
    width: 100%;
    height: 3rem;
    margin-bottom: 1rem;
    border: 1px solid #d1d5db;
    color: #374151;
    background: transparent;
    border-radius: 0.5rem;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.cng-modal-copy-btn:hover, .cng-modal-copy-btn:focus {
    background: linear-gradient(to right, #7c3aed, #ec4899);
}

.cng-modal-description {
    font-size: 0.875rem;
    color: #6b7280;
    margin-bottom: 1.5rem;
}

.cng-modal-demo-btn {
    width: 100%;
    height: 3rem;
    background: linear-gradient(to right, #7c3aed, #ec4899);
    color: #ffffff;
    border: none;
    border-radius: 0.5rem;
    font-weight: 500;
    cursor: pointer;
    transition: opacity 0.2s;
}

.cng-modal-demo-btn:hover {
    opacity: 0.9;
}

.cng-modal-footer-text {
    font-size: 0.75rem;
    color: #6b7280;
    margin-top: 1rem;
    margin-bottom: 0;
}

/* Toast */
.cng-toast {
    position: fixed;
    top: 1rem;
    left: 50%;
    transform: translateX(-50%);
    background: #1f2937;
    color: #ffffff;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    z-index: 100;
    font-size: 0.875rem;
    animation: cng-slideDown 0.3s ease-out;
}

@keyframes cng-slideDown {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(-1rem);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

.cng-toast.cng-success {
    background: #10b981;
}
