:root {
    --primary-color: #fae500;
    --primary-color-hover: #ffea00;
    --secondary-color: #1a1a1a;
    --tertiary-color: #2d2d2d;
    --stripe-pattern: repeating-linear-gradient(
        60deg,
        var(--primary-color),
        var(--primary-color) 20px,
        var(--secondary-color) 20px,
        var(--secondary-color) 40px
    );
    --stripe-thickness: 10px;
    --border-left-color: 5px solid var(--primary-color);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-color-hover);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
}

button {
    padding: 1.2rem;
    background: var(--primary-color);
    color: var(--secondary-color);
    border: 2px solid var(--primary-color);
    font-size: 1.1rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}

button:hover {
    background: var(--secondary-color);
    color: var(--primary-color);
    transform: scale(1.02);
}

/* Footer */
footer {
    background: var(--secondary-color);
    color: var(--primary-color);
    text-align: center;
    padding: 2rem;
    font-weight: 600;
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: var(--stripe-thickness);
    background: var(--stripe-pattern);
}