:root {
    --primary-gold: #D4B690;
    --dark-gold: #B8956F;
    --light-gold: #E8D4B8;
    --accent-gold: #F4E6D3;
    --bg-primary: #0a0a0a;
    --bg-secondary: #1a1a1a;
    --bg-card: #1e1e1e;
    --text-primary: #f5f5f5;
    --text-gold: #f5b861;
    --text-secondary: #cccccc;
    --text-muted: #aaaaaa;
    --text-muted-more: #7c7c7c;
    --border: #333;
    --gradient-primary: linear-gradient(135deg, #D4B690 0%, #B8956F 100%);
    --gradient-bg: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    --gradient-bg-2: linear-gradient(90deg, #282828, #0d0d0d);
    --gradient-card: linear-gradient(135deg, #1e1e1e 0%, #2a2a2a 100%);
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    --shadow-hover: 0 20px 40px rgba(0, 0, 0, 0.7);
    --shadow-gold: 0 5px 20px rgba(212, 182, 144, 0.3);
}

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

html {
    background: var(--gradient-bg-2);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

.site-title {
    font-family: 'Cinzel', serif;
    font-size: 2.3rem;
    font-weight: bold;
    background: linear-gradient(90deg, #e3b460, #cba157, #836024);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: -1px -2px 17px #b38c479e;
    text-align: center;
    margin: 0;
}

.site-subtitle {
    font-size: 1.5rem;
    color: var(--primary-gold);
    margin-bottom: 24px;
    font-weight: 500;
    animation: fadeInUp 1s ease-out 0.2s both;
}

@media (max-width: 568px) {
    .site-title {
        font-size: 24px !important;
        white-space: wrap;
    }

    .site-subtitle {
        font-size: 16px;
    }
}

.badge-top-left, .badge-top-right {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 0 0 .375rem 0;
    border: 2px solid #D4B690;
    text-decoration: none;
    border-top: none;
    border-left: none;
    color: #D4B690;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(24px);
    padding: 4px 8px;
    box-shadow: 0 0 24px #3a3a3a;
}

.pointer-none {
    pointer-events: none;
}

.badge-top-right {
    left: unset;
    right: 0;
    border-radius: 0 0 0 .375rem;
}

.badge_white {
    color: rgba(0, 0, 0, 0.65);
    font-weight: normal;
    background: rgba(255, 255, 255, 0.45);
    border: none;
    box-shadow: 0 0 24px #fff;
}

.badge_blue {
    color: rgba(0, 0, 0, 0.65);
    font-weight: normal;
    background: #5dd7f273;
    border: none;
}

.model-card-see-more {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: right;
}

.model-card-see-more-button {
    font-size: 1rem;
    text-decoration: none;
    color: #D4B690;
    backdrop-filter: blur(24px);
    padding: 4px 8px;
    box-shadow: 0 0 24px #3a3a3a;
    border-radius: 8px;
    font-weight: normal;
    color: rgba(0, 0, 0, 0.65);
    background: #5dd7f273;
    background: var(--gradient-primary);
    border: none;
}