:root {
    --bg-color: #020617; /* Deep Navy Blue */
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --accent: #00e6ff; /* UCL Cyan */
    --accent-hover: #00b8cc;
    --card-bg: rgba(15, 23, 42, 0.85); /* Slightly transparent navy */
    --border-color: rgba(0, 230, 255, 0.2);
    
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Rajdhani', sans-serif;
}

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

body {
    font-family: var(--font-body);
    background-color: #010a20; /* Deep blue base */
    /* Champions League inspired background */
    background-image: 
        radial-gradient(circle at 15% 50%, rgba(0, 153, 255, 0.15), transparent 25%),
        radial-gradient(circle at 85% 30%, rgba(0, 230, 255, 0.1), transparent 30%),
        radial-gradient(circle at 50% 100%, rgba(29, 78, 216, 0.2), transparent 50%),
        url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M50 5 L61 39 L97 39 L68 60 L79 95 L50 74 L21 95 L32 60 L3 39 L39 39 Z' fill='none' stroke='rgba(0,150,255,0.05)' stroke-width='1'/%3E%3C/svg%3E");
    background-size: 100% 100%, 100% 100%, 100% 100%, 300px 300px;
    background-attachment: fixed;
    color: var(--text-main);
    min-height: 100vh;
    display: flex;
    justify-content: center;
}

.app-container {
    width: 100%;
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid var(--border-color);
}

.logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.logo-centered {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    line-height: 1;
    margin-bottom: 2rem;
}
.logo-centered .yes-part {
    font-size: 5rem;
    letter-spacing: 2px;
    margin-bottom: -10px;
}
.logo-centered .passion-part {
    font-size: 4rem;
    color: var(--text-main);
    letter-spacing: 5px;
}

.mode-btn {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(0, 230, 255, 0.3);
    border-radius: 12px;
    padding: 1.5rem;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.mode-btn:hover {
    background: rgba(0, 230, 255, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}
.mode-btn h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    color: var(--accent);
    letter-spacing: 1px;
    margin: 0;
}
.mode-btn p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0;
}

.custom-settings {
    background: rgba(0,0,0,0.4);
    border-radius: 12px;
    padding: 1.5rem;
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    border: 1px solid rgba(255,255,255,0.1);
    text-align: left;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
.setting-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.setting-row label {
    font-size: 1.1rem;
    font-weight: 600;
}
.custom-select {
    background: rgba(15, 23, 42, 0.8);
    color: white;
    border: 1px solid var(--border-color);
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-family: var(--font-body);
    font-size: 1rem;
}
input[type=range] {
    accent-color: var(--accent);
}

.formation-accordion {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    max-width: 600px;
    margin: 0 auto;
}

.formation-item {
    background: rgba(15, 23, 42, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.formation-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.05);
    transition: background 0.2s;
}

.formation-header:hover {
    background: rgba(255, 255, 255, 0.1);
}

.formation-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    color: var(--text-main);
    letter-spacing: 2px;
}

.formation-item.active .formation-header {
    background: rgba(0, 230, 255, 0.15);
    border-bottom: 1px solid rgba(0, 230, 255, 0.3);
}

.formation-item.active .formation-name {
    color: var(--accent);
}

.btn-confirm-formation {
    background: #10b981;
    color: white;
    border: none;
    border-radius: 6px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(16, 185, 129, 0.4);
    transition: transform 0.2s;
}
.btn-confirm-formation:hover {
    transform: scale(1.1);
}

.formation-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-in-out;
    background: rgba(0,0,0,0.4);
}

.formation-item.active .formation-body {
    max-height: 600px; /* high enough to contain the pitch */
}

/* Mini pitch styling */
.mini-pitch {
    position: relative;
    width: 100%;
    aspect-ratio: 4/5;
    max-height: 400px;
    background: #0b1f3d;
    border: 1px solid rgba(0, 150, 255, 0.3);
    margin: 1rem auto;
    border-radius: 8px;
    display: flex;
    flex-direction: column; /* Attackers on top, GK at bottom */
    justify-content: space-around;
    padding: 10px 0;
    overflow: hidden;
}

.mini-pitch::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: 
        /* Center circle */
        radial-gradient(circle at 50% 50%, transparent 48px, rgba(255,255,255,0.15) 50px, transparent 52px),
        /* Halfway line */
        linear-gradient(to bottom, transparent calc(50% - 1px), rgba(255,255,255,0.15) 50%, transparent calc(50% + 1px));
    pointer-events: none;
}

.mini-pitch-row {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    z-index: 1;
}

.mini-player {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 40px;
}

.mini-shirt {
    width: 32px;
    height: 32px;
    background: white;
    border-radius: 4px 4px 0 0;
    position: relative;
    box-shadow: inset -2px -2px 4px rgba(0,0,0,0.2), 0 2px 4px rgba(0,0,0,0.5);
}
.mini-shirt::before {
    content: '';
    position: absolute;
    top: 4px;
    left: -6px;
    width: 10px;
    height: 14px;
    background: white;
    border-radius: 4px;
    transform: rotate(30deg);
    box-shadow: inset -1px -2px 2px rgba(0,0,0,0.1);
}
.mini-shirt::after {
    content: '';
    position: absolute;
    top: 4px;
    right: -6px;
    width: 10px;
    height: 14px;
    background: white;
    border-radius: 4px;
    transform: rotate(-30deg);
    box-shadow: inset 1px -2px 2px rgba(0,0,0,0.1);
}

.mini-role {
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    font-weight: 800;
    color: white;
    margin-top: 4px;
    text-shadow: 0 1px 2px black;
    text-align: center;
}

.logo-passion {
    background: linear-gradient(135deg, #ffffff 0%, #00e6ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.status-bar {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 600;
    background: var(--card-bg);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.game-content {
    flex: 1;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.loader {
    font-size: 1.2rem;
    color: var(--accent);
    animation: pulse 1.5s infinite;
}

.main-footer {
    text-align: center;
    padding: 1.5rem;
    color: var(--text-muted);
    font-size: 0.85rem;
    border-top: 1px solid var(--border-color);
}

@keyframes pulse {
    0% { opacity: 0.6; }
    50% { opacity: 1; }
    100% { opacity: 0.6; }
}

/* Base button styles */
.btn {
    background: linear-gradient(135deg, rgba(0, 230, 255, 0.8) 0%, rgba(29, 78, 216, 0.8) 100%);
    color: #fff;
    border: 1px solid rgba(0, 230, 255, 0.5);
    padding: 0.75rem 1.5rem;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    border-radius: 8px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.2s;
    box-shadow: 0 4px 15px rgba(0, 230, 255, 0.2);
}

.btn:hover {
    background: linear-gradient(135deg, rgba(0, 230, 255, 1) 0%, rgba(29, 78, 216, 1) 100%);
    box-shadow: 0 6px 20px rgba(0, 230, 255, 0.4);
    transform: translateY(-2px);
}

.btn:active {
    transform: translateY(0);
}

/* Draft UI Styles */
.draft-container {
    display: flex;
    width: 100%;
    gap: 2rem;
    margin-top: 1rem;
}

.draft-left, .draft-right {
    padding: 0.5rem;
    width: 100%;
}

.draft-left {
    flex: 1.5; /* Give pitch slightly more space */
}

.draft-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    max-height: 100%; /* allows the flex child to overflow properly */
}

.roster-list {
    margin-top: 1rem;
    flex: 1;
    min-height: 0;
    max-height: unset;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding-right: 0.5rem; /* for scrollbar */
}

/* Custom scrollbar for roster list */
.roster-list::-webkit-scrollbar {
    width: 6px;
}
.roster-list::-webkit-scrollbar-track {
    background: rgba(0,0,0,0.2);
    border-radius: 4px;
}
.roster-list::-webkit-scrollbar-thumb {
    background: var(--border-color);
    border-radius: 4px;
}

.roster-player {
    display: flex;
    justify-content: space-between;
    background: rgba(0,0,0,0.2);
    padding: 0.75rem;
    border-radius: 4px;
    cursor: pointer;
    border: 1px solid transparent;
}

.roster-player:hover {
    background: rgba(255,255,255,0.05);
}

.roster-player.selected {
    border-color: var(--accent);
    background: rgba(16, 185, 129, 0.1);
}

.season-badge {
    background: #ffffff;
    color: #0f172a;
    font-weight: 800;
    padding: 0.3rem 0.6rem;
    border-radius: 4px;
    font-size: 0.9rem;
    margin-left: 0.5rem;
}

.formation-options {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

/* Season UI Styles - Mobile First */
.season-container {
    display: flex;
    flex-direction: column-reverse; /* For mobile: Next match on top, standings below */
    width: 100%;
    gap: 1.5rem;
    margin-top: 1rem;
}

.season-left, .season-right {
    background: var(--card-bg);
    padding: 1rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    width: 100%;
}

.standings-table {
    display: flex;
    flex-direction: column;
    font-size: 0.85rem; /* Smaller text for mobile */
}

.s-row {
    display: grid;
    grid-template-columns: 20px 1fr 25px 20px 20px 20px 20px 25px;
    gap: 4px;
    padding: 0.5rem 0.2rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    align-items: center;
}

.s-header {
    font-weight: 800;
    color: var(--text-muted);
    border-bottom: 2px solid rgba(255,255,255,0.1);
}

.s-user {
    background: rgba(0, 230, 255, 0.1);
    border-left: 3px solid var(--accent);
    font-weight: 600;
}

.s-team {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.s-pts {
    font-weight: 800;
    color: var(--accent);
    text-align: center;
}

.s-stat {
    text-align: center;
    color: var(--text-muted);
}

.s-pos {
    text-align: center;
    color: #cbd5e1;
}

.next-match-card {
    text-align: center;
}

.match-teams {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    font-size: 1.2rem;
    font-weight: 800;
    margin: 1.5rem 0;
    background: rgba(0,0,0,0.3);
    padding: 1rem;
    border-radius: 8px;
}

.m-vs {
    color: var(--accent);
    font-size: 0.9rem;
}

.sim-controls {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-top: 1rem;
}

.btn-secondary {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.8) 0%, rgba(5, 150, 105, 0.8) 100%);
    border-color: rgba(16, 185, 129, 0.5);
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.2);
}
.btn-secondary:hover {
    background: linear-gradient(135deg, rgba(16, 185, 129, 1) 0%, rgba(5, 150, 105, 1) 100%);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
}

.btn-danger {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.8) 0%, rgba(185, 28, 28, 0.8) 100%);
    border-color: rgba(239, 68, 68, 0.5);
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.2);
}
.btn-danger:hover {
    background: linear-gradient(135deg, rgba(239, 68, 68, 1) 0%, rgba(185, 28, 28, 1) 100%);
    box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4);
}

.match-results-area {
    margin-top: 1.5rem;
    text-align: left;
}

.user-result {
    background: rgba(0,0,0,0.2);
    padding: 1rem;
    border-radius: 8px;
    border-left: 4px solid var(--accent);
}

.scoreline {
    font-size: 1.1rem;
    text-align: center;
    margin: 0.5rem 0;
}

.events-list {
    list-style: none;
    font-size: 0.85rem;
    color: #cbd5e1;
}

/* Tablet & Desktop Adjustments */
@media (min-width: 768px) {
    .season-container {
        flex-direction: row; /* Side by side on larger screens */
    }
    
    .season-left {
        flex: 2;
    }
    
    .season-right {
        flex: 1;
        position: sticky;
        top: 2rem;
        height: fit-content;
    }

    .standings-table {
        font-size: 1rem;
    }

    .s-row {
        grid-template-columns: 30px 1fr 40px 30px 30px 30px 30px 40px;
        gap: 8px;
        padding: 0.75rem 0.5rem;
    }
}

/* Mobile Draft UI tweaks */
@media (max-width: 767px) {
    .draft-container {
        flex-direction: column;
    }
}

/* Premium Draft Graphics */
.draft-header-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.picks-badge {
    background: rgba(0, 230, 255, 0.1);
    color: var(--accent);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 800;
    border: 1px solid rgba(0, 230, 255, 0.3);
}

.pitch-container {
    width: 100%;
    aspect-ratio: 3 / 5;
    max-width: 800px;
    max-height: 1000px;
    margin: 0.5rem auto 2rem auto;
    perspective: 1200px;
    transform-style: preserve-3d;
    background: transparent;
    border: none;
    box-shadow: none;
    overflow: visible;
}

.pitch {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    transform: rotateX(50deg);
    transform-style: preserve-3d;
    background: linear-gradient(180deg, #0b2247 0%, #05132b 100%);
    border: 2px solid rgba(0, 150, 255, 0.4);
    box-shadow: 0 30px 0 #020914, 0 40px 30px rgba(0,0,0,0.8);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 0 0.5rem;
    border-radius: 8px;
    pointer-events: none; /* Let clicks pass through the grass */
}

.pitch::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: 
        radial-gradient(circle at 50% 50%, transparent 20%, rgba(255,255,255,0.1) 21%, transparent 22%),
        linear-gradient(to bottom, transparent calc(50% - 1px), rgba(255,255,255,0.1) 50%, transparent calc(50% + 1px)),
        linear-gradient(to right, transparent calc(50% - 1px), rgba(255,255,255,0.1) 50%, transparent calc(50% + 1px));
    pointer-events: none;
    border: 1px solid rgba(255,255,255,0.1);
    margin: 5%;
}

.pitch-lines {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    pointer-events: none;
    z-index: 0;
}
.pitch-lines::before {
    content: '';
    position: absolute;
    top: 5%; left: 25%; right: 25%; height: 18%;
    border: 1px solid rgba(255,255,255,0.15);
    border-top: none;
}
.pitch-lines::after {
    content: '';
    position: absolute;
    bottom: 5%; left: 25%; right: 25%; height: 18%;
    border: 1px solid rgba(255,255,255,0.15);
    border-bottom: none;
}

.pitch-row {
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 100%;
    transform-style: preserve-3d;
    pointer-events: none;
    position: relative;
}

.slot-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    transform: rotateX(-50deg) translateZ(20px); /* Lift slightly off the pitch */
    transform-origin: bottom center;
    transition: transform 0.3s ease;
    cursor: pointer;
    pointer-events: auto;
}

.slot {
    width: 32px;
    height: 32px;
    position: relative;
    z-index: 2;
    transition: transform 0.2s, filter 0.2s;
    background-size: contain;
    background-position: center bottom;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Empty slot styling - White T-Shirt */
.slot:not(.filled) {
    background-image: url('../assets/images/shirt_white.png');
}

/* Filled slot styling - Red T-Shirt */
.slot.filled {
    background-image: url('../assets/images/shirt_red.png');
}

.slot.gold-card {
    background-image: url('../assets/images/shirt_gold.png');
}

.slot-ovr-inside {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.1rem;
    color: #ffffff;
    text-shadow: 0 1px 2px rgba(0,0,0,0.8);
    pointer-events: none;
    margin-top: 4px;
}

.slot-role {
    position: absolute;
    bottom: -18px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1rem;
    color: rgba(255,255,255,0.9);
    text-shadow: 0 1px 3px rgba(0,0,0,0.9);
    width: 100%;
    text-align: center;
    letter-spacing: 1px;
}

.slot-wrapper:hover .slot {
    transform: scale(1.1);
}

.empty-wrapper.compatible .slot {
    border-color: var(--accent);
    box-shadow: 0 0 15px rgba(0, 230, 255, 0.5);
    animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
    0% { box-shadow: 0 0 5px rgba(0, 230, 255, 0.2); }
    50% { box-shadow: 0 0 20px rgba(0, 230, 255, 0.8); }
    100% { box-shadow: 0 0 5px rgba(0, 230, 255, 0.2); }
}
    background-position: center bottom;
}

.gold-card .card-img-placeholder {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="rgba(255,255,255,0.8)"><path d="M12 12c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm0 2c-2.67 0-8 1.34-8 4v2h16v-2c0-2.66-5.33-4-8-4z"/></svg>');
}

.card-name-outside {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 0.9rem;
    font-weight: 400;
    text-align: center;
    width: 70px;
    white-space: normal;
    word-wrap: break-word;
    color: #fff;
    text-shadow: 0 1px 3px rgba(0,0,0,0.8);
    margin-top: 4px;
    line-height: 1.1;
    letter-spacing: 0.5px;
}

.p-left {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.p-right {
    display: flex;
    align-items: center;
    white-space: nowrap;
}

.p-ovr {
    font-weight: 900;
    font-size: 1.1rem;
    width: 25px;
}

.text-gold {
    color: var(--accent);
    text-shadow: 0 0 10px rgba(0, 230, 255, 0.5);
}

.p-role {
    font-weight: 800;
    color: var(--text-muted);
}

.p-name {
    font-weight: 600;
}

.loader-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 200px;
}

@media (max-width: 767px) {
    .draft-container {
        flex-direction: column;
    }
    .season-container {
        flex-direction: column-reverse;
    }
    .card-ovr { font-size: 1rem; }
    .card-name-outside { font-size: 0.8rem; width: 65px; margin-top: 2px; }
    .pitch-container { max-width: 100%; aspect-ratio: auto; height: 550px; margin-bottom: 20px; perspective: 800px; margin-top: 0.5rem; }
    .pitch { padding: 0 0.2rem; transform: rotateX(45deg); pointer-events: none; }
    .slot-wrapper { transform: rotateX(-45deg) translateZ(15px); gap: 2px; cursor: pointer; pointer-events: auto; }
    .roster-grid { grid-template-columns: repeat(auto-fill, minmax(120px, 1fr)); }
    .season-left, .season-right { min-width: 100%; }
}
/* Budget Mode Enhancements */
.budget-header-wrapper {
    width: 100%;
    margin-top: 15px;
    padding: 2px;
    background: linear-gradient(90deg, rgba(16,185,129,0.3) 0%, rgba(0,0,0,0.8) 50%, rgba(16,185,129,0.3) 100%);
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.budget-bar-container {
    width: 100%;
    height: 32px;
    background: rgba(0,0,0,0.8);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    box-shadow: inset 0 2px 5px rgba(0,0,0,0.5);
}

.budget-fill {
    height: 100%;
    transition: width 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 0 10px var(--accent);
}

.budget-text {
    position: absolute;
    width: 100%;
    text-align: center;
    top: 0;
    line-height: 32px;
    font-size: 1.1rem;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    color: #fff;
    text-shadow: 0px 2px 4px rgba(0,0,0,0.9), 0px 0px 10px rgba(16,185,129,0.8);
    letter-spacing: 1px;
}

.budget-tag-roster {
    font-size: 0.8rem;
    color: #ffd700;
    background: rgba(255, 215, 0, 0.15);
    padding: 0.2rem 0.6rem;
    border-radius: 6px;
    margin-left: 10px;
    font-family: 'Rajdhani', monospace;
    font-weight: 700;
    border: 1px solid rgba(255, 215, 0, 0.3);
    box-shadow: 0 0 5px rgba(255, 215, 0, 0.1);
    letter-spacing: 0.5px;
}

.budget-tag-pitch {
    font-size: 0.85rem;
    font-weight: 700;
    font-family: 'Rajdhani', monospace;
    background: linear-gradient(135deg, rgba(0,0,0,0.8) 0%, rgba(20,20,20,0.9) 100%);
    padding: 0.3rem 0.6rem;
    border-radius: 6px;
    margin-top: 0.6rem;
    border: 1px solid #ffd700;
    color: #ffd700;
    box-shadow: 0 4px 6px rgba(0,0,0,0.6), 0 0 8px rgba(255, 215, 0, 0.3);
    text-shadow: 1px 1px 2px rgba(0,0,0,0.8);
    letter-spacing: 0.5px;
}

/* Budget Tiers */
.budget-tier-low {
    color: #10b981;
    border-color: #10b981;
    text-shadow: 0 0 5px rgba(16, 185, 129, 0.5);
}
.budget-tier-med {
    color: #f59e0b;
    border-color: #f59e0b;
    text-shadow: 0 0 5px rgba(245, 158, 11, 0.5);
}
.budget-tier-high {
    color: #ef4444;
    border-color: #ef4444;
    text-shadow: 0 0 5px rgba(239, 68, 68, 0.5);
}
