/* Global Theme */
:root {
    --background-dark: #0c0c0c;
    --highlight-yellow: #ffcc00;
    --text-primary: #ffffff;
    --text-secondary: #b0b0b0;
    --button-bg: #1e1e1e;
    --button-hover: #ffcc00;
}

body {
    margin: 0;
    font-family: 'Roboto', sans-serif;
    background-color: var(--background-dark);
    color: var(--text-primary);
    text-align: center;
}

/* Background */
.background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.2;
}

.background-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Header */
.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    background: rgba(0, 0, 0, 0.9);
    border-bottom: 3px solid var(--highlight-yellow);
}

.header .logo img {
    height: 50px;
}

.header h1 {
    font-size: 2.5rem;
    color: var(--highlight-yellow);
}

/* Filters */
.filters {
    margin: 20px auto;
    padding: 20px;
    max-width: 800px;
    background: rgba(0, 0, 0, 0.8);
    border: 2px solid var(--highlight-yellow);
    border-radius: 10px;
}

.filters h2 {
    color: var(--highlight-yellow);
}

.filter-options label {
    display: block;
    margin: 10px 0;
    font-size: 1.2rem;
    color: var(--text-secondary);
}

/* Role Buttons */
.role-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.role-btn {
    padding: 10px 20px;
    font-size: 1.2rem;
    font-weight: bold;
    background: var(--button-bg);
    color: var(--text-primary);
    border: 2px solid var(--highlight-yellow);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.role-btn:hover {
    background: var(--highlight-yellow);
    color: var(--background-dark);
}

/* Buttons */
.spin-btn {
    margin: 20px;
    padding: 15px 30px;
    font-size: 1.5rem;
    font-weight: bold;
    background: var(--button-bg);
    color: var(--text-primary);
    border: 2px solid var(--highlight-yellow);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.spin-btn:hover {
    background: var(--highlight-yellow);
    color: var(--background-dark);
}

/* Result Section */
.result {
    margin: 40px auto;
    max-width: 800px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.8);
    border: 2px solid var(--highlight-yellow);
    border-radius: 10px;
}

.result h2 {
    color: var(--highlight-yellow);
}

#strategy-display {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-top: 20px;
}

/* Footer */
.footer {
    padding: 20px;
    background: rgba(0, 0, 0, 0.9);
    border-top: 3px solid var(--highlight-yellow);
    color: var(--text-secondary);
}
/* Default role button styles */
.role-button {
    background-color: #1e1e1e;
    color: #fff;
    border: 2px solid #ffcc00;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.3s ease;
}

/* Hover effect for role buttons */
.role-button:hover {
    background-color: #ffcc00;
    color: #1e1e1e;
}

/* Active state for the selected button */
.role-button.active {
    background-color: #ffcc00;
    color: #1e1e1e;
    border-color: #ffd700;
}
/* Default role button styles */
.role-button {
    background-color: #1e1e1e;
    color: #fff;
    border: 2px solid #ffcc00;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.3s ease;
}

/* Hover effect for role buttons */
.role-button:hover {
    background-color: #ffcc00;
    color: #1e1e1e;
}

/* Active state for the selected button */
.role-button.active {
    background-color: #ffcc00;
    color: #1e1e1e;
    border-color: #ffd700;
}
