/* --- Hero Section --- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 80px;
    /* Offset for nav */
}

.hero-bg-glow {
    position: absolute;
    top: 20%;
    right: 10%;
    width: 40vw;
    height: 40vw;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, rgba(10, 10, 10, 0) 70%);
    border-radius: 50%;
    z-index: -1;
    filter: blur(60px);
}

.hero-content {
    max-width: 800px;
}

.hero-title {
    font-size: clamp(3.5rem, 8vw, 6rem);
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.hero-desc {
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    margin-bottom: 2.5rem;
    max-width: 600px;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* --- Notice Column --- */
.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
    width: 100%;
}

.notice-column-wrapper {
    flex-basis: 500px;
    flex-shrink: 0;
    background-color: var(--color-bg-card);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--color-glass-border);
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    height: 500px;
    width: 500px;
    display: flex;
    flex-direction: column;
}

.notice-header {
    background-color: rgba(0, 0, 0, 0.4);
    border-bottom: 1px solid var(--color-glass-border);
    padding: 1rem;
    color: var(--color-accent);
    text-align: center;
     
}

.notice-header h2 {
    font-size: 1.25rem;
    margin: 0;
    font-weight: 600;
     
}

.notice-body {
    flex-grow: 1;
    overflow-y: auto;
    padding: 1.5rem;
    background-color: transparent;
    /* Optional custom scrollbar */
    scrollbar-width: thin;
    scrollbar-color: transparent transparent;
    transition: scrollbar-color 0.3s ease;
}

.notice-body:hover {
    scrollbar-color: rgba(255, 255, 255, 0.2) rgba(255, 255, 255, 0.05);
}

.notice-body::-webkit-scrollbar {
    width: 6px;
}

.notice-body::-webkit-scrollbar-track {
    background: transparent;
}

.notice-body::-webkit-scrollbar-thumb {
    background: transparent;
    border-radius: 4px;
}

.notice-body:hover::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
}

.notice-body:hover::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
}

.notice-scroller {
    display: flex;
    flex-direction: column;
}

.notice-item {
    border-bottom: 1px solid var(--color-glass-border);
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.notice-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.notice-item p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 0.5rem;
}

.badge-new {
    display: inline-block;
    background-color: var(--color-accent);
    color: #000;
    font-size: 0.70rem;
    font-weight: bold;
    padding: 2px 6px;
    border-radius: 3px;
    text-transform: uppercase;
}

/* Responsive */
@media (max-width: 992px) {
    .hero-container {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        gap: 2rem;
        padding-top: 4rem;
    }

    .hero-actions {
        justify-content: center;
    }

    .notice-column-wrapper {
        flex-basis: auto;
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
        height: 400px;
    }
}
