body {
    font-family: Arial, sans-serif;
    background-color: #222222;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    color: #333333;
}

.container {
    max-width: 800px;
    width: 90%;
    padding: 30px;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    margin-top: 60px;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #333333;
    color: #ffffff;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 10px;
    z-index: 100;
}

.navbar a, .navbar-button {
    color: #ffffff;
    text-decoration: none;
    margin-right: 20px;
    padding: 8px 12px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.navbar a:hover, .navbar-button:hover {
    color: #ffffff;
    background-color: rgba(255, 255, 255, 0.1);
}

h1, h2, h3 {
    color: #333333;
    line-height: 1.4;
}

h1 {
    margin-bottom: 25px;
    font-size: 28px;
}

h2 {
    margin-top: 35px;
    margin-bottom: 20px;
    font-size: 24px;
}

h3 {
    margin-bottom: 15px;
    font-size: 20px;
}

p {
    line-height: 1.6;
    margin-bottom: 15px;
}

a {
    color: #4CAF50;
    transition: color 0.3s ease;
}

a:hover {
    color: #45a049;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
}

.form-group input {
    width: 100%;
    padding: 8px;
    border: 1px solid #cccccc;
    border-radius: 4px;
}

.button-group {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.button, .navbar-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #4CAF50;
    color: white;
    text-decoration: none;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-size: 16px;
}

.button:hover, .navbar-button:hover {
    background-color: #45a049;
}

.navbar-button {
    background: none;
    padding: 0;
}

.navbar-button:hover {
    background: none;
}

.flash-message {
    padding: 10px;
    margin-bottom: 20px;
    border-radius: 4px;
}

.flash-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.flash-message.danger {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.invite-code {
    font-size: 24px;
    font-weight: bold;
    background-color: #f0f0f0;
    padding: 15px;
    border-radius: 4px;
    text-align: center;
    margin-bottom: 20px;
}

.section {
    margin-bottom: 30px;
}

.discord-box {
    display: flex;
    align-items: center;
    background-color: #7289DA;
    color: white;
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 20px;
}

.discord-icon {
    width: 35px;
    height: 30px;
    margin-right: 10px;
}

.projects {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 20px;
}

.project-box {
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 15px;
}

.project-box.featured {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    position: relative;
    overflow: hidden;
}

.project-box.featured h3 {
    color: white;
    margin-top: 0;
}

.project-box.featured p {
    color: rgba(255, 255, 255, 0.9);
}

.button.primary {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    border: none;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(245, 87, 108, 0.3);
    transform: translateY(0);
    transition: all 0.3s ease;
}

.button.primary:hover {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 87, 108, 0.4);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 15px;
}

.service-item {
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 20px;
    text-align: center;
}

.service-item.featured {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
}

.service-item.featured h4 {
    color: white;
    margin-top: 0;
}

.service-item.featured p {
    color: rgba(255, 255, 255, 0.9);
}

.service-item h4 {
    margin-top: 0;
    margin-bottom: 10px;
    color: #333;
}

.service-item p {
    margin-bottom: 15px;
    color: #666;
}

.note {
    font-style: italic;
    color: #666;
}

.footer {
    text-align: center;
    margin-top: 30px;
    font-size: 12px;
    color: #666666;
}

/* Responsive Design Improvements */
@media (max-width: 850px) {
    .container {
        width: 95%;
        margin-top: 70px;
        padding: 20px;
    }
    
    .navbar {
        flex-wrap: wrap;
        padding: 8px;
    }
    
    .navbar a, .navbar-button {
        margin-right: 15px;
        margin-bottom: 5px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .projects {
        gap: 15px;
    }
    
    .discord-box {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .discord-icon {
        margin-right: 0;
        margin-bottom: 5px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 15px;
        margin-top: 80px;
    }
    
    .navbar {
        padding: 5px;
    }
    
    .navbar a, .navbar-button {
        margin-right: 10px;
        font-size: 14px;
    }
    
    h1 {
        font-size: 24px;
    }
    
    h2 {
        font-size: 20px;
    }
    
    .button, .navbar-button {
        padding: 8px 16px;
        font-size: 14px;
    }
    
    .invite-code {
        font-size: 20px;
        padding: 12px;
    }
}
