/* =========================================
   1. RESET & VARIABLES
   ========================================= */
:root {
    --bg-color: transparent; 
    --text-color: #E6E6E6;
    --accent-color: #FFFFFF;
    --border-color: rgba(255, 255, 255, 0.1);
    --font-main: 'Space Grotesk', sans-serif;
    --font-display: 'Syncopate', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { cursor: none; }

body {
    background-color: #050505;
    color: var(--text-color);
    font-family: var(--font-main);
    overflow-x: hidden;
    line-height: 1.5;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* =========================================
   2. MOVING GRADIENT & GLASS BACKGROUND
   ========================================= */
.global-fluid-bg {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: -2;
    background: #000;
    background-image: 
        radial-gradient(at 0% 0%, hsla(253,16%,7%,1) 0, transparent 50%), 
        radial-gradient(at 50% 0%, hsla(225,39%,30%,1) 0, transparent 50%), 
        radial-gradient(at 100% 0%, hsla(339,49%,30%,1) 0, transparent 50%);
    background-size: 200% 200%;
    animation: auroraMove 15s ease infinite;
}

@keyframes auroraMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.glass-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: -1;
    opacity: 0.07;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='1'/%3E%3C/svg%3E");
    pointer-events: none;
}

/* =========================================
   3. UI COMPONENTS (GLASS STYLES)
   ========================================= */
.cursor-dot, .cursor-outline {
    position: fixed; top: 0; left: 0;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: 9999;
    pointer-events: none;
}
.cursor-dot { width: 8px; height: 8px; background-color: white; }
.cursor-outline { width: 40px; height: 40px; border: 1px solid rgba(255, 255, 255, 0.5); transition: width 0.2s, height 0.2s; }

.navbar {
    position: fixed; top: 0; width: 100%;
    padding: 20px 40px;
    display: flex; justify-content: space-between; align-items: center;
    z-index: 100;
    background: rgba(5, 5, 5, 0.2);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.logo { font-family: var(--font-display); font-weight: 700; font-size: 1.2rem; letter-spacing: 2px; }
.badge { font-family: var(--font-main); font-size: 0.7rem; vertical-align: super; opacity: 0.7; }
.nav-menu { display: flex; gap: 40px; }
.nav-link { font-size: 0.9rem; font-weight: 600; letter-spacing: 1px; transition: opacity 0.3s; }
.nav-link:hover { opacity: 0.5; }
.menu-toggle { display: none; }

/* =========================================
   4. HERO SECTION
   ========================================= */
.hero-section {
    height: 100vh;
    display: flex;
    align-items: center; 
    padding: 0 60px;
    border-bottom: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
    background: rgba(5, 5, 5, 0.3);
    backdrop-filter: blur(5px);
}

.hero-image-wrapper {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    z-index: 0; pointer-events: none;
}
.hero-bg { width: 100%; height: 100%; object-fit: cover; opacity: 0.5; }
.overlay-gradient {
    position: absolute; bottom: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to bottom, rgba(5,5,5,0.1) 0%, rgba(5,5,5,1) 95%);
    z-index: 1;
}

.hero-container {
    width: 100%; max-width: 1400px; margin: 0 auto;
    display: flex; justify-content: space-between; align-items: flex-end;
    height: 100%; padding-bottom: 80px; position: relative; z-index: 2;
}

.hero-content {
    max-width: 800px; display: flex; flex-direction: column; justify-content: center; padding-bottom: 40px;
}

.hero-label { font-size: 1.2rem; margin-bottom: 10px; letter-spacing: 2px; color: #ccc; font-family: var(--font-display); }
.hero-title {
    font-family: var(--font-display); font-size: clamp(3rem, 7vw, 7rem);
    line-height: 0.9; text-transform: uppercase; margin-bottom: 30px;
}
.highlight-text { color: #fff; }

.hero-manifesto {
    font-size: 1rem; max-width: 600px; color: #bbb; margin-bottom: 50px;
    font-weight: 300; line-height: 1.7; text-align: justify;
}

.hero-skills { display: flex; flex-wrap: wrap; gap: 15px; position: relative; z-index: 10; }
.skill-toggle {
    font-family: var(--font-display); font-size: 0.8rem; padding: 12px 24px;
    border-radius: 50px; color: #fff; transition: all 0.3s ease; cursor: pointer;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
}
.skill-toggle:hover {
    background-color: #fff; color: #000; transform: translateY(-3px);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.hero-scroll-right { display: flex; flex-direction: column; align-items: center; gap: 20px; margin-bottom: 10px; }
.scroll-text { font-size: 0.75rem; letter-spacing: 3px; writing-mode: vertical-rl; text-orientation: mixed; color: #fff; font-family: var(--font-display); opacity: 0.8; }
.scroll-line { width: 1px; height: 80px; background: rgba(255,255,255,0.3); position: relative; overflow: hidden; }
.scroll-line::after { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: #fff; animation: scrollDrop 2s infinite; }
@keyframes scrollDrop { 0% { transform: translateY(-100%); } 100% { transform: translateY(100%); } }

/* =========================================
   5. OTHER SECTIONS
   ========================================= */
.marquee-wrapper {
    padding: 40px 0; border-bottom: 1px solid var(--border-color); overflow: hidden; white-space: nowrap;
    background: rgba(5, 5, 5, 0.4); backdrop-filter: blur(10px);
}
.marquee-content { display: inline-block; animation: scroll 20s linear infinite; font-family: var(--font-display); font-size: 4rem; color: rgba(255,255,255,0.1); }
@keyframes scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

.projects-section { padding: 100px 40px; background: rgba(5, 5, 5, 0.4); backdrop-filter: blur(10px); border-bottom: 1px solid var(--border-color); }
.section-header { display: flex; align-items: baseline; gap: 20px; margin-bottom: 60px; }
.section-number { font-family: var(--font-display); color: #666; font-size: 1.5rem; }
.section-title { font-size: 2rem; font-weight: 300; letter-spacing: 1px; }

.project-item {
    display: flex; justify-content: space-between; align-items: center;
    padding: 40px 20px;
    border-top: 1px solid var(--border-color);
    position: relative; transition: all 0.3s ease;
}
.project-item:hover {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    padding-left: 40px;
}
.project-name { font-family: var(--font-display); font-size: 3rem; margin-left: auto; margin-right: auto; }
.p-id, .p-cat, .project-year { color: #888; }
.hover-reveal {
    position: fixed; width: 300px; height: 400px; top: 50%; left: 50%;
    transform: translate(-50%, -50%) scale(0); z-index: -1; pointer-events: none;
    opacity: 0; transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    background-size: cover; background-position: center; filter: grayscale(100%);
}
.project-item:hover .hover-reveal { opacity: 0.6; transform: translate(-50%, -50%) scale(1) rotate(-5deg); }

.about-section { padding: 100px 40px; border-bottom: 1px solid var(--border-color); background: rgba(5, 5, 5, 0.4); backdrop-filter: blur(10px); }
.grid-layout { display: grid; grid-template-columns: 1fr 2fr; gap: 60px; }
.label { font-size: 0.8rem; letter-spacing: 2px; color: #666; display: block; margin-bottom: 20px; }
.tech-list li { margin-bottom: 10px; font-family: var(--font-display); font-size: 0.9rem; color: #888; }
.manifesto { font-size: 2rem; font-weight: 300; line-height: 1.4; color: #ccc; }

/* =========================================
   6. FOOTER & CONTACT
   ========================================= */
footer {
    padding: 100px 60px 40px;
    border-top: 1px solid var(--border-color);
    background: rgba(5, 5, 5, 0.6);
    backdrop-filter: blur(15px);
}
.contact-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 80px; margin-bottom: 100px; }
.footer-title { font-family: var(--font-display); font-size: 4rem; line-height: 0.9; margin-bottom: 50px; color: #fff; }

.contact-subtext {
    color: #888;
    font-size: 1rem;
    margin-bottom: 30px;
    max-width: 400px;
    line-height: 1.6;
}

.contact-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 400px;
}

.btn-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 0;
    background: transparent; 
    border: 1px solid rgba(255, 255, 255, 0.4); 
    color: #fff;
    padding: 20px; 
    font-family: var(--font-display); 
    font-size: 0.9rem; 
    cursor: pointer; 
    transition: all 0.3s; 
    width: 100%;
}

.btn-submit i {
    font-size: 1.5rem;
}

.btn-whatsapp:hover { 
    background: #25D366;
    color: #000; 
    border-color: #25D366;
    transform: translateY(-3px);
    box-shadow: 0 0 20px rgba(37, 211, 102, 0.3);
}

.btn-email:hover { 
    background: #fff; 
    color: #000; 
    border-color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.contact-info-wrapper { display: flex; flex-direction: column; justify-content: flex-end; gap: 60px; }
.info-block .label { display: block; font-size: 0.7rem; letter-spacing: 2px; color: #666; margin-bottom: 20px; font-family: var(--font-display); }
.email-link { font-size: 1.5rem; color: #fff; font-weight: 300; text-decoration: none; transition: opacity 0.3s; }
.email-link:hover { opacity: 0.6; }

.social-icons { display: flex; gap: 20px; }
.social-btn {
    width: 60px; height: 60px; border: 1px solid #333; display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem; color: #fff; transition: all 0.3s ease;
    background: rgba(255,255,255,0.05);
}
.social-btn:hover { border-color: #fff; background: #fff; color: #000; transform: translateY(-5px); }
.footer-bottom { display: flex; justify-content: space-between; align-items: flex-end; margin-top: 50px; }
.copyright { font-size: 0.8rem; color: #444; font-family: var(--font-display); line-height: 1.5; }

/* =========================================
   7. WORKS PAGE STYLES
   ========================================= */
.works-header {
    padding: 150px 40px 80px;
    border-bottom: 1px solid var(--border-color);
    background: rgba(5, 5, 5, 0.2);
    backdrop-filter: blur(5px);
}
.works-header h1 {
    font-family: var(--font-display); font-size: 10vw; line-height: 0.85; color: #fff;
}

.work-category {
    padding: 100px 40px; border-bottom: 1px solid var(--border-color);
    background: rgba(5, 5, 5, 0.2); backdrop-filter: blur(5px);
}
.cat-title {
    font-family: var(--font-display); font-size: 1.5rem; color: #888;
    margin-bottom: 60px; display: block;
}

.web-card {
    border: 1px solid var(--border-color); margin-bottom: 60px; transition: transform 0.3s;
    background: rgba(255, 255, 255, 0.02); backdrop-filter: blur(10px);
}
.web-card:hover { border-color: #555; background: rgba(255, 255, 255, 0.05); }

.web-preview { border-bottom: 1px solid var(--border-color); position: relative; overflow: hidden; }
.browser-bar {
    padding: 10px 15px; background: rgba(0, 0, 0, 0.4); display: flex; gap: 8px; align-items: center;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.dot { width: 10px; height: 10px; border-radius: 50%; }
.red { background: #ff5f56; }
.yellow { background: #ffbd2e; }
.green { background: #27c93f; }
.url { margin-left: 15px; font-size: 0.8rem; color: #aaa; font-family: monospace; }
.img-container img { width: 100%; display: block; opacity: 0.9; }

.web-info { padding: 30px; }
.web-info h3 { font-family: var(--font-display); font-size: 2rem; margin-bottom: 15px; color: #fff; }
.web-info p { color: #bbb; margin-bottom: 25px; max-width: 600px; }
.btn-visit {
    display: inline-block; padding: 12px 30px; border: 1px solid #fff; color: #fff;
    font-size: 0.8rem; font-weight: 600; transition: all 0.3s;
}
.btn-visit:hover { background: #fff; color: #000; }

.gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; }
.gallery-item img {
    width: 100%; height: 100%; object-fit: cover; filter: grayscale(100%) brightness(0.8);
    transition: all 0.5s ease; border: 1px solid var(--border-color);
}
.gallery-item:hover img { filter: grayscale(0%) brightness(1); border-color: #fff; }

.stats-container { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; margin-bottom: 60px; }
.stat-box {
    border: 1px solid var(--border-color); padding: 40px; text-align: center;
    background: rgba(255, 255, 255, 0.02); backdrop-filter: blur(5px); transition: transform 0.3s;
}
.stat-box:hover { background: rgba(255, 255, 255, 0.05); transform: translateY(-5px); border-color: #fff; }
.stat-num { font-family: var(--font-display); font-size: 4rem; color: #fff; line-height: 1; }
.stat-label { margin-top: 10px; color: #888; letter-spacing: 2px; font-size: 0.8rem; }

.proof-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.proof-item { position: relative; border: 1px solid var(--border-color); }
.proof-item img { width: 100%; display: block; opacity: 0.8; }
.proof-tag { position: absolute; top: 10px; left: 10px; background: #000; color: #fff; padding: 5px 10px; font-size: 0.7rem; border: 1px solid #333; }

/* =========================================
   8. MOBILE ADJUSTMENTS
   ========================================= */
@media (max-width: 768px) {
    .hero-section { padding: 0 20px; }
    .hero-container { flex-direction: column; align-items: flex-start; justify-content: center; }
    .hero-scroll-right { display: none; }
    .hero-title { font-size: 14vw; }
    .hero-manifesto { text-align: left; }
    
    .nav-menu { display: none; }
    .project-item { flex-direction: column; align-items: flex-start; gap: 10px; }
    .project-name { font-size: 2rem; margin-left: 0; }
    .grid-layout { grid-template-columns: 1fr; }
    
    footer { padding: 60px 20px; }
    .contact-grid { grid-template-columns: 1fr; gap: 60px; }
    .footer-title { font-size: 3rem; }
    
    .works-header h1 { font-size: 15vw; }
    .stats-container, .proof-grid { grid-template-columns: 1fr; }
    .stat-num { font-size: 3rem; }
}

/* =========================================
   MASONRY GALLERY
   ========================================= */
.masonry-grid {
    column-count: 3;
    column-gap: 20px;
    padding: 20px 0;
}

.masonry-item {
    break-inside: avoid;
    margin-bottom: 20px;
    position: relative;
    cursor: pointer;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.masonry-item img {
    width: 100%;
    display: block;
    transition: transform 0.5s ease;
    filter: grayscale(100%);
}

.masonry-item:hover img {
    transform: scale(1.05);
    filter: grayscale(0%);
}

.overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.masonry-item:hover .overlay {
    opacity: 1;
}

.view-text {
    color: #fff;
    font-family: var(--font-display);
    font-size: 1rem;
    letter-spacing: 2px;
    border: 1px solid #fff;
    padding: 10px 20px;
}

/* =========================================
   LIGHTBOX
   ========================================= */
.lightbox-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0; top: 0;
    width: 100%; height: 100%;
    background-color: rgba(0,0,0,0.95);
    backdrop-filter: blur(10px);
    justify-content: center;
    align-items: center;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90vh;
    box-shadow: 0 0 50px rgba(255,255,255,0.1);
    animation: zoomIn 0.3s ease;
}

.close-btn {
    position: absolute;
    top: 30px; right: 40px;
    color: #fff;
    font-size: 1.2rem;
    font-family: var(--font-display);
    cursor: pointer;
    border: 1px solid #fff;
    padding: 10px 20px;
    transition: all 0.3s;
}
.close-btn:hover { background: #fff; color: #000; }

@keyframes zoomIn {
    from { transform: scale(0.9); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

@media (max-width: 768px) {
    .masonry-grid { column-count: 1; }
}

/* =========================================
   LUME LABS SECTION
   ========================================= */
.lume-section {
    padding: 100px 40px;
    border-bottom: 1px solid var(--border-color);
    background: rgba(5, 5, 5, 0.2);
    backdrop-filter: blur(5px);
}

.lume-container {
    max-width: 1200px;
    margin: 0 auto;
}

.lume-card {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    transition: transform 0.5s ease;
}

.lume-card:hover {
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 0 50px rgba(255, 255, 255, 0.05);
}

.lume-content {
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.lume-badge {
    font-family: var(--font-display);
    font-size: 0.8rem;
    color: #000;
    background: #fff;
    padding: 5px 10px;
    display: inline-block;
    width: fit-content;
    margin-bottom: 20px;
    font-weight: 700;
}

.lume-title {
    font-family: var(--font-display);
    font-size: 4rem;
    color: #fff;
    line-height: 1;
    margin-bottom: 30px;
}
.tm { font-size: 1rem; vertical-align: super; }

.lume-bio {
    color: #ccc;
    font-size: 1.1rem;
    margin-bottom: 40px;
    max-width: 500px;
    line-height: 1.6;
}

.lume-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 30px;
}
.lume-service {
    font-family: var(--font-display);
    font-size: 0.8rem;
    color: #888;
    border-bottom: 1px solid #333;
    padding-bottom: 5px;
}

.lume-socials {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
}
.lume-sock-link {
    width: 40px; height: 40px;
    border: 1px solid rgba(255,255,255,0.2);
    display: flex; align-items: center; justify-content: center;
    color: #fff;
    transition: all 0.3s;
}
.lume-sock-link:hover {
    background: #fff;
    color: #000;
    border-color: #fff;
}

.lume-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 1rem;
    color: #000;
    background: #fff;
    padding: 15px 30px;
    width: fit-content;
    transition: all 0.3s;
}
.lume-btn:hover {
    padding-left: 40px;
}

.lume-visual {
    position: relative;
    height: 100%;
    min-height: 400px;
    overflow: hidden;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.lume-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: filter 0.5s;
}
.lume-card:hover .lume-visual img { filter: grayscale(0%); }

.lume-logo-img {
    width: 300px;
    max-width: 80%;
    margin-bottom: 30px;
    display: block;
}

@media (max-width: 768px) {
    .lume-card { grid-template-columns: 1fr; }
    .lume-visual { height: 250px; border-left: none; border-top: 1px solid rgba(255,255,255,0.1); }
    .lume-title { font-size: 3rem; }
    .lume-content { padding: 40px 20px; }
    .lume-logo-img { width: 200px; }
}

/* =========================================
   APEX COOLING SOLUTIONS SECTION
   ========================================= */
.apex-section {
    padding: 100px 40px;
    border-bottom: 1px solid var(--border-color);
    background: rgba(5, 5, 5, 0.2);
    backdrop-filter: blur(5px);
}

.apex-container {
    max-width: 1200px;
    margin: 0 auto;
}

.apex-card {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    transition: transform 0.5s ease;
}

.apex-card:hover {
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 0 50px rgba(255, 255, 255, 0.05);
}

.apex-content {
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.apex-badge {
    font-family: var(--font-display);
    font-size: 0.8rem;
    color: #000;
    background: #fff;
    padding: 5px 10px;
    display: inline-block;
    width: fit-content;
    margin-bottom: 20px;
    font-weight: 700;
}

.apex-logo-img {
    width: 300px;
    max-width: 80%;
    margin-bottom: 30px;
    display: block;
}

.apex-bio {
    color: #ccc;
    font-size: 1.1rem;
    margin-bottom: 40px;
    max-width: 540px;
    line-height: 1.6;
}

.apex-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 30px;
}

.apex-service {
    font-family: var(--font-display);
    font-size: 0.8rem;
    color: #888;
    border-bottom: 1px solid #333;
    padding-bottom: 5px;
}

.apex-socials {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
}

.apex-sock-link {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all 0.3s;
}

.apex-sock-link:hover {
    background: #fff;
    color: #000;
    border-color: #fff;
}

.apex-visual {
    position: relative;
    height: 100%;
    min-height: 400px;
    overflow: hidden;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.apex-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: filter 0.5s;
}

.apex-card:hover .apex-visual img {
    filter: grayscale(0%);
}

@media (max-width: 768px) {
    .apex-card {
        grid-template-columns: 1fr;
    }

    .apex-visual {
        height: 250px;
        border-left: none;
        border-top: 1px solid rgba(255,255,255,0.1);
    }

    .apex-content {
        padding: 40px 20px;
    }

    .apex-logo-img {
        width: 200px;
    }

    .apex-grid {
        grid-template-columns: 1fr;
    }
}