body {
    font-family: 'Inter', sans-serif;
    background-color: #0a0a0a;
    color: #e5e5e5;
}

.hero-bg {
    background-image: linear-gradient(rgba(10, 10, 10, 0.8), rgba(10, 10, 10, 1)), url('https://images.unsplash.com/photo-1550745165-9bc0b252726a?q=80&w=2400&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
}

.glassmorphism {
    background: rgba(17, 24, 39, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.accent-color {
    color: #2dd4bf;
}

.bg-accent-color {
    background-color: #2dd4bf;
}

h1,
h2,
h3 {
    font-weight: 900;
}

.fade-in-section {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in-section.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.logo-filter {
    filter: grayscale(1) invert(1) brightness(1.5);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.logo-filter:hover {
    filter: none;
    opacity: 1;
}

.ikobo-logo {
    filter: grayscale(1) contrast(0) brightness(2);
    transition: filter 0.3s ease;
}

.ikobo-logo:hover {
    filter: grayscale(0) contrast brightness(1);
}

.grid a span {
    display: inline-block;
    background: #fff;
    color: #000;
    padding: 11px 23px;
    font-size: 16px;
    line-height: normal;
}

.grid-block h3 {
    text-align: center;
    font-size: 18px;
    line-height: normal;
    padding-top: 10px;
}

.owl-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
}

.owl-nav button {
    background: rgba(0, 0, 0, 0.5);
    border: none;
    border-radius: 50% height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    pointer-events: all;
    transition: background 0.3s ease;
}

.owl-nav button:hover {
    background: rgba(0, 0, 0, 0.8);
}

.owl-nav svg {
    stroke: white;
}

@media(max-width:767px) {
    .grid a span {
        padding: 15px 14px;
        font-size: 14px;
        width: 100%;
    }

    .new-grid {
        grid-template-columns: repeat(1, minmax(0, 1fr)) !important;
    }

    .grid-block h3 {
        font-size: 16px;
        padding-top: 6px;
    }
}
