:root {
    --primary: #4CAF50;
    --dark: #2E7D32;
    --light: #C8E6C9;
    --accent: #FF9800;
    --dark-bg: #1a1a1a;
    --darker-bg: #121212;
    --card-bg: rgba(43, 43, 43, 0.8);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--dark-bg);
    color: #f1f1f1;
    background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI2MCIgaGVpZ2h0PSI2MCIgdmlld0JveD0iMCAwIDYwIDYwIj48cGF0aCBkPSJNMCAwaDMwdjMwSDBWMHptMzAgMzBoMzB2MzBIMzBWMzB6IiBmaWxsPSIjMzMzIiBmaWxsLW9wYWNpdHk9IjAuMSIvPjwvc3ZnPg==');
    padding-top: 76px;
}

.navbar {
    background-color: rgba(33, 37, 41, 0.95) !important;
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.navbar-brand {
    font-weight: bold;
    color: var(--primary) !important;
    text-shadow: 0 0 5px rgba(76, 175, 80, 0.5);
    font-size: 1.8rem;
}

.nav-link {
    color: #f1f1f1 !important;
    transition: color 0.3s;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    border-radius: 4px;
}

.nav-link:hover {
    color: var(--primary) !important;
    background: rgba(255, 255, 255, 0.1);
}

.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxyZWN0IHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9IiMxZTFlMWUiLz48cGF0aCBkPSJNMCAwIEwxMDAgMTAwIiBzdHJva2U9IiMzMzMiIHN0cm9rZS13aWR0aD0iMSIgLz48cGF0aCBkPSJNMTAwIDAgTDAgMTAwIiBzdHJva2U9IiMzMzMiIHN0cm9rZS13aWR0aD0iMSIgLz48L3N2Zz4=');
    background-size: cover;
    padding: 140px 0 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-top: -76px;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    animation: fadeInDown 1s ease;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero p {
    font-size: 1.5rem;
    margin: 0 auto 30px;
    animation: fadeInUp 1s ease;
    max-width: 700px;
}

.server-status {
    display: inline-block;
    background: rgba(0, 0, 0, 0.6);
    padding: 15px 25px;
    border-radius: 50px;
    margin-bottom: 30px;
    animation: fadeIn 2s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.status-online {
    color: var(--primary);
    font-weight: bold;
}

.server-status-loading {
    color: #ffeb3b;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}

.server-status-offline {
    color: #f44336;
}

.btn-primary {
    background-color: var(--primary);
    border-color: var(--dark);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: bold;
    transition: all 0.3s;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
    background-color: var(--dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.btn-outline-light:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.section-title:after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--primary);
    margin: 15px auto;
    border-radius: 2px;
}

.feature-box {
    background: var(--card-bg);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s;
    margin-bottom: 30px;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-bottom: 3px solid var(--primary);
}

.feature-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.feature-icon {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.shop-item {
    background: var(--card-bg);
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 30px;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.shop-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.shop-item-img {
    height: 200px;
    background-color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: var(--primary);
    background: linear-gradient(45deg, #2E7D32 0%, #4CAF50 100%);
}

.shop-item-content {
    padding: 20px;
}

.price {
    font-size: 1.5rem;
    color: var(--accent);
    font-weight: bold;
}

.rules-list {
    background: var(--card-bg);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.rules-list li {
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
}

.rules-list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

.contact-form {
    background: var(--card-bg);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.form-control {
    background-color: rgba(0, 0, 0, 0.2);
    border: 1px solid #444;
    color: #fff;
    padding: 12px 15px;
}

.form-control:focus {
    background-color: rgba(0, 0, 0, 0.3);
    border-color: var(--primary);
    box-shadow: 0 0 0 0.2rem rgba(76, 175, 80, 0.25);
    color: #fff;
}

footer {
    background-color: var(--darker-bg);
    padding: 60px 0 30px;
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    color: #fff;
    margin: 0 5px;
    transition: all 0.3s;
}

.social-links a:hover {
    background: var(--primary);
    transform: translateY(-5px);
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInUp {
    from { 
        opacity: 0;
        transform: translateY(20px);
    }
    to { 
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from { 
        opacity: 0;
        transform: translateY(-20px);
    }
    to { 
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.particle {
    position: absolute;
    background-color: rgba(76, 175, 80, 0.5);
    border-radius: 50%;
    animation: float 15s infinite ease-in-out;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.2rem;
    }
    
    .feature-box, .shop-item {
        margin-bottom: 20px;
    }
    
    section {
        padding: 60px 0;
    }
}