/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Prompt:wght@300;400;500;600;700&display=swap');

/* Variables */
:root {
    --text-color: #ffffff;
    --main-color: #00e1ff;
    --second-color: #0077ff;
    --gradient-color: linear-gradient(135deg, #00e1ff 0%, #0077ff 100%);
    --gradient-hover: linear-gradient(135deg, #0077ff 0%, #00e1ff 100%);
    --glow: 0 0 25px rgba(0, 225, 255, 0.6);
    --border-radius: 20px;
    --glass-bg: rgba(10, 25, 60, 0.4);
    --glass-border: rgba(255, 255, 255, 0.15);
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    border: none;
    outline: none;
    scroll-behavior: smooth;
    font-family: 'Prompt', 'Inter', sans-serif;
}

body {
    color: var(--text-color);
    overflow-x: hidden;
    position: relative;
    background-color: #040814;
}

html {
    font-size: 43%; /* ลดสเกลลงเพื่อให้พอดีกับหน้าจอทุกขนาด */
}

/* Animated Gradient Background like ZPRISE */
.bg-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -2;
    background: radial-gradient(circle at 20% 30%, #0a1931 0%, #000c1d 100%);
    overflow: hidden;
}

.bg-animation::before,
.bg-animation::after {
    content: '';
    position: absolute;
    width: 60vw;
    height: 60vw;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 225, 255, 0.15) 0%, transparent 70%);
    filter: blur(80px);
    z-index: -1;
    animation: floatingGlow 20s linear infinite;
}

.bg-animation::after {
    background: radial-gradient(circle, rgba(0, 119, 255, 0.1) 0%, transparent 70%);
    width: 40vw;
    height: 40vw;
    animation: floatingGlow 15s linear infinite reverse;
    top: 50%;
    right: -10%;
}

@keyframes floatingGlow {
    0% { transform: translate(-10%, -10%) rotate(0deg); }
    50% { transform: translate(10%, 10%) rotate(180deg); }
    100% { transform: translate(-10%, -10%) rotate(360deg); }
}

/* Glassmorphism Effect */
.glass-effect {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(25px) saturate(180%);
    -webkit-backdrop-filter: blur(25px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

/* Header & Navbar */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 2rem 9%; /* ลด padding header ลงให้ดูสลิมมิ่ง */
    background: rgba(4, 8, 20, 0.6);
    backdrop-filter: blur(20px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    transition: 0.3s;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header.sticky {
    padding: 1.5rem 9%;
    background: rgba(2, 6, 15, 0.9);
}

.logo {
    flex: 1; /* กำหนดสัดส่วนเพื่อให้ปุ่มขวาและโลโก้ซ้ายมีพื้นที่เท่ากัน */
    font-size: 3rem;
    color: var(--text-color);
    font-weight: 700;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
}

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

.navbar {
    flex: 2; /* ส่วนเมนูหลักอยู่กี่งกลาง */
    display: flex;
    justify-content: center; 
    align-items: center;
}

.nav-contact-container {
    flex: 1; /* ส่วนปุ่มขวา */
    display: flex;
    justify-content: flex-end;
}

.navbar a {
    font-size: 1.8rem;
    color: var(--text-color);
    margin: 0 2rem; /* ปรับลด margin เพื่อให้เมนูดูเกาะกลุ่มกันตรงข้ามกับโลโก้ */
    font-weight: 500;
    transition: 0.3s;
}

.navbar a:hover,
.navbar a.active {
    color: var(--main-color);
    text-shadow: 0 0 10px rgba(0, 225, 255, 0.5);
}

.nav-contact-btn {
    background: var(--gradient-color);
    padding: 1.2rem 3rem; /* เพิ่มขนาดให้ดูอิ่มและเด่นขึ้น */
    border-radius: 3rem;
    color: #fff !important;
    font-size: 1.8rem; /* ขยายขนาดตัวอักษรเล็กน้อย */
    font-weight: 700 !important;
    transition: 0.3s;
    white-space: nowrap;
    box-shadow: 0 4px 20px rgba(0, 225, 255, 0.3);
}

.nav-contact-btn:hover {
    box-shadow: var(--glow);
    transform: translateY(-2px);
}

#menu-icon {
    font-size: 4rem;
    color: var(--text-color);
    display: none;
    cursor: pointer;
}

/* Reusable Components */
section {
    padding: 10rem 9% 4rem; /* ลด padding ลงเพื่อให้สเกลดูสมดุล */
    background: transparent;
}

.heading {
    text-align: center;
    font-size: 5rem; /* Increased */
    margin-bottom: 6rem;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

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

.btn {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    font-size: 1.6rem;
    color: #fff;
    font-weight: 500;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: var(--gradient-color);
    transition: all 0.5s ease;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    opacity: 0;
}

.btn:hover {
    color: #fff;
    border-color: var(--main-color);
    box-shadow: 0 0 20px rgba(0, 225, 255, 0.4);
    transform: translateY(-3px) scale(1.05);
}

.btn:hover::before {
    width: 2000px; /* เพิ่มขนาดมหาศาลเพื่อให้ครอบคลุมปุ่มที่ยาวมากๆ ในส่วน Pricing แน่นอน 100% */
    height: 2000px;
    opacity: 1;
}

.btn-block {
    display: block;
    width: 100%;
    text-align: center;
}

/* Home / Hero Slider (Large & Impressive) */
.home {
    padding: 12rem 0 0; /* ตัด padding ด้านล่างออกเพื่อให้ส่วนบริการขยับขึ้นมาติด */
    min-height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-slider {
    width: 100%;
    height: auto; /* สูงตามกรอบรูป */
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem 0 5rem; /* ลดระยะห่างบน-ล่างลงเพื่อให้เนื้อหาอยู่ใกล้กันมากขึ้น */
}

.carousel-container {
    width: 70%;
    aspect-ratio: 21 / 9; /* ตรงกับสัดส่วนรูปจริง */
    height: auto;
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 50px rgba(0,0,0,0.5);
}

.carousel-inner {
    display: flex;
    width: 300%;
    height: 100%;
    transition: transform 1.2s cubic-bezier(0.65, 0, 0.35, 1);
}

.carousel-slide {
    width: 33.333333%;
    height: 100%;
    position: relative;
    flex-shrink: 0;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* ratio ตรงกันแล้ว ใช้ cover เต็มกรอบได้เลย */
}

/* ลบเลเยอร์มืดออกเพื่อให้รูปภาพสว่างชัดเจน */
.carousel-slide::after {
    display: none;
}

.slide-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    padding-bottom: 2.5rem;
    z-index: 20;
    background: linear-gradient(to top, rgba(2, 6, 15, 0.65) 0%, transparent 100%);
    padding-top: 6rem; /* ไล่ gradient จากล่างขึ้นบน */
}

.slide-content h1 {
    font-size: 8.5rem; /* ใหญ่กว่าเดิม */
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 2.5rem;
    text-transform: uppercase;
}

.slide-content h1 span {
    color: var(--main-color);
    text-shadow: 0 0 20px rgba(0, 225, 255, 0.4);
}

.slide-content p {
    font-size: 2.2rem; /* Larger */
    margin-bottom: 4rem;
    color: #e0e0e0;
    line-height: 1.6;
}

.carousel-nav {
    position: absolute;
    bottom: 5%;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1.5rem;
    z-index: 10;
}

.carousel-dot {
    width: 8px; /* เล็กลงกว่าเดิมเกือบเท่าตัว */
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: 0.3s;
}

.carousel-dot.active {
    background: var(--main-color);
    box-shadow: 0 0 10px var(--main-color);
    width: 20px; /* ตอน active ก็ย่อขนาดลงให้ดูพอดี */
    border-radius: 10px;
}

.slider-arrows {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%; /* ให้กว้างเท่า Slider เพื่อดันปุ่มไปสองฝั่ง */
    display: flex;
    justify-content: space-between; /* ดันปุ่มไปซ้าย-ขวา */
    padding: 0 10%; /* ระยะห่างจากขอบรูปภาพเล็กน้อย */
    pointer-events: none; /* เพื่อไม่ให้เลเยอร์ทับปุ่มติดต่อด้านล่าง */
    z-index: 30;
}

.slider-arrows button {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05); /* กระจกใสตามธีม */
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 2.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: auto; /* ให้ปุ่มกดได้ปกติ */
}

.slider-arrows button:hover {
    background: var(--main-color);
    box-shadow: var(--glow);
    transform: scale(1.1);
}

/* Services */
.services {
    padding-top: 5rem; /* ลดระยะห่างด้านบนลงจาก 10rem เป็น 5rem เพื่อให้ใกล้ hero มากขึ้น */
}
.services-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 4rem;
}

.service-box {
    padding: 6rem 4rem;
    text-align: center;
    transition: 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    background: rgba(255, 255, 255, 0.02); /* กระจกบางๆ */
}

.service-box:hover {
    transform: translateY(-15px);
    border-color: var(--main-color);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4), var(--glow);
}

.service-box i {
    font-size: 7rem;
    color: var(--main-color);
    margin-bottom: 3rem;
}

.service-box h3 {
    font-size: 3rem;
    margin-bottom: 2rem;
}

.service-box p {
    font-size: 1.8rem;
    color: #ddd;
    line-height: 1.7;
}

/* Pricing */
.pricing {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.pricing-container {
    width: 100%;
    max-width: 550px;
}

.pricing-card {
    padding: 6rem 5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: 0.4s;
    border-top: 5px solid var(--main-color);
}

.pricing-card:hover {
    transform: scale(1.04);
    box-shadow: 0 20px 50px rgba(0,0,0,0.5), var(--glow);
}

.pricing-card h3 {
    font-size: 2.6rem;
    font-weight: 500;
}

.pricing-card h2 {
    font-size: 8rem;
    color: var(--main-color);
    margin: 2rem 0;
    font-family: 'Inter', sans-serif;
    text-shadow: 0 0 20px rgba(0, 225, 255, 0.3);
}

.pricing-card h2 span {
    font-size: 2.5rem;
    color: var(--text-color);
}

.price-note {
    font-size: 1.6rem;
    color: #bbb;
    margin-bottom: 4rem;
}

.features {
    list-style: none;
    text-align: left;
    margin-bottom: 5rem;
}

.features li {
    font-size: 2rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.features li i {
    color: var(--main-color);
    font-size: 2.5rem;
}

/* Portfolio Section */
.portfolio-slider-wrapper {
    position: relative;
    width: 100%;
    max-width: 650px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.port-carousel-container {
    width: 100%;
    max-width: 450px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
    padding: 2rem 1rem;
}

.port-carousel-inner {
    display: flex;
    width: 200%;
    transition: transform 0.6s cubic-bezier(0.65, 0, 0.35, 1);
}

.port-carousel-slide {
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;
}

.portfolio-card {
    width: 100%;
    max-width: 420px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: 0.4s;
}

.portfolio-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4), var(--glow);
}

.portfolio-arrow {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 3rem;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    transition: 0.3s;
}

.portfolio-arrow:hover {
    background: var(--main-color);
    box-shadow: var(--glow);
    color: #000;
}

.left-arrow {
    left: 0;
}

.right-arrow {
    right: 0;
}

@media (max-width: 768px) {
    .portfolio-arrow {
        width: 45px;
        height: 45px;
        font-size: 2rem;
        top: 40%;
    }
}

/* Portfolio Navigation Dots */
.port-carousel-nav {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    z-index: 10;
}

.port-carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: 0.3s;
}

.port-carousel-dot.active {
    background: var(--main-color);
    box-shadow: 0 0 10px var(--main-color);
    width: 20px;
    border-radius: 10px;
}

.portfolio-box {
    position: relative;
    overflow: hidden;
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: var(--border-radius) var(--border-radius) 0 0;
    padding: 0;
}

.portfolio-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--border-radius) var(--border-radius) 0 0;
    transition: transform 0.6s ease;
}

.portfolio-card:hover .portfolio-box img {
    transform: scale(1.05);
}

.portfolio-info {
    width: 100%;
    padding: 3rem 4rem;
    border-radius: 0 0 var(--border-radius) var(--border-radius);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.2rem;
    border-top: 1px solid rgba(0, 225, 255, 0.2);
}

.portfolio-info h4 {
    font-size: 2.8rem;
    color: var(--main-color);
    font-weight: 600;
}

.portfolio-info p {
    font-size: 1.8rem;
    color: #ccc;
    line-height: 1.6;
}

.portfolio-info a {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.8rem;
    color: #fff;
    background: var(--gradient-color);
    padding: 1.2rem 3rem;
    border-radius: 3rem;
    width: fit-content;
    transition: 0.3s;
    font-weight: 600;
    margin-top: 0.5rem;
}

.portfolio-info a:hover {
    box-shadow: var(--glow);
    transform: scale(1.05);
}

/* About Section */
.about {
    display: flex;
    align-items: center;
    gap: 8rem;
    justify-content: center;
    margin-bottom: 5rem;
}

.about-img {
    flex: 1;
    display: flex;
    justify-content: center;
}

.glow-circle {
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: center;
    align-items: center;
    border: 3px solid var(--main-color);
    box-shadow: 0 0 50px rgba(0, 225, 255, 0.3), inset 0 0 40px rgba(0, 225, 255, 0.2);
    position: relative;
    animation: float 5s ease-in-out infinite;
    overflow: hidden;
}

.glow-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
}

@keyframes float {
    0% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0); }
}

.about-content {
    flex: 1.2;
    padding: 6rem;
}

.about-content h3 {
    font-size: 2.8rem;
    margin-bottom: 2.5rem;
    color: var(--main-color);
}

.about-content p {
    font-size: 2rem;
    line-height: 1.8;
    color: #ccc;
    margin-bottom: 4rem;
}

.skills {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.skill-tag {
    background: rgba(255,255,255,0.05);
    padding: 1.2rem 2.5rem;
    border-radius: 3rem;
    font-size: 1.8rem;
    border: 1px solid rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: 0.3s;
}

.skill-tag:hover {
    border-color: var(--main-color);
    box-shadow: 0 0 20px rgba(0, 225, 255, 0.4);
    background: rgba(0, 225, 255, 0.1);
    transform: translateY(-5px);
}

.skill-tag i {
    font-size: 2.5rem;
    color: var(--main-color);
}

/* Footer */
.footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 4rem 9%;
    border-radius: 0;
    border-top: 1px solid var(--glass-border);
    border-bottom: none;
    border-left: none;
    border-right: none;
}

.footer-text p {
    font-size: 1.6rem;
    color: #bbb;
}

.footer-iconTop a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 1.5rem;
    background: var(--gradient-color);
    border-radius: 1rem;
    transition: 0.3s ease;
}

.footer-iconTop a:hover {
    box-shadow: var(--glow);
    transform: translateY(-5px);
}

.footer-iconTop a i {
    font-size: 2.8rem;
    color: #fff;
}

/* Reveal Animation */
.reveal {
    opacity: 0;
    transform: translateY(60px);
    transition: all 0.9s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 1200px) {
    html {
        font-size: 47%;
    }
    .slide-content h1 {
        font-size: 6.5rem;
    }
}

@media (max-width: 991px) {
    .header {
        padding: 2rem 5%;
    }
    section {
        padding: 12rem 5% 4rem;
    }
    .slide-content {
        left: 5%;
        padding: 4rem;
    }
    .about {
        flex-direction: column;
    }
    .about-content {
        width: 100%;
        text-align: center;
    }
    .about-content h2 {
        text-align: center !important;
    }
    .skills {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 40%; /* อ่านง่ายขึ้นในมือถือ */
    }

    .header {
        padding: 1.5rem 5%;
    }

    #menu-icon {
        display: block;
    }

    .navbar {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        padding: 1rem 5%;
        background: rgba(4, 8, 20, 0.98);
        backdrop-filter: blur(25px);
        border-top: 1px solid rgba(255,255,255,0.05);
        display: none;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .navbar.active {
        display: flex; /* ใช้ flex เพื่อจัดกลางเมนูแนวตั้ง */
    }

    .header-center {
        order: 1;
        justify-content: flex-start;
        flex: none;
    }

    .nav-contact-container {
        order: 2;
        flex: 1;
        justify-content: flex-end;
        margin-right: 2rem;
    }

    #menu-icon {
        order: 3;
    }

    .navbar a {
        display: block;
        font-size: 2.2rem;
        margin: 2rem 0;
    }

    .hero-slider {
        padding: 5rem 0 6rem;
        height: auto;
    }

    .carousel-container {
        width: 92%;
        aspect-ratio: auto;
    }

    .carousel-inner, .carousel-slide {
        height: auto;
    }

    .carousel-slide img {
        height: auto;
        display: block;
    }

    .slider-arrows {
        display: flex; /* ยังคงให้เห็นปุ่มลูกศรในมือถือ (ขนาดเล็กลง) */
        padding: 0 5%;
    }

    .slider-arrows button {
        width: 40px;
        height: 40px;
        font-size: 2rem;
    }

    .about {
        flex-direction: column;
        gap: 4rem;
    }

    .glow-circle {
        width: 250px;
        height: 250px;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 34%; /* อ่านง่ายขึ้นในมือถือจอเล็ก */
    }

    .slide-content h1 {
        font-size: 4rem;
    }

    .pricing-card {
        padding: 4rem 2.5rem;
    }

    .pricing-card h2 {
        font-size: 6rem;
    }
}

/* ===== ปุ่มมือถือ - อ่านง่ายขึ้น ===== */
@media (max-width: 768px) {
    /* ปุ่มทั่วไป */
    .btn {
        font-size: 2rem;
        padding: 1.6rem 3.5rem;
    }

    /* ปุ่มใน Hero Slider เล็กลงเพื่อไม่ให้บังรูป */
    .btn-box-hero .btn {
        font-size: 1.4rem;
        padding: 0.9rem 2rem;
        border-radius: 8px;
    }

    /* ปุ่ม nav ติดต่อจ้างงาน */
    .nav-contact-btn {
        font-size: 1.8rem;
        padding: 1.2rem 2.4rem;
    }

    /* hero slider ในมือถือให้เป็นสเกลแบบในรูป */
    .carousel-container {
        width: 92%;
        border-radius: 16px;
        aspect-ratio: auto;
    }

    /* portfolio info ปุ่ม */
    .portfolio-info a {
        font-size: 2rem;
        padding: 1.4rem 3rem;
    }
}

@media (max-width: 480px) {
    .btn {
        font-size: 2.2rem;
        padding: 1.8rem 3.5rem;
    }

    .hero-slider {
        height: auto;
        padding-top: 8rem;
        padding-bottom: 3.5rem;
    }

    .carousel-container {
        width: 92%;
        border-radius: 16px;
        aspect-ratio: auto;
    }
}
