/* Icey RP - Modern High End Theme */
:root {
    --mc-dark: #0a0a0a;
    --mc-obsidian: #141414;
    --mc-glass: rgba(20, 20, 20, 0.85);
    --mc-border: #333;
    --mc-green: #55ff55;
    --mc-green-dim: #3aa83a;
    --mc-red: #ff5555;
    --mc-gold: #ffaa00;
    --mc-aqua: #55ffff;
    --accent: var(--mc-green);
    --font-main: 'Inter', sans-serif;
    --font-heading: 'Oxanium', display;
}

body {
    background-color: var(--mc-dark);
    /* Subtle hex pattern or noise could go here */
    background-image: 
        radial-gradient(circle at 50% 0%, #1a1a1a 0%, transparent 70%),
        url('https://www.transparenttextures.com/patterns/dark-matter.png');
    color: #eee;
    font-family: var(--font-main);
    overflow-x: hidden;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--mc-dark); 
}
::-webkit-scrollbar-thumb {
    background: #333; 
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--accent); 
}

/* Components */
.mc-card {
    background: var(--mc-glass);
    border: 1px solid var(--mc-border);
    backdrop-filter: blur(10px);
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    transition: transform 0.2s, border-color 0.2s;
}

.mc-card:hover {
    border-color: var(--accent);
    transform: translateY(-2px);
}

.mc-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(to bottom, #333, #222);
    border: 1px solid #555;
    border-bottom: 3px solid #111;
    color: white;
    font-family: var(--font-heading);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    transition: all 0.1s;
    cursor: pointer;
    text-shadow: 1px 1px 0 #000;
}

.mc-btn:hover {
    filter: brightness(1.2);
    transform: translateY(-1px);
}

.mc-btn:active {
    border-bottom-width: 1px;
    transform: translateY(2px);
}

.mc-btn-primary {
    background: linear-gradient(to bottom, #2d5a2d, #1a3a1a);
    border-color: #4a8a4a;
    border-bottom-color: #0d1f0d;
}

.mc-btn-danger {
    background: linear-gradient(to bottom, #5a2d2d, #3a1a1a);
    border-color: #8a4a4a;
    border-bottom-color: #1f0d0d;
}

.mc-input {
    width: 100%;
    background: rgba(0,0,0,0.5);
    border: 1px solid #444;
    color: white;
    padding: 0.75rem;
    border-radius: 4px;
    font-family: var(--font-heading);
    transition: border-color 0.2s;
}

.mc-input:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 2px rgba(85, 255, 85, 0.2);
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-fade-in {
    animation: fadeIn 0.5s ease-out forwards;
}

/* Utilities */
.text-accent { color: var(--accent); }
.text-gold { color: var(--mc-gold); }
.font-heading { font-family: var(--font-heading); }
.border-accent { border-color: var(--accent); }

/* Nav Link */
.nav-link {
    position: relative;
    color: #bbb;
    font-family: var(--font-heading);
    text-transform: uppercase;
    font-size: 0.9rem;
    padding: 0.5rem;
    transition: color 0.2s;
}

.nav-link:hover {
    color: var(--accent);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s;
}

.nav-link:hover::after {
    width: 100%;
}
