
.slots-hero {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    background-image: url('bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-blend-mode: overlay;
    color: white;
    padding: 4rem 0;
    text-align: center;
    position: relative;
}

.slots-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(240, 147, 251, 0.8) 0%, rgba(245, 87, 108, 0.8) 100%);
    z-index: -1;
}

.slots-hero-content {
    position: relative;
    z-index: 2;
}

.slots-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: bold;
}

.slots-hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}


.popular-slots {
    padding: 4rem 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.popular-slots h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.slots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.slot-item {
    background: rgba(255,255,255,0.1);
    padding: 1.5rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.3s ease;
    text-align: center;
    text-decoration: none;
    color: inherit;
    display: block;
}

.slot-item:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-3px);
}

.slot-item img {
    width: 100%;
    object-fit: contain;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.slot-item h4 {
    font-size: 1rem;
    margin: 0;
    color: white;
    font-weight: 600;
}

.breadcrumb {
    background: #f8f9fa;
    padding: 1rem 0;
    border-bottom: 1px solid #e9ecef;
}

.breadcrumb .container {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.breadcrumb a {
    color: #667eea;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: #764ba2;
}

.breadcrumb span {
    color: #6c757d;
}

@media (max-width: 768px) {
    .slots-hero h1 {
        font-size: 2rem;
    }
    
    .slots-hero p {
        font-size: 1rem;
    }
    
    .slots-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
}




.game-detail {
    padding: 4rem 0;
    background: white;
}

.game-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.game-main {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.game-image {
    width: 100%;
    height: 400px;
    object-fit: contain;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    background: #f8f9fa;
}

.game-info h1 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 1rem;
    font-weight: bold;
}

.game-info p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.game-features {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.game-features li {
    padding: 0.5rem 0;
    color: #555;
    font-size: 1rem;
}

.game-features li::before {
    content: "•";
    color: #667eea;
    font-weight: bold;
    margin-right: 0.5rem;
}

.play-button {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: bold;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.play-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

.comments-section {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
}

.comments-section h3 {
    color: #333;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.comment {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 1rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.comment-header {
    display: flex;
    align-items: center;
    margin-bottom: 0.8rem;
}

.comment-author {
    font-weight: bold;
    color: #333;
    margin-right: 0.5rem;
}

.comment-rating {
    color: #ffd700;
    margin-right: 0.5rem;
}

.comment-time {
    color: #666;
    font-size: 0.9rem;
}

.comment-content {
    color: #555;
    line-height: 1.5;
    margin-bottom: 0.8rem;
}

.comment-likes {
    color: #666;
    font-size: 0.9rem;
}

.similar-games {
    padding: 4rem 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.similar-games h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.similar-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.similar-item {
    background: rgba(255,255,255,0.1);
    padding: 1.5rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.3s ease;
    text-align: center;
    text-decoration: none;
    color: inherit;
    display: block;
}

.similar-item:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-3px);
}

.similar-item img {
    width: 100%;
    object-fit: contain;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.similar-item h4 {
    font-size: 1rem;
    margin: 0;
    color: white;
    font-weight: 600;
}

.breadcrumb {
    background: #f8f9fa;
    padding: 1rem 0;
    border-bottom: 1px solid #e9ecef;
}

.breadcrumb .container {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.breadcrumb a {
    color: #667eea;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: #764ba2;
}

.breadcrumb span {
    color: #6c757d;
}

@media (max-width: 768px) {
    .game-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .game-info h1 {
        font-size: 2rem;
    }
    
    .similar-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
}