 * {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
 }

 :root {
     --primary-green: #22c55e;
     --secondary-green: #16a34a;
     --accent-orange: #f97316;
     --light-orange: #fed7aa;
     --dark-green: #15803d;
     --background: #ffffff;
     --surface: #f8fafc;
     --text-primary: #1e293b;
     --text-secondary: #64748b;
     --border: #e2e8f0;
     --shadow: rgba(0, 0, 0, 0.1);
     --gradient-primary: linear-gradient(135deg, var(--primary-green) 0%, var(--secondary-green) 100%);
     --gradient-orange: linear-gradient(135deg, var(--accent-orange) 0%, #ea580c 100%);
 }

 body {
     font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
     line-height: 1.6;
     color: var(--text-primary);
     background: var(--background);
     overflow-x: hidden;
 }

 .container {
     max-width: 1200px;
     margin: 0 auto;
     padding: 0 20px;
 }

 /* Header & Navigation */
 .header {
     background: var(--background);
     box-shadow: 0 2px 20px var(--shadow);
     position: fixed;
     top: 0;
     width: 100%;
     z-index: 1000;
     transition: all 0.3s ease;
 }

 .nav {
     display: flex;
     justify-content: space-between;
     align-items: center;
     padding: 1rem 0;
 }

 .logo {
     display: flex;
     align-items: center;
     gap: 0.5rem;
     width: 100px;
     height: 50px;
     font-size: 1.5rem;
     font-weight: 700;
     color: var(--primary-green);
     text-decoration: none;
 }

 .logo img {
     width: 100%;
     height: 100%;
     object-fit: cover;
 }


 .nav-menu {
     display: flex;
     list-style: none;
     gap: 2rem;
 }

 .nav-menu a {
     text-decoration: none;
     color: var(--text-primary);
     font-weight: 500;
     transition: color 0.3s ease;
     position: relative;
 }

 .nav-menu a:hover {
     color: var(--primary-green);
 }

 .nav-menu a.active::after {
     content: '';
     position: absolute;
     bottom: -5px;
     left: 0;
     width: 100%;
     height: 2px;
     background: var(--primary-green);
 }

 .burger {
     display: none;
     flex-direction: column;
     cursor: pointer;
     padding: 5px;
 }

 .burger span {
     width: 25px;
     height: 3px;
     background: var(--text-primary);
     margin: 3px 0;
     transition: 0.3s;
     border-radius: 2px;
 }

 .burger.active span:nth-child(1) {
     transform: rotate(-45deg) translate(-5px, 6px);
 }

 .burger.active span:nth-child(2) {
     opacity: 0;
 }

 .burger.active span:nth-child(3) {
     transform: rotate(45deg) translate(-5px, -6px);
 }

 /* Hero Section */
 .hero {
     background: linear-gradient(135deg, rgba(20, 20, 40, 0.35), rgba(20, 20, 40, 0.5)), url('img/bg-bonus.jpeg') center/cover no-repeat;
     color: white;
     padding: 150px 0 150px;
     text-align: center;
 }

 .hero-content {
     position: relative;
     z-index: 2;
 }

 .hero h1 {
     font-size: 3.5rem;
     font-weight: 800;
     margin-bottom: 1rem;
     line-height: 1.2;
 }

 .hero p {
     font-size: 1.25rem;
     margin-bottom: 2rem;
     opacity: 0.9;
     max-width: 600px;
     margin-left: auto;
     margin-right: auto;
 }

 .hero-stats {
     display: flex;
     justify-content: center;
     gap: 3rem;
     margin-top: 3rem;
 }

 .hero-stat {
     text-align: center;
 }

 .hero-stat-number {
     font-size: 2.5rem;
     font-weight: 700;
     display: block;
 }

 .hero-stat-label {
     font-size: 0.9rem;
     opacity: 0.8;
 }

 /* Bonus Calculator Section */
 .bonus-calculator {
     padding: 80px 0;
     background: var(--surface);
 }

 .calculator-container {
     background: white;
     border-radius: 20px;
     padding: 3rem;
     box-shadow: 0 20px 40px var(--shadow);
     max-width: 800px;
     margin: 0 auto;
 }

 .calculator-form {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
     gap: 2rem;
     margin-bottom: 2rem;
 }

 .form-group {
     display: flex;
     flex-direction: column;
 }

 .form-group label {
     font-weight: 600;
     margin-bottom: 0.5rem;
     color: var(--text-primary);
 }

 .form-group input,
 .form-group select {
     padding: 12px;
     border: 2px solid var(--border);
     border-radius: 10px;
     font-size: 1rem;
     transition: border-color 0.3s ease;
 }

 .form-group input:focus,
 .form-group select:focus {
     outline: none;
     border-color: var(--primary-green);
 }

 .calculator-result {
     background: var(--gradient-primary);
     color: white;
     padding: 2rem;
     border-radius: 15px;
     text-align: center;
     margin-top: 2rem;
 }

 .result-amount {
     font-size: 2.5rem;
     font-weight: 700;
     margin-bottom: 0.5rem;
 }

 .result-details {
     opacity: 0.9;
     font-size: 1.1rem;
 }

 /* Bonus Types Tabs */
 .bonus-types {
     padding: 80px 0;
 }

 .tabs-container {
     margin-top: 3rem;
 }

 .tabs-nav {
     display: flex;
     justify-content: center;
     gap: 1rem;
     margin-bottom: 3rem;
     flex-wrap: wrap;
 }

 .tab-button {
     background: white;
     border: 2px solid var(--border);
     padding: 12px 24px;
     border-radius: 25px;
     cursor: pointer;
     transition: all 0.3s ease;
     font-weight: 600;
     color: var(--text-secondary);
 }

 .tab-button.active {
     background: var(--primary-green);
     border-color: var(--primary-green);
     color: white;
 }

 .tab-content {
     display: none;
     animation: fadeIn 0.5s ease;
 }

 .tab-content.active {
     display: block;
 }

 .bonus-type-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
     gap: 2rem;
 }

 .bonus-type-card {
     background: white;
     border-radius: 15px;
     padding: 2rem;
     box-shadow: 0 10px 30px var(--shadow);
     transition: transform 0.3s ease;
     border: 2px solid transparent;
 }

 .bonus-type-card:hover {
     transform: translateY(-5px);
     border-color: var(--primary-green);
 }

 .bonus-type-icon {
     width: 60px;
     height: 60px;
     background: var(--gradient-orange);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     color: white;
     font-size: 1.5rem;
     margin-bottom: 1rem;
 }

 /* Bonus Comparison Slider */
 .bonus-comparison {
     padding: 80px 0;
     background: var(--surface);
 }

 .slider-container {
     position: relative;
     margin-top: 3rem;
     overflow: hidden;
     border-radius: 20px;
 }

 .slider-wrapper {
     display: flex;
     transition: transform 0.5s ease;
 }

 .slider-slide {
     min-width: 100%;
     background: white;
     padding: 3rem;
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
     gap: 2rem;
 }

 .comparison-card {
     background: var(--surface);
     border-radius: 15px;
     padding: 2rem;
     text-align: center;
     position: relative;
     border: 2px solid transparent;
     transition: all 0.3s ease;
 }

 .comparison-card.featured {
     border-color: var(--primary-green);
     transform: scale(1.05);
 }

 .comparison-card.featured::before {
     content: 'BEST VALUE';
     position: absolute;
     top: -10px;
     left: 50%;
     transform: translateX(-50%);
     background: var(--primary-green);
     color: white;
     padding: 5px 15px;
     border-radius: 15px;
     font-size: 0.8rem;
     font-weight: 700;
 }

 .slider-controls {
     display: flex;
     justify-content: center;
     gap: 1rem;
     margin-top: 2rem;
 }

 .slider-btn {
     background: var(--primary-green);
     color: white;
     border: none;
     width: 50px;
     height: 50px;
     border-radius: 50%;
     cursor: pointer;
     transition: all 0.3s ease;
     display: flex;
     align-items: center;
     justify-content: center;
 }

 .slider-btn:hover {
     background: var(--secondary-green);
     transform: scale(1.1);
 }

 .slider-indicators {
     display: flex;
     justify-content: center;
     gap: 0.5rem;
     margin-top: 1rem;
 }

 .indicator {
     width: 12px;
     height: 12px;
     border-radius: 50%;
     background: var(--border);
     cursor: pointer;
     transition: background 0.3s ease;
 }

 .indicator.active {
     background: var(--primary-green);
 }

 /* Wagering Requirements Infographic */
 .wagering-info {
     padding: 80px 0;
 }

 .infographic-container {
     background: white;
     border-radius: 20px;
     padding: 3rem;
     box-shadow: 0 20px 40px var(--shadow);
     margin-top: 3rem;
 }

 .wagering-visual {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
     gap: 2rem;
     margin-bottom: 3rem;
 }

 .wagering-step {
     text-align: center;
     position: relative;
 }

 .wagering-step::after {
     content: '→';
     position: absolute;
     right: -1rem;
     top: 50%;
     transform: translateY(-50%);
     font-size: 2rem;
     color: var(--primary-green);
 }

 .wagering-step:last-child::after {
     display: none;
 }

 .wagering-icon {
     width: 80px;
     height: 80px;
     background: var(--gradient-primary);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     color: white;
     font-size: 2rem;
     margin: 0 auto 1rem;
 }

 .progress-bar {
     background: var(--border);
     height: 10px;
     border-radius: 5px;
     overflow: hidden;
     margin: 1rem 0;
 }

 .progress-fill {
     height: 100%;
     background: var(--gradient-primary);
     width: 0%;
     transition: width 2s ease;
     border-radius: 5px;
 }

 /* Terms & Conditions Accordion */
 .terms-section {
     padding: 80px 0;
     background: var(--surface);
 }

 .accordion-container {
     margin-top: 3rem;
 }

 .accordion-item {
     background: white;
     border-radius: 10px;
     margin-bottom: 1rem;
     box-shadow: 0 5px 15px var(--shadow);
     overflow: hidden;
 }

 .accordion-header {
     padding: 1.5rem;
     cursor: pointer;
     display: flex;
     justify-content: space-between;
     align-items: center;
     font-weight: 600;
     transition: all 0.3s ease;
     background: var(--surface);
 }

 .accordion-header:hover {
     background: var(--primary-green);
     color: white;
 }

 .accordion-header.active {
     background: var(--primary-green);
     color: white;
 }

 .accordion-content {
     max-height: 0;
     overflow: hidden;
     transition: max-height 0.3s ease;
     background: white;
 }

 .accordion-content.active {
     max-height: 500px;
 }

 .accordion-body {
     padding: 1.5rem;
 }

 /* Bonus Timeline */
 .bonus-timeline {
     padding: 80px 0;
 }

 .timeline-container {
     position: relative;
     margin-top: 3rem;
 }

 .timeline-line {
     position: absolute;
     left: 50%;
     top: 0;
     bottom: 0;
     width: 4px;
     background: var(--primary-green);
     transform: translateX(-50%);
 }

 .timeline-item {
     display: flex;
     align-items: center;
     margin-bottom: 3rem;
     position: relative;
 }

 .timeline-item:nth-child(even) {
     flex-direction: row-reverse;
 }

 .timeline-content {
     background: white;
     border-radius: 15px;
     padding: 2rem;
     box-shadow: 0 10px 30px var(--shadow);
     width: 45%;
     position: relative;
 }

 .timeline-content::before {
     content: '';
     position: absolute;
     top: 50%;
     width: 0;
     height: 0;
     border: 15px solid transparent;
 }

 .timeline-item:nth-child(odd) .timeline-content::before {
     right: -30px;
     border-left-color: white;
 }

 .timeline-item:nth-child(even) .timeline-content::before {
     left: -30px;
     border-right-color: white;
 }

 .timeline-icon {
     position: absolute;
     left: 50%;
     transform: translateX(-50%);
     width: 60px;
     height: 60px;
     background: var(--primary-green);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     color: white;
     font-size: 1.5rem;
     z-index: 2;
 }

 a {
     text-decoration: none;
     color: inherit;
 }

 /* Casino Bonus Cards */
 .casino-bonuses {
     padding: 80px 0;
     background: var(--surface);
 }

 .bonus-cards-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
     gap: 2rem;
     margin-top: 3rem;
 }

 .bonus-card {
     background: white;
     border-radius: 20px;
     overflow: hidden;
     box-shadow: 0 15px 35px var(--shadow);
     transition: all 0.3s ease;
     border: 2px solid transparent;
     position: relative;
 }

 .bonus-card:hover {
     transform: translateY(-10px);
     border-color: var(--primary-green);
 }

 .bonus-card-header {
     background: var(--gradient-primary);
     color: white;
     padding: 2rem;
     text-align: center;
     position: relative;
 }

 .bonus-card-header::before {
     content: '';
     position: absolute;
     bottom: -10px;
     left: 50%;
     transform: translateX(-50%);
     width: 0;
     height: 0;
     border: 10px solid transparent;
     border-top-color: var(--secondary-green);
 }

 .casino-logo-bonus {
     width: 80px;
     height: 80px;
     background: white;
     border-radius: 50%;
     margin: 0 auto 1rem;
     display: flex;
     align-items: center;
     justify-content: center;
     font-weight: 700;
     color: var(--primary-green);
     font-size: 1rem;
 }

 .bonus-amount-large {
     font-size: 2rem;
     font-weight: 700;
     margin-bottom: 0.5rem;
 }

 .bonus-card-body {
     padding: 2rem;
 }

 .bonus-features {
     list-style: none;
     margin-bottom: 2rem;
 }

 .bonus-features li {
     padding: 0.75rem 0;
     border-bottom: 1px solid var(--border);
     display: flex;
     align-items: center;
     gap: 0.5rem;
 }

 .bonus-features li:last-child {
     border-bottom: none;
 }

 .bonus-features .icon {
     color: var(--primary-green);
     width: 20px;
 }

 .claim-button {
     background: var(--gradient-orange);
     color: white;
     padding: 15px 30px;
     border: none;
     border-radius: 25px;
     font-weight: 600;
     cursor: pointer;
     width: 100%;
     transition: all 0.3s ease;
     font-size: 1.1rem;
 }

 .claim-button:hover {
     transform: translateY(-2px);
     box-shadow: 0 10px 25px rgba(249, 115, 22, 0.3);
 }

 /* Tips Section */
 .bonus-tips {
     padding: 80px 0;
 }

 .tips-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
     gap: 2rem;
     margin-top: 3rem;
 }

 .tip-card {
     background: white;
     border-radius: 15px;
     padding: 2rem;
     box-shadow: 0 10px 30px var(--shadow);
     border-left: 5px solid var(--primary-green);
     transition: transform 0.3s ease;
 }

 .tip-card:hover {
     transform: translateY(-5px);
 }

 .tip-icon {
     width: 50px;
     height: 50px;
     background: var(--gradient-orange);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     color: white;
     font-size: 1.2rem;
     margin-bottom: 1rem;
 }

 /* FAQ Section */
 .faq-bonus {
     padding: 80px 0;
     background: var(--surface);
 }

 .faq-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
     gap: 2rem;
     margin-top: 3rem;
 }

 .faq-item {
     background: white;
     border-radius: 15px;
     box-shadow: 0 5px 20px var(--shadow);
     overflow: hidden;
 }

 .faq-question {
     padding: 1.5rem;
     background: var(--surface);
     cursor: pointer;
     display: flex;
     justify-content: space-between;
     align-items: center;
     font-weight: 600;
     transition: all 0.3s ease;
 }

 .faq-question:hover {
     background: var(--primary-green);
     color: white;
 }

 .faq-answer {
     padding: 0 1.5rem;
     max-height: 0;
     overflow: hidden;
     transition: all 0.3s ease;
 }

 .faq-answer.active {
     padding: 1.5rem;
     max-height: 300px;
 }

 /* Newsletter Section */
 .newsletter {
     padding: 80px 0;
     background: var(--gradient-primary);
     color: white;
     text-align: center;
 }

 .newsletter-form {
     display: flex;
     max-width: 500px;
     margin: 2rem auto 0;
     gap: 1rem;
 }

 .newsletter-input {
     flex: 1;
     padding: 15px;
     border: none;
     border-radius: 25px;
     font-size: 1rem;
 }

 .newsletter-button {
     background: var(--accent-orange);
     color: white;
     padding: 15px 30px;
     border: none;
     border-radius: 25px;
     font-weight: 600;
     cursor: pointer;
     transition: all 0.3s ease;
 }

 .newsletter-button:hover {
     background: #ea580c;
     transform: translateY(-2px);
 }

 /* Footer */
 .footer {
     background: var(--text-primary);
     color: white;
     padding: 60px 0 20px;
 }

 .footer-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
     gap: 2rem;
     margin-bottom: 2rem;
 }

 .footer-section h3 {
     color: var(--primary-green);
     margin-bottom: 1rem;
 }

 .footer-section ul {
     list-style: none;
 }

 .footer-section ul li {
     margin-bottom: 0.5rem;
 }

 .footer-section ul li a {
     color: #94a3b8;
     text-decoration: none;
     transition: color 0.3s ease;
 }

 .footer-section ul li a:hover {
     color: var(--primary-green);
 }

 .footer-bottom {
     border-top: 1px solid #374151;
     padding-top: 2rem;
     text-align: center;
     color: #94a3b8;
 }

 /* Utility Classes */
 .section-title {
     text-align: center;
     font-size: 2.5rem;
     font-weight: 700;
     margin-bottom: 1rem;
     color: var(--text-primary);
 }

 .section-subtitle {
     text-align: center;
     font-size: 1.2rem;
     color: var(--text-secondary);
     margin-bottom: 2rem;
     max-width: 600px;
     margin-left: auto;
     margin-right: auto;
 }

 .info-icon {
     display: inline-flex;
     align-items: center;
     justify-content: center;
     width: 20px;
     height: 20px;
     background: var(--primary-green);
     color: white;
     border-radius: 50%;
     font-size: 0.8rem;
     margin-left: 0.5rem;
     cursor: help;
     position: relative;
 }

 .info-icon:hover::after {
     content: attr(data-tooltip);
     position: absolute;
     bottom: 25px;
     left: 50%;
     transform: translateX(-50%);
     background: var(--text-primary);
     color: white;
     padding: 0.5rem;
     border-radius: 5px;
     font-size: 0.8rem;
     white-space: nowrap;
     z-index: 1000;
 }
.progress-text {
text-align: center; margin-top: 1rem;
} 
.wagering-rates {
              
                margin-top: 2rem;
                padding: 1.5rem;
                background: var(--surface);
                border-radius: 10px;
}
.h4 {
    margin-bottom: 1rem;
}
.top {
    margin-top: 1rem;
}
.wagering-rates-grid {
               
                  display: grid;
                  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
                  gap: 1rem;
}
.ul {
    margin-top: 1rem; padding-left: 1rem;
}
 /* Animations */
 @keyframes fadeIn {
     from {
         opacity: 0;
         transform: translateY(20px);
     }

     to {
         opacity: 1;
         transform: translateY(0);
     }
 }

 @keyframes slideIn {
     from {
         transform: translateX(-100%);
     }

     to {
         transform: translateX(0);
     }
 }

 @keyframes bounce {

     0%,
     20%,
     50%,
     80%,
     100% {
         transform: translateY(0);
     }

     40% {
         transform: translateY(-10px);
     }

     60% {
         transform: translateY(-5px);
     }
 }

 .animate-bounce {
     animation: bounce 2s infinite;
 }

 .scroll-animate {
     opacity: 0;
     transform: translateY(30px);
     transition: all 0.6s ease;
 }

 .scroll-animate.animate {
     opacity: 1;
     transform: translateY(0);
 }

 /* Responsive Design */
 @media (max-width: 768px) {
     .nav-menu {
         position: fixed;
         left: -100%;
         top: 70px;
         flex-direction: column;
         background-color: white;
         width: 100%;
         text-align: center;
         transition: 0.3s;
         box-shadow: 0 10px 27px var(--shadow);
         padding: 2rem 0;
     }

     .nav-menu.active {
         left: 0;
     }

     .burger {
         display: flex;
     }

     .hero h1 {
         font-size: 2.5rem;
     }

     .hero-stats {
         flex-direction: column;
         gap: 1rem;
     }

     .section-title {
         font-size: 2rem;
     }

     .calculator-form {
         grid-template-columns: 1fr;
     }

     .tabs-nav {
         flex-direction: column;
         align-items: center;
     }

     .newsletter-form {
         flex-direction: column;
     }

     .timeline-line {
         left: 30px;
     }

     .timeline-item {
         flex-direction: row !important;
         padding-left: 80px;
     }

     .timeline-content {
         width: 100%;
     }

     .timeline-content::before {
         left: -30px !important;
         border-right-color: white !important;
         border-left-color: transparent !important;
     }

     .timeline-icon {
         left: 30px;
     }
 }
 a {
     text-decoration: none;
 }