* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #0b0f19;
    color: #ffffff;
    overflow-x: hidden;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 8%;
    background: transparent;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: bold;
    font-size: 1.1rem;
    letter-spacing: 1px;
}

.logo img {
    width: 32px;
    height: 32px;
    border-radius: 4px;
    object-fit: cover;
}

nav a {
    color: #8b9bb4;
    text-decoration: none;
    margin-left: 30px;
    font-size: 0.95rem;
    transition: color 0.2s;
}

nav a:hover {
    color: #ffffff;
}

.hero {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 70vh;
    padding: 0 8%;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
}

.skin-container {
    flex-shrink: 0;
    background: radial-gradient(circle, rgba(29,39,59,0.4) 0%, rgba(11,15,25,0) 70%);
    padding: 30px;
    border-radius: 20px;
}

.skin-container img {
    width: 200px;
    max-width: 100%;
    border-radius: 12px;
    box-shadow: 0 15px 25px rgba(0,0,0,0.6);
}

.hero-content {
    max-width: 650px;
}

.subtitle {
    color: #3b82f6;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 20px;
    color: #f3f4f6;
}

.description {
    color: #9ca3af;
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 25px;
}

.description span {
    color: #ffffff;
    font-weight: 600;
}

.discord-btn {
    display: inline-block;
    background-color: #5865F2;
    color: #ffffff;
    padding: 12px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.2s, transform 0.2s;
}

.discord-btn:hover {
    background-color: #4752C4;
    transform: translateY(-2px);
}

.projects {
    display: flex;
    gap: 20px;
    padding: 0 8% 50px 8%;
    max-width: 1400px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.project-card {
    background-color: #131b2e;
    border: 1px solid #1e293b;
    padding: 20px 25px;
    border-radius: 12px;
    min-width: 200px;
    flex: 1;
}

.project-title {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #ffffff;
}

.project-status {
    font-size: 0.85rem;
    color: #10b981;
    font-weight: 600;
}

@media (max-width: 900px) {
    .hero {
        flex-direction: column;
        text-align: center;
        gap: 30px;
        padding-top: 20px;
    }
    h1 {
        font-size: 2.3rem;
    }
    .projects {
        flex-direction: column;
    }
}
