body {
    font-family: 'Inter', sans-serif;
    background-color: #1c1c1c;
    color: white;
}
[data-theme="light"] body {
    background-color: #ffffff;
    color: #09090b;
}
[data-theme="light"] header {
    background: rgba(255, 255, 255, 0.8) !important;
    border-bottom-color: rgba(228, 228, 231, 0.5) !important;
}
[data-theme="light"] #mobileMenu {
    background: #ffffff !important;
}
[data-theme="light"] #mobileMenu > div > div {
    border-bottom-color: #e4e4e7 !important;
}
[data-theme="light"] nav a {
    color: #71717a !important;
}
[data-theme="light"] nav a:hover {
    color: #09090b !important;
    background: #f4f4f5 !important;
}
[data-theme="light"] .text-white {
    color: #09090b !important;
}
[data-theme="light"] .text-zinc-300,
[data-theme="light"] .text-zinc-400 {
    color: #71717a !important;
}
[data-theme="light"] .bg-\[\#161616\] {
    background-color: #f9fafb !important;
}
[data-theme="light"] .border-zinc-800 {
    border-color: #e4e4e7 !important;
}
header nav {
    height: 80px;
}
header nav a {
    height: 100%;
    display: flex;
    align-items: center;
    position: relative;
}
header nav a::after {
    content: "";
    width: 100%;
    height: 3px;
    background-color: #00e676;
    position: absolute;
    bottom: 0;
    left: 0;
    transform: translateY(1px) scaleX(0);
    transform-origin: bottom right;
    transition: transform 0.3s ease;
}
header nav a:hover::after {
    transform: translateY(1px) scaleX(1);
    transform-origin: bottom left;
}
@media (min-width: 1200px) {
    .max-w-\[1240px\] {
        max-width: 1648px;
    }
}
.hero-container {
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    height: 520px;
}
.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.5s ease;
}
.hero-slide.active {
    opacity: 1;
}
.hero-slide .text-white,
.hero-container .text-white {
    color: #ffffff !important;
}
@media (max-width: 767px) {
    .hero-container {
        height: 400px;
        border-radius: 0;
    }
    .hero-slide .absolute.bottom-0 {
        padding: 24px 16px;
    }
    .hero-slide h1,
    .hero-slide h2 {
        font-size: 28px !important;
        margin-bottom: 16px !important;
    }
    .hero-slide p {
        font-size: 14px !important;
        margin-bottom: 16px !important;
    }
}
.article-card-img {
    aspect-ratio: 1.65;
    width: 100%;
    object-fit: cover;
    border-radius: 16px;
    transition: transform 0.5s ease;
}
.article-card:hover .article-card-img {
    transform: scale(1.05);
}
.sidebar-box {
    background-color: #161616;
    border-radius: 16px;
    padding: 32px;
}
.article-tag {
    background-color: #1a1a1a;
    color: #ffffff;
    font-size: 10px;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.search-input {
    height: 48px;
    background-color: #0a0a0a;
    border: 1px solid #27272a;
    border-radius: 12px;
    padding: 0 100px 0 16px;
    width: 100%;
    color: white;
    font-size: 14px;
    outline: none;
}
.search-button {
    background-color: #00e676;
    color: #000000;
    font-weight: 800;
    font-size: 11px;
    padding: 0 20px;
    height: 36px;
    border-radius: 9999px;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}
.main-grid {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 48px;
}
@media (max-width: 1024px) {
    .main-grid {
        grid-template-columns: 1fr;
    }
    .main-grid aside {
        display: none;
    }
}
@media (max-width: 767px) {
    header .flex.items-center.gap-6 button:last-child {
        display: none;
    }
    header .flex.items-center.gap-6 {
        gap: 16px;
    }
}
