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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: #fff;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Header */
header {
    background: linear-gradient(135deg, #0f3460 0%, #16213e 100%);
    padding: 20px 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.logo img {
    max-width: 150px;
    height: auto;
}

.header-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 30px 0;
    flex-wrap: wrap;
    gap: 20px;
}

.product-info h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

#product-bonus {
    font-size: 1.3rem;
    color: #ffd700;
}

.header-button {
    display: flex;
    gap: 15px;
}

.header-button a {
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    transition: all 0.3s;
}

#header-login {
    background: transparent;
    border: 2px solid #ffd700;
    color: #ffd700;
}

#header-login:hover {
    background: #ffd700;
    color: #000;
}

#header-register {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #000;
    border: none;
}

#header-register:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255,215,0,0.4);
}

/* Benefits */
.benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.benefits-blocks {
    background: rgba(255,255,255,0.05);
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s;
    border: 1px solid rgba(255,255,255,0.1);
}

.benefits-blocks:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.benefits-blocks img {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
}

/* Slots */
h2 {
    font-size: 2rem;
    margin: 40px 0 20px;
    text-align: center;
}

.slots {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.slots-blocks {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    aspect-ratio: 3/4;
    cursor: pointer;
    transition: all 0.3s;
}

.slots-blocks:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(255,215,0,0.3);
}

.image-container {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-color: #2a2a3e;
}

.slots-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    padding: 20px;
    transform: translateY(100%);
    transition: all 0.3s;
}

.slots-blocks:hover .slots-overlay {
    transform: translateY(0);
}

.slots-text {
    display: block;
    font-weight: bold;
    margin-bottom: 10px;
}

.play-button {
    display: inline-block;
    padding: 8px 20px;
    background: #ffd700;
    color: #000;
    text-decoration: none;
    border-radius: 20px;
    font-weight: bold;
    transition: all 0.3s;
}

.play-button:hover {
    background: #ffed4e;
    transform: scale(1.05);
}

/* Content */
#advanced_texts_content {
    background: rgba(255,255,255,0.05);
    padding: 30px;
    border-radius: 15px;
    margin: 40px 0;
    line-height: 1.8;
}

#advanced_texts_content h1,
#advanced_texts_content h2,
#advanced_texts_content h3 {
    margin: 20px 0 10px;
    color: #ffd700;
}

#advanced_texts_content p {
    margin: 15px 0;
}

/* Footer */
footer {
    background: rgba(0,0,0,0.3);
    margin-top: 60px;
    padding: 40px 0 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.providers {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    margin: 30px 0;
}

.providers-container {
    opacity: 0.7;
    transition: opacity 0.3s;
}

.providers-container:hover {
    opacity: 1;
}

.providers-container img {
    max-height: 40px;
    width: auto;
    filter: brightness(0) invert(1);
}

#licensed {
    text-align: center;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
    margin: 20px 0;
    line-height: 1.6;
}

.back-menu {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin: 20px 0;
}

.back-menu a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.back-menu a:hover {
    color: #ffd700;
}

.copyright {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
    flex-wrap: wrap;
    gap: 10px;
}

/* Responsive */
@media (max-width: 768px) {
    .product-info h1 {
        font-size: 1.8rem;
    }
    
    .header-info {
        flex-direction: column;
        text-align: center;
    }
    
    .benefits {
        grid-template-columns: 1fr;
    }
    
    .slots {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }
    
    .copyright {
        flex-direction: column;
        text-align: center;
    }
}
