* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #000;
    color: #fff;
    overflow-x: hidden;
}

.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.8s;
    overflow: hidden;
    background: #000;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.preloader-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.preloader-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('assets/bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.3;
    filter: blur(3px);
    animation: bgPulse 8s ease-in-out infinite;
}

.preloader-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.95) 0%, rgba(10, 10, 10, 0.9) 50%, rgba(0, 0, 0, 0.95) 100%);
    z-index: 2;
}

.preloader-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.preloader-particles .particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: radial-gradient(circle, #fb923c, transparent);
    border-radius: 50%;
    opacity: 0.6;
    animation: particleFloat 6s ease-in-out infinite;
    box-shadow: 0 0 10px rgba(251, 146, 60, 0.8);
}

.preloader-particles .particle:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
    animation-duration: 5s;
}

.preloader-particles .particle:nth-child(2) {
    top: 60%;
    left: 20%;
    animation-delay: 1s;
    animation-duration: 6s;
}

.preloader-particles .particle:nth-child(3) {
    top: 40%;
    left: 80%;
    animation-delay: 2s;
    animation-duration: 7s;
}

.preloader-particles .particle:nth-child(4) {
    top: 80%;
    left: 70%;
    animation-delay: 0.5s;
    animation-duration: 5.5s;
}

.preloader-particles .particle:nth-child(5) {
    top: 30%;
    left: 50%;
    animation-delay: 1.5s;
    animation-duration: 6.5s;
}

.preloader-particles .particle:nth-child(6) {
    top: 70%;
    left: 30%;
    animation-delay: 2.5s;
    animation-duration: 7.5s;
}

.preloader-particles .particle:nth-child(7) {
    top: 10%;
    left: 60%;
    animation-delay: 0.8s;
    animation-duration: 5.8s;
}

.preloader-particles .particle:nth-child(8) {
    top: 90%;
    left: 90%;
    animation-delay: 1.8s;
    animation-duration: 6.8s;
}

.preloader-content {
    text-align: center;
    position: relative;
    z-index: 10;
    animation: contentFadeIn 1s ease-out;
}

.preloader-logo-wrapper {
    margin-bottom: 3rem;
    position: relative;
}

.preloader-logo-circle {
    width: 180px;
    height: 180px;
    margin: 0 auto;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: logoFloat 3s ease-in-out infinite;
}

.preloader-logo-inner {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, rgba(251, 146, 60, 0.2), rgba(249, 115, 22, 0.2));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid rgba(251, 146, 60, 0.5);
    position: relative;
    z-index: 3;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 40px rgba(251, 146, 60, 0.4), inset 0 0 40px rgba(251, 146, 60, 0.1);
    animation: logoPulse 2s ease-in-out infinite;
}

.preloader-logo-inner i {
    font-size: 4rem;
    background: linear-gradient(135deg, #fb923c, #f97316, #fb923c);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s linear infinite;
    filter: drop-shadow(0 0 20px rgba(251, 146, 60, 0.8));
}

.preloader-logo-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 160px;
    height: 160px;
    border: 2px solid rgba(251, 146, 60, 0.3);
    border-radius: 50%;
    border-top-color: #fb923c;
    border-right-color: #f97316;
    animation: logoRingRotate 2s linear infinite;
}

.preloader-logo-ring-2 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 180px;
    height: 180px;
    border: 2px solid rgba(251, 146, 60, 0.2);
    border-radius: 50%;
    border-bottom-color: #fb923c;
    border-left-color: #f97316;
    animation: logoRingRotate 3s linear infinite reverse;
}

.preloader-text-wrapper {
    margin-bottom: 3rem;
}

.preloader-text {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    background: linear-gradient(135deg, #fff 0%, #fb923c 50%, #fff 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: textGradient 3s ease-in-out infinite, textShine 2s ease-in-out infinite;
    text-shadow: 0 0 30px rgba(251, 146, 60, 0.5);
    position: relative;
}

.preloader-subtext {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    letter-spacing: 1px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease-out;
}

.preloader-progress-wrapper {
    width: 400px;
    max-width: 90%;
    margin: 0 auto 1.5rem;
}

.preloader-progress {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    margin-bottom: 1rem;
    overflow: hidden;
    position: relative;
    box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.3);
}

.preloader-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #fb923c, #f97316, #fb923c, #f97316);
    background-size: 200% 100%;
    border-radius: 10px;
    width: 0%;
    position: relative;
    transition: width 0.1s linear;
    box-shadow: 0 0 20px rgba(251, 146, 60, 0.6), 0 0 40px rgba(251, 146, 60, 0.3);
    animation: progressGradient 2s linear infinite;
}

.progress-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: progressShine 2s ease-in-out infinite;
}

.preloader-percentage {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fb923c;
    text-shadow: 0 0 20px rgba(251, 146, 60, 0.6);
    letter-spacing: 2px;
}

.preloader-loading-text {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    margin-top: 1rem;
    transition: opacity 0.3s ease;
    min-height: 24px;
}

@keyframes bgPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.4;
    }
}

@keyframes particleFloat {
    0%, 100% {
        transform: translateY(0) translateX(0) scale(1);
        opacity: 0.6;
    }
    25% {
        transform: translateY(-30px) translateX(20px) scale(1.2);
        opacity: 0.8;
    }
    50% {
        transform: translateY(-60px) translateX(-20px) scale(0.8);
        opacity: 0.4;
    }
    75% {
        transform: translateY(-30px) translateX(10px) scale(1.1);
        opacity: 0.7;
    }
}

@keyframes logoFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-15px) rotate(5deg);
    }
}

@keyframes logoPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 40px rgba(251, 146, 60, 0.4), inset 0 0 40px rgba(251, 146, 60, 0.1);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 60px rgba(251, 146, 60, 0.6), inset 0 0 60px rgba(251, 146, 60, 0.2);
    }
}

@keyframes logoRingRotate {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes textGradient {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

@keyframes textShine {
    0%, 100% {
        filter: brightness(1) drop-shadow(0 0 20px rgba(251, 146, 60, 0.5));
    }
    50% {
        filter: brightness(1.3) drop-shadow(0 0 40px rgba(251, 146, 60, 0.8));
    }
}

@keyframes progressGradient {
    0% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 200% 50%;
    }
}

@keyframes progressShine {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

@keyframes contentFadeIn {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}


@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 200% 50%;
    }
}

body.preloader-active {
    overflow: hidden;
}

body.preloader-active #app {
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none;
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

.animate-fade-in {
    opacity: 0;
    transition: opacity 0.8s ease-out;
}

.animate-fade-in.animated {
    opacity: 1;
}

.animate-slide-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-slide-left.animated {
    opacity: 1;
    transform: translateX(0);
}

.animate-slide-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-slide-right.animated {
    opacity: 1;
    transform: translateX(0);
}

.animate-scale {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-scale.animated {
    opacity: 1;
    transform: scale(1);
}

.animate-rotate {
    opacity: 0;
    transform: rotate(-10deg) scale(0.9);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-rotate.animated {
    opacity: 1;
    transform: rotate(0deg) scale(1);
}

.animate-delay-100 {
    transition-delay: 0.1s;
}

.animate-delay-200 {
    transition-delay: 0.2s;
}

.animate-delay-300 {
    transition-delay: 0.3s;
}

.animate-delay-400 {
    transition-delay: 0.4s;
}

.animate-delay-500 {
    transition-delay: 0.5s;
}

html {
    scroll-behavior: smooth;
}

.blog-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.blog-card:hover {
    transform: translateY(-10px) scale(1.02);
}

.feature-item {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-item:hover {
    transform: translateY(-8px);
}

.faq-item {
    transition: all 0.3s ease;
}

.cta-button,
.discord-button,
.login-btn {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.cta-button::before,
.discord-button::before,
.login-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.cta-button:hover::before,
.discord-button:hover::before,
.login-btn:hover::before {
    width: 300px;
    height: 300px;
}

.hero-background {
    transition: transform 0.1s ease-out;
}

.navbar {
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background-color: rgba(26, 26, 26, 0.95) !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.text-reveal {
    overflow: hidden;
}

.text-reveal span {
    display: inline-block;
    opacity: 0;
    transform: translateY(100%);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.text-reveal.animated span {
    opacity: 1;
    transform: translateY(0);
}

.stagger-item {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.stagger-item.animated {
    opacity: 1;
    transform: translateY(0);
}

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

.skeleton {
    background: linear-gradient(90deg, #1a1a1a 0%, #2a2a2a 50%, #1a1a1a 100%);
    background-size: 2000px 100%;
    animation: shimmer 2s infinite;
}

.hover-scale {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hover-scale:hover {
    transform: scale(1.05);
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.gradient-animated {
    background-size: 200% 200%;
    animation: gradientShift 3s ease infinite;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.7);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(251, 146, 60, 0.15);
    z-index: 1000;
    padding: 0;
    height: 60px;
    display: flex;
    align-items: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.navbar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(251, 146, 60, 0.5), 
        transparent
    );
    opacity: 0;
    transition: opacity 0.4s;
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
    border-bottom-color: rgba(251, 146, 60, 0.25);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
    height: 55px;
}

.navbar.scrolled::before {
    opacity: 1;
}

.nav-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2rem;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 10;
}

.logo:hover {
    transform: translateY(-2px);
}

.logo-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    object-fit: contain;
    display: block;
    flex-shrink: 0;
    background: transparent;
    box-shadow: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo:hover .logo-icon {
    transform: scale(1.05) rotate(5deg);
}

.logo-text {
    font-size: 1.4rem;
    font-weight: 800;
    background: linear-gradient(135deg, #fff 0%, #fb923c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
    position: relative;
}

.logo-text::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #fb923c, #f97316);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo:hover .logo-text::after {
    width: 100%;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0.4rem;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    position: relative;
}

.nav-menu a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: flex;
    align-items: center;
    gap: 6px;
    overflow: hidden;
}

.nav-menu a::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(251, 146, 60, 0.1), rgba(249, 115, 22, 0.1));
    border-radius: 10px;
    opacity: 0;
    transition: opacity 0.3s;
}

.nav-menu a:hover::before {
    opacity: 1;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 60%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #fb923c, transparent);
    border-radius: 2px;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-menu a:hover {
    color: #fb923c;
    transform: translateY(-2px);
}

.nav-menu a:hover::after {
    transform: translateX(-50%) scaleX(1);
}

.nav-menu a.active {
    color: #fb923c;
    background: rgba(251, 146, 60, 0.15);
}

.nav-menu a.active::before {
    opacity: 1;
}

.nav-menu a.active::after {
    transform: translateX(-50%) scaleX(1);
    background: linear-gradient(90deg, transparent, #fb923c, transparent);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
    z-index: 10;
}

.nav-right i {
    font-size: 1.2rem;
    cursor: pointer;
    transition: color 0.3s;
}

.nav-right i:hover {
    color: #fb923c;
}

.login-btn {
    background: linear-gradient(135deg, rgba(251, 146, 60, 0.2), rgba(249, 115, 22, 0.2));
    color: #fff;
    border: 1px solid rgba(251, 146, 60, 0.3);
    padding: 8px 18px;
    border-radius: 10px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.login-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #fb923c, #f97316);
    opacity: 0;
    transition: opacity 0.3s;
}

.login-btn span,
.login-btn i {
    position: relative;
    z-index: 1;
    transition: transform 0.3s;
}

.login-btn:hover {
    border-color: #fb923c;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(251, 146, 60, 0.3);
}

.login-btn:hover::before {
    opacity: 1;
}

.login-btn:hover span,
.login-btn:hover i {
    transform: translateX(2px);
}

.login-btn i {
    font-size: 0.85rem;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
    position: relative;
}

.mobile-menu-toggle span {
    width: 28px;
    height: 3px;
    background: linear-gradient(90deg, #fff, #fb923c);
    border-radius: 3px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

.user-profile {
    display: flex;
    align-items: center;
    position: relative;
}

.user-profile::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(251, 146, 60, 0.2), rgba(249, 115, 22, 0.15));
    opacity: 0;
    transition: opacity 0.3s;
}

.user-profile:hover {
    border-color: rgba(251, 146, 60, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(251, 146, 60, 0.2);
}

.user-profile:hover::before {
    opacity: 1;
}

.user-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(251, 146, 60, 0.6);
    box-shadow: 0 3px 12px rgba(251, 146, 60, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
}

.user-profile-main:hover .user-avatar {
    border-color: #fb923c;
    box-shadow: 0 6px 20px rgba(251, 146, 60, 0.5);
    transform: scale(1.05);
}

.user-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    z-index: 1;
}

.user-status {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 2px;
    font-weight: 500;
}

.user-name {
    font-size: 0.9rem;
    font-weight: 700;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s;
}

.user-name i {
    color: #fb923c;
    font-size: 0.75rem;
    transition: transform 0.3s;
}

.user-profile-main:hover .user-name i {
    transform: scale(1.2);
}

.logout-btn {
    background: rgba(251, 146, 60, 0.1);
    border: 1px solid rgba(251, 146, 60, 0.2);
    color: rgba(255, 255, 255, 0.8);
    cursor: pointer;
    font-size: 0.9rem;
    padding: 8px 12px;
    border-radius: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-left: 0.5rem;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logout-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(251, 146, 60, 0.2), rgba(249, 115, 22, 0.2));
    border-radius: 8px;
    opacity: 0;
    transition: opacity 0.3s;
}

.logout-btn:hover {
    color: #fb923c;
    border-color: rgba(251, 146, 60, 0.4);
    transform: scale(1.05);
}

.logout-btn:hover::before {
    opacity: 1;
}

.logout-btn i {
    font-size: 0.9rem;
    transition: transform 0.3s;
}

.logout-btn:hover i {
    transform: rotate(-15deg);
}

.user-profile {
    position: relative;
}

.user-profile-main {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 6px 12px;
    background: linear-gradient(135deg, rgba(251, 146, 60, 0.15), rgba(249, 115, 22, 0.1));
    border-radius: 10px;
    border: 1px solid rgba(251, 146, 60, 0.3);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.user-profile-main::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(251, 146, 60, 0.2), rgba(249, 115, 22, 0.15));
    opacity: 0;
    transition: opacity 0.3s;
}

.user-profile-main:hover {
    border-color: rgba(251, 146, 60, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(251, 146, 60, 0.2);
}

.user-profile-main:hover::before {
    opacity: 1;
}

.user-profile-main.active {
    background: linear-gradient(135deg, rgba(251, 146, 60, 0.25), rgba(249, 115, 22, 0.2));
    border-color: rgba(251, 146, 60, 0.6);
}

.user-status-indicator {
    font-size: 0.5rem;
    color: #10b981;
    margin-right: 4px;
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.user-status {
    display: flex;
    align-items: center;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 2px;
    font-weight: 500;
}

.user-verified-badge {
    display: inline-flex;
    align-items: center;
    color: #5865f2;
    font-size: 0.75rem;
    margin-left: 4px;
    animation: verified-pulse 2s ease-in-out infinite;
}

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

.user-dropdown-icon {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.6);
    transition: transform 0.3s ease;
    margin-left: 4px;
}

.user-dropdown-menu {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.98), rgba(20, 20, 20, 0.98));
    backdrop-filter: blur(20px);
    border: 1px solid rgba(251, 146, 60, 0.3);
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    min-width: 220px;
    z-index: 1000;
    animation: dropdown-fade-in 0.3s ease;
    overflow: hidden;
}

@keyframes dropdown-fade-in {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.user-dropdown-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: linear-gradient(135deg, rgba(251, 146, 60, 0.1), rgba(249, 115, 22, 0.05));
    border-bottom: 1px solid rgba(251, 146, 60, 0.2);
}

.user-dropdown-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(251, 146, 60, 0.6);
    box-shadow: 0 4px 15px rgba(251, 146, 60, 0.3);
}

.user-dropdown-info {
    flex: 1;
    min-width: 0;
}

.user-dropdown-name {
    font-size: 0.95rem;
    font-weight: 700;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 4px;
}

.user-dropdown-id {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    font-family: 'Courier New', monospace;
}

.user-dropdown-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 8px 0;
}

.user-dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
    border: none;
    background: none;
    width: 100%;
    text-align: left;
    font-size: 0.9rem;
}

.user-dropdown-item:hover {
    background: linear-gradient(135deg, rgba(251, 146, 60, 0.15), rgba(249, 115, 22, 0.1));
    color: #fb923c;
    padding-left: 20px;
}

.user-dropdown-item i {
    width: 18px;
    text-align: center;
    font-size: 0.85rem;
    color: rgba(251, 146, 60, 0.8);
    transition: transform 0.2s ease;
}

.user-dropdown-item:hover i {
    transform: scale(1.2);
    color: #fb923c;
}

.user-dropdown-logout {
    color: rgba(239, 68, 68, 0.9);
}

.user-dropdown-logout:hover {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.15), rgba(220, 38, 38, 0.1));
    color: #ef4444;
}

.user-dropdown-logout i {
    color: rgba(239, 68, 68, 0.8);
}

.user-dropdown-logout:hover i {
    color: #ef4444;
}

@media (max-width: 768px) {
    .user-dropdown-menu {
        right: -10px;
        min-width: 200px;
    }
    
    .user-profile-main {
        padding: 4px 8px;
        gap: 0.4rem;
    }
    
    .user-info {
        display: none;
    }
    
    .user-dropdown-icon {
        display: none;
    }
}

.hero {
    position: relative;
    min-height: calc(100vh - 60px);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 60px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('assets/bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
    filter: brightness(0.6);
}

.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(251, 146, 60, 0.1) 0%, rgba(26, 26, 26, 0.95) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 4rem 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-block;
    background-color: rgba(251, 146, 60, 0.9);
    padding: 8px 20px;
    border-radius: 20px;
    margin-bottom: 1.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: #fff;
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    line-height: 1.6;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-bottom: 3rem;
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

.cta-button {
    background-color: rgba(251, 146, 60, 0.9);
    color: #fff;
    border: none;
    padding: 16px 40px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: background-color 0.3s, transform 0.2s;
}

.cta-button:hover {
    background-color: rgba(251, 146, 60, 1);
    transform: translateY(-2px);
}

.cta-button i {
    font-size: 1.3rem;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(251, 146, 60, 0.2);
    color: #fb923c;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.section-badge i {
    font-size: 0.8rem;
}

.about-section {
    background-color: #000;
    padding: 6rem 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text {
    padding-right: 2rem;
}

.about-section .section-title {
    text-align: left;
    margin-bottom: 1.5rem;
}

.about-description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 3rem;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.feature-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(251, 146, 60, 0.2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fb923c;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.feature-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
}

.feature-description {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.about-image-wrapper {
    position: relative;
}

.about-image {
    width: 100%;
    height: 500px;
    background-image: url('assets/visitroxwood.png');
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    position: relative;
}

.about-stats-overlay {
    position: absolute;
    bottom: 20px;
    right: 20px;
    display: flex;
    gap: 1rem;
}

.about-stat-box {
    background-color: rgba(255, 255, 255, 0.95);
    padding: 1rem 1.5rem;
    border-radius: 8px;
    text-align: center;
}

.about-stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 0.25rem;
}

.about-stat-label {
    font-size: 0.85rem;
    color: rgba(0, 0, 0, 0.7);
}

.blog-section {
    background-color: #000;
    padding: 6rem 0;
}

.blog-section .section-badge {
    display: block;
    text-align: center;
    margin: 0 auto 1rem;
    width: fit-content;
}

.blog-section .section-title {
    text-align: center;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.blog-card {
    background-color: #1a1a1a;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(251, 146, 60, 0.2);
}

.blog-image {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: rgba(251, 146, 60, 0.95);
    color: #fff;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    z-index: 2;
}

.blog-content {
    padding: 1.5rem;
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

.blog-engagement {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-left: auto;
}

.blog-engagement i {
    margin-right: 0.25rem;
}

.blog-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.75rem;
}

.blog-excerpt {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.blog-link {
    color: #fb923c;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: color 0.3s;
}

.blog-link:hover {
    color: #f97316;
}

.blog-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 2rem;
}

.show-all-link {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: color 0.3s;
}

.show-all-link:hover {
    color: #fb923c;
}

.blog-arrows {
    display: flex;
    gap: 0.5rem;
}

.blog-arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #1a1a1a;
    border: none;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s;
}

.blog-arrow:hover {
    background-color: #fb923c;
}

.faq-section {
    background-color: #000;
    padding: 6rem 0;
}

.faq-section .section-badge {
    display: block;
    text-align: center;
    margin: 0 auto 1rem;
    width: fit-content;
}

.faq-section .section-title {
    text-align: center;
}

.faq-description {
    text-align: center;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto 3rem;
}

.faq-item {
    background-color: #1a1a1a;
    border-radius: 8px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.3s;
}

.faq-question:hover {
    background-color: #252525;
}

.faq-question span {
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
}

.faq-question i {
    color: rgba(255, 255, 255, 0.6);
    transition: transform 0.3s;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
    padding: 0 1.5rem;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 1.5rem 1.5rem;
}

.faq-answer p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.faq-cta {
    text-align: center;
}

.support-button {
    background-color: rgba(251, 146, 60, 0.9);
    color: #fff;
    border: none;
    padding: 16px 40px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: background-color 0.3s, transform 0.2s;
}

.support-button:hover {
    background-color: rgba(251, 146, 60, 1);
    transform: translateY(-2px);
}

.support-button i {
    font-size: 1.2rem;
}

.discord-section {
    background-color: #000;
    padding: 6rem 0;
}

.discord-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(251, 146, 60, 0.2);
    color: #fb923c;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
    margin-left: 50%;
    transform: translateX(-50%);
}

.discord-section .section-title {
    text-align: center;
}

.discord-description {
    text-align: center;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.discord-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
    margin-bottom: 4rem;
}

.discord-button {
    background: linear-gradient(135deg, #fb923c, #f97316);
    color: #fff;
    border: none;
    padding: 18px 50px;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: transform 0.2s, box-shadow 0.3s;
    box-shadow: 0 4px 15px rgba(251, 146, 60, 0.3);
}

.discord-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(251, 146, 60, 0.4);
}

.discord-button i {
    font-size: 1.5rem;
}

.discord-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1000px;
    width: 100%;
}

.discord-feature {
    text-align: center;
}

.discord-feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(251, 146, 60, 0.2), rgba(251, 146, 60, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: #fb923c;
    font-size: 1.5rem;
}

.discord-feature-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.75rem;
}

.discord-feature-description {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.hawks-roleplay-logo-large {
    text-align: center;
    margin: 4rem 0;
}

.hawks-roleplay-logo-large span {
    font-size: 4rem;
    font-weight: 900;
    background: linear-gradient(135deg, #fb923c, #f97316);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -2px;
}

.about-box {
    max-width: 800px;
    margin: 0 auto;
    background-color: #1a1a1a;
    color: #fff;
    padding: 3rem;
    border-radius: 12px;
    border: 1px solid rgba(251, 146, 60, 0.2);
}

.about-box h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #fff;
}

.about-box p {
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
}

.blog-detail-section {
    background-color: #000;
    padding: 8rem 0 4rem;
    margin-top: 60px;
}

.blog-detail-content {
    max-width: 900px;
    margin: 0 auto;
    background-color: #1a1a1a;
    border-radius: 12px;
    padding: 3rem;
    margin-bottom: 2rem;
}

.blog-detail-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.blog-author-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.blog-author-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #fb923c, #f97316);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
}

.blog-author-details {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.blog-author-name {
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
}

.blog-date {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
}

.blog-detail-engagement {
    display: flex;
    gap: 1.5rem;
}

.engagement-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.engagement-item i {
    font-size: 1rem;
}

.blog-detail-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 2rem;
    line-height: 1.3;
}

.blog-detail-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.blog-detail-text p {
    margin-bottom: 1.5rem;
}

.blog-detail-text strong {
    color: #fff;
    font-weight: 700;
}

.blog-detail-tags {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.tags-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    font-weight: 600;
}

.tags-list {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.tag-item {
    background-color: rgba(251, 146, 60, 0.2);
    color: #fb923c;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
}

.tag-item:hover {
    background-color: rgba(251, 146, 60, 0.3);
}

.blog-signin-required {
    max-width: 900px;
    margin: 0 auto 3rem;
    background-color: #1a1a1a;
    border-radius: 12px;
    padding: 3rem;
    text-align: center;
    border: 1px solid rgba(251, 146, 60, 0.2);
}

.signin-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(251, 146, 60, 0.2), rgba(249, 115, 22, 0.2));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: #fb923c;
    font-size: 2rem;
}

.signin-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
}

.signin-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
}

.blog-related-section {
    max-width: 1200px;
    margin: 0 auto;
}

.related-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.related-title-wrapper {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.related-title-wrapper i {
    color: #fb923c;
    font-size: 1.5rem;
}

.related-title {
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    margin: 0;
}

.related-see-all {
    background: linear-gradient(135deg, #fb923c, #f97316);
    color: #fff;
    padding: 10px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: transform 0.2s, box-shadow 0.3s;
    box-shadow: 0 4px 15px rgba(251, 146, 60, 0.3);
}

.related-see-all:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(251, 146, 60, 0.4);
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.related-card {
    background-color: #1a1a1a;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.related-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(251, 146, 60, 0.2);
}

.related-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.related-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.related-content {
    padding: 1.5rem;
}

.related-card-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
}

.auth-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.98) 0%, rgba(10, 10, 10, 0.98) 100%);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    animation: authOverlayFadeIn 0.4s ease-out;
}

.auth-overlay-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 1;
}

.auth-overlay-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(251, 146, 60, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(249, 115, 22, 0.05) 0%, transparent 50%);
    animation: authPatternMove 20s ease-in-out infinite;
}

@keyframes authOverlayFadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes authPatternMove {
    0%, 100% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(20px, 20px);
    }
}

.auth-overlay-content {
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
    border-radius: 24px;
    padding: 4rem 3.5rem;
    text-align: center;
    max-width: 550px;
    width: 100%;
    border: 1px solid rgba(251, 146, 60, 0.2);
    box-shadow: 
        0 25px 80px rgba(0, 0, 0, 0.6),
        0 0 0 1px rgba(251, 146, 60, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    position: relative;
    z-index: 2;
    animation: authContentSlideUp 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes authContentSlideUp {
    0% {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.auth-overlay-icon-wrapper {
    margin-bottom: 2.5rem;
    position: relative;
}

.auth-overlay-icon-circle {
    width: 140px;
    height: 140px;
    margin: 0 auto;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.auth-overlay-icon-inner {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(251, 146, 60, 0.15), rgba(249, 115, 22, 0.15));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid rgba(251, 146, 60, 0.4);
    position: relative;
    z-index: 3;
    backdrop-filter: blur(10px);
    box-shadow: 
        0 0 30px rgba(251, 146, 60, 0.3),
        inset 0 0 30px rgba(251, 146, 60, 0.1);
    animation: authIconPulse 2s ease-in-out infinite;
}

.auth-overlay-icon-inner i {
    font-size: 2.8rem;
    background: linear-gradient(135deg, #fb923c, #f97316);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 15px rgba(251, 146, 60, 0.6));
}

.auth-overlay-icon-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    border: 2px solid rgba(251, 146, 60, 0.3);
    border-radius: 50%;
    border-top-color: #fb923c;
    border-right-color: #f97316;
    animation: authRingRotate 2s linear infinite;
}

.auth-overlay-icon-ring-2 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 140px;
    height: 140px;
    border: 2px solid rgba(251, 146, 60, 0.2);
    border-radius: 50%;
    border-bottom-color: #fb923c;
    border-left-color: #f97316;
    animation: authRingRotate 3s linear infinite reverse;
}

@keyframes authIconPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 
            0 0 30px rgba(251, 146, 60, 0.3),
            inset 0 0 30px rgba(251, 146, 60, 0.1);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 
            0 0 50px rgba(251, 146, 60, 0.5),
            inset 0 0 50px rgba(251, 146, 60, 0.2);
    }
}

@keyframes authRingRotate {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.auth-overlay-text-content {
    margin-bottom: 2.5rem;
}

.auth-overlay-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, #fff 0%, #fb923c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.auth-overlay-message {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.5rem;
    line-height: 1.6;
    font-weight: 500;
}

.auth-overlay-submessage {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
}

.auth-progress-wrapper {
    margin-bottom: 2rem;
}

.auth-progress-container {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 1rem;
    position: relative;
    box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.3);
}

.auth-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #fb923c, #f97316, #fb923c);
    background-size: 200% 100%;
    border-radius: 10px;
    width: 0%;
    transition: width 0.1s linear;
    position: relative;
    box-shadow: 
        0 0 20px rgba(251, 146, 60, 0.6),
        0 0 40px rgba(251, 146, 60, 0.3);
    animation: authProgressGradient 2s linear infinite;
}

.auth-progress-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: authProgressShine 2s ease-in-out infinite;
}

@keyframes authProgressGradient {
    0% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 200% 50%;
    }
}

@keyframes authProgressShine {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

.auth-progress-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
}

.auth-progress-text {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

.auth-progress-percentage {
    color: #fb923c;
    font-weight: 700;
    font-size: 1rem;
    text-shadow: 0 0 10px rgba(251, 146, 60, 0.5);
}

.auth-overlay-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.auth-overlay-footer i {
    color: rgba(251, 146, 60, 0.7);
    font-size: 0.85rem;
}

.auth-overlay-link {
    color: #fb923c;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s, text-shadow 0.3s;
}

.auth-overlay-link:hover {
    color: #f97316;
    text-shadow: 0 0 10px rgba(251, 146, 60, 0.5);
}

.main-footer {
    background-color: #0a0a0a;
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-column h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
}

.footer-column p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 0.75rem;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-column ul li a:hover {
    color: #fb923c;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.footer-bottom p {
    margin-bottom: 0.5rem;
}

.settings-icon {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 999;
    transition: background-color 0.3s;
}

.settings-icon:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.settings-icon i {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.2rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 2rem;
}

#particle-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    opacity: 0.6;
    transition: opacity 0.3s;
}


@media (max-width: 1024px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-text {
        padding-right: 0;
    }

    .discord-features {
        grid-template-columns: 1fr;
    }

    .hawks-roleplay-logo-large span {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .navbar {
        height: 55px;
    }

    .navbar.scrolled {
        height: 50px;
    }

    .nav-container {
        padding: 0 1.5rem;
    }

    .logo-icon {
        width: 32px;
        height: 32px;
    }

    .logo-text {
        font-size: 1.2rem;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 55px;
        left: 0;
        right: 0;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(30px) saturate(180%);
        -webkit-backdrop-filter: blur(30px) saturate(180%);
        border-bottom: 1px solid rgba(251, 146, 60, 0.2);
        flex-direction: column;
        padding: 1.5rem 1.5rem;
        gap: 0.5rem;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
        max-height: calc(100vh - 55px);
        overflow-y: auto;
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-menu li {
        width: 100%;
    }

    .nav-menu a {
        width: 100%;
        padding: 14px 20px;
        justify-content: flex-start;
        border-radius: 12px;
    }

    .nav-menu a::after {
        display: none;
    }

    .nav-menu a.active {
        background: linear-gradient(135deg, rgba(251, 146, 60, 0.2), rgba(249, 115, 22, 0.15));
        border: 1px solid rgba(251, 146, 60, 0.3);
    }

    .nav-right {
        gap: 0.75rem;
    }

    .login-btn {
        padding: 10px 18px;
        font-size: 0.9rem;
    }

    .user-profile {
        padding: 8px 12px;
        gap: 0.5rem;
    }

    .user-avatar {
        width: 28px;
        height: 28px;
    }

    .user-info {
        display: none;
    }

    .logout-btn {
        padding: 6px 10px;
        margin-left: 0;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-box {
        padding: 2rem 1.5rem;
    }

    .blog-detail-content {
        padding: 2rem 1.5rem;
    }

    .blog-detail-title {
        font-size: 2rem;
    }

    .blog-detail-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .blog-detail-engagement {
        align-self: flex-start;
    }

    .related-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .related-grid {
        grid-template-columns: 1fr;
    }

    .blog-signin-required {
        padding: 2rem 1.5rem;
    }

    .auth-overlay {
        padding: 2rem 1.5rem;
    }

    .auth-overlay-content {
        padding: 2.5rem 2rem;
    }

    .auth-overlay-title {
        font-size: 1.5rem;
    }

    .auth-overlay-message {
        font-size: 1rem;
    }

    .preloader-logo-circle {
        width: 140px;
        height: 140px;
    }

    .preloader-logo-inner {
        width: 100px;
        height: 100px;
    }

    .preloader-logo-inner i {
        font-size: 3rem;
    }

    .preloader-logo-ring {
        width: 130px;
        height: 130px;
    }

    .preloader-logo-ring-2 {
        width: 140px;
        height: 140px;
    }

    .preloader-text {
        font-size: 2.5rem;
        letter-spacing: 2px;
    }

    .preloader-subtext {
        font-size: 0.95rem;
    }

    .preloader-progress-wrapper {
        width: 90%;
    }

    .preloader-percentage {
        font-size: 1.2rem;
    }

    .preloader-loading-text {
        font-size: 0.9rem;
    }
}
