/* Premium Page Hero / Kura Header */
.kura-header {
    position: relative;
    box-sizing: border-box;
    margin: 0 auto 24px;
    max-width: min(1100px, 100%);
    width: 100%;
    text-align: left;
    padding: 20px 24px;
    background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.08) 0%, var(--star-card-background-color) 100%);
    background-color: var(--star-card-background-color);
    border: 1px solid rgba(var(--primary-rgb), 0.15);
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    overflow: hidden;
    font-size: inherit;
    font-weight: inherit;
    color: inherit;
    display: block;
    z-index: 1;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.kura-header:hover {
    border-color: rgba(var(--primary-rgb), 0.35);
    box-shadow: 0 12px 40px rgba(var(--primary-rgb), 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
}

/* Elite top border glow */
.kura-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(var(--primary-rgb), 0.8) 50%, transparent 100%);
    opacity: 0.7;
    z-index: 2;
}

/* Subtle radial glow inside */
.kura-header::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 40%;
    height: 200%;
    background: radial-gradient(circle, rgba(var(--primary-rgb), 0.06) 0%, transparent 70%);
    transform: rotate(30deg);
    pointer-events: none;
    z-index: 0;
}

.kura-header h1,
.kura-header h2 {
    position: relative;
    z-index: 2;
    margin: 0 0 8px;
    font-size: clamp(1.2rem, 2.5vw, 1.5rem);
    font-weight: 700;
    line-height: 1.3;
    color: var(--star-onemli-text-color);
    letter-spacing: -0.01em;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.kura-header h1 i,
.kura-header h2 i {
    margin-right: 10px;
    color: var(--star-button-background-color);
    filter: drop-shadow(0 0 8px rgba(var(--primary-rgb), 0.4));
    font-size: 1.1em;
}

.kura-header p {
    position: relative;
    z-index: 2;
    margin: 0;
    font-size: 0.875rem;
    line-height: 1.6;
    font-weight: 400;
    color: var(--star-onemsiz-text-color);
    max-width: 48rem;
    opacity: 0.9;
}

.kura-particles {
    display: none !important;
}

@media (max-width: 768px) {
    .kura-header {
        padding: 16px 20px;
        margin-bottom: 16px;
        border-radius: 10px;
    }

    .kura-header h1,
    .kura-header h2 {
        font-size: 1.1rem;
        margin-bottom: 6px;
    }

    .kura-header p {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .kura-header {
        padding: 14px 16px;
    }
}
