
.news-card {
    background: rgba(136, 120, 204, 0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(136, 120, 204, 0.15);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    box-shadow: 0 8px 32px rgba(136, 120, 204, 0.1);
}

.news-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(136, 120, 204, 0.2);
    border-color: rgba(136, 120, 204, 0.3);
}

.news-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.news-card:hover .news-image img {
    transform: scale(1.05);
}

.news-category {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, #8878cc, #a855f7);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.news-content {
    padding: 1.5rem;
}

.news-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.8rem;
    color: #94a3b8;
}

.news-date,
.news-author {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.news-title {
    color: white;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    line-height: 1.4;
    font-family: 'Fredoka', sans-serif;
}

.news-excerpt {
    color: #94a3b8;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.news-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #a855f7;
    font-weight: 500;
    font-size: 0.9rem;
}

.read-more {
    transition: all 0.3s ease;
}

.news-card:hover .read-more {
    transform: translateX(5px);
}

.no-news-card {
    background: rgba(136, 120, 204, 0.05);
    border: 1px solid rgba(136, 120, 204, 0.1);
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    max-width: 400px;
    margin: 0 auto;
}

.apply-card {
    background: rgba(136, 120, 204, 0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(136, 120, 204, 0.15);
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 32px rgba(136, 120, 204, 0.1);
}

.apply-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(136, 120, 204, 0.2);
    border-color: rgba(136, 120, 204, 0.3);
}

.apply-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #8878cc, #a855f7);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.apply-benefits {
    list-style: none;
    padding: 0;
    margin: 0;
}

.apply-benefits li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
}

.apply-benefits li::before {
    content: '✓';
    color: #10b981;
    font-weight: bold;
    font-size: 1.1rem;
}

.gamemode-card {
    background: rgba(136, 120, 204, 0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(136, 120, 204, 0.15);
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 32px rgba(136, 120, 204, 0.1);
}

.gamemode-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(136, 120, 204, 0.2);
    border-color: rgba(136, 120, 204, 0.3);
}

.gamemode-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(136, 120, 204, 0.2), rgba(168, 85, 247, 0.2));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    border: 1px solid rgba(136, 120, 204, 0.3);
}

.discord-icon-container {
    text-align: center;
    margin-bottom: 2rem;
}

.discord-features .feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
    color: #e2e8f0;
}

.discord-features .feature-item i {
    margin-right: 0.5rem;
    flex-shrink: 0;
}

.discord-widget {
    background: rgba(88, 101, 242, 0.1);
    border: 1px solid rgba(88, 101, 242, 0.3);
    border-radius: 16px;
    padding: 1.5rem;
    margin-top: 2rem;
    text-align: center;
}

.discord-widget-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.discord-widget-header i {
    color: #5865f2;
}

.discord-widget h4 {
    color: white;
    margin-bottom: 0.5rem;
    font-family: 'Fredoka', sans-serif;
}

.discord-status {
    color: #10b981;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.discord-members {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.member-stat {
    text-align: center;
}

.member-count {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #a855f7;
    margin-bottom: 0.25rem;
}

.member-label {
    font-size: 0.8rem;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.faq-item {
    background: rgba(136, 120, 204, 0.05);
    border: 1px solid rgba(136, 120, 204, 0.15);
    border-radius: 16px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-button {
    background: transparent;
    border: none;
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 1.5rem;
    width: 100%;
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s ease;
    font-family: 'Fredoka', sans-serif;
    box-shadow: none;
}

.faq-button:hover {
    background: rgba(136, 120, 204, 0.1);
    color: #a855f7;
}

.faq-button:focus {
    box-shadow: none;
    outline: none;
    background: rgba(136, 120, 204, 0.1);
    color: #a855f7;
}

.faq-button::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: bold;
    transition: transform 0.3s ease;
    color: #a855f7;
}

.faq-button:not(.collapsed) {
    background: rgba(136, 120, 204, 0.1);
    color: #a855f7;
}

.faq-button:not(.collapsed)::after {
    transform: rotate(45deg);
}

.accordion-collapse {
    border-top: 1px solid rgba(136, 120, 204, 0.1);
}

.faq-answer {
    background: rgba(26, 26, 46, 0.6);
    color: #94a3b8;
    line-height: 1.6;
    padding: 1.5rem;
    border: none;
    margin: 0;
}

.accordion-button:not(.collapsed) {
    color: #a855f7 !important;
    background-color: rgba(136, 120, 204, 0.1) !important;
    box-shadow: none !important;
}

.accordion-button:focus {
    z-index: 3;
    border-color: rgba(136, 120, 204, 0.3) !important;
    outline: 0;
    box-shadow: none !important;
}

.accordion-body {
    padding: 1.5rem !important;
    background: rgba(26, 26, 46, 0.6) !important;
    color: #94a3b8 !important;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .faq-button {
        padding: 1rem;
        font-size: 1rem;
    }
    
    .faq-answer,
    .accordion-body {
        padding: 1rem !important;
    }
}

@media (max-width: 768px) {
    .news-card {
        margin-bottom: 1.5rem;
    }
    
    .news-image {
        height: 150px;
    }
    
    .news-content {
        padding: 1rem;
    }
    
    .news-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .apply-card {
        margin-bottom: 1.5rem;
    }
    
    .gamemode-card {
        margin-bottom: 1.5rem;
    }
    
    .gamemode-icon {
        width: 60px;
        height: 60px;
    }
    
    .discord-members {
        gap: 1rem;
    }
}

@media (max-width: 576px) {
    .news-image {
        height: 120px;
    }
    
    .news-title {
        font-size: 1.1rem;
    }
    
    .apply-icon {
        width: 50px;
        height: 50px;
    }
    
    .gamemode-icon {
        width: 50px;
        height: 50px;
    }
    
    .discord-members {
        flex-direction: column;
        gap: 0.5rem;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.news-card,
.apply-card,
.gamemode-card,
.faq-item {
    animation: fadeInUp 0.6s ease forwards;
}

.news-loading {
    background: rgba(136, 120, 204, 0.05);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    color: #94a3b8;
}

.loading-pulse {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: .5;
    }
}

.discord-widget-container {
    background: rgba(136, 120, 204, 0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(136, 120, 204, 0.15);
    border-radius: 20px;
    padding: 1rem;
    box-shadow: 0 8px 32px rgba(136, 120, 204, 0.1);
    overflow: hidden;
}

.discord-iframe {
    border-radius: 12px;
    background: transparent;
    max-width: 100%;
}

.discord-features .feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
    color: #e2e8f0;
    font-weight: 500;
}

.discord-features .feature-item i {
    margin-right: 0.5rem;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .discord-widget-container {
        padding: 0.5rem;
        margin-bottom: 2rem;
    }
    
    .discord-iframe {
        height: 400px;
    }
}

@media (max-width: 576px) {
    .discord-iframe {
        height: 350px;
    }
    
    .discord-features .feature-item {
        font-size: 0.9rem;
    }
}
.faq-answer-text {
    display: block;
    color: #94a3b8 !important;
    line-height: 1.6;
}

.accordion-body {
    padding: 1.5rem !important;
    background: rgba(26, 26, 46, 0.6) !important;
}

.faq-button span {
    pointer-events: none;
}

.faq-container {
    max-width: 100%;
}

.faq-item-custom {
    background: rgba(136, 120, 204, 0.05);
    border: 1px solid rgba(136, 120, 204, 0.15);
    border-radius: 16px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item-custom:hover {
    border-color: rgba(136, 120, 204, 0.25);
    box-shadow: 0 4px 16px rgba(136, 120, 204, 0.1);
}

.faq-question {
    background: transparent;
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s ease;
    font-family: 'Fredoka', sans-serif;
    user-select: none;
}

.faq-question:hover {
    background: rgba(136, 120, 204, 0.1);
    color: #a855f7;
}

.faq-question.active {
    background: rgba(136, 120, 204, 0.1);
    color: #a855f7;
    border-bottom: 1px solid rgba(136, 120, 204, 0.1);
}

.faq-icon {
    color: #a855f7;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    width: 20px;
    height: 20px;
}

.faq-question.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer.active {
    max-height: 300px;
}

.faq-answer-content {
    padding: 1.5rem;
    background: rgba(26, 26, 46, 0.6);
    color: #94a3b8;
    line-height: 1.6;
    border-top: 1px solid rgba(136, 120, 204, 0.1);
}

@media (max-width: 768px) {
    .faq-question {
        padding: 1rem;
        font-size: 1rem;
    }
    
    .faq-answer-content {
        padding: 1rem;
    }
}
.partner-slider-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.partner-slider {
    width: 100%;
    padding: 1rem 0;
}

.partner-slider .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.7;
    transition: all 0.4s ease;
    cursor: pointer;
}

.partner-slider .swiper-slide-active {
    opacity: 1;
    transform: scale(1.1);
}

.partner-slide-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 1rem;
    border-radius: 16px;
    background: rgba(136, 120, 204, 0.05);
    border: 1px solid rgba(136, 120, 204, 0.1);
    width: 100%;
    max-width: 180px;
}

.partner-slide-item:hover {
    transform: translateY(-5px);
    background: rgba(136, 120, 204, 0.1);
    border-color: rgba(136, 120, 204, 0.2);
    text-decoration: none;
}

.partner-slide-logo {
    width: 100px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(26, 26, 46, 0.8);
    border-radius: 12px;
    padding: 8px;
    margin-bottom: 0.5rem;
    overflow: hidden;
}

.partner-slide-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 6px;
    filter: brightness(0.9) grayscale(0.1);
    transition: all 0.3s ease;
}

.partner-slide-item:hover .partner-slide-logo img,
.swiper-slide-active .partner-slide-logo img {
    filter: brightness(1) grayscale(0);
    transform: scale(1.05);
}

.partner-slide-level {
    font-size: 0.7rem;
    padding: 0.25rem 0.6rem;
    border-radius: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: white;
}

.partner-slide-level.emerald-level {
    background: linear-gradient(135deg, #10b981, #059669);
}

.partner-slide-level.diamond-level {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
}

.partner-slide-level.eisen-level {
    background: linear-gradient(135deg, #6b7280, #4b5563);
}

.no-partners-slider {
    background: rgba(136, 120, 204, 0.05);
    border: 1px solid rgba(136, 120, 204, 0.1);
    border-radius: 16px;
    padding: 2rem;
    max-width: 300px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .partner-slide-item {
        max-width: 150px;
        padding: 0.8rem;
    }
    
    .partner-slide-logo {
        width: 80px;
        height: 50px;
    }
    
    .partner-slide-level {
        font-size: 0.6rem;
        padding: 0.2rem 0.5rem;
    }
}

@media (max-width: 576px) {
    .partner-slide-item {
        max-width: 130px;
        padding: 0.6rem;
    }
    
    .partner-slide-logo {
        width: 70px;
        height: 45px;
    }
}