body {
    margin: 0;
    font-family: 'Segoe UI', Arial, sans-serif;
    background: linear-gradient(180deg, #2d014d 0%, #3a0a5d 100%);
    color: #fff;
    min-height: 100vh;
}
.main-header {
    background: #1a0033;
    padding: 0.5rem 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}
.nav-bar {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2rem;
}
.logo {
    font-family: 'Cinzel', serif;
    font-size: 1.3rem;
    color: #b97fff;
    letter-spacing: 2px;
}
nav a {
    position: relative;
    color: #fff;
    text-decoration: none;
    margin: 0 1rem;
    font-weight: 500;
    transition: color 0.2s;
}
nav a.active, nav a:focus {
    color: #b97fff;
}
nav a.active::after {
    content: '';
    display: block;
    margin: 0 auto;
    width: 60%;
    border-bottom: 3px solid #b97fff;
    border-radius: 2px;
    margin-top: 4px;
}
nav a:hover {
    color: #b97fff;
}
.social-icons a {
    color: #fff;
    margin-left: 0.7rem;
    font-size: 1.2rem;
}
.hero {
    text-align: center;
    margin-top: 2.5rem;
    margin-bottom: 2rem;
}
.avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 4px solid #b97fff;
    box-shadow: 0 0 20px #b97fff44;
    margin-bottom: 1rem;
}
.main-title {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    color: #b97fff;
    margin: 0.5rem 0 0.2rem 0;
}
.subtitle {
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 1.2rem;
}
.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}
.btn {
    background: #b97fff;
    color: #1a0033;
    padding: 0.7rem 1.5rem;
    border-radius: 30px;
    font-weight: bold;
    text-decoration: none;
    box-shadow: 0 2px 8px #b97fff33;
    transition: background 0.2s, color 0.2s;
}
.btn:hover {
    background: #fff;
    color: #b97fff;
}
section {
    max-width: 1200px;
    margin: 2.5rem auto;
    background: #2d014d99;
    border-radius: 18px;
    box-shadow: 0 4px 24px #0002;
    padding: 2rem 2.5rem;
}
h2 {
    color: #b97fff;
    font-family: 'Cinzel', serif;
    margin-bottom: 1.5rem;
    text-align: center;
}
.about-content {
    display: flex;
    gap: 2rem;
    align-items: center;
    margin-bottom: 2rem;
    max-width: 900px;
    margin: 0 auto 2rem auto;
    width: 100%;
}
.about-text {
    flex: 2;
}
.about-img img {
    width: 140px;
    height: 140px;
    border-radius: 18px;
    border: 3px solid #b97fff;
    object-fit: cover;
}
.about-friend {
    background: #1a003366;
    border-radius: 14px;
    padding: 1.2rem 1.5rem;
    box-shadow: 0 2px 8px #b97fff22;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-top: 1.5rem;
    min-width: 220px;
    max-width: 1100px;
    transition: box-shadow 0.2s, border 0.2s;
    border: 2px solid transparent;
}
.about-friend:hover {
    box-shadow: 0 0 24px 4px #b97fff55;
    border: 2px solid #b97fff;
}
.about-friend img {
    width: 140px;
    height: 140px;
    border-radius: 18px;
    border: 3px solid #b97fff;
    object-fit: cover;
}
.hobby-list {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}
.hobby-card {
    background: #1a003366;
    border-radius: 14px;
    padding: 1.2rem 1.5rem;
    min-width: 180px;
    text-align: center;
    box-shadow: 0 2px 8px #b97fff22;
    flex: 1 1 180px;
    max-width: 320px;
}
.hobby-card .icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 0.5rem;
}
.cats {
    text-align: center;
}
.cat-list {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin: 2rem 0 1rem 0;
}
.cat-card {
    background: #1a003366;
    border-radius: 14px;
    padding: 1rem 1.2rem;
    box-shadow: 0 2px 8px #b97fff22;
    min-width: 220px;
    max-width: 380px;
    flex: 1 1 220px;
    text-align: center;
    transition: box-shadow 0.2s, border 0.2s;
    border: 2px solid transparent;
}
.cat-card:hover {
    box-shadow: 0 0 24px 4px #b97fff55;
    border: 2px solid #b97fff;
}
.cat-card img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 18px;
    border: 3px solid #b97fff;
    margin-bottom: 0.5rem;
    transition: transform 0.25s cubic-bezier(.4,2,.6,1), box-shadow 0.2s;
}
.cat-card:hover img {
    transform: scale(1.13);
    box-shadow: 0 0 24px 4px #b97fff88;
}
.cat-card h5 {
    margin: 0;
    color: #b97fff;
    font-size: 1.1rem;
}
.cat-card .fav {
    display: block;
    margin-top: 0.3rem;
    margin-left: 0;
    background: #b97fff;
    color: #fff;
    border-radius: 8px;
    padding: 0.1rem 0.5rem;
    font-size: 0.95rem;
}
.cat-note {
    color: #fff;
    margin-top: 1rem;
    font-size: 1rem;
}
footer {
    background: #1a0033;
    color: #b97fff;
    text-align: center;
    padding: 2rem 0 1rem 0;
    margin-top: 3rem;
}
.footer-content {
    max-width: 900px;
    margin: 0 auto;
}
.footer-logo {
    font-family: 'Cinzel', serif;
    font-size: 1.2rem;
    margin-bottom: 0.7rem;
}
.footer-links a {
    color: #fff;
    margin: 0 0.7rem;
    text-decoration: none;
    font-weight: 500;
}
.footer-links a:hover {
    color: #b97fff;
}
.footer-copy {
    margin: 1rem 0 0.5rem 0;
    font-size: 0.95rem;
}
.footer-legal a {
    color: #b97fff;
    text-decoration: none;
    margin: 0 0.5rem;
    font-size: 0.95rem;
}
@media (max-width: 900px) {
    section, .footer-content {
        padding: 1.2rem 0.7rem;
    }
    .about-content, .about-friend {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem 0.5rem;
    }
    .cat-list {
        flex-direction: column;
        gap: 1.2rem;
        align-items: center;
    }
    .cat-card {
        min-width: 180px;
        max-width: 100%;
    }
}
#cookie-banner {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100vw;
    z-index: 3000;
    background: #1a0033e6;
    color: #fff;
    padding: 1.2rem 1.5rem;
    box-shadow: 0 -2px 16px #0008;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    font-size: 1rem;
}
#cookie-banner button {
    background: #b97fff;
    color: #1a0033;
    font-weight: bold;
    border: none;
    border-radius: 8px;
    padding: 0.5rem 1.2rem;
    cursor: pointer;
    margin-left: 0.5rem;
    transition: background 0.2s, color 0.2s;
}
#cookie-banner button:last-child {
    background: #fff;
    color: #b97fff;
}
#cookie-banner button:hover {
    background: #fff;
    color: #b97fff;
}
@media (max-width: 700px) {
    #cookie-banner {
        flex-direction: column;
        gap: 1rem;
        font-size: 0.95rem;
        padding: 1.2rem 0.5rem;
        text-align: center;
        max-width: 100vw;
        left: 0;
        right: 0;
        transform: none;
        box-sizing: border-box;
    }
    #cookie-banner button {
        width: 100%;
        margin: 0.2rem 0 0 0;
    }
    .cat-card {
        min-width: 90vw;
        max-width: 98vw;
    }
} 