* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    background-color: #050110;
    color: #fff;
    overflow-x: hidden;
    line-height: 1.6;
}

.parallax-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../img/parallax-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    opacity: 0.3;
    z-index: -1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

header {
    text-align: left;
    margin-bottom: 2rem;
}

h1 {
    font-size: 3rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #00ffff;
    text-shadow: 0 0 10px #00ffff, 0 0 20px #00ffff;
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from { text-shadow: 0 0 5px #00ffff, 0 0 10px #00ffff; }
    to { text-shadow: 0 0 15px #00ffff, 0 0 30px #00ffff, 0 0 40px #00ffff; }
}

.main-content {
    display: flex;
    align-items: center;
    gap: 4rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.content-left {
    flex: 1;
    min-width: 300px;
}

.description {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    text-align: justify;
    background: rgba(13, 2, 33, 0.7);
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px solid #ff00ff;
    box-shadow: 0 0 15px rgba(255, 0, 255, 0.3);
}

.btn-glow {
    padding: 1.5rem 3rem;
    font-size: 1.5rem;
    font-weight: bold;
    color: #fff;
    background: linear-gradient(45deg, #ff00ff, #00ffff);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: transform 0.3s, box-shadow 0.3s;
    display: block;
    margin: 0 auto;
    box-shadow: 0 0 20px rgba(255, 0, 255, 0.5);
}

.btn-glow:hover {
    transform: scale(1.1);
    box-shadow: 0 0 40px rgba(0, 255, 255, 0.8);
}

.content-right {
    flex: 0 0 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.roulette-container {
    width: 300px;
    height: 300px;
    position: relative;
}

.roulette-wheel {
    width: 100%;
    height: 100%;
    position: absolute;
    border-radius: 50%;
    border: 5px solid #ff00ff;
    box-shadow: 0 0 20px #ff00ff;
    animation: rotateWheel 20s linear infinite;
    transform-style: preserve-3d;
}

@keyframes rotateWheel {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.product-item {
    position: absolute;
    width: 60px;
    height: 60px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(calc(var(--i) * 45deg)) translateY(-120px);
}

.product-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid #00ffff;
    box-shadow: 0 0 10px #00ffff;
    transform: rotate(calc(var(--i) * -45deg));
}

.roulette-center {
    position: absolute;
    width: 40px;
    height: 40px;
    background: #00ffff;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 20px #00ffff;
}

.similar-pages {
    margin-top: auto;
    background: rgba(0, 0, 0, 0.5);
    padding: 1.5rem;
    border-top: 2px solid #00ffff;
}

.similar-pages h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #ff00ff;
}

.links-grid {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.links-grid a {
    color: #00ffff;
    text-decoration: none;
    font-size: 0.9rem;
    padding: 0.8rem;
    border: 1px solid #00ffff;
    border-radius: 5px;
    flex: 1;
    min-width: 250px;
    text-align: center;
    transition: background 0.3s, color 0.3s;
}

.links-grid a:hover {
    background: #00ffff;
    color: #050110;
}

@media (max-width: 900px) {
    .main-content {
        flex-direction: column;
        gap: 2rem;
    }
    .content-right {
        order: -1;
    }
    h1 {
        font-size: 2rem;
        text-align: center;
    }
}
