/* Notification Banner Styles */
.notification-banner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    /*background: linear-gradient(90deg, #1c1b1a 0%, #2a2825 100%);*/
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    transition: height 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    /*border-bottom: 2px solid #f3cd76;*/
    z-index: 1000;
    background: radial-gradient(128% 100% at 50% 0%, #895300 2.6%, #682903 57.29%, #723d00 100%);
}

.notification-banner--visible {
    height: 80px;
}

/* Add margin to body when banner is visible */
body.notification-banner-active {
    padding-top: 80px;
    transition: padding-top 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.notification-banner__link {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
    color: inherit;
}

.notification-banner__content {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    gap: 15px;
    padding: 0 20px;
}

.notification-banner__emoji {
    font-size: 2rem;
    animation: bounce 2s infinite;
}

.notification-banner__text {
    /* color: #f3cd76; */
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 500;
    text-align: center;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Adjust header margin to account for fixed banner */
.header {
    margin-top: 0;
}

/* Custom Footer Styles */

.footer__columns {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
    margin: 20px 0;
}

.footer__column {
    flex: 1;
    min-width: 150px;
    margin: 10px;
}

.footer__column--logo {
    flex: unset;
    min-width: unset;
}

.footer__column-title {
    color: var(--color-title);
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 15px;
    text-align: left;
}

.footer__links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer__link {
    color: var(--color-muted);
    text-decoration: none;
    font-family: var(--font-heading);
    transition: color 0.3s ease;
    font-size: 1rem;
    text-align: left;
}

.footer__link:hover {
    color: var(--color-title);
}

.footer__logo {
    align-self: flex-start;
    margin-bottom: 0;
}

/* Custom Social Media Icons for Footer */
.footer__social-links {
    display: inline-flex;
    gap: 15px;
    margin-top: 10px;
}

.footer__social-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.footer__social-link:hover {
    transform: translateY(-3px);
}

.footer__social-icon {
    width: 30px;
    height: 30px;
    background-color: #fff3cf;
    filter: drop-shadow(rgba(0, 0, 0, 0.32) 0px 2px 3px);
}

.footer__social-icon--telegram {
    mask: url(/template/Castle/images/telegram.svg) center center / contain no-repeat;
    -webkit-mask: url(/template/Castle/images/telegram.svg) center center / contain no-repeat;
}

.footer__social-icon--chat {
    mask: url(/template/Castle/images/chat.svg) center center / contain no-repeat;
    -webkit-mask: url(/template/Castle/images/chat.svg) center center / contain no-repeat;
}

.footer__social-icon--discord {
    mask: url(/template/Castle/images/discord.svg) center center / contain no-repeat;
    -webkit-mask: url(/template/Castle/images/discord.svg) center center / contain no-repeat;
}

.footer__social-icon--forum {
    mask: url(/template/Castle/images/forum.svg) center center / contain no-repeat;
    -webkit-mask: url(/template/Castle/images/forum.svg) center center / contain no-repeat;
}

.footer__social-icon--facebook {
    mask: url(/template/Castle/images/facebook.svg) center center / contain no-repeat;
    -webkit-mask: url(/template/Castle/images/facebook.svg) center center / contain no-repeat;
}

/* Footer Info Section */
.footer__info {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(243, 205, 118, 0.2);
}

.footer__info-left {
    flex: 1;
}

.footer__info-right {
    display: flex;
    gap: 20px;
}

.footer__copyright {
    color: var(--color-text);
    margin: 0;
    font-size: 0.9rem;
    text-align: left;
}

/* Articles List Styles */
.articles-list {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.article-item {
    display: block;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    padding: 20px 15px;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.article-item:hover {
    background: rgba(0, 0, 0, 0.4);
    border-color: rgba(243, 205, 118, 0.4);
    transform: translateX(5px);
}

.article-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.article-icon {
    width: 24px;
    height: 24px;
    background-color: var(--color-title);
    mask: url(/template/Castle/images/share.svg) center center / contain no-repeat;
    -webkit-mask: url(/template/Castle/images/share.svg) center center / contain no-repeat;
    flex-shrink: 0;
}

.article-title {
    color: var(--color-text);
    font-family: var(--font-heading);
    font-size: 1rem;
    margin: 0;
    transition: color 0.3s ease;
    text-align: left;
}

.article-item:hover .article-title {
    color: var(--color-title);
}

.see-all-articles {
    display: block;
    text-align: center;
    color: var(--color-title);
    font-family: var(--font-heading);
    font-size: 1rem;
    text-decoration: none;
    margin-top: 20px;
    padding: 10px;
    border: 1px solid rgba(243, 205, 118, 0.3);
    border-radius: 4px;
    transition: all 0.3s ease;
}

.see-all-articles:hover {
    background: rgba(243, 205, 118, 0.1);
    border-color: rgba(243, 205, 118, 0.6);
    transform: translateY(-2px);
}

/* Help Center Styles */
.help-center {
    padding: 40px 0;
    min-height: calc(100vh - 200px);
    padding-top: 200px;
}

.help-center .container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.help-center h1 {
    color: var(--color-title);
    font-family: var(--font-heading);
    font-size: 3rem;
    text-align: center;
    margin-bottom: 10px;
}

.help-center h2 {
    color: var(--color-title);
    font-family: var(--font-heading);
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 30px;
}

.help-center .average-response {
    color: var(--color-text);
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 10px;
}

.help-center .complex-issues {
    color: var(--color-text);
    font-size: 1.1rem;
    text-align: center;
    margin-bottom: 40px;
}

.help-options {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.option {
    flex: 1;
    min-width: 300px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(243, 205, 118, 0.3);
    transition: all 0.3s ease;
}

.option:hover {
    background: rgba(0, 0, 0, 0.4);
    border-color: rgba(243, 205, 118, 0.6);
    transform: translateY(-5px);
}

.option h3 {
    color: var(--color-title);
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.option p {
    color: var(--color-text);
    font-size: 1rem;
    margin-bottom: 20px;
    line-height: 1.5;
}

.btn-help {
    display: inline-block;
    padding: 12px 24px;
    background: var(--color-title);
    color: #000;
    text-decoration: none;
    border-radius: 4px;
    font-family: var(--font-heading);
    font-weight: bold;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-help:hover {
    background: #fff3cf;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

.contact-method {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px;
    color: var(--color-text);
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.contact-method:hover {
    background: rgba(243, 205, 118, 0.1);
    color: var(--color-title);
    transform: translateX(5px);
}

.contact-icon {
    font-size: 1.5rem;
}

.contact-name {
    font-family: var(--font-heading);
    font-size: 1.1rem;
}

/* Responsive styles */
@media (max-width: 768px) {
    .footer__columns {
        flex-direction: column;
        align-items: center;
    }
    
    .footer__column {
        width: 100%;
        text-align: center;
        margin: 20px 0;
    }
    
    .footer__column-title {
        text-align: center;
    }
    
    .footer__links {
        align-items: center;
    }
    
    .footer__link {
        text-align: center;
    }
    
    .footer__logo {
        align-self: center;
    }
    
    .footer__info {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    
    .footer__info-right {
        justify-content: center;
    }
    
    /* Help Center Mobile Styles */
    .help-center h1 {
        font-size: 2rem;
    }
    
    .help-center h2 {
        font-size: 1.5rem;
    }
    
    .help-options {
        flex-direction: column;
    }
    
    .option {
        min-width: unset;
    }
}