:root {
    /* Color Palette */
    --color-primary: hsl(270, 70%, 60%);
    --color-primary-dark: hsl(270, 70%, 45%);
    --color-secondary: hsl(45, 100%, 60%);
    --color-accent: hsl(320, 80%, 65%);

    --color-bg-dark: hsl(240, 20%, 8%);
    --color-bg-card: hsla(240, 20%, 12%, 0.8);
    --color-bg-card-hover: hsla(240, 20%, 15%, 0.9);

    --color-text-primary: hsl(0, 0%, 95%);
    --color-text-secondary: hsl(0, 0%, 75%);
    --color-text-muted: hsl(0, 0%, 60%);

    --color-border: hsla(270, 50%, 50%, 0.3);
    --color-border-bright: hsla(270, 70%, 60%, 0.6);

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, hsl(270, 70%, 50%), hsl(320, 80%, 55%));
    --gradient-card: linear-gradient(135deg, hsla(240, 20%, 12%, 0.95), hsla(270, 30%, 15%, 0.95));
    --gradient-gold: linear-gradient(135deg, hsl(45, 100%, 50%), hsl(35, 100%, 60%));

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-xxl: 4rem;

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;

    /* 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 20px hsla(270, 70%, 60%, 0.4);

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Noto Sans KR', sans-serif;
    background: var(--color-bg-dark);
    color: var(--color-text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* Stars Background Animation */
.stars-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.stars,
.stars2,
.stars3 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
}

.stars {
    background-image:
        radial-gradient(2px 2px at 20px 30px, white, transparent),
        radial-gradient(2px 2px at 60px 70px, white, transparent),
        radial-gradient(1px 1px at 50px 50px, white, transparent),
        radial-gradient(1px 1px at 130px 80px, white, transparent),
        radial-gradient(2px 2px at 90px 10px, white, transparent);
    background-size: 200px 200px;
    animation: animateStars 50s linear infinite;
}

.stars2 {
    background-image:
        radial-gradient(1px 1px at 40px 60px, white, transparent),
        radial-gradient(1px 1px at 110px 90px, white, transparent),
        radial-gradient(1px 1px at 150px 30px, white, transparent);
    background-size: 250px 250px;
    animation: animateStars 100s linear infinite;
}

.stars3 {
    background-image:
        radial-gradient(1px 1px at 75px 125px, white, transparent),
        radial-gradient(1px 1px at 180px 25px, white, transparent);
    background-size: 300px 300px;
    animation: animateStars 150s linear infinite;
}

@keyframes animateStars {
    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(-1000px);
    }
}

/* Header */
.header {
    position: relative;
    z-index: 100;
    padding: var(--spacing-md) 0;
    background: hsla(240, 20%, 10%, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--color-border);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--spacing-md);
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-icon {
    font-size: 2rem;
    animation: rotateStar 20s linear infinite;
}

@keyframes rotateStar {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.nav {
    display: flex;
    gap: var(--spacing-xs);
}

.nav-btn {
    padding: var(--spacing-xs) var(--spacing-md);
    background: transparent;
    color: var(--color-text-secondary);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition-normal);
}

.nav-btn:hover {
    color: var(--color-text-primary);
    border-color: var(--color-border-bright);
    background: hsla(270, 50%, 50%, 0.1);
}

.nav-btn.active {
    background: var(--gradient-primary);
    color: white;
    border-color: transparent;
    box-shadow: var(--shadow-glow);
}

/* Main Content */
.main {
    position: relative;
    z-index: 1;
    min-height: calc(100vh - 200px);
    padding: var(--spacing-xl) 0;
}

.tab-content {
    display: none;
    animation: fadeIn 0.5s ease;
}

.tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero Section */
.hero {
    text-align: center;
    padding: var(--spacing-xxl) 0;
}

.hero-title {
    font-family: 'Noto Serif KR', serif;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: glow 3s ease-in-out infinite;
}

@keyframes glow {

    0%,
    100% {
        filter: drop-shadow(0 0 10px hsla(270, 70%, 60%, 0.5));
    }

    50% {
        filter: drop-shadow(0 0 20px hsla(270, 70%, 60%, 0.8));
    }
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--color-text-secondary);
    margin-bottom: var(--spacing-xl);
}

.hero-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.feature-card {
    background: var(--gradient-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    text-align: center;
    cursor: pointer;
    transition: all var(--transition-normal);
    backdrop-filter: blur(10px);
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: var(--color-border-bright);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.feature-icon {
    font-size: 4rem;
    margin-bottom: var(--spacing-md);
    animation: float 3s ease-in-out infinite;
}

.feature-card:nth-child(2) .feature-icon {
    animation-delay: 0.5s;
}

.feature-card:nth-child(3) .feature-icon {
    animation-delay: 1s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm);
    color: var(--color-text-primary);
}

.feature-card p {
    color: var(--color-text-secondary);
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.section-title {
    font-family: 'Noto Serif KR', serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--color-text-secondary);
}

/* Form Card */
.form-card {
    max-width: 600px;
    margin: 0 auto var(--spacing-xl);
    background: var(--gradient-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    backdrop-filter: blur(10px);
}

.saju-form {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-md);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-text-secondary);
}

.form-group input {
    padding: var(--spacing-sm);
    background: hsla(240, 20%, 8%, 0.6);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    color: var(--color-text-primary);
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 1rem;
    transition: all var(--transition-fast);
}

.form-group input:focus {
    outline: none;
    border-color: var(--color-border-bright);
    box-shadow: 0 0 0 3px hsla(270, 70%, 60%, 0.1);
}

.radio-group {
    display: flex;
    gap: var(--spacing-md);
}

.radio-label {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    cursor: pointer;
    padding: var(--spacing-sm) var(--spacing-md);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
}

.radio-label:hover {
    border-color: var(--color-border-bright);
    background: hsla(270, 50%, 50%, 0.1);
}

.radio-label input[type="radio"] {
    width: auto;
}

.radio-label span {
    color: var(--color-text-primary);
}

.btn-primary {
    padding: var(--spacing-md) var(--spacing-xl);
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: var(--radius-md);
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
}

.zodiac-card h3 {
    font-size: 1.2rem;
    margin-bottom: var(--spacing-xs);
    color: var(--color-text-primary);
}

.zodiac-date {
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

/* Result Container */
.result-container {
    margin-top: var(--spacing-xl);
}

.result-card {
    background: var(--gradient-card);
    border: 1px solid var(--color-border-bright);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-lg);
    animation: slideUp 0.5s ease;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.result-title {
    font-family: 'Noto Serif KR', serif;
    font-size: 2rem;
    text-align: center;
    margin-bottom: var(--spacing-lg);
    background: var(--gradient-gold);
    border-radius: var(--radius-md);
    padding: var(--spacing-md);
    text-align: center;
}

.pillar-label {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin-bottom: var(--spacing-xs);
}

.pillar-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-secondary);
}

.analysis-content,
.combined-content {
    line-height: 1.8;
    color: var(--color-text-secondary);
}

.analysis-section {
    margin-bottom: var(--spacing-lg);
}

.analysis-section h4 {
    font-size: 1.3rem;
    color: var(--color-text-primary);
    margin-bottom: var(--spacing-sm);
    padding-bottom: var(--spacing-xs);
    border-bottom: 2px solid var(--color-border);
}

.zodiac-result-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.zodiac-result-icon {
    font-size: 5rem;
    margin-bottom: var(--spacing-sm);
}

.zodiac-result-name {
    font-family: 'Noto Serif KR', serif;
    font-size: 2rem;
    margin-bottom: var(--spacing-xs);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.fortune-grid {
    display: grid;
    gap: var(--spacing-md);
}

.fortune-item {
    background: hsla(240, 20%, 8%, 0.6);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: var(--spacing-md);
}

.fortune-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: var(--spacing-xs);
}

.fortune-value {
    color: var(--color-text-secondary);
}

.fortune-stars {
    color: var(--color-secondary);
    margin-left: var(--spacing-xs);
}

.combined-notice {
    text-align: center;
    padding: var(--spacing-xl);
    background: var(--gradient-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    color: var(--color-text-secondary);
    backdrop-filter: blur(10px);
}

.combined-notice p {
    margin-bottom: var(--spacing-sm);
}

/* Footer */
.footer {
    position: relative;
    z-index: 1;
    padding: var(--spacing-lg) 0;
    background: hsla(240, 20%, 10%, 0.8);
    border-top: 1px solid var(--color-border);
    text-align: center;
    color: var(--color-text-muted);
}

.footer-note {
    font-size: 0.85rem;
    margin-top: var(--spacing-xs);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .form-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .pillars-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .nav {
        width: 100%;
        justify-content: center;
    }

    .nav-btn {
        flex: 1;
        font-size: 0.85rem;
        padding: var(--spacing-xs) var(--spacing-sm);
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.5rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .zodiac-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Quote Card Styles */
.quote-card {
    margin-top: var(--spacing-lg);
    background: linear-gradient(135deg, hsla(270, 60%, 20%, 0.4), hsla(320, 60%, 25%, 0.4));
    border: 2px solid var(--color-border-bright);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    text-align: center;
    backdrop-filter: blur(15px);
    box-shadow: var(--shadow-md), 0 0 30px hsla(270, 70%, 60%, 0.2);
    animation: gentleGlow 4s ease-in-out infinite;
}

@keyframes gentleGlow {

    0%,
    100% {
        box-shadow: var(--shadow-md), 0 0 20px hsla(270, 70%, 60%, 0.2);
    }

    50% {
        box-shadow: var(--shadow-md), 0 0 35px hsla(270, 70%, 60%, 0.4);
    }
}

.quote-icon {
    font-size: 3rem;
    margin-bottom: var(--spacing-md);
    opacity: 0.8;
}

.quote-text {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--color-text-primary);
    font-weight: 500;
    font-style: italic;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Mini Quote Styles */
.quote-mini {
    margin-top: var(--spacing-sm);
    padding: var(--spacing-sm) var(--spacing-md);
    background: hsla(270, 50%, 30%, 0.2);
    border-left: 3px solid var(--color-primary);
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    font-style: italic;
}

.zodiac-result-icon {
    font-size: 5rem;
    margin-bottom: var(--spacing-sm);
}

.zodiac-result-name {
    font-family: 'Noto Serif KR', serif;
    font-size: 2rem;
    margin-bottom: var(--spacing-xs);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.fortune-grid {
    display: grid;
    gap: var(--spacing-md);
}

.fortune-item {
    background: hsla(240, 20%, 8%, 0.6);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: var(--spacing-md);
}

.fortune-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: var(--spacing-xs);
}

.fortune-value {
    color: var(--color-text-secondary);
}

.fortune-stars {
    color: var(--color-secondary);
    margin-left: var(--spacing-xs);
}

.combined-notice {
    text-align: center;
    padding: var(--spacing-xl);
    background: var(--gradient-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    color: var(--color-text-secondary);
    backdrop-filter: blur(10px);
}

.combined-notice p {
    margin-bottom: var(--spacing-sm);
}

/* Footer */
.footer {
    position: relative;
    z-index: 1;
    padding: var(--spacing-lg) 0;
    background: hsla(240, 20%, 10%, 0.8);
    border-top: 1px solid var(--color-border);
    text-align: center;
    color: var(--color-text-muted);
}

.footer-note {
    font-size: 0.85rem;
    margin-top: var(--spacing-xs);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .form-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .pillars-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .nav {
        width: 100%;
        justify-content: center;
    }

    .nav-btn {
        flex: 1;
        font-size: 0.85rem;
        padding: var(--spacing-xs) var(--spacing-sm);
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.5rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .zodiac-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Quote Card Styles */
.quote-card {
    margin-top: var(--spacing-lg);
    background: linear-gradient(135deg, hsla(270, 60%, 20%, 0.4), hsla(320, 60%, 25%, 0.4));
    border: 2px solid var(--color-border-bright);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    text-align: center;
    backdrop-filter: blur(15px);
    box-shadow: var(--shadow-md), 0 0 30px hsla(270, 70%, 60%, 0.2);
    animation: gentleGlow 4s ease-in-out infinite;
}

@keyframes gentleGlow {

    0%,
    100% {
        box-shadow: var(--shadow-md), 0 0 20px hsla(270, 70%, 60%, 0.2);
    }

    50% {
        box-shadow: var(--shadow-md), 0 0 35px hsla(270, 70%, 60%, 0.4);
    }
}

.quote-icon {
    font-size: 3rem;
    margin-bottom: var(--spacing-md);
    opacity: 0.8;
}

.quote-text {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--color-text-primary);
    font-weight: 500;
    font-style: italic;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Mini Quote Styles */
.quote-mini {
    margin-top: var(--spacing-sm);
    padding: var(--spacing-sm) var(--spacing-md);
    background: hsla(270, 50%, 30%, 0.2);
    border-left: 3px solid var(--color-primary);
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    font-style: italic;
    color: var(--color-text-secondary);
    line-height: 1.6;
}

/* Today's Date */
.today-date {
    font-size: 1rem;
    color: var(--color-secondary);
    font-weight: 600;
    margin-top: var(--spacing-xs);
    text-shadow: 0 0 10px hsla(45, 100%, 60%, 0.5);
}

/* Fortune Section Title */
.fortune-section {
    margin-bottom: var(--spacing-lg);
}

.fortune-section-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: var(--spacing-md);
    padding-bottom: var(--spacing-sm);
    border-bottom: 2px solid var(--color-border-bright);
    text-align: center;
}

/* Decan Analysis Styles */
.decan-intro {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin-bottom: 1rem;
    text-align: center;
}

.decan-list {
    display: grid;
    gap: 1rem;
}

.decan-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: 1rem;
    transition: all 0.3s ease;
}

.decan-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.decan-item.active {
    background: linear-gradient(135deg, rgba(100, 100, 255, 0.1), rgba(200, 100, 255, 0.1));
    border-color: var(--color-primary);
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.2);
}

.decan-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.decan-period {
    font-family: 'Noto Serif KR', serif;
    font-weight: 700;
    color: var(--color-secondary);
}

.decan-ruler {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

.decan-badge {
    background: var(--color-primary);
    color: white;
    padding: 0.2rem 0.6rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
}

.decan-ruler-info {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    color: var(--color-text-light);
}

.decan-trait {
    color: var(--color-text-muted);
}

.footer-note {
    font-size: 0.85rem;
    margin-top: var(--spacing-xs);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .form-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .pillars-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .nav {
        width: 100%;
        justify-content: center;
    }

    .nav-btn {
        flex: 1;
        font-size: 0.85rem;
        padding: var(--spacing-xs) var(--spacing-sm);
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.5rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .zodiac-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Quote Card Styles */
.quote-card {
    margin-top: var(--spacing-lg);
    background: linear-gradient(135deg, hsla(270, 60%, 20%, 0.4), hsla(320, 60%, 25%, 0.4));
    border: 2px solid var(--color-border-bright);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    text-align: center;
    backdrop-filter: blur(15px);
    box-shadow: var(--shadow-md), 0 0 30px hsla(270, 70%, 60%, 0.2);
    animation: gentleGlow 4s ease-in-out infinite;
}

@keyframes gentleGlow {

    0%,
    100% {
        box-shadow: var(--shadow-md), 0 0 20px hsla(270, 70%, 60%, 0.2);
    }

    50% {
        box-shadow: var(--shadow-md), 0 0 35px hsla(270, 70%, 60%, 0.4);
    }
}

.quote-icon {
    font-size: 3rem;
    margin-bottom: var(--spacing-md);
    opacity: 0.8;
}

.quote-text {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--color-text-primary);
    font-weight: 500;
    font-style: italic;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Mini Quote Styles */
.quote-mini {
    margin-top: var(--spacing-sm);
    padding: var(--spacing-sm) var(--spacing-md);
    background: hsla(270, 50%, 30%, 0.2);
    border-left: 3px solid var(--color-primary);
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    font-style: italic;
    color: var(--color-text-secondary);
    line-height: 1.6;
}

/* Today's Date */
.today-date {
    font-size: 1rem;
    color: var(--color-secondary);
    font-weight: 600;
    margin-top: var(--spacing-xs);
    text-shadow: 0 0 10px hsla(45, 100%, 60%, 0.5);
}

/* Fortune Section Title */
.fortune-section {
    margin-bottom: var(--spacing-lg);
}

.fortune-section-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: var(--spacing-md);
    padding-bottom: var(--spacing-sm);
    border-bottom: 2px solid var(--color-border-bright);
    text-align: center;
}

/* Decan Analysis Styles */
.decan-intro {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin-bottom: 1rem;
    text-align: center;
}

.decan-list {
    display: grid;
    gap: 1rem;
}

.decan-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: 1rem;
    transition: all 0.3s ease;
}

.decan-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.decan-item.active {
    background: linear-gradient(135deg, rgba(100, 100, 255, 0.1), rgba(200, 100, 255, 0.1));
    border-color: var(--color-primary);
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.2);
}

.decan-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.decan-period {
    font-family: 'Noto Serif KR', serif;
    font-weight: 700;
    color: var(--color-secondary);
}

.decan-ruler {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

.decan-badge {
    background: var(--color-primary);
    color: white;
    padding: 0.2rem 0.6rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
}

.decan-ruler-info {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    color: var(--color-text-light);
}

.decan-trait {
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--color-text-light);
}

.decan-trait.highlight {
    color: var(--color-text);
    font-weight: 500;
}

/* Fortune Tabs */
.fortune-tabs {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 0.5rem;
    border-radius: 30px;
}

.fortune-tab-btn {
    background: transparent;
    border: none;
    color: var(--color-text-muted);
    padding: 0.5rem 1.2rem;
    border-radius: 20px;
    cursor: pointer;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.fortune-tab-btn:hover {
    color: var(--color-text);
    background: rgba(255, 255, 255, 0.1);
}

.fortune-tab-btn.active {
    background: var(--color-primary);
    color: white;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(139, 92, 246, 0.3);
}

.form-row {
    grid-template-columns: 1fr;
}

.zodiac-grid {
    grid-template-columns: repeat(2, 1fr);
}

/* Quote Card Styles */
.quote-card {
    margin-top: var(--spacing-lg);
    background: linear-gradient(135deg, hsla(270, 60%, 20%, 0.4), hsla(320, 60%, 25%, 0.4));
    border: 2px solid var(--color-border-bright);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    text-align: center;
    backdrop-filter: blur(15px);
    box-shadow: var(--shadow-md), 0 0 30px hsla(270, 70%, 60%, 0.2);
    animation: gentleGlow 4s ease-in-out infinite;
}

@keyframes gentleGlow {

    0%,
    100% {
        box-shadow: var(--shadow-md), 0 0 20px hsla(270, 70%, 60%, 0.2);
    }

    50% {
        box-shadow: var(--shadow-md), 0 0 35px hsla(270, 70%, 60%, 0.4);
    }
}

.quote-icon {
    font-size: 3rem;
    margin-bottom: var(--spacing-md);
    opacity: 0.8;
}

.quote-text {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--color-text-primary);
    font-weight: 500;
    font-style: italic;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Mini Quote Styles */
.quote-mini {
    margin-top: var(--spacing-sm);
    padding: var(--spacing-sm) var(--spacing-md);
    background: hsla(270, 50%, 30%, 0.2);
    border-left: 3px solid var(--color-primary);
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    font-style: italic;
    color: var(--color-text-secondary);
    line-height: 1.6;
}

/* Today's Date */
.today-date {
    font-size: 1rem;
    color: var(--color-secondary);
    font-weight: 600;
    margin-top: var(--spacing-xs);
    text-shadow: 0 0 10px hsla(45, 100%, 60%, 0.5);
}

/* Fortune Section Title */
.fortune-section {
    margin-bottom: var(--spacing-lg);
}

.fortune-section-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: var(--spacing-md);
    padding-bottom: var(--spacing-sm);
    border-bottom: 2px solid var(--color-border-bright);
    text-align: center;
}

/* Decan Analysis Styles */
.decan-intro {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin-bottom: 1rem;
    text-align: center;
}

.decan-list {
    display: grid;
    gap: 1rem;
}

.decan-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: 1rem;
    transition: all 0.3s ease;
}

.decan-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.decan-item.active {
    background: linear-gradient(135deg, rgba(100, 100, 255, 0.1), rgba(200, 100, 255, 0.1));
    border-color: var(--color-primary);
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.2);
}

.decan-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.decan-period {
    font-family: 'Noto Serif KR', serif;
    font-weight: 700;
    color: var(--color-secondary);
}

.decan-ruler {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

.decan-badge {
    background: var(--color-primary);
    color: white;
    padding: 0.2rem 0.6rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
}

.decan-ruler-info {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    color: var(--color-text-light);
}

.decan-trait {
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--color-text-light);
}

.decan-trait.highlight {
    color: var(--color-text);
    font-weight: 500;
}

/* Fortune Tabs */
.fortune-tabs {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 0.5rem;
    border-radius: 30px;
}

.fortune-tab-btn {
    background: transparent;
    border: none;
    color: var(--color-text-muted);
    padding: 0.5rem 1.2rem;
    border-radius: 20px;
    cursor: pointer;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.fortune-tab-btn:hover {
    color: var(--color-text);
    background: rgba(255, 255, 255, 0.1);
}

.fortune-tab-btn.active {
    background: var(--color-primary);
    color: white;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(139, 92, 246, 0.3);
}

.fortune-content {
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* History Styles */
.history-controls {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 1rem;
}

.history-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.history-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
}

.history-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.history-icon {
    font-size: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.history-content {
    flex: 1;
}

.history-title {
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 0.2rem;
}

.history-subtitle {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin-bottom: 0.2rem;
}

.history-date {
    font-size: 0.8rem;
    color: var(--color-text-light);
}

.btn-delete {
    background: transparent;
    border: none;
    cursor: pointer;
    font-size: 1.2rem;
    opacity: 0.5;
    transition: opacity 0.3s ease;
    padding: 0.5rem;
}

.btn-delete:hover {
    opacity: 1;
}

.empty-state {
    text-align: center;
    padding: 3rem;
    display: grid;
    gap: 1rem;
}

.decan-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: 1rem;
    transition: all 0.3s ease;
}

.decan-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.decan-item.active {
    background: linear-gradient(135deg, rgba(100, 100, 255, 0.1), rgba(200, 100, 255, 0.1));
    border-color: var(--color-primary);
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.2);
}

.decan-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.decan-period {
    font-family: 'Noto Serif KR', serif;
    font-weight: 700;
    color: var(--color-secondary);
}

.decan-ruler {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

.decan-badge {
    background: var(--color-primary);
    color: white;
    padding: 0.2rem 0.6rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
}

.decan-ruler-info {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    color: var(--color-text-light);
}

.decan-trait {
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--color-text-light);
}

.decan-trait.highlight {
    color: var(--color-text);
    font-weight: 500;
}

/* Fortune Tabs */
.fortune-tabs {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 0.5rem;
    border-radius: 30px;
}

.fortune-tab-btn {
    background: transparent;
    border: none;
    color: var(--color-text-muted);
    padding: 0.5rem 1.2rem;
    border-radius: 20px;
    cursor: pointer;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.fortune-tab-btn:hover {
    color: var(--color-text);
    background: rgba(255, 255, 255, 0.1);
}

.fortune-tab-btn.active {
    background: var(--color-primary);
    color: white;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(139, 92, 246, 0.3);
}

.fortune-content {
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* History Styles */
.history-controls {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 1rem;
}

.history-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.history-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
}

.history-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.history-icon {
    font-size: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.history-content {
    flex: 1;
}

.history-title {
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 0.2rem;
}

.history-subtitle {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin-bottom: 0.2rem;
}

.history-date {
    font-size: 0.8rem;
    color: var(--color-text-light);
}

.btn-delete {
    background: transparent;
    border: none;
    cursor: pointer;
    font-size: 1.2rem;
    opacity: 0.5;
    transition: opacity 0.3s ease;
    padding: 0.5rem;
}

.btn-delete:hover {
    opacity: 1;
}

.empty-state {
    text-align: center;
    padding: 3rem;
    color: var(--color-text-muted);
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
}

.btn-secondary.small {
    padding: 0.4rem 1rem;
    font-size: 0.9rem;
}

/* Share Button */
.action-buttons {
    display: flex;
    justify-content: center;
    margin-top: 1.5rem;
}

.btn-share {
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
}

.decan-period {
    font-family: 'Noto Serif KR', serif;
    font-weight: 700;
    color: var(--color-secondary);
}

.decan-ruler {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

.decan-badge {
    background: var(--color-primary);
    color: white;
    padding: 0.2rem 0.6rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
}

.decan-ruler-info {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    color: var(--color-text-light);
}

.decan-trait {
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--color-text-light);
}

.decan-trait.highlight {
    color: var(--color-text);
    font-weight: 500;
}

/* Fortune Tabs */
.fortune-tabs {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 0.5rem;
    border-radius: 30px;
}

.fortune-tab-btn {
    background: transparent;
    border: none;
    color: var(--color-text-muted);
    padding: 0.5rem 1.2rem;
    border-radius: 20px;
    cursor: pointer;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.fortune-tab-btn:hover {
    color: var(--color-text);
    background: rgba(255, 255, 255, 0.1);
}

.fortune-tab-btn.active {
    background: var(--color-primary);
    color: white;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(139, 92, 246, 0.3);
}

.fortune-content {
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* History Styles */
.history-controls {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 1rem;
}

.history-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.history-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
}

.history-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.history-icon {
    font-size: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.history-content {
    flex: 1;
}

.history-title {
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 0.2rem;
}

.history-subtitle {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin-bottom: 0.2rem;
}

.history-date {
    font-size: 0.8rem;
    color: var(--color-text-light);
}

.btn-delete {
    background: transparent;
    border: none;
    cursor: pointer;
    font-size: 1.2rem;
    opacity: 0.5;
    transition: opacity 0.3s ease;
    padding: 0.5rem;
}

.btn-delete:hover {
    opacity: 1;
}

.empty-state {
    text-align: center;
    padding: 3rem;
    color: var(--color-text-muted);
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
}

.btn-secondary.small {
    padding: 0.4rem 1rem;
    font-size: 0.9rem;
}

/* Share Button */
.action-buttons {
    padding: 0.2rem 0.6rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
}

.decan-ruler-info {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    color: var(--color-text-light);
}

.decan-trait {
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--color-text-light);
}

.decan-trait.highlight {
    color: var(--color-text);
    font-weight: 500;
}

/* Fortune Tabs */
.fortune-tabs {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 0.5rem;
    border-radius: 30px;
}

.fortune-tab-btn {
    background: transparent;
    border: none;
    color: var(--color-text-muted);
    padding: 0.5rem 1.2rem;
    border-radius: 20px;
    cursor: pointer;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.fortune-tab-btn:hover {
    color: var(--color-text);
    background: rgba(255, 255, 255, 0.1);
}

.fortune-tab-btn.active {
    background: var(--color-primary);
    color: white;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(139, 92, 246, 0.3);
}

.fortune-content {
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* History Styles */
.history-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.history-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
}

.history-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.history-icon {
    font-size: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.history-content {
    flex: 1;
}

.history-title {
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 0.2rem;
}

.history-subtitle {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin-bottom: 0.2rem;
}

.history-date {
    font-size: 0.8rem;
    color: var(--color-text-light);
}

.btn-delete {
    background: transparent;
    border: none;
    cursor: pointer;
    font-size: 1.2rem;
    opacity: 0.5;
    transition: opacity 0.3s ease;
    padding: 0.5rem;
}

.btn-delete:hover {
    opacity: 1;
}

.empty-state {
    text-align: center;
    padding: 3rem;
    color: var(--color-text-muted);
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
}

/* Share Button */
.action-buttons {
    display: flex;
    justify-content: center;
    margin-top: 1.5rem;
}

.btn-share {
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
}

.btn-share:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.4);
}

/* Language Switcher */
.language-switcher {
    position: absolute;
    top: 50%;
    right: 2rem;
    transform: translateY(-50%);
}

.language-switcher select {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(236, 72, 153, 0.1));
    color: var(--color-text);
    border: 1px solid var(--color-border);
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.language-switcher select:hover {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(236, 72, 153, 0.2));
    border-color: var(--color-primary);
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.2);
}

.language-switcher select:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
}

/* History Controls */
.history-controls {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 1.5rem;
}

.btn-secondary {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(236, 72, 153, 0.1));
    color: var(--color-text);
    border: 1px solid var(--color-border);
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(236, 72, 153, 0.2));
    border-color: var(--color-primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.2);
}

.btn-secondary.small {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .language-switcher {
        position: static;
        transform: none;
        margin-top: 1rem;
    }

    .zodiac-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}