/* ======================= General Reset ======================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --slide-color: #4a7929;
    --primary-color: #68970A;
    --primary-hover: #7aaf0c;
    --dark-bg: #0f1022;
    --dark-card-bg: #1a1b31;
    --text-color-light: #ffffff;
    --text-color-dim: rgba(255, 255, 255, 0.7);
    --card-border-radius: 15px;
    --green-accent: #8BC34A;
}

body {
    font-family: "Onest", serif;
    font-optical-sizing: auto;
    font-style: normal;
    line-height: 1.6;
    color: #333;
    scroll-behavior: smooth;
    background: linear-gradient(#0f1022, #0b0913);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* ======================= Header ======================= */
header {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 999;
    color: #000000;
    margin-top: 22px;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(64px);
    border-radius: 25px;
    border: 1px solid rgba(71, 67, 50, 0.493);
    background-color: rgb(255 255 255 / 88%);
    padding: 3px 10px;
}

header .logo img {
    width: 158px;
    margin: 7px 0px 0px 7px;
}

header nav {
    margin: 5px 20px;
}

header nav ul {
    display: flex;
    list-style: none;
    gap: 20px;
}

header nav ul li a {
    color: #000000;
    text-decoration: none;
    opacity: 0.4;
    font-weight: 500;
    font-size: 20px;
    transition: color 0.3s ease, opacity 0.3s ease;
}

header nav ul li a.active {
    opacity: 1;
}

header nav ul li a:hover {
    opacity: 1;
}

.contact-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 14px;
    padding: 7px 14px;
    font-size: 16px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-button:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(104, 151, 10, 0.4);
}

.contact-button .icon {
    display: flex;
    align-items: center;
    margin-right: 10px;
}

@media (max-width: 768px) {
    header .contact-button {
        visibility: hidden;
    }
}

.cta-buttons {
    display: flex;
    align-items: center;
    gap: 15px;
}

.cta-buttons button {
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    border-radius: 5px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* ======================= Hamburger Menu ======================= */
header .hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    margin: 5px 20px;
    color: white;
}

header .hamburger span {
    width: 25px;
    height: 3px;
    background-color: #131313;
    transition: all 0.3s ease;
}

/* ======================= Overlay ======================= */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
    z-index: 998;
}

.overlay-active {
    opacity: 1;
    visibility: visible;
}

/* ======================= Sidebar ======================= */
.sidebar {
    position: fixed;
    top: 0;
    left: -300px;
    width: 300px;
    height: 100%;
    background: #0f1123;
    padding: 60px 20px;
    transition: left 0.3s ease;
    z-index: 999;
    display: flex;
    flex-direction: column;
}

.sidebar ul {
    list-style: none;
    padding: 0;
    flex-grow: 1;
}

.sidebar ul li {
    margin: 20px 0;
}

.sidebar ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    transition: color 0.3s ease;
}

.sidebar ul li a:hover {
    color: #fff;
}

.sidebar-active {
    left: 0;
}

.close-btn {
    align-self: flex-end;
    background: none;
    border: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    margin-bottom: 30px;
    transition: color 0.3s ease;
}

.close-btn:hover {
    color: #fff;
}

.sidebar-kabasakal-button-container {
    margin-top: 30px;
    padding: 0 20px;
}

.sidebar-kabasakal-button {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 14px;
    padding: 12px 20px;
    font-size: 18px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
    box-shadow: 0 4px 10px rgba(104, 151, 10, 0.3);
    width: 100%;
}

.sidebar-kabasakal-button:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(104, 151, 10, 0.4);
}

.sidebar-kabasakal-button .icon {
    display: flex;
    align-items: center;
    margin-right: 10px;
    font-size: 20px;
}

.sidebar .cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

.sidebar .cta-buttons button {
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    border-radius: 5px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.sidebar .login {
    background: none;
    color: #fff;
    font-size: 16px;
    text-align: left;
}

.sidebar .login:hover {
    color: #fff;
}

.sidebar .demo {
    background-color: #fff;
    color: white;
}

.sidebar .demo:hover {
    background-color: #218838;
}

.sidebar .live-demo {
    background-color: transparent;
    color: #fff;
    border: 1px solid #fff;
    font-size: 16px;
    text-align: left;
}

.sidebar .live-demo:hover {
    background-color: #fff;
    color: #fff;
}

.sidebar ul li a {
    padding: 10px 0;
    display: block;
    border-bottom: 1px solid #444;
}

.sidebar ul li a:last-child {
    border-bottom: none;
}

/* ======================= Store Slider Styles ======================= */
.store-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding-top: 150px;
    min-height: 500px;
    max-height: 800px; 
    aspect-ratio: 16 / 9;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    visibility: hidden;
    opacity: 0;
    z-index: 0;
    transition: opacity 0.6s ease;
}

.slide.active {
    visibility: visible;
    opacity: 1;
    z-index: 1;
    transition: opacity 0.6s ease;
}

.slide-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.slide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.color-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 1;
    z-index: 1;
    transition: opacity 1.2s ease;
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 2;
    width: 80%;
    max-width: 800px;
    padding: 2rem;
    transition: opacity 0.6s ease 0.2s, transform 0.6s ease 0.2s;
}

.slide.active .slide-content {
    opacity: 1;
    transform: translate(-50%, -50%);
}

.slide-content h2 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    letter-spacing: 1px;
}

.slide-content p {
    font-size: 1.8rem;
    color: #ffffff;
    opacity: 0.9;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.8);
    max-width: 80%;
    margin: 0 auto;
    line-height: 1.6;
}

.transition-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000000;
    z-index: 20;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s cubic-bezier(0.4, 0.0, 0.2, 1);
    will-change: opacity;
}

.transitioning .transition-layer {
    opacity: 1;
}

.transitioning .slide-content {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.slider-nav {
    position: absolute;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 2rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 11;
}

.nav-button {
    background: rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.6);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(5px);
}

/* Mobilde butonları küçült */
@media (max-width: 768px) {
    .nav-button {
        width: 45px;
        height: 45px;
        border-width: 1.5px;
    }

    .nav-button svg {
        width: 18px;
        height: 18px;
    }
}

.nav-button svg {
    transition: transform 0.3s ease;
}

.nav-button:hover {
    background: rgba(0, 0, 0, 0.5);
    border-color: rgba(255, 255, 255, 0.9);
    transform: scale(1.05);
}

.nav-button.prev:hover svg {
    transform: translateX(-3px);
}

.nav-button.next:hover svg {
    transform: translateX(3px);
}

.slide-indicators {
    position: absolute;
    bottom: 10%;
    right: 10%;
    display: flex;
    gap: 12px;
    z-index: 11;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.indicator.active {
    width: 35px;
    border-radius: 10px;
    background-color: #ffffff;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.indicator:hover {
    background-color: rgba(255, 255, 255, 0.8);
}

/* ======================= Partner Box ======================= */
.partner-box {
    position: absolute;
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 900px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 16px;
    padding: 1.2rem 2rem;
    z-index: 12;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.partner-info {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.logo-container {
    position: relative;
}

.partner-logo {
    height: 70px;
    width: auto;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
    transition: transform 0.3s ease;
}

.partner-info:hover .partner-logo {
    transform: scale(1.05);
}

.flag-badge {
    position: absolute; 
    top: -8px; 
    left: -8px; 
    width: 30px; 
    height: 30px; 
    border-radius: 50%; 
    overflow: hidden; 
    border: 1px solid rgba(255, 255, 255, 0.46);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); 
    z-index: 2;
}

.flag-badge img {
    width: 100%; 
    height: 100%; 
    object-fit: cover;
}

.partner-text {
    display: flex;
    flex-direction: column;
}

.verified {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    background-color: rgba(139, 195, 74, 0.15);
    padding: 0.3rem 0.7rem;
    border-radius: 20px;
    width: fit-content;
    border: 1px solid rgba(139, 195, 74, 0.3);
}

.verified svg {
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
}

.verified span {
    font-size: 0.8rem;
    font-weight: 700;
    color: #8BC34A;
    letter-spacing: 0.5px;
}

.partner-text h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: 0.5px;
    line-height: 1.4;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.shop-now-btn {
    background: linear-gradient(135deg, #8BC34A 0%, #689F38 100%);
    color: white;
    padding: 0.9rem 1.8rem;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 0.7rem;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(104, 159, 56, 0.3);
    border: none;
    text-transform: uppercase;
    font-size: 0.9rem;
    white-space: nowrap;
    min-width: fit-content;
}

.shop-now-btn svg {
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.shop-now-btn:hover {
    background: linear-gradient(135deg, #97d54b 0%, #78b833 100%);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(104, 159, 56, 0.4);
}

.shop-now-btn:hover svg {
    transform: translateX(3px);
}

.shop-now-btn:active {
    transform: translateY(-1px);
    box-shadow: 0 3px 10px rgba(104, 159, 56, 0.3);
}

/* ======================= Section Headers ======================= */
.section-header {
    display: flex;
    justify-content: center;
    margin: 60px 0 40px;
}
  
.title-container {
    display: flex;
    align-items: center;
    gap: 15px;
}
  
.icon-wrapper {
    font-size: 2.5rem;
    color: white;
}
  
.section-header h2 {
    color: white;
    font-size: 2.5rem;
    font-weight: 500;
    margin: 0;
}

@media (max-width: 768px) {
    .section-header h2 {
        font-size: 1.8rem; 
    }
}

/* ======================= Products Section ======================= */
.s3-games-section {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.s3-games-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: 1fr;
}

.s3-game-card {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
    width: 100%;
}

.s3-game-card:hover {
    transform: translateY(-4px);
}

.s3-game-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.s3-game-card .s3-game-logo {
    max-width: 150px;
    height: auto;
    margin-bottom: 0.5rem;
}

.s3-grid-container {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(2, 1fr); /* Mobile: 1 columns */
}

@media (min-width: 768px) {
    .s3-grid-container {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* ======================= Partners Section ======================= */
.partners-section {
    padding: 40px 0 60px;
}

.partner-card {
    background: rgba(26, 27, 49, 0.7);
    border-radius: var(--card-border-radius);
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.partner-card-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.partner-card-logo {
    position: relative;
}

.partner-card-logo img {
    height: 80px;
    width: auto;
}

.partner-flag {
    position: absolute;
    top: -10px;
    left: -10px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.partner-flag img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.partner-card-info {
    flex: 1;
}

.partner-verified {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(139, 195, 74, 0.15);
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 10px;
    border: 1px solid rgba(139, 195, 74, 0.3);
}

.partner-verified i {
    color: var(--green-accent);
}

.partner-verified span {
    font-size: 12px;
    font-weight: 700;
    color: var(--green-accent);
    letter-spacing: 0.5px;
}

.partner-card-info h3 {
    color: var(--text-color-light);
    font-size: 24px;
    margin: 0;
}

.partner-platforms {
    margin-bottom: 30px;
}

.partner-platforms h4 {
    color: var(--text-color-light);
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: 500;
}

.platform-logos {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.platform-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 15px;
    transition: all 0.3s ease;
    height: 80px;
}

.platform-logo img {
    max-width: 100%;
    max-height: 50px;
    filter: grayscale(70%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.platform-logo:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.platform-logo:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

.partner-action-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #8BC34A 0%, #689F38 100%);
    color: white;
    text-decoration: none;
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(104, 159, 56, 0.3);
}

.partner-action-btn:hover {
    background: linear-gradient(135deg, #97d54b 0%, #78b833 100%);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(104, 159, 56, 0.4);
}

.partner-action-btn i {
    transition: transform 0.3s ease;
}

.partner-action-btn:hover i {
    transform: translateX(5px);
}

@media (min-width: 768px) and (max-width: 991px) {
    .platform-logos {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .platform-logos {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .partner-card {
        padding: 20px;
    }
    
    .partner-verified {
        padding: 3px 10px;
    }
    
    .partner-card-info h3 {
        font-size: 20px;
    }
}

@media (max-width: 576px) {
    .partner-card-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .partner-card-logo {
        margin-bottom: 15px;
    }
    
    .partner-card-info {
        width: 100%;
    }
    
    .partner-card-info h3 {
        font-size: 18px;
        line-height: 1.4;
        word-wrap: break-word;
        hyphens: auto;
    }
    
    .platform-logos {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .platform-logo {
        height: 70px;
        padding: 10px;
    }
    
    .partner-platforms h4 {
        font-size: 16px;
        margin-bottom: 12px;
    }
}
/* ======================= About Section ======================= */
.about-section {
    padding: 80px 0;
}

.about-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 38px;
    margin-bottom: 30px;
    color: var(--text-color-light);
    font-weight: 600;
}

.section-description {
    max-width: 900px;
    margin: 0 auto;
    color: var(--text-color-dim);
    line-height: 1.8;
    font-size: 18px;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.content-block {
    background: var(--dark-card-bg);
    padding: 30px;
    border-radius: var(--card-border-radius);
    height: 100%;
}

.block-title {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--text-color-light);
    text-align: center;
    font-weight: 600;
}

.block-text {
    color: var(--text-color-dim);
    line-height: 1.7;
    font-size: 16px;
}

.features-list {
    list-style: none;
    padding-left: 0;
    margin-top: 0;
}

.feature-item {
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    color: var(--text-color-light);
}

.feature-item:last-child {
    margin-bottom: 0;
}

.feature-icon {
    color: var(--green-accent);
    margin-right: 10px;
    font-size: 18px;
}

.feature-text {
    color: var(--text-color-dim);
}

.cta-block {
    text-align: center;
    margin-top: 40px;
    background: rgba(139, 195, 74, 0.1);
    padding: 40px;
    border-radius: var(--card-border-radius);
    border: 1px solid rgba(139, 195, 74, 0.3);
}

.cta-text {
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto 30px auto;
    line-height: 1.7;
    font-size: 17px;
}

/* ======================= Footer ======================= */
.footer {
    padding: 4rem 2rem;
    border-top: 1px solid rgba(148, 163, 184, 0.1);
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    min-height: 200px; 
}

.footer-top {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem 0; 
    align-items: center;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem; 
    margin-bottom: 1rem; 
}

.footer-logo img {
    height: 70px; 
    width: auto;
}

.footer-logo span {
    color: white;
    font-size: 1.5rem; 
    font-weight: 500;
}

.footer-copyright {
    font-size: 15px;
    color: #fff;
    padding: 0.5rem 0;
    font-weight: 600;
}

.footer-info {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 1rem 0;
}

.info-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.info-label {
    font-size: 1rem;
    color: #fff;
    font-weight: 300;
}

.info-value {
    color: #fff;
    font-size: 1rem;
    opacity: 0.5;
    line-height: 1.6;
}

/* ======================= Responsive Design ======================= */
@media (min-width: 768px) {
    .footer-container {
        grid-template-columns: auto 1fr;
        gap: 6rem;
    }

    .footer-info {
        grid-template-columns: repeat(3, 1fr);
        justify-content: flex-end;
        gap: 3rem;
    }
}

@media (min-width: 1024px) {
    .footer {
        padding: 5rem 2rem;
    }

    .footer-container {
        min-height: 250px;
    }

    .footer-info {
        gap: 2rem;
    }
}

@media (max-width: 992px) {
    .slide-content h2 {
        font-size: 2.5rem;
    }

    .games-header h2,
    .support-text h2 {
        font-size: 24px;
    }

    .footer-columns {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    header nav ul {
        display: none;
    }

    .cta-buttons {
        display: none;
    }

    header .hamburger {
        display: flex;
    }

    .sidebar {
        width: 80%;
        max-width: 300px;
    }
    
    .slide-content h2 {
        font-size: 2rem;
    }
    
    .slide-content p {
        font-size: 1rem;
    }
    
    .partner-box {
        flex-direction: column;
        gap: 1rem;
    }
    
    .partner-info {
        width: 100%;
    }
    
    .shop-now-btn {
        width: 100%;
        justify-content: center;
    }
}