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

:root {
    /* Color Palette - Optimized for dark purple-blue gradient */
    --primary-color: #6366f1;       
    --primary-dark: #4f46e5;         
    --primary-light: #818cf8;        
    --secondary-color: #64748b;
    --accent-color: #f59e0b;
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --danger-color: #ef4444;

    --gold: #fcd34d;
    --silver: #e5e5e5;
    --bronze: #d99a60;
    --purple-accent: #8b5cf6;
        
    
    --text-primary: #ffffff;
    --text-secondary: #e2e8f0;      
    --text-muted: #94a3b8;
    --text-inverse: #0f172a;
    
    --border-color: rgba(255, 255, 255, 0.1);
    --border-color-light: rgba(255, 255, 255, 0.2);
    --border-radius: 8px;
    --border-radius-lg: 12px;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.4);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.5), 0 2px 4px -2px rgb(0 0 0 / 0.4);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.6), 0 4px 6px -4px rgb(0 0 0 / 0.5);
    --shadow-glow: 0 0 20px rgba(99, 102, 241, 0.3);

    /* Spacing */
    --spacing-xs: 4px;
    --spacing-small: 8px;
    --spacing-medium: 16px;
    --spacing-large: 24px;
    --spacing-xlarge: 32px;
    --spacing-2xl: 48px;
    
    /* Typography */
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 1.875rem;
    --font-size-4xl: 2.25rem;

    --primary-gradient: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #a855f7 100%);
    --primary-hover: linear-gradient(135deg, #5b5def 0%, #8048f4 50%, #9d47f5 100%);
    --secondary-border: rgba(156, 163, 175, 0.3);
    --secondary-hover-bg: rgba(99, 102, 241, 0.1);

    
}

body {
    font-family: 'Inter', 'Segoe UI', -apple-system, BlinkMacSystemFont, 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    font-size: var(--font-size-base);
    line-height: 1.6;
    color: var(--text-primary);

    /*background: linear-gradient(-45deg, #0f0f23, #1a1a2e, #16213e, #252540);
    background-size: 400% 400%;*/
    /*background: linear-gradient(
        135deg,
        #0f0c29 0%,
        #302b63 50%,
        #24243e 100%
    );*/
    background: linear-gradient(
        to bottom,
        #0a0a1a 0%,
        #1a1a3a 50%,
        #2a2a5a 100%
    );
    
    /*background: linear-gradient(
        135deg,
        #000000 0%,
        #0a0a12 50%,
        #1a1a2a 100%
    );*/
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-medium);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-medium);
}

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 var(--spacing-medium);
}

.site-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.main-content {
    flex: 1;
    padding: var(--spacing-xlarge) 0;
}


a {
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.2s ease;
}

.btn {
    padding: 0.875rem 2rem;
    border-radius: 12px;
    font-family: inherit;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 140px;
    border: none;
}

.btn-solid {
    background: var(--primary-color);
    color: white;
    box-shadow: var(--shadow-glow);
}

.btn-solid:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(99, 102, 241, 0.5);
}

.btn-primary {
    background: linear-gradient(135deg, #4f46e5, #6366f1);
    color: white;
    border: none;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(99, 102, 241, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--secondary-border);
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--secondary-hover-bg);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-secondary:hover {
    border-color: rgba(99, 102, 241, 0.6);
    color: #c7d2fe;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.btn-secondary:hover::before {
    opacity: 1;
}

.btn-secondary2 {
    background: transparent;
    color: #a5b4fc;
    border: 2px solid #4f46e5;
}

.btn-secondary2:hover {
    background-color: rgba(79, 70, 229, 0.1);
    color: #ffffff;
    transform: translateY(-2px);
}

.btn-small {
    padding: 0.5rem 1.5rem;
    font-size: 0.8rem;
    border-radius: 6px;
}

.btn-medium {
    padding: 0.65rem 1.5rem;
    font-size: 0.9rem;
    border-radius: 8px;
}

.csgold {
    color: #ffca24;
    text-shadow: 0 0 10px rgba(255, 202, 36, 0.3);
}

.rustmagic {
    color: #8b5cf6;
    text-shadow: 0 0 10px rgba(139, 92, 246, 0.3);
}
