:root {
    --krazy-pink: #FF3366;
    --krazy-blue: #33CCFF;
    --krazy-yellow: #FFCC00;
    --krazy-dark: #2E2E2E;
    --krazy-light: #F8F8F8;
}

/* Base Styles */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    line-height: 1.6;
    color: var(--krazy-dark);
    background: var(--krazy-light);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.main-header {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 50px;
    margin-right: 10px;
}

/* Dropdown Menu */
.dropdown {
    position: relative;
    display: none;
}

.dropdown-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.menu-icon {
    width: 30px;
    height: 30px;
}

.dropdown-content {
    display: none;
    position: absolute;
    right: 0;
    background: white;
    min-width: 200px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
    z-index: 1000;
    border-radius: 5px;
}

.dropdown-content a {
    color: var(--krazy-dark);
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
}

.dropdown-content a:hover {
    background: var(--krazy-yellow);
}

.dropdown-content.show {
    display: block;
}

/* Hero Section */
.hero {
    height: 70vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    position: relative;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(255,51,102,0.7), rgba(51,204,255,0.7));
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

/* Buttons */
.cta-button {
    background: var(--krazy-yellow);
    color: var(--krazy-dark);
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
    margin-top: 20px;
    transition: all 0.3s;
}

/* Game Cards */
.game-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin: 30px auto;
    max-width: 800px;
    display: flex;
}

.game-card img {
    width: 40%;
    object-fit: cover;
}

.game-info {
    padding: 30px;
    width: 60%;
}

.game-price {
    background: var(--krazy-pink);
    color: white;
    padding: 5px 15px;
    border-radius: 50px;
    font-weight: bold;
    display: inline-block;
}

/* Mechanical Bull Specific */
.premium-option {
    display: block;
    background: rgba(255,215,0,0.1);
    padding: 12px;
    border-left: 3px solid gold;
    margin: 8px 0;
}

.game-warning {
    font-size: 0.8rem;
    color: var(--krazy-pink);
    display: block;
    margin-top: 5px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .desktop-nav {
        display: none;
    }
    .dropdown {
        display: block;
    }
    
    .game-card {
        flex-direction: column;
    }
    .game-card img {
        width: 100%;
        height: 200px;
    }
    .game-info {
        width: 100%;
    }
}