body {
    font-family: 'Roboto', sans-serif;
    /* background-color: #0c0a09; */
    background-color: #1a101f; /* Deep purple-black */
    background-image:
        radial-gradient(at 27% 37%, hsla(215, 98%, 61%, 0.15) 0px, transparent 50%),
        radial-gradient(at 97% 21%, hsla(125, 98%, 72%, 0.15) 0px, transparent 50%),
        radial-gradient(at 52% 99%, hsla(355, 98%, 61%, 0.15) 0px, transparent 50%),
        radial-gradient(at 10% 29%, hsla(256, 96%, 61%, 0.2) 0px, transparent 50%),
        radial-gradient(at 97% 96%, hsla(38, 60%, 74%, 0.15) 0px, transparent 50%),
        radial-gradient(at 33% 50%, hsla(222, 67%, 73%, 0.15) 0px, transparent 50%),
        radial-gradient(at 79% 53%, hsla(343, 68%, 79%, 0.15) 0px, transparent 50%);
}
.game-font { font-family: 'Orbitron', sans-serif; }
.card {
    background-color: rgba(28, 20, 36, 0.6); /* Semi-transparent darker purple card */
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-radius: 1rem; /* Increased border-radius for a softer look */
}
.card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(192, 132, 252, 0.4); /* Purple glow on hover */
    box-shadow: 0 15px 35px rgba(192, 132, 252, 0.1), 0 5px 15px rgba(0,0,0,0.2);
}
.tier-badge {
    font-weight: 900;
    padding: 2px 8px;
    border-radius: 6px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.s-tier { background: linear-gradient(135deg, #10B981, #34D399); color: white; }
.a-tier { background: linear-gradient(135deg, #3B82F6, #60A5FA); color: white; }
.b-tier { background: linear-gradient(135deg, #F59E0B, #FBBF24); color: white; }
.c-tier { background: linear-gradient(135deg, #6B7280, #9CA3AF); color: white; }

h1 span { display: inline-block; } /* For Framer motion animation */

.section-header::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #60A5FA, #3B82F6);
    margin-top: 8px;
} 

.tier-badge.c-tier { background-color: #6b7280; }

/* New Preview Card Styles */
.preview-card {
    background-color: rgba(17, 24, 39, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

.preview-header {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
}

.preview-description {
    color: #d1d5db;
    max-width: 800px;
    margin-bottom: 1.5rem;
}

/* New Code Item Styles */
.code-item-new {
    border-radius: 8px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    border: 2px solid;
    position: relative;
    overflow: hidden;
}
.code-item-new.active {
    border-color: #34d399; /* Emerald 400 */
    background: linear-gradient(145deg, rgba(16, 185, 129, 0.1), rgba(17, 24, 39, 0.1));
}
.code-item-new.mixed {
    border-color: #fbbf24; /* Amber 400 */
    background: linear-gradient(145deg, rgba(251, 191, 36, 0.1), rgba(17, 24, 39, 0.1));
}

.status-badge-new {
    position: absolute;
    top: 1rem;
    left: 1rem;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    text-transform: uppercase;
}
.code-item-new.active .status-badge-new { background-color: #34d399; color: #064e3b; }
.code-item-new.mixed .status-badge-new { background-color: #fbbf24; color: #78350f; }

.reward-text {
    font-size: 1.125rem;
    font-weight: 600;
    color: #e5e7eb;
    margin-top: 1.5rem; /* Space below status badge */
    margin-bottom: 0.5rem;
}

.code-box-new {
    background-color: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-family: 'Courier New', Courier, monospace;
    padding: 0.75rem 1rem;
    border-radius: 6px;
    font-weight: bold;
    color: #fBBF24;
    text-align: center;
    margin-bottom: 1rem;
}

.copy-btn-new {
    background-color: #3b82f6; /* Blue 500 */
    color: white;
    font-weight: 600;
    padding: 0.75rem;
    border-radius: 6px;
    width: 100%;
    transition: background-color 0.2s ease-in-out;
}
.copy-btn-new:hover {
    background-color: #2563eb; /* Blue 600 */
}
.copy-btn-new.copied {
    background-color: #10b981; /* Emerald 500 */
}

/* New Race Item Styles */
.race-item-new {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    transition: all 0.2s ease-in-out;
}
.race-item-new:hover {
    transform: translateY(-4px);
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(129, 140, 248, 0.5);
}
.race-name {
    font-family: 'Orbitron', sans-serif;
    font-weight: 600;
    font-size: 1.125rem;
    color: #fff;
    margin-bottom: 0.25rem;
}
.race-desc {
    color: #9ca3af;
    font-size: 0.875rem;
}

.tier-badge-new {
    font-size: 0.8rem;
    font-weight: 700;
    padding: 0.25rem 0.75rem;
    border-radius: 6px;
    flex-shrink: 0;
}
.tier-badge-new.s-tier { background-color: #FFD700; color: #422006; }
.tier-badge-new.a-tier { background-color: #c084fc; color: #3b0764; }
.tier-badge-new.b-tier { background-color: #60a5fa; color: #1e3a8a; }
.tier-badge-new.c-tier { background-color: #9ca3af; color: #1f2937; }

.btn-secondary-outline {
    border: 2px solid #4f46e5;
    color: #c7d2fe;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.2s ease-in-out;
}
.btn-secondary-outline:hover {
    background-color: #4f46e5;
    color: white;
}

/* New Guide Tip Item Style */
.guide-tip-item {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 2rem 1.5rem;
    transition: all 0.2s ease-in-out;
}
.guide-tip-item:hover {
    transform: translateY(-4px);
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(96, 165, 250, 0.5); /* Blue 400 */
} 