body {
    font-family: 'Roboto', Arial, sans-serif;
    background: linear-gradient(135deg, #f8fafc 0%, #e0e7ff 100%);
    color: #22223b;
    margin: 0;
    min-height: 100vh;
}

header {
    background: #3a0ca3;
    color: #fff;
    box-shadow: 0 2px 8px rgba(58,12,163,0.08);
}

nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1100px;
    margin: 0 auto;
    padding: 1.2rem 2rem;
}

nav h1 {
    font-size: 2rem;
    letter-spacing: 2px;
    font-weight: 700;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
}

nav a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    transition: color 0.2s;
    position: relative;
}

nav a::after {
    content: '';
    display: block;
    width: 0;
    height: 2px;
    background: #f72585;
    transition: width 0.3s;
    position: absolute;
    left: 0;
    bottom: -4px;
}

nav a:hover {
    color: #f72585;
}

nav a:hover::after {
    width: 100%;
}

nav button {
    background: none;
    border: none;
    font-size: 1.3rem;
    cursor: pointer;
    color: #fff;
    transition: color 0.2s;
}

nav button:hover {
    color: #f72585;
}

.hero {
    background: linear-gradient(120deg, #4361ee 0%, #b5179e 100%);
    color: #fff;
    padding: 5rem 2rem 4rem 2rem;
    text-align: center;
    border-radius: 0 0 32px 32px;
    box-shadow: 0 8px 32px rgba(67,97,238,0.08);
    margin-bottom: 2rem;
    animation: fadeIn 1.2s;
}

.profile-img {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 4px 24px rgba(58,12,163,0.13);
    margin-bottom: 1.2rem;
    border: 4px solid #fff;
}

.hero h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.hero span {
    color: #f72585;
}

.hero p {
    font-size: 1.3rem;
    opacity: 0.95;
}

.btn {
    display: inline-block;
    background: linear-gradient(90deg, #4361ee 60%, #f72585 100%);
    color: #fff;
    padding: 0.7rem 1.5rem;
    border-radius: 24px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: background 0.2s, transform 0.2s;
    box-shadow: 0 2px 8px rgba(67,97,238,0.13);
    margin-top: 1.2rem;
}

.btn:hover {
    background: linear-gradient(90deg, #f72585 60%, #4361ee 100%);
    transform: scale(1.05);
}

.section {
    max-width: 900px;
    margin: 2rem auto;
    padding: 0 1rem;
}

.blog-card {
    background: #fff;
    padding: 1.5rem;
    margin: 1rem 0;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: transform 0.2s, box-shadow 0.2s;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.15);
}

.blog-card h3 {
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
}

.blog-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
}

footer {
    text-align: center;
    padding: 1.5rem 0;
    background: #3a0ca3;
    color: #fff;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 300%;
    height: 300%;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    z-index: 0;
}

footer h2 {
    font-size: 2rem;
    margin: 0;
    position: relative;
    z-index: 1;
}

footer p {
    font-size: 1rem;
    margin: 0.5rem 0 0 0;
    position: relative;
    z-index: 1;
}

footer a {
    color: #f72585;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
    position: relative;
    z-index: 1;
}

footer a:hover {
    color: #fff;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
