/* Base Styles */
body {
    font-family: var(--font-main);
    font-size: var(--text-size);
    line-height: 1.6;
    color: var(--text-white);
    background-color: var(--bg-dark-primary);
}

/* Container */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1 {
    font-size: var(--h1-size);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

h2 {
    font-size: var(--h2-size);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;
}

h3 {
    font-size: var(--h3-size);
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 15px;
}

p {
    margin-bottom: 15px;
}

.lead {
    font-size: 20px;
    font-weight: 400;
    color: var(--text-gray);
}

/* Text Colors */
.text-orange { color: var(--accent-orange); }
.text-red { color: var(--accent-red); }
.text-green { color: var(--accent-green); }
.text-gold { color: var(--accent-gold); }
.text-white { color: var(--text-white); }
.text-gray { color: var(--text-gray); }

.text-red-glow {
    color: var(--accent-red);
    text-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
}

/* Text Alignment */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

/* Sections */
.section-dark {
    background-color: var(--bg-dark-primary);
    padding: var(--spacing-section) 0;
}

.section-dark-secondary {
    background-color: var(--bg-dark-secondary);
    padding: var(--spacing-section) 0;
}

.section-light {
    background-color: var(--bg-light);
    color: var(--text-dark);
    padding: var(--spacing-section) 0;
}

.section-light h2,
.section-light h3 {
    color: var(--text-dark);
}

.section-light .lead {
    color: #666;
}

/* Grids */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--gap-cards);
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--gap-cards);
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--gap-cards);
}

@media (max-width: 1024px) {
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 30px;
    font-size: 18px;
    font-weight: 700;
    text-align: center;
    border-radius: 8px;
    transition: var(--transition-medium);
    cursor: pointer;
}

.btn-primary {
    background-color: var(--accent-green);
    color: var(--text-white);
    box-shadow: 0 4px 15px rgba(0, 200, 83, 0.3);
}

.btn-primary:hover {
    background-color: #00a845;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 200, 83, 0.4);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-white);
    border: 2px solid var(--text-white);
}

.btn-secondary:hover {
    background-color: var(--text-white);
    color: var(--bg-dark-primary);
}

.btn-dark {
    background-color: var(--bg-dark-primary);
    color: var(--text-white);
}

.btn-dark:hover {
    background-color: #1a1a1f;
}

.btn-large {
    padding: 20px 40px;
    font-size: 20px;
}

.btn-giant {
    padding: 25px 50px;
    font-size: 22px;
    font-weight: 800;
}

/* Cards */
.card {
    background-color: var(--bg-dark-secondary);
    border-radius: var(--border-radius);
    padding: 30px;
    transition: var(--transition-medium);
}

.card:hover {
    transform: translateY(-10px);
}

/* Utilities */
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 10px; }
.mb-2 { margin-bottom: 20px; }
.mb-3 { margin-bottom: 30px; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 10px; }
.mt-2 { margin-top: 20px; }
.mt-3 { margin-top: 30px; }

@media (max-width: 768px) {
    .btn {
        width: 100%;
        padding: 15px 20px;
    }
}
