* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background-color: #0a0a0a;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2%;
}

/* Header styles from original */
header {
    background-color: rgba(0, 0, 0, 0.8);
    padding: 20px;
    position: relative;
    z-index: 1000;
}

.logo {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.logo h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 24px;
    color: #ffcc00;
    text-transform: uppercase;
}

/* Options Section Styles */
.options-section {
    padding: 60px 0;
    min-height: calc(100vh - 200px);
}

.options-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.options-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 30px;
    width: 100%;
    align-items: start;
}

.option-card {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease;
    border: 1px solid rgba(255, 204, 0, 0.2);
}

.option-card:hover {
    transform: translateY(-5px);
}

.option-card h3 {
    color: #ffcc00;
    font-family: 'Orbitron', sans-serif;
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: 600;
}

.price {
    font-size: 28px;
    color: #ffcc00;
    margin: 20px 0;
    font-weight: 600;
    text-decoration: underline;
}

.rules-list {
    text-align: left;
    margin: 20px 0;
}

.rules-list li {
    margin-bottom: 10px;
    list-style-type: none;
    padding-left: 25px;
    position: relative;
}

.rules-list li:before {
    content: "→";
    color: #ffcc00;
    position: absolute;
    left: 0;
}

.or-divider {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.or-circle {
    width: 50px;
    height: 50px;
    background-color: #ffcc00;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0a0a0a;
    font-weight: bold;
    margin: 20px 0;
}

.vertical-line {
    width: 2px;
    height: 100px;
    background-color: #ffcc00;
}

.cta-button {
    display: inline-block;
    background-color: #ffcc00;
    color: #0a0a0a;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    transition: background-color 0.3s ease;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    background-color: #ffd633;
}

/* Footer styles from original */
footer {
    background-color: rgba(0, 0, 0, 0.8);
    color: #ffffff;
    text-align: center;
    padding: 20px 0;
}

.social-links {
    margin-top: 10px;
}

.social-links a {
    color: #ffffff;
    margin: 0 10px;
    text-decoration: none;
    font-weight: bold;
}

/* Responsive design */
@media (max-width: 768px) {
    .options-grid {
        grid-template-columns: 1fr;
    }

    .or-divider {
        flex-direction: row;
        padding: 10px;
    }

    .vertical-line {
        width: 100px;
        height: 2px;
    }
}


.solo, .squad{
    width: 300px;
    height: 200px;
}


.soloBGM {
    background-image: url('solo.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent black */
    background-blend-mode: multiply; /* Blend the image */
}

.squadBGM {
    background-image: url('squad.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent black */
    background-blend-mode: multiply;
}
