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

body {
font-family: ‘Arial’, sans-serif;
background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
color: #e4e4e7;
min-height: 100vh;
overflow-x: hidden;
}

/* Animated background particles */
.bg-particles {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
pointer-events: none;
z-index: -1;
}

.particle {
position: absolute;
width: 2px;
height: 2px;
background: #3b82f6;
border-radius: 50%;
animation: float 20s infinite linear;
opacity: 0.3;
}

@keyframes float {
0% { transform: translateY(100vh) translateX(0px); }
100% { transform: translateY(-100px) translateX(100px); }
}

/* Navigation */
nav {
position: fixed;
top: 0;
width: 100%;
background: rgba(15, 15, 35, 0.95);
backdrop-filter: blur(10px);
border-bottom: 1px solid rgba(59, 130, 246, 0.3);
z-index: 1000;
padding: 1rem 0;
}

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

.logo {
display: flex;
align-items: center;
gap: 0.5rem;
font-size: 1.5rem;
font-weight: bold;
color: #3b82f6;
text-shadow: 0 0 10px rgba(59, 130, 246, 0.5);
}

.logo img {
height: 40px;
width: auto;
border-radius: 8px;
box-shadow: 0 0 15px rgba(59, 130, 246, 0.3);
}

.logo a {
color: inherit;
text-decoration: none;
}

.nav-links {
display: flex;
gap: 2rem;
list-style: none;
}

.nav-links a {
color: #e4e4e7;
text-decoration: none;
padding: 0.5rem 1rem;
border-radius: 8px;
transition: all 0.3s ease;
position: relative;
overflow: hidden;
}

.nav-links a:hover {
background: rgba(59, 130, 246, 0.2);
transform: translateY(-2px);
box-shadow: 0 5px 15px rgba(59, 130, 246, 0.3);
}

.nav-links a.active {
background: linear-gradient(45deg, #3b82f6, #8b5cf6);
color: white;
}

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

.mobile-menu span {
width: 25px;
height: 3px;
background: #e4e4e7;
margin: 3px 0;
transition: 0.3s;
}

.mobile-nav-links {
display: none;
flex-direction: column;
position: absolute;
top: 100%;
left: 0;
width: 100%;
background: rgba(15, 15, 35, 0.98);
backdrop-filter: blur(10px);
border-top: 1px solid rgba(59, 130, 246, 0.3);
}

.mobile-nav-links a {
padding: 1rem 2rem;
color: #e4e4e7;
text-decoration: none;
border-bottom: 1px solid rgba(59, 130, 246, 0.1);
transition: all 0.3s ease;
}

.mobile-nav-links a:hover,
.mobile-nav-links a.active {
background: rgba(59, 130, 246, 0.2);
color: #3b82f6;
}

/* Main content */
main {
margin-top: 80px;
min-height: calc(100vh - 80px);
padding: 2rem;
max-width: 1200px;
margin-left: auto;
margin-right: auto;
}

.hero {
text-align: center;
padding: 4rem 0;
background: linear-gradient(45deg, rgba(59, 130, 246, 0.1), rgba(139, 92, 246, 0.1));
border-radius: 20px;
margin-bottom: 3rem;
border: 1px solid rgba(59, 130, 246, 0.2);
}

.hero h1 {
font-size: 3rem;
margin-bottom: 1rem;
background: linear-gradient(45deg, #3b82f6, #8b5cf6);
background-clip: text;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
text-shadow: 0 0 30px rgba(59, 130, 246, 0.5);
}

.hero p {
font-size: 1.2rem;
opacity: 0.8;
max-width: 600px;
margin: 0 auto;
}

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

.server-card {
background: rgba(255, 255, 255, 0.05);
border-radius: 15px;
padding: 2rem;
border: 1px solid rgba(59, 130, 246, 0.3);
transition: all 0.3s ease;
position: relative;
overflow: hidden;
}

.server-card:hover {
transform: translateY(-5px);
box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
border-color: #3b82f6;
}

.server-card::before {
content: ‘’;
position: absolute;
top: 0;
left: -100%;
width: 100%;
height: 100%;
background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.1), transparent);
transition: left 0.5s;
}

.server-card:hover::before {
left: 100%;
}

.server-card h3 {
color: #3b82f6;
margin-bottom: 1rem;
font-size: 1.3rem;
}

.server-info {
display: flex;
justify-content: space-between;
align-items: center;
margin-top: 1rem;
padding-top: 1rem;
border-top: 1px solid rgba(59, 130, 246, 0.2);
}

.status {
padding: 0.3rem 1rem;
border-radius: 20px;
font-size: 0.9rem;
font-weight: bold;
}

.status.online {
background: linear-gradient(45deg, #10b981, #059669);
color: white;
}

.status.offline {
background: linear-gradient(45deg, #ef4444, #dc2626);
color: white;
}

.discord-widget {
background: rgba(255, 255, 255, 0.05);
border-radius: 15px;
padding: 2rem;
border: 1px solid rgba(139, 92, 246, 0.3);
text-align: center;
}

.discord-widget h2 {
color: #8b5cf6;
margin-bottom: 1rem;
}

.discord-embed {
width: 100%;
height: 500px;
border: none;
border-radius: 10px;
}

.game-section {
margin-bottom: 3rem;
}

.game-section h2 {
color: #3b82f6;
margin-bottom: 2rem;
text-align: center;
font-size: 2rem;
}

.feature-list {
list-style: none;
margin: 1rem 0;
}

.feature-list li {
padding: 0.5rem 0;
position: relative;
padding-left: 2rem;
}

.feature-list li::before {
content: ‘▶’;
position: absolute;
left: 0;
color: #3b82f6;
}

.connect-btn {
background: linear-gradient(45deg, #3b82f6, #8b5cf6);
color: white;
padding: 1rem 2rem;
border: none;
border-radius: 10px;
font-size: 1rem;
cursor: pointer;
transition: all 0.3s ease;
margin-top: 1rem;
}

.connect-btn:hover {
transform: translateY(-2px);
box-shadow: 0 5px 15px rgba(59, 130, 246, 0.4);
}

/* Footer */
footer {
background: rgba(15, 15, 35, 0.95);
border-top: 1px solid rgba(59, 130, 246, 0.3);
padding: 3rem 0 1rem;
margin-top: 4rem;
}

.footer-content {
max-width: 1200px;
margin: 0 auto;
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 2rem;
padding: 0 2rem;
}

.footer-section h3 {
color: #3b82f6;
margin-bottom: 1rem;
}

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

.footer-section ul li {
margin-bottom: 0.5rem;
}

.footer-section ul li a {
color: #e4e4e7;
text-decoration: none;
transition: color 0.3s ease;
}

.footer-section ul li a:hover {
color: #3b82f6;
}

.footer-bottom {
text-align: center;
padding: 2rem;
margin-top: 2rem;
border-top: 1px solid rgba(59, 130, 246, 0.2);
opacity: 0.7;
}

/* Responsive Design */
@media (max-width: 768px) {
.nav-links {
display: none;
}

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

.hero h1 {
    font-size: 2rem;
}

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

main {
    padding: 1rem;
}
```

}