/* --- Improved Mobile Responsiveness --- */
@media (max-width: 900px) {
    .container {
        max-width: 100vw;
        padding: 0 4vw;
    }
    .qr-generator-layout,
    .statistics-grid,
    .analysis-grid,
    .qr-type-grid,
    .customization-grid,
    .download-grid,
    .download-options,
    .features-grid,
    .form-row,
    .preview-info {
        display: grid;
        grid-template-columns: 1fr !important;
        gap: 14px !important;
    }
    .qr-input-card,
    .card {
        width: 100%;
        min-width: 0;
        box-sizing: border-box;
        padding: 14px;
        margin-bottom: 14px;
        border-radius: 10px;
    }
    .form-input, .form-textarea, select {
        font-size: 1rem;
        padding: 10px;
        width: 100%;
        box-sizing: border-box;
    }
    .btn, button, .download-btn {
        font-size: 1rem;
        padding: 10px 16px;
        width: 100%;
        margin-bottom: 8px;
    }
    .back-button {
        top: 10px;
        left: 10px;
        padding: 8px 12px;
        font-size: 1rem;
    }
    .page-header {
        padding: 24px 0 10px;
    }
    .page-header h1 {
        font-size: 1.2rem;
    }
    .faq-question h3 {
        font-size: 1rem;
    }
    .faq-answer p {
        font-size: 0.95rem;
    }
    #qrCanvas {
        max-width: 100%;
        height: auto;
    }
}
.center-header {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    gap: 12px;
}

/* QR Code Generator Styles - Matching Site Design */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 2.5rem;
    --space-3xl: 3rem;
    --space-4xl: 4rem;
    --space-5xl: 5rem;
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    --radius-full: 9999px;
    --text-primary-color: #ffffff;
    --text-secondary-color: rgba(255, 255, 255, 0.8);
    --background-color: #000000;
    --primary-color: #4ade80;
    --accent-color: #22c55e;
    
    /* Typography Scale */
    --font-xs: 0.75rem;
    --font-sm: 0.875rem;
    --font-base: 1rem;
    --font-lg: 1.125rem;
    --font-xl: 1.25rem;
    --font-2xl: 1.5rem;
    --font-3xl: 1.875rem;
    --font-4xl: 2.25rem;
    --font-5xl: 3rem;
    
    /* Font Weights */
    --font-light: 300;
    --font-normal: 400;
    --font-medium: 500;
    --font-semibold: 600;
    --font-bold: 700;
    --font-extrabold: 800;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-base: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    
    /* Transitions */
    --transition-all: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-colors: color 0.3s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.3s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-transform: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Background */
body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/desktop Bg image.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 100vh;
    color: white;
    overflow-x: hidden;
}

/* Mobile background */
@media (max-width: 768px) {
    body {
        background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/mobile Bg image.webp');
        background-size: cover;
        background-position: center;
        background-attachment: fixed;
    }
}

/* Back Button */
.back-button {
    position: fixed;
    top: var(--space-xl);
    left: var(--space-xl);
    background: rgba(30, 30, 30, 0.95);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-primary-color);
    padding: var(--space-sm) var(--space-lg);
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-size: var(--font-sm);
    font-weight: var(--font-medium);
    transition: var(--transition-all);
    z-index: 100;
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.back-button:hover {
    background: rgba(74, 222, 128, 0.1);
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: var(--primary-color);
}

.back-button i {
    font-size: var(--font-sm);
}

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--space-xl);
}

/* Page Header */
.page-header {
    padding: var(--space-5xl) 0 var(--space-4xl);
    text-align: center;
    background: linear-gradient(135deg, rgba(74, 222, 128, 0.05) 0%, rgba(34, 197, 94, 0.05) 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-lg);
    font-size: var(--font-sm);
    color: var(--text-secondary-color);
}

.breadcrumb a {
    color: var(--text-secondary-color);
    text-decoration: none;
    transition: var(--transition-colors);
}

.breadcrumb a:hover {
    color: var(--primary-color);
}

.page-header h1 {
    font-size: var(--font-4xl);
    font-weight: var(--font-extrabold);
    margin-bottom: var(--space-lg);
    letter-spacing: -0.025em;
}

.emoji-visible {
    font-size: var(--font-3xl);
    margin-right: var(--space-sm);
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-header p {
    font-size: var(--font-lg);
    color: var(--text-secondary-color);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

/* QR Code Generator Layout */
.tool-section {
    padding: 60px 0;
}

.qr-generator-layout {
    display: grid;
    gap: 30px;
}

/* Text Input Card */
.qr-input-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.qr-input-card:hover {
    border-color: rgba(74, 222, 128, 0.3);
    background: rgba(255, 255, 255, 0.08);
}

.card-header {
    text-align: center;
    margin-bottom: 30px;
}

.tool-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    filter: drop-shadow(0 0 10px rgba(74, 222, 128, 0.3));
}

.tool-name {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: white;
}

.tool-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    line-height: 1.5;
}

/* Type Tabs */
.type-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 25px;
    overflow-x: auto;
    padding: 5px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 15px;
}

.type-tab {
    padding: 12px 16px;
    background: transparent;
    border: none;
    border-radius: 10px;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    font-weight: 500;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: fit-content;
}

.type-tab:hover {
    background: rgba(74, 222, 128, 0.1);
    color: #4ade80;
}

.type-tab.active {
    background: #4ade80;
    color: #1a1a1a;
}

.type-tab i {
    font-size: 0.9rem;
}

/* Form Styles */
.qr-input-container {
    position: relative;
}

.input-form {
    display: none;
}

.input-form.active {
    display: block;
}

.form-group {
    margin-bottom: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

label {
    display: block;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 8px;
}

.form-input,
.form-textarea,
.form-select {
    width: 100%;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
    outline: none;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    border-color: #4ade80;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(74, 222, 128, 0.1);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-textarea {
    min-height: 80px;
    resize: vertical;
}

.form-hint {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 5px;
    display: block;
}

.password-input-wrapper {
    position: relative;
}

.password-toggle {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 5px;
}

.password-toggle:hover {
    color: #4ade80;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 18px;
    height: 18px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    position: relative;
    transition: all 0.3s ease;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: #4ade80;
    border-color: #4ade80;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #1a1a1a;
    font-size: 0.8rem;
    font-weight: bold;
}

/* Input Controls */
.input-controls {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 25px;
}

.btn {
    padding: 10px 20px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: fit-content;
}

.btn-primary {
    background: #4ade80;
    color: #1a1a1a;
}

.btn-primary:hover {
    background: #22c55e;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(74, 222, 128, 0.3);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(74, 222, 128, 0.5);
    transform: translateY(-2px);
}

/* Statistics Grid */
.statistics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.stats-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 20px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
}

.stats-card:hover {
    border-color: rgba(74, 222, 128, 0.3);
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
}

.qr-preview-card {
    grid-column: 1 / -1;
    text-align: center;
}

.qr-preview-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 300px;
}

#qrCanvas {
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.qr-placeholder {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: rgba(255, 255, 255, 0.5);
    text-align: center;
}

.qr-placeholder i {
    font-size: 3rem;
    margin-bottom: 15px;
    opacity: 0.5;
}

.qr-placeholder p {
    font-size: 1rem;
    margin: 0;
}

.stat-item {
    text-align: center;
}

.stat-icon {
    font-size: 2rem;
    margin-bottom: 10px;
    filter: drop-shadow(0 0 10px rgba(74, 222, 128, 0.3));
}

.stat-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: #4ade80;
    margin-bottom: 5px;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

/* Analysis Grid */
.analysis-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.analysis-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 25px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.analysis-card:hover {
    border-color: rgba(74, 222, 128, 0.3);
    background: rgba(255, 255, 255, 0.08);
}

.analysis-content {
    margin-top: 20px;
}

.analysis-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding: 8px 0;
}

.analysis-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.analysis-value {
    color: #4ade80;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Size Control */
.size-control {
    margin-bottom: 20px;
}

.size-control label {
    margin-bottom: 10px;
    display: block;
}

.slider {
    width: 100%;
    height: 6px;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.1);
    outline: none;
    -webkit-appearance: none;
    appearance: none;
}

.slider::-webkit-slider-thumb {
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #4ade80;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(74, 222, 128, 0.5);
}

.slider::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #4ade80;
    cursor: pointer;
    border: none;
    box-shadow: 0 0 10px rgba(74, 222, 128, 0.5);
}

/* Color Controls */
.color-controls {
    display: grid;
    gap: 20px;
}

.color-group label {
    margin-bottom: 8px;
}

.color-input-wrapper {
    display: flex;
    gap: 10px;
    align-items: center;
}

.color-picker {
    width: 50px;
    height: 40px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    background: transparent;
}

.color-text {
    flex: 1;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: white;
    font-size: 0.9rem;
}

/* Features Section */
.features-section {
    padding: var(--space-4xl) 0;
    background: linear-gradient(135deg, rgba(74, 222, 128, 0.02) 0%, rgba(34, 197, 94, 0.02) 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-4xl);
}

.section-title {
    font-size: var(--font-3xl);
    font-weight: var(--font-bold);
    margin-bottom: var(--space-lg);
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-description {
    font-size: var(--font-lg);
    color: var(--text-secondary-color);
    max-width: 600px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-xl);
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: rgba(30, 30, 30, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    text-align: center;
    transition: var(--transition-all);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(74, 222, 128, 0.3), transparent);
}

.feature-card:hover {
    border-color: rgba(74, 222, 128, 0.3);
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.feature-icon {
    font-size: var(--font-3xl);
    margin-bottom: var(--space-lg);
}

.feature-card h3 {
    font-size: var(--font-xl);
    font-weight: var(--font-semibold);
    margin-bottom: var(--space-md);
    color: var(--text-primary-color);
}

.feature-card p {
    color: var(--text-secondary-color);
    line-height: 1.6;
}

/* FAQ Section */
.faq {
    padding: var(--space-4xl) 0;
    background: rgba(10, 10, 10, 0.5);
}

.faq-header {
    text-align: center;
    margin-bottom: var(--space-4xl);
}

.faq-header h2 {
    font-size: var(--font-3xl);
    font-weight: var(--font-bold);
    margin-bottom: var(--space-lg);
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.faq-header p {
    font-size: var(--font-lg);
    color: var(--text-secondary-color);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-md);
    overflow: hidden;
    background: rgba(30, 30, 30, 0.6);
    backdrop-filter: blur(12px);
}

.faq-question {
    padding: var(--space-xl);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition-all);
}

.faq-question:hover {
    background: rgba(74, 222, 128, 0.05);
}

.faq-question h3 {
    font-size: var(--font-lg);
    font-weight: var(--font-medium);
    color: var(--text-primary-color);
    margin: 0;
}

.faq-toggle {
    font-size: var(--font-xl);
    font-weight: var(--font-bold);
    color: var(--primary-color);
    transition: var(--transition-transform);
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 var(--space-xl) var(--space-xl);
    display: none;
    color: var(--text-secondary-color);
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    display: block;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        padding: 0 var(--space-lg);
    }
    
    .qr-generator-layout {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
    
    .back-button {
        top: var(--space-lg);
        left: var(--space-lg);
    }
}

@media (max-width: 768px) {
    body {
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
    }
    .container {
        padding: 0 8px;
        overflow-x: hidden;
    }
    .page-header {
        padding: 40px 0 24px;
    }
    .page-header h1 {
        font-size: 1.5rem;
    }
    .qr-generator-layout {
        gap: 16px;
        padding-bottom: 80px;
    }
    .qr-type-grid,
    .statistics-grid,
    .analysis-grid,
    .customization-grid,
    .download-grid,
    .download-options,
    .features-grid,
    .form-row,
    .preview-info {
        grid-template-columns: 1fr !important;
        gap: 12px !important;
    }
    .qr-input-card,
    .card {
        padding: 16px;
        margin-bottom: 16px;
        border-radius: 12px;
    }
    .form-input, .form-textarea, select {
        font-size: 1rem;
        padding: 10px;
    }
    .back-button {
        top: 12px;
        left: 12px;
        padding: 8px 14px;
        font-size: 1rem;
    }
    .btn, button, .download-btn {
        font-size: 1rem;
        padding: 10px 16px;
    }
    .faq-question h3 {
        font-size: 1rem;
    }
    .faq-answer p {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 2px;
    }
    .page-header {
        padding: 24px 0 12px;
    }
    .page-header h1 {
        font-size: 1.1rem;
    }
    .qr-input-card,
    .card {
        padding: 10px;
        margin-bottom: 10px;
        border-radius: 8px;
    }
    .form-input, .form-textarea, select {
        font-size: 0.95rem;
        padding: 8px;
    }
    .btn, button, .download-btn {
        font-size: 0.95rem;
        padding: 8px 10px;
    }
}
@media (max-width: 480px) {
    .qr-type-grid {
        grid-template-columns: 1fr;
    }
    
    .card {
        padding: var(--space-lg);
    }
    
    .page-header h1 {
        font-size: var(--font-2xl);
    }
    
    .section-title {
        font-size: var(--font-2xl);
    }
    
    #qrCanvas {
        max-width: 100%;
        height: auto;
    }
}

/* Loading Animation */
.loading {
    opacity: 0.7;
    pointer-events: none;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid rgba(74, 222, 128, 0.3);
    border-top: 2px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Success/Error States */
.success {
    border-color: var(--primary-color) !important;
    background: rgba(74, 222, 128, 0.1) !important;
}

.error {
    border-color: #ef4444 !important;
    background: rgba(239, 68, 68, 0.1) !important;
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* High contrast mode */
@media (prefers-contrast: high) {
    :root {
        --text-primary-color: #ffffff;
        --text-secondary-color: #cccccc;
        --background-color: #000000;
        --primary-color: #00ff00;
        --accent-color: #00cc00;
    }
}