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

html {
    width: 100%;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    background: radial-gradient(circle at center, #1a1a1a 0%, #000000 100%);
    background-attachment: fixed;
    color: #ffffff;
    width: 100%;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
    -webkit-font-smoothing: antialiased;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.header {
    padding: 25px 0;
    background-color: transparent;
    position: relative;
    z-index: 100;
}

.header .container {
    display: flex;
    justify-content: center;
    align-items: center;
}

nav ul {
    display: flex;
    gap: 30px;
    list-style: none;
    flex-wrap: wrap;
    justify-content: center;
}

nav a {
    text-decoration: none;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

nav a:hover {
    color: #CC0000;
    text-shadow: 0 0 10px rgba(204, 0, 0, 0.8);
}

#developer-page {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    min-height: 80vh;
}

.dev-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 50px 30px;
    max-width: 800px;
    width: 100%;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.dev-title {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 10px;
    letter-spacing: -1px;
}

.dev-divider {
    width: 60px;
    height: 4px;
    background-color: #CC0000;
    margin: 0 auto 30px;
    border-radius: 2px;
    box-shadow: 0 0 15px rgba(204, 0, 0, 0.6);
}

.dev-credits {
    margin-bottom: 30px;
    font-size: 1.1rem;
    color: #A9A9A9;
}

.dev-credits strong {
    color: #ffffff;
    display: block;
    font-size: 1.2rem;
    margin-top: 5px;
}

.dev-description {
    font-size: 1.1rem;
    color: #dcdcdc;
    line-height: 1.8;
    margin-bottom: 40px;
}

.cta-button {
    display: inline-block;
    background-color: #CC0000;
    color: #ffffff;
    padding: 16px 30px;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 2px solid #CC0000;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-button:hover {
    background-color: #990000;
    border-color: #990000;
    box-shadow: 0 0 25px rgba(204, 0, 0, 0.5);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .dev-card {
        padding: 40px 20px;
        background: rgba(255, 255, 255, 0.02);
    }

    .dev-title {
        font-size: 2.2rem;
    }

    nav ul {
        gap: 15px;
    }
}