/* style/promotions-slots-bonus.css */
.page-promotions-slots-bonus {
    font-family: 'Arial', sans-serif;
    color: #ffffff; /* Default text color for dark background */
    background-color: #000000; /* Main background color */
    line-height: 1.6;
}

.page-promotions-slots-bonus__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Hero Section */
.page-promotions-slots-bonus__hero-section {
    background: linear-gradient(135deg, #000000, #333333); /* Dark gradient */
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-promotions-slots-bonus__hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg width="100%" height="100%" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 L 0 10" fill="none" stroke="%23FFD700" stroke-width="0.1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>') repeat;
    opacity: 0.05;
    z-index: 0;
}