:root {
    --primary: #FF6B35;
    --secondary: #FF9B54;
    --bg: #FFF5E4;
}
@font-face {
    font-family: 'Comic Neue';
    src: url('fonts/ComicNeue-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Comic Neue';
    src: url('fonts/ComicNeue-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'Comic Neue';
    src: url('fonts/ComicNeue-Italic.ttf') format('truetype');
    font-weight: normal;
    font-style: italic;
}

@font-face {
    font-family: 'Comic Neue';
    src: url('fonts/ComicNeue-BoldItalic.ttf') format('truetype');
    font-weight: bold;
    font-style: italic;
}

@font-face {
    font-family: 'Comic Neue';
    src: url('fonts/ComicNeue-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Comic Neue';
    src: url('fonts/ComicNeue-LightItalic.ttf') format('truetype');
    font-weight: 300;
    font-style: italic;
}

body {
    font-family: 'Comic Neue'; /* Removed cursive fallback */
    font-weight: bold;
    font-style: italic;
    margin: 0;
    padding: 20px;
    background: var(--bg);
    color: #333;
    line-height: 1.6;
}

/* Force inheritance */
* {
    font-family: inherit;
    font-weight: inherit;
    font-style: inherit;
}

.profile-card {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    border: 2px solid var(--primary);
}

.header {
    background: var(--primary);
    color: white;
    padding: 20px;
    text-align: center;
}

.profile-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 5px solid white;
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
    margin-bottom: 15px;
}

.content {
    padding: 20px;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 20px 0;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    transition: transform 0.3s;
}

.social-icon:hover {
    transform: scale(1.1);
}

.social-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
