:root {
    --bg-color: #0b0c10;
    --text-color: #f1f1f2;
    --accent-color: #f84c74;
    --card-bg: #1f2833;
}

body {
    margin: 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
    flex: 1;
}

.hero {
    text-align: center;
    padding: 80px 20px 40px 20px;
    max-width: 600px;
    margin: 0 auto;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hero-image {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(248, 76, 116, 0.2);
    border: 4px solid var(--card-bg);
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    margin-top: 0;
    background: linear-gradient(135deg, #f84c74, #ffa6b8);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -1px;
}

.hero p {
    font-size: 1.25rem;
    color: #c5c6c7;
    margin-bottom: 40px;
}

.btn {
    display: inline-block;
    background: var(--accent-color);
    color: #fff;
    text-decoration: none;
    padding: 18px 40px;
    border-radius: 30px;
    font-size: 1.2rem;
    font-weight: 600;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 15px rgba(248, 76, 116, 0.4);
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(248, 76, 116, 0.5);
}

.page-header {
    margin-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 20px;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    margin: 0;
}

.content-section {
    background: var(--card-bg);
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 30px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.content-section h2 {
    color: var(--accent-color);
    margin-top: 0;
    font-size: 1.4rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 15px;
    margin-bottom: 20px;
}

.content-section p {
    color: #c5c6c7;
    font-size: 1.1rem;
}

ul {
    padding-left: 20px;
    color: #c5c6c7;
    font-size: 1.1rem;
}

ul li {
    margin-bottom: 10px;
}

footer {
    text-align: center;
    padding: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.social-links {
    display: flex;
    gap: 20px;
    margin-top: 10px;
}

.social-icon {
    width: 28px;
    height: 28px;
    fill: #c5c6c7;
    transition: fill 0.2s, transform 0.2s;
}

.social-icon:hover {
    fill: var(--accent-color);
    transform: translateY(-2px);
}

footer a {
    color: #c5c6c7;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}

footer a:hover {
    color: var(--accent-color);
}

@media (max-width: 600px) {
    .hero h1 {
        font-size: 2.5rem;
    }
}