/* 
 * Component Styles
 * =================
 */

/* =========================================
   NAVBAR STYLES
   ========================================= */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: var(--z-sticky);
}

.navbar {
    background: linear-gradient(180deg, rgba(13, 13, 13, 0.7) 0%, rgba(13, 13, 13, 0.65) 100%) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: var(--space-1) 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.navbar .container-fluid {
    padding-left: clamp(24px, 3vw, 48px);
    padding-right: clamp(24px, 3vw, 48px);
}

.navbar-logo {
    height: 54px;
    width: auto;
}

.social-icons {
    display: flex;
    gap: var(--space-4);
}

.social-icons a {
    color: var(--text-secondary);
    font-size: var(--font-size-lg);
    transition: all var(--transition-fast);
}

.social-icons a:hover {
    color: var(--color-primary);
    transform: translateY(-2px);
}

.navbar-nav {
    gap: var(--space-6);
}

.navbar-nav .nav-link {
    color: var(--text-primary) !important;
    font-weight: var(--font-weight-medium);
    font-size: var(--font-size-base);
    padding: var(--space-2) var(--space-4) !important;
    position: relative;
    transition: color var(--transition-fast);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--color-primary);
    transition: all var(--transition-fast);
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 100%;
}

.navbar-nav .nav-link:hover {
    color: var(--color-primary-light) !important;
}

/* Dropdown Styling */
.dropdown-menu {
    background-color: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    padding: var(--space-2);
}

.dropdown-item {
    color: var(--text-primary);
    padding: var(--space-2) var(--space-4);
    border-radius: var(--radius-sm);
    transition: background-color var(--transition-fast);
}

.dropdown-item:hover {
    background-color: var(--color-primary);
    color: var(--text-primary);
}

/* Remove dropdown caret/arrow */
.navbar-nav .nav-link.dropdown-toggle::after {
    display: none;
}

/* Logo Placeholder */
.logo-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: var(--font-display);
    font-weight: var(--font-weight-bold);
    line-height: 1;
}

.logo-placeholder span:first-child {
    font-size: var(--font-size-2xl);
    color: var(--color-primary);
    letter-spacing: 4px;
}

.logo-games {
    font-size: var(--font-size-xs);
    color: var(--text-secondary);
    letter-spacing: 6px;
}

/* Mobile Navigation */
@media (max-width: 991.98px) {
    .navbar-collapse {
        background: var(--bg-card);
        padding: var(--space-4);
        border-radius: var(--radius-md);
        margin-top: var(--space-4);
    }

    .navbar-nav {
        gap: var(--space-2);
    }

    .navbar-nav .nav-link::after {
        display: none;
    }
}

/* =========================================
   FOOTER STYLES
   ========================================= */

.site-footer {
    background: var(--bg-darker);
    padding: var(--space-16) 0 var(--space-8);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-column {
    margin-bottom: var(--space-8);
}

.footer-column h5 {
    color: var(--text-primary);
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-semibold);
    margin-bottom: var(--space-4);
    position: relative;
    padding-bottom: var(--space-2);
}

.footer-column h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--color-primary);
}

.footer-links {
    padding-left: 0;
    list-style: none;
}

.footer-links li {
    margin-bottom: var(--space-2);
}

.footer-links a {
    color: var(--text-secondary);
    transition: color var(--transition-fast), padding-left var(--transition-fast);
}

.footer-links a:hover {
    color: var(--color-primary);
    padding-left: var(--space-2);
}

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

.footer-social {
    display: flex;
    gap: var(--space-4);
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--bg-card);
    border-radius: var(--radius-full);
    color: var(--text-secondary);
    font-size: var(--font-size-lg);
    transition: all var(--transition-fast);
}

.footer-social a:hover {
    background: var(--color-primary);
    color: var(--text-primary);
    transform: translateY(-3px);
}

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

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

/* =========================================
   HERO SLIDER STYLES
   ========================================= */

.hero-slider {
    position: relative;
    width: 100%;
    min-height: 100vh;
    overflow: hidden;
    margin-top: 0;
    padding-top: 0;
}

.hero-slider .carousel-item {
    min-height: 100vh;
}

.hero-slider .carousel-item img {
    width: 100%;
    height: 100vh;
    object-fit: cover;
}

.hero-slider .carousel-caption {
    bottom: 30%;
    text-align: left;
    left: 10%;
    right: 40%;
}

.hero-slider h2 {
    font-size: var(--font-size-5xl);
    font-weight: var(--font-weight-bold);
    margin-bottom: var(--space-4);
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-slider p {
    font-size: var(--font-size-lg);
    margin-bottom: var(--space-6);
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
}

/* Steam Widget Container - Absolutely Positioned */
.steam-widget-container {
    position: absolute;
    bottom: 20px;
    left: 20px;
    z-index: 10;
    /* Easy repositioning: change bottom/left/right/top values */
    /* Or add class for different positions */
}

.steam-widget-container.top-left {
    bottom: auto;
    top: 20px;
    left: 20px;
}

.steam-widget-container.top-right {
    bottom: auto;
    top: 20px;
    left: auto;
    right: 20px;
}

.steam-widget-container.bottom-right {
    bottom: 60px;
    left: auto;
    right: 60px;
}

.steam-widget-container.center {
    bottom: 50%;
    left: 50%;
    transform: translate(-50%, 50%);
}

@media (max-width: 767.98px) {
    .steam-widget-container {
        display: none !important;
    }

    .steam-widget-container iframe {
        max-width: 100%;
        height: auto;
    }

    .hero-slider .carousel-caption {
        left: 5%;
        right: 5%;
        bottom: 20%;
    }

    .hero-slider h2 {
        font-size: var(--font-size-3xl);
    }
}

/* =========================================
   SPRING TALES HERO UI STYLES
   ========================================= */

/* Spring Tales Caption Container */
.spring-tales-caption {
    text-align: left;
    left: 8%;
    right: 45%;
    bottom: 32%;
}

/* Whimsical Storybook Title */
.spring-tales-title {
    font-family: 'Caveat Brush', cursive, sans-serif !important;
    font-size: clamp(3rem, 6vw, 4.5rem);
    font-weight: 800;
    color: #FFFFFF;
    letter-spacing: 2px;
    margin-bottom: var(--space-4);

    /* Organic dark green outline using text-stroke */
    -webkit-text-stroke: 4px #2D5016;
    paint-order: stroke fill;

    /* Warm drop shadow for depth */
    text-shadow:
        4px 4px 0 #2D5016,
        6px 6px 12px rgba(45, 80, 22, 0.5),
        0 0 40px rgba(255, 255, 255, 0.15);

    /* Subtle animation on load */
    animation: titleFloat 3s ease-in-out infinite;
}

@keyframes titleFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-4px);
    }
}

/* Subtitle with Pill Badge */
.spring-tales-subtitle {
    margin-bottom: var(--space-6);
}

.subtitle-pill {
    font-family: 'Nunito', sans-serif;
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: 600;
    color: #FFFFFF;
    line-height: 1.5;

    /* Semi-transparent pill background with glassmorphism */
    background: rgba(30, 45, 20, 0.75);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);

    /* Pill shape styling */
    display: inline-block;
    padding: 12px 28px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.15);

    /* Subtle shadow */
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

/* Game-Asset Style CTA Button */
.btn-game-asset {
    font-family: 'Nunito', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: #FFFFFF;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;

    /* Glossy golden gradient */
    background: linear-gradient(180deg, #FFD766 0%, #F5A623 50%, #E8941E 100%);

    /* 3D depth styling */
    display: inline-block;
    padding: 16px 40px;
    border: 3px solid #C7841A;
    border-radius: 14px;

    /* 3D shadow for "pressable" effect */
    box-shadow:
        0 6px 0 #B06E0A,
        0 8px 16px rgba(0, 0, 0, 0.3),
        inset 0 2px 0 rgba(255, 255, 255, 0.4);

    /* Text styling */
    text-shadow: 1px 2px 2px rgba(0, 0, 0, 0.3);

    /* Smooth transitions */
    transition: all 0.15s ease;
    cursor: pointer;
    position: relative;
    top: 0;
}

.btn-game-asset:hover {
    color: #FFFFFF;
    background: linear-gradient(180deg, #FFE17A 0%, #F8B032 50%, #F0A325 100%);
    transform: translateY(2px);
    box-shadow:
        0 4px 0 #B06E0A,
        0 6px 12px rgba(0, 0, 0, 0.25),
        inset 0 2px 0 rgba(255, 255, 255, 0.4);
}

.btn-game-asset:active {
    transform: translateY(5px);
    box-shadow:
        0 1px 0 #B06E0A,
        0 2px 6px rgba(0, 0, 0, 0.2),
        inset 0 2px 0 rgba(255, 255, 255, 0.3);
}

/* Mobile Responsive for Spring Tales */
@media (max-width: 991.98px) {
    .spring-tales-caption {
        left: 5%;
        right: 5%;
        bottom: 25%;
        text-align: center;
    }

    .spring-tales-title {
        font-size: clamp(2.2rem, 8vw, 3rem);
        -webkit-text-stroke: 3px #2D5016;
    }

    .subtitle-pill {
        font-size: 1rem;
        padding: 10px 20px;
    }

    .btn-game-asset {
        padding: 14px 32px;
        font-size: 1rem;
    }
}

@media (max-width: 575.98px) {
    .spring-tales-title {
        -webkit-text-stroke: 2px #2D5016;
        animation: none;
    }

    .subtitle-pill {
        padding: 8px 16px;
        font-size: 0.9rem;
    }

    .btn-game-asset {
        padding: 12px 24px;
        font-size: 0.95rem;
        box-shadow:
            0 4px 0 #B06E0A,
            0 6px 12px rgba(0, 0, 0, 0.25),
            inset 0 1px 0 rgba(255, 255, 255, 0.3);
    }
}

/* Carousel Controls */
.carousel-control-prev,
.carousel-control-next {
    width: 60px;
    opacity: 0.7;
    transition: opacity var(--transition-fast);
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    opacity: 1;
}

/* Hide carousel indicators */
.hero-slider .carousel-indicators {
    display: none;
}

/* =========================================
   CARD STYLES
   ========================================= */

.work-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition-base);
    height: 100%;
}

.work-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-glow);
}

.work-card-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
}

.work-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-base);
}

.work-card:hover .work-card-image img {
    transform: scale(1.1);
}

.work-card-content {
    padding: var(--space-4);
}

.work-card-content h3 {
    font-size: var(--font-size-lg);
    margin-bottom: var(--space-2);
    color: var(--text-primary);
}

.work-card-content p {
    font-size: var(--font-size-sm);
    color: var(--text-secondary);
    line-height: var(--line-height-base);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* =========================================
   BUTTON STYLES
   ========================================= */

.btn-primary {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    border: none;
    padding: var(--space-3) var(--space-6);
    font-weight: var(--font-weight-semibold);
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--color-primary-light) 0%, var(--color-primary) 100%);
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--color-primary);
    color: var(--color-primary);
    padding: var(--space-3) var(--space-6);
    font-weight: var(--font-weight-semibold);
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
}

.btn-secondary:hover {
    background: var(--color-primary);
    color: var(--text-primary);
    transform: translateY(-2px);
}

.btn-lg {
    padding: var(--space-4) var(--space-8);
    font-size: var(--font-size-lg);
}

/* =========================================
   SUBSCRIBE SECTION
   ========================================= */

.subscribe-section {
    background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-darker) 100%);
    padding: var(--space-16) 0;
    position: relative;
    overflow: hidden;
}

.subscribe-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(108, 99, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.subscribe-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.subscribe-content h2 {
    font-size: var(--font-size-3xl);
    margin-bottom: var(--space-8);
    color: var(--text-primary);
}

.subscribe-form {
    max-width: 500px;
    margin: 0 auto;
}

.subscribe-form .input-group {
    background: var(--bg-dark);
    border-radius: var(--radius-lg);
    padding: var(--space-2);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.subscribe-form .form-control {
    background: transparent;
    border: none;
    color: var(--text-primary);
    padding: var(--space-3) var(--space-4);
}

.subscribe-form .form-control::placeholder {
    color: var(--text-muted);
}

.subscribe-form .form-control:focus {
    box-shadow: none;
    outline: none;
}

.btn-subscribe {
    border-radius: var(--radius-md) !important;
}

/* =========================================
   CONTACT SECTION
   ========================================= */

.contact-section {
    background: var(--bg-dark);
    padding: var(--space-16) 0;
}

.contact-content {
    max-width: 600px;
    margin: 0 auto;
}

.contact-content h2 {
    font-size: var(--font-size-4xl);
    margin-bottom: var(--space-6);
    color: var(--text-primary);
}

.contact-text {
    color: var(--text-secondary);
    font-size: var(--font-size-lg);
    line-height: var(--line-height-relaxed);
    margin-bottom: var(--space-6);
}

.contact-email a {
    font-size: var(--font-size-xl);
    color: var(--color-primary);
    font-weight: var(--font-weight-semibold);
    position: relative;
    display: inline-block;
}

.contact-email a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--color-primary);
    transform: scaleX(0);
    transition: transform var(--transition-fast);
}

.contact-email a:hover::after {
    transform: scaleX(1);
}

/* =========================================
   SECTION HEADINGS
   ========================================= */

.section-heading {
    font-size: var(--font-size-4xl);
    text-align: center;
    margin-bottom: var(--space-12);
    color: var(--text-primary);
    position: relative;
}

.section-heading::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--color-primary);
    margin: var(--space-4) auto 0;
    border-radius: var(--radius-full);
}

/* =========================================
   HERO STATIC (About, Press Pages)
   ========================================= */

.hero-static {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    padding-top: 70px;
}

.hero-static::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(13, 13, 13, 0.6) 0%, rgba(13, 13, 13, 0.9) 100%);
}

.hero-static-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.hero-static h1 {
    font-size: var(--font-size-5xl);
    margin-bottom: var(--space-4);
}

/* Specific positioning for Games page hero widget */
.games-hero {
    overflow: visible;
    /* Ensure widget can hang out */
    z-index: 10;
}

.games-hero .steam-widget-container {
    bottom: -95px;
    /* Half of 190px height to straddle the edge */
    right: 60px;
}

/* Spring Tales styling in hero-static context */
.hero-static .spring-tales-caption {
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero-static .spring-tales-title {
    font-family: 'Baloo 2', cursive, sans-serif !important;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    color: #FFFFFF;
    letter-spacing: 2px;
    margin-bottom: var(--space-4);
    -webkit-text-stroke: 3px #2D5016;
    paint-order: stroke fill;
    text-shadow:
        3px 3px 0 #2D5016,
        5px 5px 10px rgba(45, 80, 22, 0.5),
        0 0 30px rgba(255, 255, 255, 0.1);
    animation: titleFloat 3s ease-in-out infinite;
}

.hero-static .spring-tales-subtitle {
    margin-bottom: 0;
}

.hero-static .subtitle-pill {
    font-family: 'Nunito', sans-serif;
    font-size: clamp(0.95rem, 1.8vw, 1.15rem);
    font-weight: 600;
    color: #FFFFFF;
    background: rgba(30, 45, 20, 0.75);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: inline-block;
    padding: 10px 24px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

@media (max-width: 767.98px) {
    .hero-static .spring-tales-title {
        font-size: clamp(2rem, 7vw, 2.5rem);
        -webkit-text-stroke: 2px #2D5016;
        animation: none;
    }

    .hero-static .subtitle-pill {
        padding: 8px 16px;
        font-size: 0.9rem;
    }
}

/* =========================================
   PRESS KIT SPECIFIC
   ========================================= */

.press-warning {
    font-size: var(--font-size-sm);
    color: var(--color-secondary);
    margin-top: var(--space-4);
    display: flex;
    align-items: center;
    gap: var(--space-2);
}

.press-warning i {
    font-size: var(--font-size-base);
}

/* =========================================
   PLACEHOLDER IMAGES
   ========================================= */

.placeholder-image {
    background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-card-hover) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: var(--font-size-sm);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* =========================================
   ABOUT PAGE STYLES
   ========================================= */

.about-intro {
    max-width: 900px;
    margin: 0 auto;
}

.about-section-block {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: var(--space-8);
    transition: all 0.3s ease;
}

.about-section-block:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.about-section-block.highlight-block {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.05) 0%, rgba(59, 130, 246, 0.05) 100%);
    border-color: rgba(139, 92, 246, 0.15);
}

.about-section-block.vision-block {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0%, transparent 100%);
    border: none;
    border-top: 2px solid var(--color-primary);
}

.about-section-block .title-icon {
    margin-right: var(--space-2);
    font-size: 1.2em;
}

.about-section-block .subsection-title {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    color: var(--text-primary);
    font-size: var(--font-size-2xl);
    margin-bottom: var(--space-4);
}

.about-section-block.vision-block .subsection-title {
    justify-content: center;
    color: var(--color-primary);
}

.about-section-block p {
    color: var(--text-secondary);
    line-height: var(--line-height-relaxed);
}

.about-section-block p.lead {
    color: var(--text-primary);
    font-size: var(--font-size-xl);
}

.about-section-block.vision-block p {
    color: var(--text-primary);
    font-size: var(--font-size-lg);
}

/* About Section Title */
.about-content .section-title {
    color: var(--color-primary);
    margin-bottom: var(--space-6);
}

.about-content .about-intro .lead {
    color: var(--text-primary);
    font-size: var(--font-size-xl);
    line-height: var(--line-height-relaxed);
}

/* Game Categories Grid */
.game-categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-6);
    margin-top: var(--space-6);
}

.game-category-card {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: var(--space-6);
    text-align: center;
    transition: all 0.3s ease;
}

.game-category-card:hover {
    background: rgba(0, 0, 0, 0.3);
    border-color: var(--color-primary);
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(139, 92, 246, 0.15);
}

.game-category-card .category-icon {
    font-size: 2.5rem;
    margin-bottom: var(--space-4);
    filter: grayscale(0);
    transition: transform 0.3s ease;
}

.game-category-card:hover .category-icon {
    transform: scale(1.1);
}

.game-category-card .category-title {
    color: var(--text-primary);
    font-size: var(--font-size-lg);
    font-weight: 600;
    margin-bottom: var(--space-3);
}

.game-category-card .category-description {
    color: var(--text-secondary);
    font-size: var(--font-size-base);
    line-height: var(--line-height-relaxed);
    margin: 0;
}

.game-category-card .category-description strong {
    color: var(--color-primary);
    font-weight: 500;
}

.category-summary {
    border-left: 3px solid var(--color-primary);
    padding: var(--space-4);
    background: rgba(139, 92, 246, 0.05);
    border-radius: 0 8px 8px 0;
    font-style: italic;
    margin-top: var(--space-6);
}

.vision-closing {
    font-size: var(--font-size-lg);
    opacity: 0.9;
    margin-top: var(--space-4);
}

/* About Page Responsive Adjustments */
@media (max-width: 768px) {
    .about-section-block {
        padding: var(--space-5);
    }

    .game-categories-grid {
        grid-template-columns: 1fr;
    }

    .about-section-block .subsection-title {
        font-size: var(--font-size-xl);
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
    }
}