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

body {
    font-family: 'Arial', sans-serif;
    background: #0a0a0a;
    color: #ffffff;
    overflow-x: hidden;
}

/* Neon Text Effect */
.neon-text {
    color: #00d4ff;
    text-shadow: 
        0 0 5px #00d4ff,
        0 0 10px #00d4ff,
        0 0 15px #00d4ff,
        0 0 20px #00d4ff;
    animation: neonGlow 2s ease-in-out infinite alternate;
}

@keyframes neonGlow {
    from { text-shadow: 0 0 5px #00d4ff, 0 0 10px #00d4ff, 0 0 15px #00d4ff, 0 0 20px #00d4ff; }
    to { text-shadow: 0 0 10px #00d4ff, 0 0 20px #00d4ff, 0 0 30px #00d4ff, 0 0 40px #00d4ff; }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid #00d4ff;
}

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

.nav-logo h2 {
    font-size: 1.8rem;
    font-weight: bold;
}

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

.nav-menu a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s;
    position: relative;
}

.nav-menu a:hover {
    color: #00d4ff;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #00d4ff;
    transition: width 0.3s;
}

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

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: 
        linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7)),
        url('Golden Hour Over Sierra District.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="circuit" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M0,10 L5,10 L5,5 L15,5 L15,15 L10,15 L10,20" fill="none" stroke="%2300d4ff" stroke-width="0.3" opacity="0.4"/><circle cx="5" cy="10" r="1" fill="%2300d4ff" opacity="0.6"/><circle cx="15" cy="5" r="0.8" fill="%2300d4ff" opacity="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23circuit)"/></svg>');
    opacity: 0.15;
    animation: circuitFlow 20s linear infinite;
}

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

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

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: bold;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    color: #cccccc;
}

/* Server Info Cards */
.server-info {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-bottom: 3rem;
}

.info-card {
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid #00d4ff;
    border-radius: 10px;
    padding: 1.5rem;
    text-align: center;
    min-width: 150px;
    backdrop-filter: blur(10px);
}

.info-card i {
    font-size: 2rem;
    color: #00d4ff;
    margin-bottom: 0.5rem;
}

.info-card span {
    display: block;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.info-card p {
    color: #cccccc;
    font-size: 0.9rem;
}

/* Action Buttons */
.action-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.connect-btn, .discord-btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.connect-btn {
    background: linear-gradient(45deg, #00d4ff, #0099cc);
    color: #000000;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
}

.connect-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 30px rgba(0, 212, 255, 0.7);
}

.discord-btn {
    background: transparent;
    color: #00d4ff;
    border: 2px solid #00d4ff;
}

.discord-btn:hover {
    background: #00d4ff;
    color: #000000;
    transform: translateY(-2px);
}

/* Sections */
.section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #111111 100%);
    position: relative;
}

.section:nth-child(even) {
    background: linear-gradient(135deg, #111111 0%, #0a0a0a 100%);
}

.section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="10" height="10" patternUnits="userSpaceOnUse"><circle cx="5" cy="5" r="0.5" fill="%2300d4ff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    pointer-events: none;
    opacity: 0.3;
}

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

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #00d4ff;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: rgba(0, 212, 255, 0.05);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: #00d4ff;
}

.feature-card i {
    font-size: 3rem;
    color: #00d4ff;
    margin-bottom: 1rem;
}

.feature-card h3 {
    margin-bottom: 1rem;
    color: #ffffff;
}

.feature-card p {
    color: #cccccc;
}

/* Team Section Styles */
.team-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.team-member {
    background: rgba(0, 0, 0, 0.8);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    width: 300px;
    box-shadow: 0 4px 15px rgba(0, 229, 255, 0.3);
    border: 1px solid rgba(0, 229, 255, 0.2);
}

.member-image {
    width: 150px;
    height: 150px;
    margin: 0 auto 15px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #00e5ff;
}

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

.team-member h3 {
    color: #00e5ff;
    margin: 10px 0 5px;
    font-size: 1.2rem;
}

.team-member p {
    color: #cceeff;
    margin: 0;
    font-size: 0.9rem;
}

/* Rules Section */
.rules-list {
    max-width: 800px;
    margin: 0 auto;
}

.rule-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    margin-bottom: 1rem;
    background: rgba(0, 212, 255, 0.05);
    border-left: 4px solid #00d4ff;
    border-radius: 5px;
}

.rule-number {
    background: #00d4ff;
    color: #000000;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.rules-category {
    margin-bottom: 2rem;
}

.category-title {
    color: #00d4ff;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #00d4ff;
}

.rules-list {
    display: grid;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.rule-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border-left: 3px solid #00d4ff;
}

.rule-number {
    background: #00d4ff;
    color: white;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
    font-size: 0.9rem;
}

.disciplinary-section {
    background: rgba(255, 193, 7, 0.1);
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #ffc107;
    margin: 2rem 0;
}

.disciplinary-list {
    display: grid;
    gap: 1rem;
    margin-top: 1rem;
}

.disciplinary-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 1rem;
    border-radius: 6px;
}

.disciplinary-item h4 {
    color: #ffc107;
    margin: 0 0 0.5rem 0;
    font-size: 1.1rem;
}

.disciplinary-item p {
    margin: 0;
    color: #ccc;
}

.rules-footer {
    text-align: center;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-note {
    margin: 0.5rem 0;
    color: #ffc107;
    font-weight: 500;
}

/* Footer */
.footer {
    background: #000000;
    padding: 2rem 0;
    border-top: 1px solid #00d4ff;
}

.footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: #00d4ff;
    font-size: 1.5rem;
    transition: transform 0.3s;
}

.social-links a:hover {
    transform: scale(1.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .server-info {
        flex-direction: column;
        align-items: center;
    }
    
    .action-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .nav-menu {
        display: none;
    }
    
    .footer .container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .rule-item {
        flex-direction: column;
        text-align: center;
    }
    
    .rule-number {
        align-self: center;
    }
}

/* Loading Animation */
.loading {
    animation: pulse 1.5s ease-in-out infinite;
}

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

.team-member {
    background: rgba(0, 0, 0, 0.8);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    width: 300px;
    box-shadow: 0 4px 15px rgba(0, 229, 255, 0.3);
    border: 1px solid rgba(0, 229, 255, 0.2);
}

.member-image {
    width: 150px;
    height: 150px;
    margin: 0 auto 15px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #00e5ff;
}

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

.team-member h3 {
    color: #00e5ff;
    margin: 10px 0 5px;
    font-size: 1.2rem;
}

.team-member p {
    color: #cceeff;
    margin: 0;
    font-size: 0.9rem;
}

/* CSS Variables */
:root {
    --accent-color: #00d4ff;
} 0.1);
}

.footer-note {
    margin: 0.5rem 0;
    color: #ffc107;
    font-weight: 500;
}

/* Footer */
.footer {
    background: #000000;
    padding: 2rem 0;
    border-top: 1px solid #00d4ff;
}

.footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: #00d4ff;
    font-size: 1.5rem;
    transition: transform 0.3s;
}

.social-links a:hover {
    transform: scale(1.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .server-info {
        flex-direction: column;
        align-items: center;
    }
    
    .action-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .nav-menu {
        display: none;
    }
    
    .footer .container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .rule-item {
        flex-direction: column;
        text-align: center;
    }
    
    .rule-number {
        align-self: center;
    }
}

/* Loading Animation */
.loading {
    animation: pulse 1.5s ease-in-out infinite;
}

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