.kore-hero-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    background: #000;
    /* Fallback color */
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.kore-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.particles-js-canvas {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 2;
}

.kore-hero-content {
    position: relative;
    z-index: 3;
    padding: 20px;
    max-width: 900px;
    width: 100%;
    transition: all 0.5s ease;
}

.kore-hero-logo {
    display: inline-block;
    line-height: 0;
}

.kore-hero-logo img {
    margin-bottom: 20px;
}

.kore-hero-title {
    font-weight: 700;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.kore-hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    justify-content: center;
}

.kore-hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 15px 40px;
    background: #fff;
    color: #000;
    text-decoration: none;
    font-weight: 600;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.kore-hero-btn:hover {
    background: #ccc;
    transform: scale(1.05);
}

.kore-hero-icon {
    color: #fff;
    text-decoration: none;
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-20px);
    }

    60% {
        transform: translateY(-10px);
    }
}

/* Custom Cursor */
.kore-custom-cursor {
    cursor: none !important;
}

.kore-cursor-follower {
    position: fixed;
    width: 30px;
    height: 30px;
    background-size: contain;
    background-repeat: no-repeat;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    display: none;
}

/* Responsiveness */
@media (max-width: 768px) {
    .kore-hero-logo img {
        height: 300px;
        width: auto;
    }
    .kore-hero-cta {
        flex-direction: column;
        align-items: stretch;
    }
    .kore-hero-btn {
        width: 100%;
    }
}
