/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #0a0f0a;
    color: #ffffff;
    line-height: 1.5;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 15, 10, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(34, 197, 94, 0.2);
    z-index: 1000;
    padding: 16px 0;
    animation: slideDown 0.8s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 1px;
    animation: fadeInLeft 1s ease-out 0.2s both;
}

@keyframes fadeInLeft {
    from {
        transform: translateX(-30px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.logo {
    width: 32px;
    height: 32px;
    border-radius: 8px;
}

.nav-links {
    display: flex;
    gap: 32px;
    animation: fadeInUp 1s ease-out 0.4s both;
}

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

.nav-links a {
    color: #a1a1aa;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #22c55e;
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: #22c55e;
    transform: translateY(-2px);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    animation: fadeInRight 1s ease-out 0.6s both;
}

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

.online-count {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #a1a1aa;
    animation: countPulse 2s ease-in-out infinite;
}

@keyframes countPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.online-dot {
    width: 8px;
    height: 8px;
    background: #ef4444;
    border-radius: 50%;
    animation: pulse 2s infinite;
    box-shadow: 0 0 10px rgba(239, 68, 68, 0.5);
}

@keyframes pulse {
    0%, 100% { 
        opacity: 1; 
        transform: scale(1);
        box-shadow: 0 0 10px rgba(239, 68, 68, 0.5);
    }
    50% { 
        opacity: 0.5; 
        transform: scale(1.2);
        box-shadow: 0 0 20px rgba(239, 68, 68, 0.8);
    }
}

.download-btn {
    background: #dc2626;
    color: #ffffff;
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.download-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.download-btn:hover {
    background: #b91c1c;
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 10px 20px rgba(220, 38, 38, 0.3);
}

.download-btn:hover::before {
    left: 100%;
}

.signin-btn {
    background: #374151;
    color: #ffffff;
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid #4b5563;
}

.signin-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transition: left 0.5s ease;
}

.signin-btn:hover {
    background: #22c55e;
    border-color: #22c55e;
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 10px 20px rgba(34, 197, 94, 0.2);
}

.signin-btn:hover::before {
    left: 100%;
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(135deg, rgba(34, 197, 94, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 30% 70%, rgba(22, 163, 74, 0.15) 0%, transparent 50%),
        linear-gradient(180deg, #0a0f0a 0%, #1a2e1a 100%);
    z-index: -1;
    animation: backgroundShift 20s ease-in-out infinite;
}

@keyframes backgroundShift {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.1) rotate(1deg); }
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(34, 197, 94, 0.1) 2px, transparent 2px),
        radial-gradient(circle at 75% 75%, rgba(22, 163, 74, 0.05) 1px, transparent 1px);
    background-size: 60px 60px, 40px 40px;
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) translateX(0px); }
    25% { transform: translateY(-10px) translateX(5px); }
    50% { transform: translateY(-5px) translateX(-5px); }
    75% { transform: translateY(-15px) translateX(3px); }
}

.hero-content {
    z-index: 1;
    animation: heroFadeIn 2s ease-out;
}

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

.hero-logo {
    margin-bottom: 32px;
    animation: logoFloat 3s ease-in-out infinite;
}

@keyframes logoFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.logo-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    margin: 0 auto;
    box-shadow: 0 20px 40px rgba(34, 197, 94, 0.3);
}

.hero h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: 2px;
    animation: titleSlide 1.5s ease-out 0.5s both;
}

@keyframes titleSlide {
    from {
        transform: translateX(-100px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.hero p {
    font-size: 18px;
    color: #a1a1aa;
    margin-bottom: 40px;
    animation: subtitleFade 1.5s ease-out 0.8s both;
}

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

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    animation: buttonsPop 1.5s ease-out 1.2s both;
}

@keyframes buttonsPop {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.btn-launch {
    background: #22c55e;
    color: #ffffff;
    padding: 14px 28px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-launch::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.6s ease;
}

.btn-launch:hover {
    background: #16a34a;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 30px rgba(34, 197, 94, 0.4);
}

.btn-launch:hover::before {
    left: 100%;
}

.btn-download {
    background: #3b82f6;
    color: #ffffff;
    padding: 14px 28px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-download::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.6s ease;
}

.btn-download:hover {
    background: #2563eb;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 30px rgba(59, 130, 246, 0.4);
}

.btn-download:hover::before {
    left: 100%;
}

/* Feature Cards */
.feature-cards {
    padding: 60px 0;
    background: #0a0f0a;
}

.cards-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.feature-card {
    height: 200px;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: cardSlideUp 1s ease-out both;
}

.card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: 60px 60px;
    background-repeat: no-repeat;
    background-position: top right 20px;
    opacity: 0.1;
    transition: all 0.3s ease;
    z-index: 1;
}

.feature-card:hover .card-bg {
    opacity: 0.2;
    transform: scale(1.1);
}

.feature-card:nth-child(1) { animation-delay: 0.1s; }
.feature-card:nth-child(2) { animation-delay: 0.2s; }
.feature-card:nth-child(3) { animation-delay: 0.3s; }
.feature-card:nth-child(4) { animation-delay: 0.4s; }

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

.feature-card:hover {
    transform: translateY(-12px) scale(1.03) rotateX(5deg);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.card-1 {
    background: linear-gradient(135deg, #f97316, #ea580c);
    animation: cardGlow1 3s ease-in-out infinite;
}

@keyframes cardGlow1 {
    0%, 100% { box-shadow: 0 0 20px rgba(249, 115, 22, 0.3); }
    50% { box-shadow: 0 0 40px rgba(249, 115, 22, 0.5); }
}

.card-2 {
    background: linear-gradient(135deg, #1f2937, #374151);
    animation: cardGlow2 3s ease-in-out infinite 0.5s;
}

@keyframes cardGlow2 {
    0%, 100% { box-shadow: 0 0 20px rgba(55, 65, 81, 0.3); }
    50% { box-shadow: 0 0 40px rgba(55, 65, 81, 0.5); }
}

.card-3 {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    animation: cardGlow3 3s ease-in-out infinite 1s;
}

@keyframes cardGlow3 {
    0%, 100% { box-shadow: 0 0 20px rgba(59, 130, 246, 0.3); }
    50% { box-shadow: 0 0 40px rgba(59, 130, 246, 0.5); }
}

.card-4 {
    background: linear-gradient(135deg, #06b6d4, #0891b2);
    animation: cardGlow4 3s ease-in-out infinite 1.5s;
}

@keyframes cardGlow4 {
    0%, 100% { box-shadow: 0 0 20px rgba(6, 182, 212, 0.3); }
    50% { box-shadow: 0 0 40px rgba(6, 182, 212, 0.5); }
}

.card-content {
    position: absolute;
    bottom: 24px;
    left: 24px;
    right: 24px;
    animation: contentFloat 2s ease-in-out infinite;
    z-index: 2;
}

@keyframes contentFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-3px); }
}

.card-label {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1px;
    opacity: 0.8;
    display: block;
    margin-bottom: 8px;
    animation: labelFade 2s ease-in-out infinite;
}

@keyframes labelFade {
    0%, 100% { opacity: 0.8; }
    50% { opacity: 1; }
}

.card-content h3 {
    font-size: 24px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: 1px;
    animation: textPulse 3s ease-in-out infinite;
}

@keyframes textPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

/* Info Section */
.info-section {
    padding: 80px 0;
    background: #111611;
    animation: sectionSlide 1s ease-out;
}

@keyframes sectionSlide {
    from {
        transform: translateX(-100px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.info-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.info-text h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #ffffff;
    animation: titleWave 2s ease-in-out infinite;
}

@keyframes titleWave {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-2px); }
}

.info-text p {
    font-size: 16px;
    color: #a1a1aa;
    line-height: 1.6;
    margin-bottom: 24px;
    animation: textFadeIn 2s ease-out;
}

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

.info-link {
    color: #22c55e;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
}

.info-link::after {
    content: '→';
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.info-link:hover {
    color: #16a34a;
    transform: translateX(5px);
}

.info-link:hover::after {
    transform: translateX(5px);
}

.social-links h4 {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #71717a;
    margin-bottom: 16px;
    animation: socialTitle 2s ease-in-out infinite;
}

@keyframes socialTitle {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; }
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: #374151;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    animation: iconBounce 2s ease-in-out infinite;
}

.social-icon:nth-child(1) { animation-delay: 0s; }
.social-icon:nth-child(2) { animation-delay: 0.2s; }
.social-icon:nth-child(3) { animation-delay: 0.4s; }
.social-icon:nth-child(4) { animation-delay: 0.6s; }

@keyframes iconBounce {
    0%, 100% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(-3px) scale(1.05); }
}

.social-icon:hover {
    background: #22c55e;
    transform: translateY(-5px) scale(1.1) rotate(5deg);
    box-shadow: 0 10px 20px rgba(34, 197, 94, 0.3);
}

/* Updates Section */
.updates-section {
    padding: 60px 0;
    background: #0a0f0a;
}

.updates-grid {
    display: flex;
    justify-content: center;
}

.update-card {
    background: #1a1a1a;
    border-radius: 12px;
    padding: 24px;
    position: relative;
    border: 1px solid #374151;
    transition: all 0.4s ease;
    animation: updateSlide 1s ease-out both;
}

.update-card:nth-child(1) { animation-delay: 0.2s; }
.update-card:nth-child(2) { animation-delay: 0.4s; }

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

.update-card:hover {
    border-color: #22c55e;
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(34, 197, 94, 0.1);
}

.main-update {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    animation: mainUpdateGlow 4s ease-in-out infinite;
    max-width: 500px;
    width: 100%;
}

@keyframes mainUpdateGlow {
    0%, 100% { box-shadow: 0 0 30px rgba(59, 130, 246, 0.3); }
    50% { box-shadow: 0 0 50px rgba(59, 130, 246, 0.5); }
}

.update-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: #22c55e;
    color: #ffffff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Footer */
.footer {
    background: #111611;
    border-top: 1px solid #374151;
    padding: 40px 0 20px;
    animation: footerSlideUp 1s ease-out;
}

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

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 1px;
    animation: footerLogoFloat 3s ease-in-out infinite;
}

@keyframes footerLogoFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-2px); }
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    color: #a1a1aa;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    position: relative;
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 1px;
    background: #22c55e;
    transition: width 0.3s ease;
}

.footer-links a:hover {
    color: #22c55e;
    transform: translateY(-1px);
}

.footer-links a:hover::after {
    width: 100%;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #374151;
    animation: fadeIn 2s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.footer-bottom p {
    color: #71717a;
    font-size: 12px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .cards-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .info-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .updates-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .hero h1 {
        font-size: 36px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cards-container {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .nav-container {
        padding: 0 16px;
    }
    
    .hero h1 {
        font-size: 28px;
    }
    
    .hero p {
        font-size: 16px;
    }
}
/* News Page Styles */
.nav-links a.active {
    color: #22c55e;
}

.nav-links a.active::after {
    width: 100%;
}

.news-header {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, #0a0f0a 0%, #1a2e1a 100%);
    text-align: center;
    animation: fadeInUp 1s ease-out;
}

.news-header h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: 2px;
    animation: titleSlide 1.5s ease-out 0.2s both;
}

.news-header p {
    font-size: 18px;
    color: #a1a1aa;
    animation: subtitleFade 1.5s ease-out 0.4s both;
}

.news-content {
    padding: 60px 0;
    background: #0a0f0a;
}

.news-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.news-article {
    background: #1a1a1a;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #374151;
    transition: all 0.4s ease;
    animation: articleSlideUp 1s ease-out both;
}

.news-article:nth-child(1) { animation-delay: 0.1s; }
.news-article:nth-child(2) { animation-delay: 0.2s; }
.news-article:nth-child(3) { animation-delay: 0.3s; }
.news-article:nth-child(4) { animation-delay: 0.4s; }
.news-article:nth-child(5) { animation-delay: 0.5s; }
.news-article:nth-child(6) { animation-delay: 0.6s; }

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

.news-article:hover {
    border-color: #22c55e;
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(34, 197, 94, 0.1);
}

.news-article.featured {
    grid-row: span 2;
    position: relative;
}

.article-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: #22c55e;
    color: #ffffff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    z-index: 2;
    animation: badgePulse 2s ease-in-out infinite;
}

.article-image {
    position: relative;
    overflow: hidden;
}

.placeholder-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #374151, #4b5563);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.placeholder-image.small {
    height: 120px;
}

.featured .placeholder-image {
    height: 300px;
}

.placeholder-image::after {
    content: '📰';
    font-size: 48px;
    opacity: 0.3;
}

.placeholder-image.small::after {
    font-size: 32px;
}

.article-content {
    padding: 24px;
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 12px;
}

.article-category {
    background: #374151;
    color: #22c55e;
    padding: 4px 12px;
    border-radius: 16px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.article-date {
    color: #a1a1aa;
    font-size: 14px;
}

.news-article h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #ffffff;
    line-height: 1.3;
}

.news-article h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #ffffff;
    line-height: 1.3;
}

.news-article p {
    color: #a1a1aa;
    line-height: 1.6;
    margin-bottom: 16px;
}

.read-more {
    color: #22c55e;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
}

.read-more::after {
    content: '→';
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.read-more:hover {
    color: #16a34a;
    transform: translateX(5px);
}

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

/* News Page Responsive */
@media (max-width: 1024px) {
    .news-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .news-article.featured {
        grid-row: span 1;
    }
}

@media (max-width: 768px) {
    .news-header h1 {
        font-size: 36px;
    }
    
    .news-header p {
        font-size: 16px;
    }
    
    .article-content {
        padding: 16px;
    }
    
    .news-article h2 {
        font-size: 20px;
    }
    
    .news-article h3 {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .news-header {
        padding: 100px 0 40px;
    }
    
    .news-header h1 {
        font-size: 28px;
    }
    
    .news-content {
        padding: 40px 0;
    }
    
    .article-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
}
/* Sign In Page Styles */
.signin-section {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 24px 60px;
    overflow: hidden;
}

.signin-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(135deg, rgba(34, 197, 94, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(22, 163, 74, 0.15) 0%, transparent 50%),
        linear-gradient(180deg, #0a0f0a 0%, #1a2e1a 100%);
    z-index: -1;
    animation: backgroundShift 20s ease-in-out infinite;
}

.signin-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(34, 197, 94, 0.1) 2px, transparent 2px),
        radial-gradient(circle at 75% 75%, rgba(22, 163, 74, 0.05) 1px, transparent 1px);
    background-size: 60px 60px, 40px 40px;
    animation: float 20s ease-in-out infinite;
}

.signin-container {
    width: 100%;
    max-width: 480px;
    animation: fadeInUp 1s ease-out;
}

.signin-card {
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(55, 65, 81, 0.5);
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    animation: cardFloat 3s ease-in-out infinite;
}

@keyframes cardFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-5px); }
}

.signin-header {
    text-align: center;
    margin-bottom: 32px;
}

.signin-logo {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    margin: 0 auto 24px;
    display: block;
    box-shadow: 0 10px 20px rgba(34, 197, 94, 0.3);
    animation: logoGlow 4s ease-in-out infinite;
}

@keyframes logoGlow {
    0%, 100% { 
        box-shadow: 0 10px 20px rgba(34, 197, 94, 0.3);
        transform: scale(1);
    }
    50% { 
        box-shadow: 0 15px 30px rgba(34, 197, 94, 0.5);
        transform: scale(1.02);
    }
}

.signin-header h1 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #ffffff;
    animation: titleSlide 1.5s ease-out 0.3s both;
}

.signin-header p {
    font-size: 16px;
    color: #a1a1aa;
    animation: subtitleFade 1.5s ease-out 0.5s both;
}

.signin-content {
    margin-bottom: 32px;
}

.discord-signin-btn {
    width: 100%;
    background: #5865f2;
    color: #ffffff;
    padding: 16px 24px;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 24px;
    animation: buttonPop 1.5s ease-out 0.8s both;
}

@keyframes buttonPop {
    from {
        transform: scale(0.9);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.discord-signin-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.6s ease;
}

.discord-signin-btn:hover {
    background: #4752c4;
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 15px 30px rgba(88, 101, 242, 0.4);
}

.discord-signin-btn:hover::before {
    left: 100%;
}

.discord-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.signin-info {
    text-align: center;
    animation: infoFade 1.5s ease-out 1s both;
}

.signin-info p {
    font-size: 14px;
    color: #71717a;
    line-height: 1.5;
}

.signin-info a {
    color: #22c55e;
    text-decoration: none;
    transition: color 0.3s ease;
}

.signin-info a:hover {
    color: #16a34a;
    text-decoration: underline;
}

.signin-footer {
    border-top: 1px solid rgba(55, 65, 81, 0.3);
    padding-top: 24px;
    animation: footerSlideUp 1.5s ease-out 1.2s both;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: #a1a1aa;
    animation: featureSlide 1s ease-out both;
}

.feature-item:nth-child(1) { animation-delay: 1.4s; }
.feature-item:nth-child(2) { animation-delay: 1.6s; }
.feature-item:nth-child(3) { animation-delay: 1.8s; }

@keyframes featureSlide {
    from {
        transform: translateX(-20px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.feature-icon {
    width: 20px;
    height: 20px;
    background: #22c55e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
    color: #ffffff;
    flex-shrink: 0;
    animation: iconPulse 2s ease-in-out infinite;
}

@keyframes iconPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* Sign In Page Responsive */
@media (max-width: 768px) {
    .signin-section {
        padding: 100px 16px 40px;
    }
    
    .signin-card {
        padding: 32px 24px;
    }
    
    .signin-header h1 {
        font-size: 28px;
    }
    
    .signin-header p {
        font-size: 14px;
    }
    
    .discord-signin-btn {
        padding: 14px 20px;
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .signin-card {
        padding: 24px 20px;
    }
    
    .signin-header h1 {
        font-size: 24px;
    }
    
    .signin-logo {
        width: 56px;
        height: 56px;
    }
}

/* Profile Page Styles - Fixed Layout */
.profile-header {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, #0a0f0a 0%, #1a1a1a 100%);
    border-bottom: 1px solid rgba(34, 197, 94, 0.2);
    position: relative;
    z-index: 1;
}

.profile-info {
    display: flex;
    align-items: center;
    gap: 32px;
    animation: fadeInUp 0.8s ease-out;
}

.profile-avatar {
    position: relative;
    flex-shrink: 0;
}

.avatar-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 4px solid #22c55e;
    background: #374151;
}

.avatar-overlay {
    position: absolute;
    bottom: -5px;
    right: -5px;
    background: #22c55e;
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.profile-details h1 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 8px;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.username {
    font-size: 18px;
    color: #a1a1aa;
    margin-bottom: 12px;
    font-weight: 500;
}

.bio {
    font-size: 16px;
    color: #d1d5db;
    margin-bottom: 24px;
    line-height: 1.6;
    max-width: 400px;
}

.profile-stats {
    display: flex;
    gap: 32px;
}

.stat {
    text-align: center;
}

.stat-value {
    display: block;
    font-size: 24px;
    font-weight: 700;
    color: #22c55e;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 12px;
    color: #a1a1aa;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.profile-content {
    padding: 60px 0;
    background: #0a0f0a;
    min-height: calc(100vh - 200px);
    position: relative;
    z-index: 1;
    clear: both;
}

.profile-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 2;
}

.profile-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: start;
    width: 100%;
}

.profile-main {
    min-height: 600px;
    width: 100%;
}

.profile-sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 100%;
    min-width: 300px;
}

.profile-card {
    background: #1a1a1a;
    border: 1px solid #374151;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    width: 100%;
    box-sizing: border-box;
    z-index: 3;
    margin-bottom: 0;
}

.profile-card:hover {
    border-color: #22c55e;
    box-shadow: 0 5px 15px rgba(34, 197, 94, 0.1);
}

.card-header {
    padding: 24px;
    border-bottom: 1px solid rgba(55, 65, 81, 0.3);
    background: rgba(34, 197, 94, 0.05);
    position: relative;
    z-index: 4;
}

.card-header h3 {
    font-size: 18px;
    font-weight: 700;
    color: #22c55e;
    margin: 0 0 4px 0;
}

.card-header p {
    color: #a1a1aa;
    font-size: 14px;
    margin: 0;
}

.card-content {
    padding: 24px;
    position: relative;
    background: #1a1a1a;
    z-index: 4;
}

.form-group {
    margin-bottom: 20px;
}

.form-group:last-child {
    margin-bottom: 0;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #d1d5db;
    margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    background: #374151;
    border: 1px solid #4b5563;
    border-radius: 8px;
    color: white;
    font-size: 14px;
    font-family: inherit;
    transition: all 0.3s ease;
    box-sizing: border-box;
    resize: vertical;
    display: block;
    margin: 0;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #22c55e;
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.1);
}

.form-group input:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background: #2d3748;
}

.form-help {
    display: block;
    font-size: 12px;
    color: #a1a1aa;
    margin-top: 4px;
    line-height: 1.4;
}

.form-actions {
    display: flex;
    gap: 12px;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid rgba(55, 65, 81, 0.3);
}

.btn-save {
    background: #22c55e;
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    flex: 1;
    font-family: inherit;
}

.btn-save:hover:not(:disabled) {
    background: #16a34a;
}

.btn-save:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.btn-cancel {
    background: #374151;
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.btn-cancel:hover {
    background: #4b5563;
}

.username-list {
    max-height: 300px;
    overflow-y: auto;
}

.username-entry {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(55, 65, 81, 0.3);
}

.username-entry:last-child {
    border-bottom: none;
}

.username-change {
    display: flex;
    align-items: center;
    gap: 8px;
}

.old-username {
    color: #a1a1aa;
    text-decoration: line-through;
}

.arrow {
    color: #22c55e;
    font-weight: bold;
}

.new-username {
    color: #22c55e;
    font-weight: 600;
}

.change-date {
    font-size: 12px;
    color: #71717a;
}

.no-history {
    text-align: center;
    color: #a1a1aa;
    padding: 40px 20px;
    font-style: italic;
}

.loading {
    text-align: center;
    color: #a1a1aa;
    padding: 20px;
}

.setting-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid rgba(55, 65, 81, 0.3);
}

.setting-item:last-child {
    border-bottom: none;
}

.setting-info h4 {
    font-size: 16px;
    font-weight: 600;
    color: #d1d5db;
    margin-bottom: 4px;
}

.setting-info p {
    font-size: 14px;
    color: #a1a1aa;
}

.btn-secondary {
    background: #374151;
    color: white;
    padding: 8px 16px;
    border: none;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.btn-secondary:hover {
    background: #4b5563;
}

/* Remove the grid positioning rules that were causing overlap */

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

.card-header {
    padding: 24px;
    border-bottom: 1px solid rgba(55, 65, 81, 0.3);
    background: rgba(34, 197, 94, 0.05);
}

.card-header h3 {
    font-size: 18px;
    font-weight: 700;
    color: #22c55e;
    margin-bottom: 4px;
}

.card-header p {
    color: #a1a1aa;
    font-size: 14px;
    margin: 0;
}

.card-content {
    padding: 24px;
}

.username-list {
    max-height: 300px;
    overflow-y: auto;
}

.username-entry {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(55, 65, 81, 0.3);
}

.username-entry:last-child {
    border-bottom: none;
}

.username-change {
    display: flex;
    align-items: center;
    gap: 8px;
}

.old-username {
    color: #a1a1aa;
    text-decoration: line-through;
}

.arrow {
    color: #22c55e;
    font-weight: bold;
}

.new-username {
    color: #22c55e;
    font-weight: 600;
}

.change-date {
    font-size: 12px;
    color: #71717a;
}

.no-history {
    text-align: center;
    color: #a1a1aa;
    padding: 40px 20px;
    font-style: italic;
}

.loading {
    text-align: center;
    color: #a1a1aa;
    padding: 20px;
}

.setting-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid rgba(55, 65, 81, 0.3);
}

.setting-item:last-child {
    border-bottom: none;
}

.setting-info h4 {
    font-size: 16px;
    font-weight: 600;
    color: #d1d5db;
    margin-bottom: 4px;
}

.setting-info p {
    font-size: 14px;
    color: #a1a1aa;
}

.btn-secondary {
    background: #374151;
    color: white;
    padding: 8px 16px;
    border: none;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.btn-secondary:hover {
    background: #4b5563;
}

/* Notifications */
.notification {
    position: fixed;
    top: 100px;
    right: 24px;
    padding: 16px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    z-index: 1001;
    transform: translateX(400px);
    opacity: 0;
    transition: all 0.3s ease;
}

.notification.show {
    transform: translateX(0);
    opacity: 1;
}

.notification-success {
    background: #22c55e;
    color: white;
}

.notification-error {
    background: #ef4444;
    color: white;
}

.notification-info {
    background: #3b82f6;
    color: white;
}

/* Active navigation link */
.nav-links a.active {
    color: #22c55e;
}

.nav-links a.active::after {
    width: 100%;
}

/* Profile Page Responsive */
@media (max-width: 1024px) {
    .profile-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .profile-sidebar {
        order: -1;
    }
    
    .profile-container {
        padding: 0 20px;
    }
    
    .profile-info {
        flex-direction: column;
        text-align: center;
        gap: 24px;
    }
    
    .profile-stats {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .profile-header {
        padding: 100px 0 40px;
    }
    
    .profile-details h1 {
        font-size: 28px;
    }
    
    .avatar-img {
        width: 100px;
        height: 100px;
    }
    
    .profile-stats {
        gap: 24px;
    }
    
    .form-actions {
        flex-direction: column;
    }
    
    .profile-container {
        padding: 0 16px;
    }
}

@media (max-width: 480px) {
    .profile-content {
        padding: 40px 0;
    }
    
    .card-header,
    .card-content {
        padding: 20px;
    }
    
    .form-actions {
        gap: 8px;
    }
}

@media (max-width: 768px) {
    .profile-header {
        padding: 100px 0 40px;
    }
    
    .profile-details h1 {
        font-size: 28px;
    }
    
    .avatar-img {
        width: 100px;
        height: 100px;
    }
    
    .profile-stats {
        gap: 24px;
    }
    
    .form-actions {
        flex-direction: column;
    }
    
    .notification {
        right: 16px;
        left: 16px;
        transform: translateY(-100px);
    }
    
    .notification.show {
        transform: translateY(0);
    }
}

@media (max-width: 480px) {
    .profile-content {
        padding: 40px 0;
    }
    
    .profile-card {
        margin: 0 16px;
    }
    
    .card-header,
    .card-content {
        padding-left: 20px;
        padding-right: 20px;
    }
}
/* Navigation User Info */
.user-info {
    display: flex;
    align-items: center;
    gap: 12px;
    animation: fadeInRight 1s ease-out 0.6s both;
}

.nav-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid #22c55e;
    transition: all 0.3s ease;
}

.nav-avatar:hover {
    border-color: #16a34a;
    transform: scale(1.05);
}

.nav-username-link {
    color: #22c55e;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 4px 8px;
    border-radius: 6px;
}

.nav-username-link:hover {
    background: rgba(34, 197, 94, 0.1);
    transform: translateY(-1px);
}

.logout-btn {
    background: #374151;
    color: white;
    padding: 6px 12px;
    border: none;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.logout-btn:hover {
    background: #4b5563;
}
/* Sign In Modal Styles */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
}

.modal-content {
    position: relative;
    background: #1a1a1a;
    border: 1px solid #374151;
    border-radius: 16px;
    max-width: 400px;
    width: 90%;
    max-height: 90vh;
    overflow: hidden;
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        transform: translateY(-50px) scale(0.9);
        opacity: 0;
    }
    to {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

.modal-header {
    padding: 32px 32px 24px;
    text-align: center;
    position: relative;
    background: rgba(34, 197, 94, 0.05);
    border-bottom: 1px solid rgba(55, 65, 81, 0.3);
}

.modal-logo {
    width: 64px;
    height: 64px;
    border-radius: 12px;
    margin-bottom: 16px;
}

.modal-header h2 {
    font-size: 24px;
    font-weight: 700;
    color: #22c55e;
    margin-bottom: 8px;
}

.modal-header p {
    color: #a1a1aa;
    font-size: 14px;
    margin: 0;
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    color: #a1a1aa;
    font-size: 24px;
    cursor: pointer;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: #374151;
    color: white;
}

.modal-body {
    padding: 32px;
}

.discord-btn {
    width: 100%;
    background: #5865F2;
    color: white;
    padding: 16px 24px;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-family: inherit;
    margin-bottom: 24px;
}

.discord-btn:hover {
    background: #4752C4;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(88, 101, 242, 0.3);
}

.discord-btn svg {
    flex-shrink: 0;
}

.signin-info {
    text-align: center;
}

.signin-info p {
    color: #71717a;
    font-size: 12px;
    line-height: 1.5;
    margin: 0;
}

/* Modal Responsive */
@media (max-width: 480px) {
    .modal-content {
        width: 95%;
        margin: 20px;
    }
    
    .modal-header,
    .modal-body {
        padding: 24px 20px;
    }
    
    .modal-header h2 {
        font-size: 20px;
    }
    
    .discord-btn {
        padding: 14px 20px;
        font-size: 14px;
    }
}
/* Discord Milestone Styling */
.discord-milestone {
    background: linear-gradient(135deg, #5865F2 0%, #4752C4 100%);
    position: relative;
    overflow: hidden;
}

.discord-milestone::before {
    content: '💬';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 48px;
    opacity: 0.3;
}

.discord-milestone::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: discordPulse 3s ease-in-out infinite;
}

@keyframes discordPulse {
    0%, 100% { transform: scale(1) rotate(0deg); opacity: 0.1; }
    50% { transform: scale(1.1) rotate(180deg); opacity: 0.2; }
}

.article-badge {
    background: #22c55e;
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 2;
}

.news-article.featured .article-badge {
    background: #5865F2;
}
/* Discord Redirect Page Styles */
.discord-redirect {
    min-height: 100vh;
    background: linear-gradient(135deg, #0a0f0a 0%, #1a1a1a 50%, #5865F2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.discord-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 70%, rgba(88, 101, 242, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 70% 30%, rgba(34, 197, 94, 0.2) 0%, transparent 50%);
    animation: discordBgFloat 6s ease-in-out infinite;
}

@keyframes discordBgFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(2deg); }
}

.discord-container {
    max-width: 500px;
    width: 90%;
    position: relative;
    z-index: 2;
}

.discord-content {
    background: rgba(26, 26, 26, 0.95);
    border: 1px solid rgba(88, 101, 242, 0.3);
    border-radius: 20px;
    padding: 48px 32px;
    text-align: center;
    backdrop-filter: blur(20px);
    animation: discordCardFloat 0.8s ease-out;
}

@keyframes discordCardFloat {
    from {
        transform: translateY(50px) scale(0.9);
        opacity: 0;
    }
    to {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

.discord-logo {
    margin-bottom: 24px;
    animation: discordLogoSpin 2s ease-in-out infinite;
}

@keyframes discordLogoSpin {
    0%, 100% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(5deg) scale(1.05); }
}

.discord-content h1 {
    font-size: 28px;
    font-weight: 800;
    color: #5865F2;
    margin-bottom: 12px;
}

.discord-content > p {
    color: #a1a1aa;
    font-size: 16px;
    margin-bottom: 32px;
}

.redirect-info {
    margin-bottom: 32px;
}

.loading-bar {
    width: 100%;
    height: 4px;
    background: rgba(88, 101, 242, 0.2);
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 16px;
}

.loading-progress {
    height: 100%;
    background: linear-gradient(90deg, #5865F2, #22c55e);
    border-radius: 2px;
    width: 0%;
}

@keyframes loadingBar {
    from { width: 0%; }
    to { width: 100%; }
}

.redirect-text {
    color: #d1d5db;
    font-size: 14px;
    margin: 0;
}

.discord-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 32px;
    justify-content: center;
}

.discord-btn {
    padding: 12px 24px;
    border: none;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: inherit;
}

.discord-btn.primary {
    background: #5865F2;
    color: white;
}

.discord-btn.primary:hover {
    background: #4752C4;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(88, 101, 242, 0.4);
}

.discord-btn.secondary {
    background: #374151;
    color: white;
}

.discord-btn.secondary:hover {
    background: #4b5563;
    transform: translateY(-2px);
}

.discord-stats {
    display: flex;
    justify-content: space-around;
    padding-top: 24px;
    border-top: 1px solid rgba(88, 101, 242, 0.2);
}

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

.stat-number {
    display: block;
    font-size: 20px;
    font-weight: 700;
    color: #5865F2;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 12px;
    color: #a1a1aa;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Discord Page Responsive */
@media (max-width: 768px) {
    .discord-content {
        padding: 32px 24px;
    }
    
    .discord-content h1 {
        font-size: 24px;
    }
    
    .discord-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .discord-btn {
        width: 100%;
        justify-content: center;
    }
    
    .discord-stats {
        flex-direction: column;
        gap: 16px;
    }
}

@media (max-width: 480px) {
    .discord-container {
        width: 95%;
    }
    
    .discord-content {
        padding: 24px 20px;
    }
    
    .discord-content h1 {
        font-size: 20px;
    }
}