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

body {
    font-family: 'Exo 2', sans-serif;
    background: #0a0a0a;
    color: #ffffff;
    overflow-x: hidden;
    line-height: 1.6;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(138, 43, 226, 0.3);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    font-weight: 700;
    color: #8a2be2;
    text-shadow: 0 0 20px rgba(138, 43, 226, 0.5);
}

.nav-logo i {
    margin-right: 10px;
    font-size: 1.8rem;
    animation: float 3s ease-in-out infinite;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 10px 0;
}

.nav-link:hover {
    color: #8a2be2;
    text-shadow: 0 0 10px rgba(138, 43, 226, 0.8);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #8a2be2, #ff6b6b);
    transition: width 0.3s ease;
}

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

.nav-actions {
    display: flex;
    align-items: center;
    margin-right: 20px;
}

.discord-join-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: linear-gradient(45deg, #5865f2, #7289da);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(88, 101, 242, 0.3);
}

.discord-join-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(88, 101, 242, 0.4);
    background: linear-gradient(45deg, #4752c4, #5b6ecd);
}

.discord-join-btn i {
    font-size: 1.1rem;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #8a2be2;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a0a2e 50%, #16213e 100%);
    overflow: hidden;
}

.hero-background {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, #8a2be2, transparent),
        radial-gradient(2px 2px at 40px 70px, #ff6b6b, transparent),
        radial-gradient(1px 1px at 90px 40px, #4ecdc4, transparent),
        radial-gradient(1px 1px at 130px 80px, #45b7d1, transparent);
    background-repeat: repeat;
    background-size: 200px 200px;
    animation: float 20s linear infinite;
    opacity: 0.6;
}

.hero-content {
    text-align: center;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.hero-title {
    font-family: 'Orbitron', monospace;
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.glitch {
    position: relative;
    color: #8a2be2;
    text-shadow: 
        0 0 10px rgba(138, 43, 226, 0.8),
        0 0 20px rgba(138, 43, 226, 0.6),
        0 0 30px rgba(138, 43, 226, 0.4);
    animation: glitch 2s infinite;
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.glitch::before {
    animation: glitch-1 0.5s infinite;
    color: #ff6b6b;
    z-index: -1;
}

.glitch::after {
    animation: glitch-2 0.5s infinite;
    color: #4ecdc4;
    z-index: -2;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #ff6b6b;
    font-weight: 400;
}

.hero-tagline {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #4ecdc4;
    font-weight: 600;
    font-style: italic;
    opacity: 0.9;
    text-shadow: 0 0 20px rgba(78, 205, 196, 0.5);
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(45deg, #8a2be2, #ff6b6b);
    color: white;
    box-shadow: 0 10px 30px rgba(138, 43, 226, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(138, 43, 226, 0.6);
}

.btn-secondary {
    background: transparent;
    color: #8a2be2;
    border: 2px solid #8a2be2;
}

.btn-secondary:hover {
    background: #8a2be2;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(138, 43, 226, 0.4);
}

.pulse-btn {
    animation: pulse 2s infinite;
}

.hero-3d-element {
    position: absolute;
    top: 50%;
    right: 10%;
    transform: translateY(-50%);
    z-index: 1;
}

.floating-cube {
    width: 100px;
    height: 100px;
    background: linear-gradient(45deg, #8a2be2, #ff6b6b);
    transform-style: preserve-3d;
    animation: rotate3d 10s linear infinite;
    position: relative;
    opacity: 0.7;
}

.floating-sphere {
    width: 60px;
    height: 60px;
    background: radial-gradient(circle, #4ecdc4, #45b7d1);
    border-radius: 50%;
    position: absolute;
    top: -30px;
    left: 120px;
    animation: float 4s ease-in-out infinite;
    box-shadow: 0 0 30px rgba(78, 205, 196, 0.6);
}

/* Sections */
.section-title {
    text-align: center;
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    margin-bottom: 50px;
    position: relative;
}

.title-glow {
    background: linear-gradient(45deg, #8a2be2, #ff6b6b, #4ecdc4);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 3s ease infinite;
}

/* Servers Section */
.servers {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a0a2e 0%, #16213e 100%);
}

.servers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.server-card {
    height: 400px;
    perspective: 1000px;
    cursor: pointer;
}

.card-3d-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transition: transform 0.6s;
}

.server-card:hover .card-3d-wrapper {
    transform: rotateY(180deg);
}

.card-front,
.card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 20px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.card-front {
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.1), rgba(255, 107, 107, 0.1));
    border: 1px solid rgba(138, 43, 226, 0.3);
    backdrop-filter: blur(10px);
}

.card-back {
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.1), rgba(78, 205, 196, 0.1));
    border: 1px solid rgba(255, 107, 107, 0.3);
    backdrop-filter: blur(10px);
    transform: rotateY(180deg);
}

.server-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    color: #8a2be2;
    text-shadow: 0 0 20px rgba(138, 43, 226, 0.6);
}

.minecraft-card .server-icon {
    color: #4ecdc4;
    text-shadow: 0 0 20px rgba(78, 205, 196, 0.6);
}

.gta-card .server-icon {
    color: #ff6b6b;
    text-shadow: 0 0 20px rgba(255, 107, 107, 0.6);
}

.freefire-card .server-icon {
    color: #ff9500;
    text-shadow: 0 0 20px rgba(255, 149, 0, 0.6);
}

.roblox-card .server-icon {
    color: #00d4ff;
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.6);
}

.server-card h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    font-family: 'Orbitron', monospace;
}

.server-card p {
    margin-bottom: 20px;
    opacity: 0.9;
}

.server-stats {
    display: flex;
    gap: 30px;
    margin-top: 20px;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #8a2be2;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

.card-back ul {
    list-style: none;
    margin: 20px 0;
}

.card-back li {
    margin: 10px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.card-back li i {
    color: #4ecdc4;
}

.btn-join {
    background: linear-gradient(45deg, #8a2be2, #ff6b6b);
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.btn-join:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(138, 43, 226, 0.4);
}

/* Community Section */
.community {
    padding: 100px 0;
    background: #0a0a0a;
}

.community-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.community-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.stat-card {
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.1), rgba(255, 107, 107, 0.1));
    border: 1px solid rgba(138, 43, 226, 0.3);
    border-radius: 15px;
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(138, 43, 226, 0.2);
}

.stat-icon {
    font-size: 2.5rem;
    color: #8a2be2;
    text-shadow: 0 0 15px rgba(138, 43, 226, 0.6);
}

.stat-info .stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ff6b6b;
    display: block;
}

.stat-info .stat-label {
    font-size: 1rem;
    opacity: 0.8;
}

.community-features {
    display: grid;
    gap: 30px;
}

.feature {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.feature-icon {
    font-size: 2rem;
    color: #4ecdc4;
    text-shadow: 0 0 15px rgba(78, 205, 196, 0.6);
    margin-top: 5px;
}

.feature h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #8a2be2;
}

.feature p {
    opacity: 0.9;
    line-height: 1.6;
}

/* Events Section */
.events {
    padding: 100px 0;
    background: linear-gradient(135deg, #16213e 0%, #1a0a2e 100%);
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.event-card {
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.1), rgba(255, 107, 107, 0.1));
    border: 1px solid rgba(138, 43, 226, 0.3);
    border-radius: 15px;
    padding: 25px;
    display: flex;
    gap: 20px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(138, 43, 226, 0.2);
}

.event-date {
    background: linear-gradient(45deg, #8a2be2, #ff6b6b);
    border-radius: 10px;
    padding: 15px;
    text-align: center;
    min-width: 80px;
}

.event-date .day {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1;
}

.event-date .month {
    display: block;
    font-size: 0.9rem;
    opacity: 0.9;
}

.event-info h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #8a2be2;
}

.event-info p {
    margin-bottom: 15px;
    opacity: 0.9;
    line-height: 1.6;
}

.event-meta {
    display: flex;
    gap: 20px;
    font-size: 0.9rem;
    opacity: 0.8;
}

.event-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: #0a0a0a;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.contact-info h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #8a2be2;
    font-family: 'Orbitron', monospace;
}

.contact-info p {
    margin-bottom: 30px;
    opacity: 0.9;
    line-height: 1.8;
    font-size: 1.1rem;
}

.social-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 25px;
    border-radius: 50px;
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
    font-weight: 600;
}

.social-link.discord {
    background: linear-gradient(45deg, #5865f2, #7289da);
}

.social-link.youtube {
    background: linear-gradient(45deg, #ff0000, #ff4444);
}

.social-link.twitter {
    background: linear-gradient(45deg, #1da1f2, #0d8bd9);
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.server-info {
    display: grid;
    gap: 30px;
}

.server-details {
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.1), rgba(255, 107, 107, 0.1));
    border: 1px solid rgba(138, 43, 226, 0.3);
    border-radius: 15px;
    padding: 25px;
    backdrop-filter: blur(10px);
    text-align: center;
}

.server-details h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #8a2be2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.server-ip {
    font-family: 'Orbitron', monospace;
    font-size: 1.1rem;
    color: #4ecdc4;
    margin-bottom: 10px;
    background: rgba(78, 205, 196, 0.1);
    padding: 10px;
    border-radius: 8px;
    border: 1px solid rgba(78, 205, 196, 0.3);
}

.server-version {
    opacity: 0.8;
    font-size: 0.9rem;
}

.live-stats {
    display: flex;
    gap: 20px;
    margin-top: 15px;
    padding: 20px;
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.1), rgba(78, 205, 196, 0.1));
    border-radius: 15px;
    border: 2px solid rgba(78, 205, 196, 0.3);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.live-stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: shimmer 3s infinite;
}

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

.live-stat {
    text-align: center;
    flex: 1;
    position: relative;
    z-index: 1;
}

.live-label {
    display: block;
    font-size: 0.9rem;
    color: #b0b0b0;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.live-value {
    display: block;
    font-size: 1.4rem;
    font-weight: bold;
    color: #4ecdc4;
    transition: all 0.3s ease;
    text-shadow: 0 0 15px rgba(78, 205, 196, 0.6);
}

.live-value.online {
    color: #4ecdc4;
    text-shadow: 0 0 20px rgba(78, 205, 196, 0.8);
    animation: glow-online 2s ease-in-out infinite alternate;
}

.live-value.offline {
    color: #ff6b6b;
    text-shadow: 0 0 20px rgba(255, 107, 107, 0.8);
    animation: glow-offline 2s ease-in-out infinite alternate;
}

.live-value.loading {
    color: #ffa500;
    animation: pulse-loading 1.5s infinite;
}

@keyframes glow-online {
    0% { text-shadow: 0 0 15px rgba(78, 205, 196, 0.6); }
    100% { text-shadow: 0 0 25px rgba(78, 205, 196, 1), 0 0 35px rgba(78, 205, 196, 0.8); }
}

@keyframes glow-offline {
    0% { text-shadow: 0 0 15px rgba(255, 107, 107, 0.6); }
    100% { text-shadow: 0 0 25px rgba(255, 107, 107, 1), 0 0 35px rgba(255, 107, 107, 0.8); }
}

@keyframes pulse-loading {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.05);
    }
}

/* Enhanced server status indicators */
.stat-number.online {
    color: #4ecdc4 !important;
    text-shadow: 0 0 15px rgba(78, 205, 196, 0.7);
    animation: status-pulse-online 3s ease-in-out infinite;
}

.stat-number.offline {
    color: #ff6b6b !important;
    text-shadow: 0 0 15px rgba(255, 107, 107, 0.7);
    animation: status-pulse-offline 3s ease-in-out infinite;
}

@keyframes status-pulse-online {
    0%, 100% { 
        text-shadow: 0 0 15px rgba(78, 205, 196, 0.7);
        transform: scale(1);
    }
    50% { 
        text-shadow: 0 0 25px rgba(78, 205, 196, 1), 0 0 35px rgba(78, 205, 196, 0.5);
        transform: scale(1.02);
    }
}

@keyframes status-pulse-offline {
    0%, 100% { 
        text-shadow: 0 0 15px rgba(255, 107, 107, 0.7);
        transform: scale(1);
    }
    50% { 
        text-shadow: 0 0 25px rgba(255, 107, 107, 1), 0 0 35px rgba(255, 107, 107, 0.5);
        transform: scale(1.02);
    }
}

/* Real-time status indicators */
.server-card {
    position: relative;
}

.server-card.online::before {
    content: '●';
    position: absolute;
    top: 15px;
    right: 15px;
    color: #4ecdc4;
    font-size: 20px;
    animation: blink-online 2s infinite;
    z-index: 10;
}

.server-card.offline::before {
    content: '●';
    position: absolute;
    top: 15px;
    right: 15px;
    color: #ff6b6b;
    font-size: 20px;
    animation: blink-offline 2s infinite;
    z-index: 10;
}

@keyframes blink-online {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0.3; }
}

@keyframes blink-offline {
    0%, 70% { opacity: 1; }
    71%, 100% { opacity: 0.2; }
}

/* Refresh Status Button */
.refresh-status-btn {
    background: linear-gradient(135deg, #4ecdc4, #44a08d);
    border: none;
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(78, 205, 196, 0.3);
    position: relative;
    overflow: hidden;
}

.refresh-status-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(78, 205, 196, 0.4);
    background: linear-gradient(135deg, #44a08d, #4ecdc4);
}

.refresh-status-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(78, 205, 196, 0.3);
}

.refresh-status-btn.loading {
    background: linear-gradient(135deg, #ffa500, #ff8c00);
    cursor: not-allowed;
    animation: button-pulse 1.5s infinite;
}

.refresh-status-btn.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid transparent;
    border-top: 2px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes button-pulse {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(255, 165, 0, 0.3);
    }
    50% {
        box-shadow: 0 6px 25px rgba(255, 165, 0, 0.6);
    }
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Status indicators with enhanced animations */
.status-indicator {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin-right: 8px;
    animation: status-blink 2s infinite;
}

.status-indicator.online {
    background: #4ecdc4;
    box-shadow: 0 0 10px rgba(78, 205, 196, 0.8);
}

.status-indicator.offline {
    background: #ff6b6b;
    box-shadow: 0 0 10px rgba(255, 107, 107, 0.8);
}

.status-indicator.connecting {
    background: #ffa500;
    box-shadow: 0 0 10px rgba(255, 165, 0, 0.8);
    animation: connecting-pulse 1s infinite;
}

@keyframes status-blink {
    0%, 80% { opacity: 1; }
    81%, 100% { opacity: 0.3; }
}

@keyframes connecting-pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.7;
    }
}

/* Last seen timestamp */
.last-seen {
    font-size: 0.8rem;
    color: #888;
    margin-top: 10px;
    text-align: center;
    font-style: italic;
}

/* Number animation for smooth transitions */
.stat-number {
    transition: all 0.5s ease;
    display: inline-block;
}

.stat-number.updating {
    animation: number-update 0.5s ease;
}

@keyframes number-update {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); color: #ffa500; }
    100% { transform: scale(1); }
}

/* Footer */
.footer {
    background: #000000;
    padding: 40px 0;
    border-top: 1px solid rgba(138, 43, 226, 0.3);
}

.footer-content {
    text-align: center;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: 'Orbitron', monospace;
    font-size: 1.3rem;
    font-weight: 700;
    color: #8a2be2;
    margin-bottom: 15px;
}

.footer-logo i {
    font-size: 1.5rem;
}

.footer p {
    opacity: 0.7;
    font-size: 0.9rem;
}

.designer-credit {
    margin: 0.5rem 0;
}

.designed-by {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    font-style: italic;
}

.designer-name {
    color: #8a2be2;
    font-weight: bold;
    font-style: normal;
    text-shadow: 0 0 10px rgba(138, 43, 226, 0.3);
    transition: all 0.3s ease;
}

.designer-name:hover {
    color: #fff;
    text-shadow: 0 0 15px rgba(138, 43, 226, 0.6);
}

/* Animations */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

@keyframes rotate3d {
    0% { transform: rotateX(0deg) rotateY(0deg); }
    100% { transform: rotateX(360deg) rotateY(360deg); }
}

@keyframes pulse {
    0% { box-shadow: 0 10px 30px rgba(138, 43, 226, 0.4); }
    50% { box-shadow: 0 15px 40px rgba(138, 43, 226, 0.8); }
    100% { box-shadow: 0 10px 30px rgba(138, 43, 226, 0.4); }
}

@keyframes glitch {
    0%, 100% { transform: translate(0); }
    20% { transform: translate(-2px, 2px); }
    40% { transform: translate(-2px, -2px); }
    60% { transform: translate(2px, 2px); }
    80% { transform: translate(2px, -2px); }
}

@keyframes glitch-1 {
    0%, 100% { transform: translate(0); }
    20% { transform: translate(-2px, 2px); }
    40% { transform: translate(-2px, -2px); }
    60% { transform: translate(2px, 2px); }
    80% { transform: translate(2px, -2px); }
}

@keyframes glitch-2 {
    0%, 100% { transform: translate(0); }
    20% { transform: translate(2px, -2px); }
    40% { transform: translate(2px, 2px); }
    60% { transform: translate(-2px, -2px); }
    80% { transform: translate(-2px, 2px); }
}

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



/* Notification System */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: rgba(20, 20, 20, 0.95);
    border: 1px solid #8a2be2;
    border-radius: 10px;
    padding: 15px 20px;
    color: white;
    font-family: 'Orbitron', monospace;
    font-size: 14px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    transform: translateX(400px);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 10000;
    max-width: 350px;
}

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

.notification-content {
    display: flex;
    align-items: center;
    gap: 10px;
}

.notification-content i {
    font-size: 18px;
}

.notification-success {
    border-color: #4ecdc4;
    background: linear-gradient(135deg, rgba(78, 205, 196, 0.1), rgba(20, 20, 20, 0.95));
}

.notification-success .notification-content i {
    color: #4ecdc4;
    text-shadow: 0 0 10px rgba(78, 205, 196, 0.6);
}

.notification-info {
    border-color: #45b7d1;
    background: linear-gradient(135deg, rgba(69, 183, 209, 0.1), rgba(20, 20, 20, 0.95));
}

.notification-info .notification-content i {
    color: #45b7d1;
    text-shadow: 0 0 10px rgba(69, 183, 209, 0.6);
}

@media (max-width: 768px) {
    .notification {
        top: 10px;
        right: 10px;
        left: 10px;
        max-width: none;
        transform: translateY(-100px);
    }
    
    .notification.show {
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        padding: 0 15px;
    }
    
    .nav-actions {
        margin-right: 10px;
    }
    
    .discord-join-btn {
        padding: 8px 15px;
        font-size: 0.8rem;
    }
    
    .discord-text {
        display: none;
    }
    
    .discord-join-btn i {
        font-size: 1.2rem;
    }
    
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(10, 10, 10, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        backdrop-filter: blur(15px);
        padding: 30px 0;
        border-top: 1px solid rgba(138, 43, 226, 0.3);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 15px 0;
    }
    
    .nav-link {
        font-size: 1.1rem;
        padding: 15px 0;
    }
    
    .hero {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2.5rem;
        margin-bottom: 15px;
    }
    
    .hero-tagline {
        font-size: 1.8rem;
        margin-bottom: 10px;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-description {
        font-size: 1rem;
        margin-bottom: 25px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .btn {
        padding: 12px 25px;
        font-size: 0.9rem;
        width: 200px;
        justify-content: center;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .servers {
        padding: 80px 0;
    }
    
    .servers-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-top: 40px;
    }
    
    .server-card {
        height: 380px;
    }
    
    .card-front,
    .card-back {
        padding: 25px;
    }
    
    .server-icon {
        font-size: 3.5rem;
        margin-bottom: 15px;
    }
    
    .server-card h3 {
        font-size: 1.5rem;
        margin-bottom: 12px;
    }
    
    .server-card p {
        font-size: 0.9rem;
        margin-bottom: 15px;
    }
    
    .server-stats {
        gap: 20px;
        margin-top: 15px;
    }
    
    .stat-number {
        font-size: 1.3rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    .community-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .events-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-3d-element {
        display: none;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .section-title {
        font-size: 2.2rem;
        margin-bottom: 40px;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 10px;
        height: 65px;
    }
    
    .nav-logo {
        font-size: 1.3rem;
    }
    
    .nav-logo i {
        font-size: 1.5rem;
        margin-right: 8px;
    }
    
    .discord-join-btn {
        padding: 6px 12px;
        border-radius: 20px;
    }
    
    .discord-join-btn i {
        font-size: 1.1rem;
    }
    
    .nav-menu {
        top: 65px;
        padding: 25px 0;
    }
    
    .hero {
        padding: 0 10px;
        min-height: 100vh;
    }
    
    .hero-content {
        padding: 0 10px;
    }
    
    .hero-title {
        font-size: 2rem;
        letter-spacing: 2px;
        margin-bottom: 12px;
    }
    
    .hero-tagline {
        font-size: 1.5rem;
        margin-bottom: 8px;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }
    
    .hero-description {
        font-size: 0.95rem;
        margin-bottom: 20px;
        line-height: 1.6;
    }
    
    .hero-buttons {
        gap: 12px;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.85rem;
        width: 180px;
    }
    
    .container {
        padding: 0 10px;
    }
    
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }
    
    .servers {
        padding: 60px 0;
    }
    
    .servers-grid {
        gap: 25px;
        margin-top: 30px;
    }
    
    .server-card {
        height: 320px;
    }
    
    .card-front,
    .card-back {
        padding: 20px;
    }
    
    .server-icon {
        font-size: 3rem;
        margin-bottom: 12px;
    }
    
    .server-card h3 {
        font-size: 1.3rem;
        margin-bottom: 10px;
    }
    
    .server-card p {
        font-size: 0.85rem;
        margin-bottom: 12px;
        line-height: 1.5;
    }
    
    .server-stats {
        gap: 15px;
        margin-top: 12px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .stat {
        min-width: 80px;
    }
    
    .stat-number {
        font-size: 1.1rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
    
    .card-back ul {
        margin: 15px 0;
    }
    
    .card-back li {
        margin: 8px 0;
        font-size: 0.9rem;
    }
    
    .btn-join {
        padding: 10px 20px;
        font-size: 0.85rem;
        margin-top: 15px;
    }
    
    .community {
        padding: 60px 0;
    }
    
    .community-stats {
        gap: 15px;
    }
    
    .stat-card {
        padding: 20px;
    }
    
    .events {
        padding: 60px 0;
    }
    
    .event-card {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
    
    .event-date {
        align-self: center;
        margin-bottom: 15px;
    }
    
    .contact {
        padding: 60px 0;
    }
    
    .social-links {
        gap: 15px;
    }
    
    .social-link {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    .server-details {
        padding: 20px;
    }
    
    .server-ip {
        font-size: 1rem;
        padding: 8px 12px;
    }
    
    .notification {
        top: 80px;
        right: 10px;
        left: 10px;
        padding: 12px 15px;
        font-size: 0.85rem;
    }
}