/* ===================================
   UniSave Web - Modern CSS
   =================================== */

/* CSS Variables */
:root {
    /* Primary Colors */
    --primary: #6C5CE7;
    --primary-light: #A29BFE;
    --primary-dark: #5849C2;

    /* Background Colors */
    --bg-primary: #0A0A0F;
    --bg-secondary: #0F0F16;
    --bg-card: #16161F;
    --bg-input: #1A1A25;
    --bg-elevated: #1E1E2A;

    /* Text Colors */
    --text-primary: #FFFFFF;
    --text-secondary: #A0A0B8;
    --text-muted: #6B6B80;

    /* Status Colors */
    --success: #00D26A;
    --success-bg: rgba(0, 210, 106, 0.1);
    --warning: #FFB800;
    --error: #FF4757;
    --error-bg: rgba(255, 71, 87, 0.1);

    /* Platform Colors */
    --youtube: #FF0000;
    --instagram: #E1306C;
    --tiktok: #00F2EA;
    --facebook: #1877F2;
    --reddit: #FF4500;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #6C5CE7 0%, #A29BFE 100%);
    --gradient-card: linear-gradient(135deg, rgba(108, 92, 231, 0.1) 0%, rgba(162, 155, 254, 0.05) 100%);

    /* Spacing */
    --space-xs: 4px;
    --space-sm: 8px;
    --space-md: 16px;
    --space-lg: 24px;
    --space-xl: 32px;
    --space-2xl: 48px;
    --space-3xl: 64px;
    --space-4xl: 96px;

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;

    /* Typography */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-normal: 0.3s ease;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 40px rgba(108, 92, 231, 0.3);
}

/* Reset & Base */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
}

/* Utilities */
.hidden {
    display: none !important;
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===================================
   Navigation
   =================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: var(--space-md) 0;
    background: rgba(10, 10, 15, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 1.4rem;
    font-weight: 700;
}

.logo-icon {
    width: 32px;
    height: 32px;
    color: var(--primary);
}

.logo-badge {
    font-size: 0.7rem;
    font-weight: 600;
    padding: 2px 8px;
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
    color: white;
}

.nav-links {
    display: flex;
    gap: var(--space-xl);
}

.nav-links a {
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition-fast);
}

.nav-links a:hover {
    color: var(--text-primary);
}

.server-status {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-xs) var(--space-md);
    background: var(--bg-card);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--warning);
    animation: pulse 2s ease-in-out infinite;
}

.status-dot.online {
    background: var(--success);
}

.status-dot.offline {
    background: var(--error);
    animation: none;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

/* ===================================
   Hero/Downloader Section
   =================================== */
.hero-downloader {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 120px var(--space-lg) var(--space-3xl);
    text-align: center;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
    overflow: hidden;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: var(--primary);
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0.25;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: var(--instagram);
    bottom: 0;
    right: -100px;
    opacity: 0.15;
}

.grid-pattern {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 50px 50px;
    mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
}

.hero-content {
    max-width: 700px;
    width: 100%;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-xs) var(--space-md);
    background: rgba(108, 92, 231, 0.1);
    border: 1px solid rgba(108, 92, 231, 0.3);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    color: var(--primary-light);
    margin-bottom: var(--space-lg);
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: var(--space-md);
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: var(--space-2xl);
}

/* Downloader Card */
.downloader-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-xl);
    padding: var(--space-lg);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.url-input-wrapper {
    display: flex;
    align-items: center;
    background: var(--bg-input);
    border: 2px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    padding: var(--space-sm) var(--space-md);
    margin-bottom: var(--space-md);
    transition: var(--transition-normal);
}

.url-input-wrapper:focus-within {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(108, 92, 231, 0.2);
}

.input-icon {
    width: 24px;
    height: 24px;
    color: var(--text-muted);
    flex-shrink: 0;
}

.url-input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    padding: var(--space-md);
    font-size: 1rem;
    color: var(--text-primary);
}

.url-input::placeholder {
    color: var(--text-muted);
}

.paste-btn,
.clear-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: none;
    border-radius: var(--radius-md);
    color: var(--text-secondary);
    transition: var(--transition-fast);
    flex-shrink: 0;
}

.paste-btn:hover,
.clear-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
}

.paste-btn svg,
.clear-btn svg {
    width: 20px;
    height: 20px;
}

.download-btn {
    width: 100%;
    padding: var(--space-md) var(--space-xl);
    background: var(--gradient-primary);
    border: none;
    border-radius: var(--radius-lg);
    color: white;
    font-size: 1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    transition: var(--transition-normal);
    box-shadow: var(--shadow-glow);
}

.download-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 0 60px rgba(108, 92, 231, 0.5);
}

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

.download-btn svg {
    width: 20px;
    height: 20px;
}

.btn-text,
.btn-loader {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.spinner {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Supported Platforms */
.supported-platforms {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
    margin-top: var(--space-lg);
    padding-top: var(--space-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.platform-label {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.platform-icons {
    display: flex;
    gap: var(--space-sm);
}

.platform-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
}

.platform-icon svg {
    width: 18px;
    height: 18px;
}

.platform-icon.youtube {
    background: rgba(255, 0, 0, 0.15);
    color: var(--youtube);
}

.platform-icon.instagram {
    background: rgba(225, 48, 108, 0.15);
    color: var(--instagram);
}

.platform-icon.tiktok {
    background: rgba(0, 242, 234, 0.15);
    color: var(--tiktok);
}

.platform-icon.facebook {
    background: rgba(24, 119, 242, 0.15);
    color: var(--facebook);
}

.platform-icon.reddit {
    background: rgba(255, 69, 0, 0.15);
    color: var(--reddit);
}

.platform-icon:hover {
    transform: scale(1.15);
}

/* Error Message */
.error-message {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    max-width: 700px;
    margin: var(--space-lg) auto 0;
    padding: var(--space-md);
    background: var(--error-bg);
    border: 1px solid rgba(255, 71, 87, 0.3);
    border-radius: var(--radius-lg);
    text-align: left;
}

.error-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 71, 87, 0.2);
    border-radius: 50%;
    color: var(--error);
    flex-shrink: 0;
}

.error-icon svg {
    width: 20px;
    height: 20px;
}

.error-content {
    flex: 1;
}

.error-title {
    display: block;
    font-weight: 600;
    color: var(--error);
    font-size: 0.9rem;
}

.error-text {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.error-close {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    color: var(--text-muted);
    transition: var(--transition-fast);
}

.error-close:hover {
    color: var(--text-primary);
}

.error-close svg {
    width: 18px;
    height: 18px;
}

/* ===================================
   Result Section
   =================================== */
.result-section {
    padding: var(--space-2xl) var(--space-lg);
    background: var(--bg-secondary);
}

.result-container {
    max-width: 800px;
    margin: 0 auto;
}

.result-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    box-shadow: var(--shadow-lg);
}

/* Video Preview */
.video-preview {
    display: flex;
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
    padding-bottom: var(--space-xl);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.thumbnail-wrapper {
    position: relative;
    width: 200px;
    flex-shrink: 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.video-thumbnail {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    background: var(--bg-elevated);
}

.duration-badge {
    position: absolute;
    bottom: var(--space-sm);
    right: var(--space-sm);
    padding: 2px 6px;
    background: rgba(0, 0, 0, 0.8);
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 600;
}

.platform-badge {
    position: absolute;
    top: var(--space-sm);
    left: var(--space-sm);
    padding: 4px 8px;
    background: var(--bg-primary);
    border-radius: var(--radius-sm);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
}

.video-details {
    flex: 1;
}

.video-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: var(--space-sm);
    line-height: 1.3;
}

.video-meta {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
}

.meta-item {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.meta-item svg {
    width: 16px;
    height: 16px;
}

/* Format Selection */
.formats-section {
    margin-bottom: var(--space-xl);
}

.formats-title {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: var(--space-lg);
    color: var(--text-primary);
}

.formats-title svg {
    width: 20px;
    height: 20px;
    color: var(--primary);
}

.format-group {
    margin-bottom: var(--space-lg);
}

.format-group-header {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: var(--space-sm);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.format-group-header svg {
    width: 16px;
    height: 16px;
}

.format-options {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: var(--space-sm);
}

.format-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-md);
    background: var(--bg-input);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition-fast);
}

.format-option:hover {
    border-color: var(--primary);
    background: rgba(108, 92, 231, 0.1);
}

.format-info {
    display: flex;
    flex-direction: column;
}

.format-quality {
    font-weight: 600;
    font-size: 0.95rem;
}

.format-size {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.format-download-btn {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border: none;
    border-radius: 50%;
    color: white;
    transition: var(--transition-fast);
}

.format-download-btn:hover {
    transform: scale(1.1);
}

.format-download-btn svg {
    width: 18px;
    height: 18px;
}

/* Result Actions */
.result-actions {
    display: flex;
    gap: var(--space-md);
}

.action-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: var(--space-md);
    border-radius: var(--radius-lg);
    font-weight: 600;
    transition: var(--transition-normal);
}

.action-btn svg {
    width: 20px;
    height: 20px;
}

.action-btn.secondary {
    background: var(--bg-input);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
}

.action-btn.secondary:hover {
    background: var(--bg-elevated);
    border-color: rgba(255, 255, 255, 0.2);
}

/* ===================================
   Sections
   =================================== */
.section-container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto var(--space-3xl);
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 800;
    margin-bottom: var(--space-md);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
}

/* Platforms Section */
.platforms-section {
    padding: var(--space-4xl) var(--space-lg);
    background: var(--bg-secondary);
}

.platforms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-lg);
}

.platform-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    text-align: center;
    transition: var(--transition-normal);
}

.platform-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: var(--shadow-lg);
}

.platform-icon-large {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-md);
    border-radius: var(--radius-lg);
}

.platform-icon-large svg {
    width: 32px;
    height: 32px;
}

.platform-icon-large.youtube {
    background: rgba(255, 0, 0, 0.15);
    color: var(--youtube);
}

.platform-icon-large.instagram {
    background: rgba(225, 48, 108, 0.15);
    color: var(--instagram);
}

.platform-icon-large.tiktok {
    background: rgba(0, 242, 234, 0.15);
    color: var(--tiktok);
}

.platform-icon-large.facebook {
    background: rgba(24, 119, 242, 0.15);
    color: var(--facebook);
}

.platform-icon-large.reddit {
    background: rgba(255, 69, 0, 0.15);
    color: var(--reddit);
}

.platform-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: var(--space-xs);
}

.platform-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: var(--space-md);
}

.platform-features {
    display: flex;
    justify-content: center;
    gap: var(--space-xs);
}

.platform-features span {
    padding: 4px 10px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-secondary);
}

/* How To Section */
.how-to-section {
    padding: var(--space-4xl) var(--space-lg);
}

.steps-grid {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: var(--space-md);
    flex-wrap: wrap;
}

.step-card {
    flex: 1;
    min-width: 250px;
    max-width: 320px;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    text-align: center;
    position: relative;
}

.step-number {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: 50%;
    font-weight: 800;
    font-size: 1.1rem;
    box-shadow: var(--shadow-glow);
}

.step-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: var(--space-md) auto;
    background: rgba(108, 92, 231, 0.1);
    border-radius: var(--radius-lg);
    color: var(--primary-light);
}

.step-icon svg {
    width: 28px;
    height: 28px;
}

.step-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: var(--space-sm);
}

.step-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.step-connector {
    display: flex;
    align-items: center;
    color: var(--text-muted);
    padding-top: 40px;
}

.step-connector svg {
    width: 24px;
    height: 24px;
}

/* FAQ Section */
.faq-section {
    padding: var(--space-4xl) var(--space-lg);
    background: var(--bg-secondary);
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-lg);
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-size: 1rem;
    font-weight: 600;
    text-align: left;
    transition: var(--transition-fast);
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.02);
}

.faq-question svg {
    width: 20px;
    height: 20px;
    color: var(--text-muted);
    transition: var(--transition-normal);
    flex-shrink: 0;
}

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 var(--space-lg) var(--space-lg);
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ===================================
   Footer
   =================================== */
.footer {
    background: var(--bg-primary);
    padding: var(--space-3xl) var(--space-lg) var(--space-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: var(--space-2xl);
    max-width: 1200px;
    margin: 0 auto var(--space-2xl);
}

.footer-brand {
    max-width: 280px;
}

.footer-brand .logo {
    margin-bottom: var(--space-md);
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-column h4 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: var(--space-md);
}

.footer-column ul {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.footer-column a {
    color: var(--text-muted);
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

.footer-column a:hover {
    color: var(--primary-light);
}

.footer-bottom {
    text-align: center;
    padding-top: var(--space-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* ===================================
   Responsive
   =================================== */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .video-preview {
        flex-direction: column;
    }

    .thumbnail-wrapper {
        width: 100%;
    }

    .format-options {
        grid-template-columns: 1fr;
    }

    .steps-grid {
        flex-direction: column;
        align-items: center;
    }

    .step-connector {
        transform: rotate(90deg);
        padding: 0;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-downloader {
        padding: 100px var(--space-md) var(--space-2xl);
    }

    .downloader-card {
        padding: var(--space-md);
    }

    .url-input-wrapper {
        flex-wrap: wrap;
    }

    .url-input {
        width: 100%;
        order: 1;
    }

    .platforms-grid {
        grid-template-columns: 1fr;
    }
}