:root {
    /* Core Colors */
    --primary-purple: #0071dc;
    --primary-purple-light: #245478;
    --secondary-green: #00a6b6;
    --secondary-green-light: #33c2d0;
    --text-primary: #f0f6fc;
    --text-secondary: rgba(240, 246, 252, 0.8);
    --border-color: #30363d;
    --bg-dark: #0d1117;
    --bg-dark-secondary: #131a24;
    --bg-card: rgba(22, 27, 34, 0.8);
    --highlight-purple: rgba(0, 113, 220, 0.2);
    --highlight-green: rgba(36, 84, 120, 0.2);
    
    /* Orb Colors */
    --orb-orange: #FFB17A;
    --orb-green: #7EE787;
    --orb-pink: #F778BA;
    
    /* Syntax Highlighting */
    --syntax-keyword: #ff7b72;
    --syntax-function: #d2a8ff;
    --syntax-string: #a5d6ff;
    --syntax-comment: #8b949e;
    --syntax-variable: #79c0ff;
    
    /* Status Colors */
    --success: #2ea043;
    --warning: #f0883e;
    --error: #f85149;
    
    /* Animation Durations */
    --animation-slow: 6s;
    --animation-medium: 3s;
    --animation-fast: 0.3s;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    height: 100%;
    width: 100%;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: var(--text-primary);
    background: radial-gradient(circle at 70% 80%, var(--highlight-purple), transparent 60%),
                radial-gradient(circle at 30% 25%, var(--highlight-green), transparent 50%),
                linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-dark-secondary) 100%);
    background-attachment: fixed;
    background-size: 100% 100%;
}

.app-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 20px;
    position: relative;
    z-index: 1;
}

/* ===== Floating Orbs ===== */
.floating-orbs {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(20px);
    opacity: 0.2;
}

.orb-orange {
    width: 200px;
    height: 200px;
    background-color: var(--orb-orange);
    top: 15%;
    right: 15%;
    animation: float 12s ease-in-out infinite, move 20s ease-in-out infinite alternate;
}

.orb-green {
    width: 150px;
    height: 150px;
    background-color: var(--orb-green);
    bottom: 30%;
    left: 10%;
    animation: float 8s ease-in-out infinite, move 16s ease-in-out infinite alternate-reverse;
}

.orb-pink {
    width: 180px;
    height: 180px;
    background-color: var(--orb-pink);
    bottom: 10%;
    right: 25%;
    animation: float 10s ease-in-out infinite, move 18s ease-in-out infinite alternate;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-30px); }
}

@keyframes move {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(50px, -30px) rotate(90deg); }
    50% { transform: translate(20px, 40px) rotate(180deg); }
    75% { transform: translate(-30px, 20px) rotate(270deg); }
}

/* ===== Header ===== */
.main-header {
    margin-bottom: 40px;
    padding: 0;
    position: relative;
}

.header-content {
    padding: 40px 30px;
    border-radius: 12px;
    background-color: var(--bg-card);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 15px;
}

.logo {
    transform: scale(2) translateX(15%);
    transform-origin: center;
}
.gradient-title {
    background: linear-gradient(135deg, #fff 0%, #b8c7e0 100%);
    background-clip: text;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    font-size: 3rem;
    text-align: center;
    margin-bottom: 10px;
}

.header-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

/* ===== Main Content ===== */
main {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* ===== Section Styling ===== */
.modern-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    padding: 30px;
    transition: all 0.4s ease;
}

.modern-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3), 0 0 25px rgba(0, 113, 220, 0.2);
    border-color: var(--primary-purple);
}

.section-header {
    margin-bottom: 30px;
    text-align: center;
}

.header-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--primary-purple-light) 100%);
    color: white;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-header h2 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    background: linear-gradient(135deg, #fff 0%, #b8c7e0 100%);
    background-clip: text;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-header p {
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* ===== Form Styling ===== */
.form-group {
    margin-bottom: 20px;
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-primary);
}

.required-badge, .optional-badge {
    display: inline-block;
    font-size: 0.7rem;
    padding: 2px 6px;
    border-radius: 4px;
    margin-left: 8px;
    font-weight: normal;
}

.required-badge {
    background-color: rgba(255, 123, 114, 0.2);
    color: #ff7b72;
    border: 1px solid rgba(255, 123, 114, 0.3);
}

.optional-badge {
    background-color: rgba(139, 148, 158, 0.2);
    color: #8b949e;
    border: 1px solid rgba(139, 148, 158, 0.3);
}

.file-upload-container {
    position: relative;
    border: 1px dashed var(--border-color);
    border-radius: 8px;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.03);
    transition: all 0.3s ease;
}

.file-upload-container:hover {
    border-color: var(--primary-purple);
    background-color: rgba(255, 255, 255, 0.05);
}

.upload-icon {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-secondary);
}

input[type="file"] {
    width: 100%;
    padding: 10px;
    background-color: transparent;
    color: var(--text-secondary);
    cursor: pointer;
    position: relative;
    z-index: 1;
}

input[type="file"]::file-selector-button {
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--primary-purple-light) 100%);
    border: none;
    color: white;
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
    margin-right: 15px;
    transition: all 0.3s ease;
}

input[type="file"]::file-selector-button:hover {
    background: linear-gradient(135deg, var(--primary-purple-light) 0%, var(--primary-purple) 100%);
}

small {
    display: block;
    color: var(--text-secondary);
    margin-top: 8px;
    font-size: 0.85rem;
    opacity: 0.8;
}

.options-container {
    margin-bottom: 25px;
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 20px;
}

.options-title {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 15px;
}

.option-group {
    margin-bottom: 10px;
}

/* ===== Toggle Switch ===== */
.toggle-switch {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.toggle-switch input[type="checkbox"] {
    display: none;
}

.toggle-slider {
    position: relative;
    width: 36px;
    height: 18px;
    border-radius: 9px;
    background-color: rgba(255, 255, 255, 0.1);
    margin-right: 10px;
    transition: all 0.3s ease;
}

.toggle-slider:before {
    content: '';
    position: absolute;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background-color: white;
    top: 2px;
    left: 2px;
    transition: all 0.3s ease;
}

.toggle-switch input[type="checkbox"]:checked + .toggle-slider {
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--primary-purple-light) 100%);
}

.toggle-switch input[type="checkbox"]:checked + .toggle-slider:before {
    transform: translateX(18px);
}

.toggle-label {
    font-weight: normal;
    color: var(--text-secondary);
}

/* ===== Buttons ===== */
.primary-button, .action-button {
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 6px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    padding: 12px 24px;
    font-size: 1rem;
}

.primary-button {
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--primary-purple-light) 100%);
    box-shadow: 0 4px 10px rgba(0, 113, 220, 0.3);
    width: 100%;
    margin-top: 20px;
}

.primary-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 113, 220, 0.4);
}

.button-icon {
    margin-right: 8px;
    display: flex;
    align-items: center;
}

.action-button {
    margin-right: 10px;
    margin-bottom: 10px;
}

.download-button {
    background: linear-gradient(135deg, var(--secondary-green) 0%, var(--secondary-green-light) 100%);
    box-shadow: 0 4px 10px rgba(0, 166, 182, 0.3);
}

.download-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 166, 182, 0.4);
}

.report-button {
    background: linear-gradient(135deg, #0071dc 0%, #245478 100%);
    box-shadow: 0 4px 10px rgba(0, 113, 220, 0.3);
}

.report-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 113, 220, 0.4);
}

.view-button {
    background: linear-gradient(135deg, #0071dc 0%, #245478 100%);
    box-shadow: 0 4px 10px rgba(0, 113, 220, 0.3);
}

.view-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 113, 220, 0.4);
}

/* ===== Results Section ===== */
.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.stat-box {
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 20px;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.stat-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-purple);
}

.stat-icon {
    margin-right: 15px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.size-icon {
    background: linear-gradient(135deg, rgba(0, 113, 220, 0.2) 0%, rgba(36, 84, 120, 0.2) 100%);
    color: var(--primary-purple-light);
}

.issues-icon {
    background: linear-gradient(135deg, rgba(240, 136, 62, 0.2) 0%, rgba(245, 165, 78, 0.2) 100%);
    color: var(--warning);
}

.original-icon {
    background: linear-gradient(135deg, rgba(0, 113, 220, 0.2) 0%, rgba(36, 84, 120, 0.2) 100%);
    color: var(--primary-purple);
}

.optimized-icon {
    background: linear-gradient(135deg, rgba(0, 166, 182, 0.2) 0%, rgba(51, 194, 208, 0.2) 100%);
    color: var(--secondary-green-light);
}

.stat-content {
    flex: 1;
}

.stat-content h3 {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 5px;
    font-weight: 600;
}

.stat {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-primary);
}

.result-actions {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

/* ===== Terminal/Code Preview ===== */
.terminal-container {
    background-color: rgba(13, 17, 23, 0.8);
    border-radius: 8px;
    border: 1px solid var(--border-color);
    margin-bottom: 30px;
    overflow: hidden;
}

.terminal-header {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 10px 15px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
}

.terminal-controls {
    display: flex;
    margin-right: 15px;
}

.control {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin-right: 8px;
}

.close {
    background-color: #ff5f57;
}

.minimize {
    background-color: #febc2e;
}

.maximize {
    background-color: #28c840;
}

.terminal-title {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 600;
}

pre {
    padding: 20px;
    overflow-x: auto;
    font-family: 'Consolas', 'Courier New', monospace;
    margin: 0;
    height: 300px;
    overflow-y: auto;
}

code {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* ===== Loader ===== */
.loader {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 0;
}

.spinner {
    width: 60px;
    height: 60px;
    position: relative;
    margin-bottom: 20px;
}

.spinner-inner {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 4px solid transparent;
    border-top-color: var(--primary-purple);
    animation: spinner 1s linear infinite;
}

.spinner-inner:before, .spinner-inner:after {
    content: '';
    position: absolute;
    border-radius: 50%;
    border: 4px solid transparent;
}

.spinner-inner:before {
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    border-top-color: var(--primary-purple-light);
    animation: spinner 2s linear infinite;
}

.spinner-inner:after {
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border-top-color: var(--secondary-green);
    animation: spinner 1.5s linear infinite;
}

@keyframes spinner {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.loader p {
    color: var(--text-primary);
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.loading-progress {
    width: 100%;
    max-width: 300px;
}

.progress-bar {
    height: 6px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    width: 0;
    background: linear-gradient(to right, var(--primary-purple), var(--primary-purple-light));
    border-radius: 3px;
    animation: progress 2s ease-in-out infinite;
}

@keyframes progress {
    0% { width: 0%; }
    50% { width: 70%; }
    70% { width: 80%; }
    90% { width: 90%; }
    100% { width: 95%; }
}

/* ===== Report Preview ===== */
.report-preview {
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 20px;
    margin-top: 30px;
}

.report-title {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.tabs {
    display: flex;
    overflow-x: auto;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 20px;
    padding-bottom: 1px;
}

.tab-btn {
    background: none;
    border: none;
    padding: 10px 20px;
    color: var(--text-secondary);
    cursor: pointer;
    font-weight: 600;
    position: relative;
    transition: all 0.3s ease;
}

.tab-btn:hover {
    color: var(--text-primary);
    background-color: rgba(255, 255, 255, 0.03);
}

.tab-btn.active {
    color: var(--primary-purple);
}

.tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-purple);
}

.tab-content {
    display: none;
    padding: 15px 0;
}

.tab-content.active {
    display: block;
}

/* ===== Diff Viewer ===== */
.diff-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding: 10px;
    background-color: rgba(255, 255, 255, 0.03);
    border-radius: 6px;
}

.diff-mode-selector {
    display: flex;
    gap: 15px;
}

.diff-mode-selector label {
    display: flex;
    align-items: center;
    cursor: pointer;
    margin-bottom: 0;
    font-weight: normal;
}

.diff-mode-selector input {
    margin-right: 5px;
}

.diff-legend {
    display: flex;
    gap: 15px;
}

.legend-item {
    display: flex;
    align-items: center;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.legend-item .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin-right: 5px;
}

.legend-item.removed .dot {
    background-color: var(--error);
}

.legend-item.unchanged .dot {
    background-color: var(--text-secondary);
}

.legend-item.added .dot {
    background-color: var(--success);
}

.diff-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.diff-panel {
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
}

.panel-header {
    padding: 10px 15px;
    background-color: rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid var(--border-color);
    font-weight: 600;
    color: var(--text-secondary);
}

.code-content {
    height: 500px;
    overflow: auto;
    padding: 15px;
    font-family: 'Consolas', 'Monaco', monospace;
    font-size: 13px;
    line-height: 1.5;
    white-space: pre;
    tab-size: 4;
}

.diff-line {
    padding: 0 5px;
    position: relative;
    border-radius: 3px;
    transition: background-color 0.2s ease;
}

.diff-line:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

.diff-line.removed {
    background-color: rgba(255, 81, 73, 0.15);
    text-decoration: line-through;
    color: var(--error);
}

.diff-line.removed:hover {
    background-color: rgba(255, 81, 73, 0.25);
}

.diff-line.added {
    background-color: rgba(46, 160, 67, 0.15);
    color: var(--success);
}

.diff-line.added:hover {
    background-color: rgba(46, 160, 67, 0.25);
}

.diff-line-number {
    color: var(--text-secondary);
    opacity: 0.6;
    user-select: none;
    display: inline-block;
    width: 40px;
    margin-right: 10px;
    text-align: right;
}

.diff-tooltip {
    position: absolute;
    z-index: 10;
    background-color: var(--secondary-green);
    color: white;
    padding: 10px;
    border-radius: 6px;
    font-size: 0.85rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    max-width: 300px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    left: 100%;
    top: 0;
    margin-left: 10px;
}

.diff-line:hover .diff-tooltip {
    opacity: 1;
    visibility: visible;
}

.diff-unified {
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
}

/* ===== Features Section ===== */
.features-section {
    margin-top: 20px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.feature-card {
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 25px;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-purple);
}

.feature-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(0, 113, 220, 0.2) 0%, rgba(36, 84, 120, 0.2) 100%);
    color: var(--primary-purple);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.feature-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ===== Footer ===== */
footer {
    margin-top: 60px;
    padding: 30px 0;
    border-top: 1px solid var(--border-color);
    text-align: center;
}

.footer-content {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.footer-content p:first-child {
    margin-bottom: 10px;
}

/* ===== Report Content ===== */
.report-item {
    margin-bottom: 15px;
    padding: 15px;
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 0.03);
    border-left: 4px solid var(--primary-purple);
}

.report-item h4 {
    margin-bottom: 10px;
    color: var(--text-primary);
}

.report-item p {
    margin-bottom: 8px;
    color: var(--text-secondary);
}

.report-item code {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 2px 6px;
    border-radius: 4px;
    font-family: 'Consolas', 'Monaco', monospace;
    color: var(--syntax-string);
}

.warning {
    border-left-color: var(--warning);
}

.warning h4 {
    color: var(--warning);
}

.error {
    border-left-color: var(--error);
}

.error h4 {
    color: var(--error);
}

.source-map-button {
    background: linear-gradient(135deg, #5d4dfc 0%, #4da6ff 100%);
    box-shadow: 0 4px 10px rgba(77, 166, 255, 0.3);
}

.source-map-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(77, 166, 255, 0.4);
}

/* ===== Media Queries ===== */
@media (max-width: 992px) {
    .diff-container {
        grid-template-columns: 1fr;
    }
    
    .diff-actions {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }
    
    .diff-mode-selector, .diff-legend {
        width: 100%;
    }
    
    .feature-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .app-container {
        padding: 20px 15px;
    }
    
    .header-content {
        padding: 30px 20px;
    }
    
    .gradient-title {
        font-size: 2.2rem;
    }
    
    .section-header h2 {
        font-size: 1.5rem;
    }
    
    .modern-card {
        padding: 20px;
    }
    
    .stats-container {
        grid-template-columns: 1fr;
    }
    
    .options {
        grid-template-columns: 1fr;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
    }
    
    .result-actions {
        flex-direction: column;
    }
    
    .action-button {
        width: 100%;
        margin-right: 0;
    }
    
    .tabs {
        flex-wrap: nowrap;
        overflow-x: auto;
    }
    
    .tab-btn {
        flex: 0 0 auto;
        white-space: nowrap;
    }
}

@media (max-width: 480px) {
    .gradient-title {
        font-size: 1.8rem;
    }
    
    .header-description {
        font-size: 1rem;
    }
}