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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.mainBanner {
    position: relative;
    min-height: 40vh;
    background-image: url('../img/bg.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.overlayDark {
position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(45, 41, 87, 0.85); 
    z-index: 1;
}

.bannerContent {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 20px;
        max-width: 800px;
    margin: 0 auto;
}

.mainHeadline {
    font-size: 3.5rem;
    color: #fff;
    margin-bottom: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

.highlightGreen {
    color: #3eee99;
    text-shadow: 0 0 20px rgba(62, 238, 153, 0.5);
}

.subHeading {
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 30px;
    font-weight: 300;
}

.ctaGroup{
    margin-top:40px;
}

.primaryBtn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #3eee99, #2ed87a);
    color: #2d2957;
    padding: 18px  45px;
    font-size: 1.3rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(62, 238, 153, 0.4);
}

.primaryBtn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(62, 238, 153, 0.6);
}

.disclaimer {
    color: rgba(255,255,255,0.7);
    font-size: 0.85rem;
    margin-top: 15px;
}

.stepsBlock {
    background: #f8f8fc;
    padding: 80px 20px;
}

.containerWrap {
    max-width: 1200px;
    margin: 0 auto;
}

.stepsBlock .containerWrap {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 40px;
}

.stepItem {
    flex: 1;
    min-width: 280px;
    text-align: center;
    background: #fff;
    padding: 40px 25px;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(102, 60, 159, 0.1);
    transition: transform 0.3s ease;
}

.stepItem:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 35px rgba(102, 60, 159, 0.2);
}

.stepIcon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #663c9f, #2d2957);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.stepIcon .material-icons {
    font-size: 40px;
    color: #fff;
}

.stepTitle {
    color: #2d2957;
    font-size: 1.5rem;
    margin-bottom: 12px;
    font-weight: 700;
}

.stepText {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
}

.bonusDetails {
    background: #2d2957;
    padding: 60px 20px 80px;
    color: #fff;
}

.sectionTitle {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #fff;
}

.featuresGrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.featureBox {
    text-align: center;
    padding: 30px;
    background: rgba(255,255,255,0.05);
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.1);
}

.featureIcon {
    font-size: 48px;
    color: #3eee99;
    margin-bottom: 15px;
}

.featureBox h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color:#fff;
}

			.featureBox p {
    color: rgba(255,255,255,0.8);
    font-size: 0.95rem;
}

.finalCta {
    text-align: center;
}

	.secondaryBtn {
		display: inline-flex;
		align-items: center;
    gap: 12px;
		background: transparent;
    color: #3eee99;
		border: 2px solid #3eee99;
    padding: 15px 40px;
		font-size: 1.1rem;
    font-weight: 600;
		text-decoration: none;
		border-radius: 50px;
    transition: all 0.3s ease;
}





.secondaryBtn:hover {
    background: #3eee99;
    color: #2d2957;
}

.bottomBlock {
    background: #1a1a1a;
    padding: 30px 20px;
    text-align: center;
}

.footerText {
    color: #999;
    font-size: 0.9rem;
}

.footerText a {
    color: #3eee99;
    text-decoration: none;
}

.footerText a:hover {
    text-decoration: underline;
}





@media (max-width: 768px) {
    .mainHeadline {
        font-size: 2.5rem;
    }
    
    .subHeading {
        font-size: 1.3rem;
    }
    
    .primaryBtn {
        font-size: 1.1rem;
        padding: 15px 35px;
    }
}

@media (max-width: 480px) {
    .mainHeadline {
        font-size: 2rem;
    }
    
    .stepItem {
        min-width: 100%;
    }
    
    .sectionTitle {
        font-size:2rem;
    }
}

			.infoContent {
    background-color: #fff;
    padding: 70px 20px 60px;
}

.infoTitle {
    text-align: center;
		font-size: 2.3rem;
		color: #2d2957;
		margin-bottom:40px;
    font-weight: 700;
}

.textBlock {
				max-width: 900px;
    margin: 0 auto 50px;
}

.textBlock h3 {
       color: #663c9f;
      font-size: 1.6rem;
			margin-bottom: 15px;
    margin-top: 30px;
    font-weight: 600;
}

.textBlock p {
    color:#555;
      font-size: 1.05rem;
      line-height: 1.7;
    margin-bottom: 20px;
}

.stepsRegister {
max-width: 900px;
    margin: 0 auto;
    background: #f9f9fc;
    padding: 35px 30px;
    border-radius: 12px;
    border-left: 4px solid #3eee99;
}

.stepsRegister h3 {
    color: #2d2957;
    font-size: 1.8rem;
    margin-bottom: 25px;
}

.stepsList {
    list-style: none;
    counter-reset: step-counter;
    padding-left: 0;
}

.stepsList li {
    counter-increment: step-counter;
    position: relative;
    padding-left: 45px;
    margin-bottom: 20px;
    color: #666;
    line-height:1.6;
    font-size: 1rem;
}

.stepsList li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 30px;
    height: 30px;
    background: #663c9f;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.stepsList li strong {
    color: #2d2957;
}

@media (max-width: 640px) {
    .infoTitle {
        font-size: 1.8rem;
    }
    
    .textBlock h3 {
        font-size: 1.3rem;
    }
    
    .stepsRegister {
        padding: 25px 20px;
    }
}

.welcomeBonusArea {
    background: linear-gradient(135deg, #f8f8fc 0%, #efefff 100%);
    padding: 80px 20px;
}

.bonusFlexWrap {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.bonusTextSide {
    flex: 1;
}

.bonusMainTitle {
    font-size: 2.4rem;
    color: #2d2957;
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight:700;
}

.bonusIntro {
    font-size: 1.15rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 30px;
}

.bonusIntro strong {
    color:#663c9f;
    font-weight: 600;
}

.bonusSubtitle {
    font-size: 1.5rem;
    color: #663c9f;
    margin-bottom:20px;
    font-weight: 600;
}

.bonusSteps p {
    margin-bottom: 15px;
    color:#666;
    line-height: 1.6;
    font-size: 1rem;
}

.bonusNote {
    font-style: italic;
    font-size: 0.9rem!important;
    color: #888;
    margin-top: 20px;
}

.bonusCtaBtn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #3eee99;
    color: #2d2957;
    padding: 16px 35px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    margin-top: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(62, 238, 153, 0.3);
}

.bonusCtaBtn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(62, 238, 153, 0.5);
    background:#2ed87a;
}

.bonusImageSide {
    flex: 1;
    text-align: center;
}

.bonusImg {
    max-width: 100%;
    height: auto;
}

@media (max-width: 890px) {
    .bonusFlexWrap {
        flex-direction: column;
        gap: 40px;
    }
    
    .bonusImageSide {
        order: -1;
    }
    
    .bonusImg {
        max-width: 400px;
    }
}

@media (max-width:480px) {
    .bonusMainTitle {
        font-size: 1.9rem;
    }
    
    .bonusSubtitle{
        font-size: 1.2rem;
    }
    
    .bonusCtaBtn {
        width: 100%;
        justify-content: center;
    }
}

.questionsSection {
    position: relative;
    height: 40vh;
    min-height: 350px;
    background-image: url('../img/contact-bg.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}




.darkOverlay {
      position: absolute;
    top: 0;
      left: 0;
    width: 100%;
				height: 100%;
    background: rgba(45, 41, 87, 0.9); 				 /* dark purple overlay */
			z-index: 1;
}

.questionsContent {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 20px;
}

.questionsTitle {
    font-size: 2.8rem;
    color: #fff;
    margin-bottom: 15px;
    font-weight: 700;
    text-transform: capitalize;
}

.questionsText {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 35px;
    font-weight: 300;
}

   .contactBtn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: transparent;
    color: #3eee99;
    border: 2px solid #3eee99;
    padding: 15px  40px;
			font-size: 1.15rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
				transition: all 0.35s ease;
    text-transform: uppercase;
}

.contactBtn:hover {
    background: #3eee99;
    color: #2d2957;
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(62, 238, 153, 0.4);
}

.contactBtn .material-icons {
    font-size: 24px;
}

@media (max-width: 768px) {
    .questionsSection {
        height: 40vh;
        min-height: 300px;
    }
    
    .questionsTitle {
        font-size: 2.2rem;
    }
    
    .questionsText {
        font-size: 1.05rem;
        margin-bottom: 25px;
    }
}






@media (max-width: 480px) {
    .questionsTitle {
        font-size: 1.8rem;
    }
    
    .questionsText{
        font-size: 0.95rem;
    }
    
    .contactBtn {
        font-size: 1rem;
        padding: 12px 30px;
    }
}


				.responsibleGaming {
    background: #f5f5f9;
    padding: 60px 20px;
    border-top: 3px solid #e0e0e0;
}

			.disclaimerBox {
    max-width: 900px;
       margin: 0 auto 40px;
    text-align: center;
}

.rgTitle {
    font-size: 2rem;
    color: #2d2957;
    margin-bottom: 20px;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.rgTitle::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #e00000;
}

.rgDisclaimer {
    background: #fff3cd;
    border: 2px solid #ffeaa7;
    border-radius: 8px;
    padding: 20px 25px;
    margin-bottom: 20px;
    font-size: 1rem;
    line-height: 1.6;
    color: #856404;
}

.rgDisclaimer strong {
    color: #e00000;
    font-weight: 700;
    text-transform: uppercase;
}

.rgText {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

.rgLogos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top:45px;
}

.rgLogoLink {
    transition: all 0.3s ease;
    opacity: 0.8;
}

.rgLogoLink:hover {
    opacity: 1;
    transform: translateY(-3px);
}

.rgLogo {
    height: 60px;
    width: auto;
    object-fit: contain;
}

@media (max-width: 768px) {
    .responsibleGaming {
        padding: 40px 15px;
    }
    
    .rgTitle {
        font-size: 1.6rem;
    }
    
    .rgDisclaimer {
        font-size: 0.9rem;
        padding: 15px 20px;
    }
    
    .rgLogos {
        gap: 25px;
    }
    
    .rgLogo {
        height: 50px;
    }
}

@media (max-width:480px) {
    .rgTitle {
        font-size: 1.4rem;
    }
    
    .rgLogos{
        gap: 20px;
    }
    
    .rgLogo {
        height: 40px;
    }
}


			.legalWrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: #fff;
}

.legalHeader {
    background: #2d2957;
    padding: 20px 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

			.legalContainer {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.logoLink {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.logoLink:hover {
    color: #3eee99;
}

.legalContent {
       flex: 1;
     padding: 60px 0;
				background: #fff;
}

.pageTitle {
    font-size: 2.5rem;
    color: #2d2957;
    margin-bottom: 10px;
    font-weight: 700;
    line-height: 1.2;
}

.lastUpdate {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 40px;
    font-style: italic;
}

.legalSection {
    margin-bottom: 40px;
}

.sectionHeading {
    font-size: 1.6rem;
    color: #663c9f;
    margin-bottom: 15px;
    font-weight: 600;
}

.legalText {
    color: #555;
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 15px;
}

.legalList {
    margin: 15px 0 15px 30px;
    color: #555;
}

.legalList li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.legalFooter {
    background: #1a1a1a;
    padding: 30px 0;
    margin-top: auto;
}

.footerLinks {
    text-align: center;
    margin-bottom: 15px;
    color: #999;
}

.footerLinks a {
    color: #3eee99;
    text-decoration: none;
    margin: 0 10px;
    transition: color 0.3s ease;
}

.footerLinks a:hover {
    color: #fff;
    text-decoration: underline;
}

.footerCopy {
    text-align: center;
    color: #666;
    font-size: 0.85rem;
}

.legalHighlight {
    background: #f8f8fc;
    border-left: 4px solid #3eee99;
    padding: 20px;
    margin: 20px 0;
    border-radius: 5px;
}

.legalHighlight p {
    margin: 0;
    color: #2d2957;
    font-weight: 500;
}

.legalTable {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.legalTable th {
    background: #663c9f;
    color: #fff;
    padding: 12px;
    text-align: left;
    font-weight: 600;
}

.legalTable td {
    border: 1px solid #e0e0e0;
    padding: 10px;
    color: #555;
}

.legalTable tr:nth-child(even) {
    background: #f9f9fc;
}

@media (max-width: 768px) {
    .pageTitle {
        font-size: 2rem;
    }
    
    .sectionHeading {
        font-size: 1.4rem;
    }
    
    .legalText {
        font-size: 1rem;
    }
    
    .legalContent {
        padding: 40px 0;
    }
}

@media (max-width: 480px) {
    .pageTitle {
        font-size: 1.6rem;
    }
    
    .sectionHeading {
        font-size: 1.2rem;
    }
    
    .footerLinks {
        font-size: 0.85rem;
    }
    
    .footerLinks a {
        margin: 0 5px;
    }
}