/* Dark Minimalist Styling */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

body {
    background-color: #0d0e12;
    color: #e0e6ed;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Header Navigation */
header {
    width: 100%;
    max-width: 1100px;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-weight: 800;
    font-size: 1.2rem;
    color: #66fcf1;
    letter-spacing: 1px;
}

nav a {
    color: #a0aec0;
    text-decoration: none;
    margin-left: 1.5rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

nav a:hover {
    color: #66fcf1;
}

/* Main Hero Section */
.hero {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 3rem 1rem;
    width: 100%;
}

.card {
    background: #161b22;
    border: 1px solid #2d3748;
    border-radius: 20px;
    padding: 3rem 2rem;
    max-width: 550px;
    width: 100%;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    border-color: #66fcf1;
}

/* Badge */
.badge {
    background: rgba(102, 252, 241, 0.1);
    color: #66fcf1;
    border: 1px solid #66fcf1;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Profile Photo */
.photo-container {
    position: relative;
    width: 160px;
    height: 160px;
    margin: 2rem auto 1.5rem auto;
}

.profile-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid #66fcf1;
    box-shadow: 0 0 20px rgba(102, 252, 241, 0.4);
}

.crown {
    position: absolute;
    top: -15px;
    right: 10px;
    font-size: 2rem;
}

/* Typography */
.hero-title {
    font-size: 2rem;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.hero-subtitle {
    color: #66fcf1;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1.2rem;
}

.description {
    color: #a0aec0;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

/* Buttons */
.cta-group {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.btn {
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.primary-btn {
    background: #66fcf1;
    color: #0d0e12;
    border: none;
}

.primary-btn:hover {
    background: #45a29e;
    box-shadow: 0 0 15px rgba(102, 252, 241, 0.4);
}

.secondary-btn {
    background: transparent;
    color: #e0e6ed;
    border: 1px solid #2d3748;
}

.secondary-btn:hover {
    border-color: #66fcf1;
    color: #66fcf1;
}

/* Stats Section */
.stats-section {
    display: flex;
    gap: 1.5rem;
    margin-top: 1rem;
    margin-bottom: 3rem;
}

.stat-box {
    background: #161b22;
    border: 1px solid #2d3748;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    text-align: center;
}

.stat-box h3 {
    color: #66fcf1;
    font-size: 1.4rem;
}

.stat-box p {
    color: #a0aec0;
    font-size: 0.8rem;
    margin-top: 0.2rem;
}
