:root {
    --dota-red: #e03131;
    --dota-dark: #0d1117;
    --dota-blue: #1a73e8;
    --dota-gold: #f8c537;
    --dota-text: #f0f6fc;
    --dota-secondary: #6e7681;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
    background-color: var(--dota-dark);
    color: var(--dota-text);
    min-height: 100vh;
}

h1, h2, h3 {
    font-family: 'Teko', sans-serif;
    letter-spacing: 1px;
}

h1 {
    font-size: 3.5rem;
    margin: 0;
    line-height: 1;
    text-transform: uppercase;
}

h2 {
    font-size: 2.5rem;
    color: var(--dota-gold);
    margin-bottom: 1.5rem;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    background-color: var(--dota-red);
    color: white;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s;
}

.btn:hover {
    background-color: #c92a2a;
    transform: translateY(-2px);
}

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

.btn-secondary:hover {
    background-color: rgba(255,255,255,0.05);
    border-color: var(--dota-text);
}

.section {
    padding: 80px 0;
}

.section-dark {
    background-color: rgba(13, 17, 23, 0.8);
}

.card {
    background-color: rgba(30, 35, 40, 0.8);
    border-radius: 8px;
    padding: 24px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.card:hover {
    transform: translateY(-5px);
}

.text-center {
    text-align: center;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .section {
        padding: 50px 0;
    }
}