@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;700;900&family=Inter:wght@400;500;700&display=swap');

:root {
    --gold: #EAB308;
    --gold-dim: #854d0e;
    --bg-dark: #000000;
    --card-bg: #09090b;
    --border: rgba(255, 255, 255, 0.05);
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #ffffff;
    color: #1a1a1a;
    -webkit-font-smoothing: antialiased;
    -webkit-tap-highlight-color: transparent;
}

.font-display { font-family: 'Outfit', sans-serif; }

/* 6-Column Responsive Grid */
.listing-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1px;
    background: #f0f0f0; /* Light border color through gap */
}

.card {
    position: relative;
    aspect-ratio: 1/2.0;
    overflow: hidden;
    background: #ffffff;
    border: 1.5px solid #1a47b8; /* Premium Blue Frame */
}

.font-premium { 
    font-family: 'Outfit', sans-serif; 
    letter-spacing: -0.02em;
}

/* Glass Effect */
.glass {
    background: rgba(9, 9, 11, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
}

/* Custom UI Components */
.gold-glow {
    box-shadow: 0 0 20px rgba(234, 179, 8, 0.15);
}

.card-title-shadow {
    text-shadow: 0 2px 4px rgba(0,0,0,0.8);
}

.no-scrollbar::-webkit-scrollbar { display: none; }
.no-scrollbar { -ms-overflow-style: none; scrollbar-width: none; }

/* Admin Modal Animation */
#admin-panel.active {
    display: flex;
    animation: slideUp 0.3s ease-out;
}

/* Marquee Animation */
.marquee-container {
    overflow: hidden;
    white-space: nowrap;
    background: #000;
}

.marquee-content {
    display: inline-block;
    padding-left: 100%;
    animation: marquee 20s linear infinite;
}

@keyframes marquee {
    0% { transform: translate(0, 0); }
    100% { transform: translate(-100%, 0); }
}

@keyframes slideUp {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
}

/* Yeni Etiket Tasarımı (Siyah Opasite & Taşma Engelleme) */
.new-tag {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.85); /* Siyah ve opacity */
    color: #ffffff;
    padding: 1px 4px;
    border-radius: 3px;
    font-family: 'Inter', sans-serif; /* Sade ve okunaklı font */
    font-size: 7px;
    font-weight: 800;
    text-transform: uppercase;
    white-space: nowrap;
    z-index: 30;
    pointer-events: none;
    text-align: center;
    width: max-content;
    max-width: 95%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    animation: tag-mini-pulse 2s infinite ease-in-out;
}

@keyframes tag-mini-pulse {
    0%, 100% { 
        opacity: 1;
        background: rgba(0, 0, 0, 0.85);
    }
    50% { 
        opacity: 0.8;
        background: rgba(40, 40, 40, 0.9);
    }
}
