* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #121212;
    color: #fff;
    font-family: Arial, sans-serif;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

/* Menu Styles */
.menu {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    padding: 15px;
    background: rgba(0,0,0,0.8);
}

.menu a {
    color: #ffd700;
    text-decoration: none;
    padding: 10px 20px;
    border: 1px solid #ffd700;
    border-radius: 25px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.menu a:hover {
    background: #ffd700;
    color: #000;
}

/* Info Page Styles */
.info-page {
    padding: 20px;
    background: linear-gradient(45deg, #1a0000, #330000);
}

.info-boxes {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.info-box {
    background: rgba(255,0,0,0.1);
    padding: 20px;
    border-radius: 10px;
    border: 1px solid #ff0000;
    text-align: center;
    font-weight: bold;
}

.image-container {
    width: 100%;
    margin: 20px 0;
    border-radius: 15px;
    overflow: hidden;
}

.image-container img {
    width: 100%;
    height: auto;
    display: block;
}

.claim-bonus {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(45deg, #ffd700, #ff9900);
    color: #000;
    text-decoration: none;
    padding: 15px 40px;
    border-radius: 25px;
    font-weight: bold;
    text-transform: uppercase;
    box-shadow: 0 0 20px rgba(255,215,0,0.5);
    animation: pulse 1.5s infinite;
    z-index: 100;
}

@keyframes pulse {
    0% { transform: translateX(-50%) scale(1); }
    50% { transform: translateX(-50%) scale(1.05); }
    100% { transform: translateX(-50%) scale(1); }
}

/* Stars Animation */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    background: radial-gradient(2px 2px at 20px 30px, #eee, rgba(0,0,0,0)),
                radial-gradient(2px 2px at 40px 70px, #fff, rgba(0,0,0,0)),
                radial-gradient(2px 2px at 50px 160px, #ddd, rgba(0,0,0,0)),
                radial-gradient(2px 2px at 90px 40px, #fff, rgba(0,0,0,0)),
                radial-gradient(2px 2px at 130px 80px, #fff, rgba(0,0,0,0)),
                radial-gradient(2px 2px at 160px 120px, #ddd, rgba(0,0,0,0));
    background-repeat: repeat;
    background-size: 200px 200px;
    animation: stars 3s linear infinite;
}

@keyframes stars {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 0 200px;
    }
}

/* Mobile Responsiveness */
@media (min-width: 768px) {
    .info-boxes {
        flex-direction: row;
        justify-content: space-between;
    }
    
    .info-box {
        flex: 1;
    }
}