:root {
    --bg: #181412;
    --card-bg: rgba(36, 28, 24, 0.75);
    --border: rgba(255, 180, 130, 0.15);
    --primary: #ff8c42;
    --primary-hover: #ff701a;
    --accent: #ffd166;
    --text-main: #fceade;
    --text-muted: #b8a294;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg);
    color: var(--text-main);
    line-height: 1.6;
    padding: 30px 15px;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

/* Background Ambient Glows */
.background-glow {
    position: fixed;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 140, 66, 0.18) 0%, rgba(0,0,0,0) 70%);
    pointer-events: none;
    z-index: 0;
}

.container {
    max-width: 850px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Hero Header */
.hero {
    text-align: center;
    padding: 40px 20px;
    margin-bottom: 25px;
}

.badge {
    display: inline-block;
    background: rgba(255, 140, 66, 0.15);
    border: 1px solid rgba(255, 140, 66, 0.4);
    color: var(--accent);
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

h1 {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ffffff 0%, #ffb88c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 8px;
}

.subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
}

/* Glassmorphism Cards */
.bio-card, .interactive-card, .stats-card {
    background: var(--card-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

/* Bio Section */
.bio-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    flex-wrap: wrap;
    gap: 10px;
}

.bio-header h2 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: #fff;
}

.breed-tag {
    background: #ff8c42;
    color: #181412;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: 8px;
    font-size: 0.85rem;
}

.bio-text {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.7;
}

.bio-text strong {
    color: var(--accent);
}

.tags-container {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.pill {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--text-main);
}

/* Interactive Card */
.interactive-card {
    text-align: center;
    border: 1px solid rgba(255, 140, 66, 0.3);
}

.interactive-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 10px;
}

#statusMessage {
    font-size: 1.1rem;
    color: var(--accent);
    font-weight: 600;
    min-height: 35px;
    margin-bottom: 15px;
}

.btn-container {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    border: none;
    padding: 12px 26px;
    font-size: 0.95rem;
    font-weight: 700;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: var(--font-body);
}

.btn-primary {
    background: linear-gradient(135deg, #ff8c42, #e05a00);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 140, 66, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 140, 66, 0.5);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-main);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

/* Stats */
.stats-card h2 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    margin-bottom: 20px;
}

.stat-bar-container {
    margin-bottom: 16px;
}

.stat-info {
    display: flex;
    justify-content: space-between;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 6px;
}

.stat-val {
    color: var(--accent);
}

.bar {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    height: 12px;
    overflow: hidden;
}

.fill {
    background: linear-gradient(90deg, #ff8c42, #ffd166);
    height: 100%;
    border-radius: 10px;
    transition: width 0.5s ease;
}

/* Section Headings */
.section-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin: 40px 0 20px;
    color: #fff;
    text-align: center;
}

/* Image Galleries */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 18px;
}

.gallery-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.gallery-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 140, 66, 0.5);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.gallery-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
}

.caption {
    padding: 14px;
    font-size: 0.9rem;
    text-align: center;
    font-weight: 600;
    color: var(--text-main);
    background: rgba(0, 0, 0, 0.2);
}

footer {
    text-align: center;
    margin-top: 60px;
    padding: 20px;
    font-size: 0.85rem;
    color: var(--text-muted);
}
/* Timeline Card */
.timeline-card {
    background: var(--card-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.timeline-card h2 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 25px;
    text-align: center;
}

.timeline {
    position: relative;
    padding-left: 20px;
    border-left: 2px solid rgba(255, 140, 66, 0.3);
}

.timeline-item {
    position: relative;
    margin-bottom: 25px;
    padding-left: 15px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -27px;
    top: 5px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--primary);
    box-shadow: 0 0 10px var(--primary);
}

.time {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.timeline-content h4 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    color: #fff;
    margin-bottom: 4px;
}

.timeline-content p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.5;
}
