:root{
    --darkgray:#212329;
    --brightred: #F9423D;
    --white: #fff;
    --lightred: #f9433dcc;
    --lightblue: #337AF1;
    --zuccini: #043424;
    --goldendream: #e8de38;
    --acapulco: #7cac9c;
    --patina: #5c9494;
    --mpwhite: #f4f2ef;

    --mpblue: #213e60;
    --mpblue2: #375170;
    --mpblue3: #4d6580;
    --mpblue4: #647890;
    --mpblue5: #7a8ba0;
    --mpblue6: #909fb0;
    --mpblue7: #a6b2bf;
    --mpblue8: #bcc5cf;
    --mpblue9: #d3d8df;

    --mpbabyblue: #1e88e5;

    --mpblack: #272525;
    --mpgray: #888;

    --mpgreen: #ADAC54;
    --mpgreen2: #c5c487;
    --mpgreen3: #deddba;
    --mpgreen4: #eeeedc;
    --mpgreen5: #79783a;

    --mpbrightgreen: #008000;

    --mpred: #cf4520;


}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Rubik', sans-serif;
    
}

        /* Main Page Styles*/

        .index-main {
            padding-top: 100px;
            text-align: center;
        }

        .index-main h1 {
            font-size: 3rem;
            margin-bottom: 10px;
            animation: slide-in 1s ease-out;
        }

        .index-main h2 {
            font-size: 2rem;
            margin-bottom: 10px;
        }

        @keyframes slide-in {
            from {
                transform: translateY(-30px);
                opacity: 0;
            }
            to {
                transform: translateY(0);
                opacity: 1;
            }
        }

        .gameday-cta-button {
            display: inline-block;
            background-color: #47759A;
            color: white;
            padding: 14px 28px;
            font-size: 18px;
            font-weight: 600;
            border-radius: 6px;
            text-decoration: none;
            margin-top: 15px;
            transition: all 0.2s ease;
        }

        .gameday-cta-button:hover {
            background-color: #4d93cc;
            transform: translateY(-1px);
        }

        .gameday-logo {
            display: block;
            margin: 20px auto 25px auto;
            max-width: 280px;
            height: auto;
            opacity: 0;
            animation: fadeLogo 1s ease forwards;
        }

        @keyframes fadeLogo {
            to {
                opacity: 1;
            }
        }

        .index-main p.subheading {
            font-size: 1.2rem;
            color: #5a5a5a; /* Darker gray text */
            margin: 0 auto 30px auto;
            padding: 0 20px;
            max-width: 600px; /* Keeps the text centered and within a specific width */
        }

        .index-main-btn {
            font-size: 1.2rem;
            background-color: var(--mpgreen3);
            color: var(--mpblack);
            border: none;
            border-radius: 5px;
            padding: 15px 30px;
            cursor: pointer;
            transition: background-color 0.3s ease-in-out, transform 0.3s ease-in-out;
            text-decoration: none;
            display: inline-block;
            margin-bottom: 50px;
            margin-left: 20px;
            margin-right: 20px;
        }

        .index-main-btn:hover {
            background-color: var(--mpgreen2);
            transform: translateY(-3px);
        }

        .index-main-img-container {
            text-align: center;
            margin: 50px 0;
        }

        .index-main-img {
            width: 100%;
            max-width: 800px;
            border-radius: 8px;
        }

        .features-heading {
            font-size: 2.5rem;
            color: var(--mpwhite);
            margin-bottom: 40px;
        }

        /* Next Tournament Call to Action */

        .home-cta-container {
            border: 2px dotted var(--mpgreen5);
            background-color: var(--mpgreen4);
            padding: 20px;
            border-radius: 8px;
            margin-top: 30px;
            text-align: center;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
          }
          
          .email-cta-message {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
            font-size: 16px;
            color: var(--mpblue);
            font-weight: 500;
            text-align: center;
            flex-wrap: wrap;     
            word-break: break-word;  
            line-height: 1.4;
            margin-bottom: 10px;
          }

          .email-cta-form {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 10px;
            margin-top: 15px;
            flex-wrap: wrap;
          }
          
          .email-cta-input {
            padding: 10px;
            border: 1px solid var(--mpgreen3);
            border-radius: 5px;
            font-size: 16px;
            width: 240px;
            background-color: var(--mpwhite);
            color: var(--mpblue);
          }
          
          .email-cta-button {
            background-color: var(--mpgreen);
            color: var(--mpwhite);
            border: none;
            padding: 10px 18px;
            border-radius: 5px;
            font-size: 16px;
            cursor: pointer;
            font-weight: bold;
            transition: background-color 0.3s ease;
          }
          
          .email-cta-button:hover {
            background-color: var(--mpgreen5);
          }
          
          .cta-button {
            animation: pulse 2s infinite;
          }

          .form-error {
            color: var(--mpred);
            font-size: 1em;
            text-align: center;
            margin-top: 10px;
            margin-bottom: 10px;
            position: relative;
        }
    
        .optin_success {
            color: green;
            font-size: 1em;
            text-align: center;
            margin-top: 10px;
            margin-bottom: 10px;
            position: relative;
        }
          
          @keyframes pulse {
            0% {
              box-shadow: 0 0 0 0 rgba(173, 172, 84, 0.4); 
            }
            70% {
              box-shadow: 0 0 0 10px rgba(173, 172, 84, 0);
            }
            100% {
              box-shadow: 0 0 0 0 rgba(173, 172, 84, 0);
            }
          }
          

          @media (max-width: 500px) {
            .home-cta-container {
                margin-left: 15px;
                margin-right: 15px;
              }
          
            .email-cta-message {
              font-size: 14px;
              gap: 4px;
            }
          
            .email-cta-input,
            .email-cta-button {
              width: 100%;
              text-align: center;
            }
          }


        /* Features Section */
        .features {
            display: flex;
            justify-content: space-around;
            flex-wrap: wrap;
            margin: 0 auto;
            width: 80%;
            max-width: 1200px;
            background-color: var(--mpblue);
            padding: 50px 20px;
            border-radius: 8px;
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
        }

        .feature-card {
            background-color: var(--mpwhite);
            border-radius: 8px;
            padding: 20px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            width: 300px;
            text-align: center;
            transition: transform 0.3s ease-in-out;
            margin: 20px;
        }

        
        .feature-card i{
            font-size: 38px;
        }

        .feature-card:hover {
            transform: translateY(-10px);
        }

        .feature-card img {
            height: 50px;
            width: 50px;
            margin-bottom: 10px;
        }

        .see-how-btn {
            font-size: 1.2rem;
            background-color: var(--mpblue);
            color: var(--mpwhite);
            border: none;
            border-radius: 5px;
            padding: 15px 30px;
            cursor: pointer;
            transition: background-color 0.3s ease-in-out, transform 0.3s ease-in-out;
            text-decoration: none;
            display: inline-block;
            margin: 20px 0 50px 0; /* Adjusted to bring it closer to the feature cards */
        }

        .see-how-btn:hover {
            background-color: #1a2f48; /* Darker shade of mpblue */
            transform: translateY(-3px);
        }

        .testimonials-heading {
            font-size: 2.0rem;
            color: var(--mpblue);
            text-align: center;
            margin: 60px 0 20px 0;
        }

        /* Testimonials Section */
        .testimonials {
            
            padding: 40px 20px;
            display: flex;
            align-items: center;
            overflow: hidden;
            position: relative;
        }

        .testimonial-container {
            display: flex;
            transition: transform 0.5s ease-in-out;
            width: max-content;
            will-change: transform;
        }

        .testimonial {
            background: linear-gradient(to right, var(--mpwhite), var(--mpgreen));
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            margin: 20px;
            width: 500px;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .testimonial-quote {
            flex: 2;
            margin-right: 20px;
        }

        .testimonial h4 {
            margin-bottom: 10px;
            color: var(--mpblue);
        }

        .testimonial p {
            font-size: 1rem;
            color: #333;
        }

        .testimonial-image-container {
            text-align: center;
        }

        .testimonial-image {
            height: 30px;
            width: 30px;
            border-radius: 50%;
            background-color: var(--mpwhite);
            border: 2px solid var(--mpblue);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 10px auto;
        }

        .testimonial-image i {
            font-size: 1.4rem;
            color: var(--mpblue);
        }

        .testimonial-role {
            font-size: 0.9rem;
            color: var(--mpblue);
        }

        .carousel-button {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background-color: var(--mpwhite);
            border: none;
            border-radius: 50%;
            padding: 10px;
            cursor: pointer;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }

        .carousel-button-left {
            left: 10px;
        }

        .carousel-button-right {
            right: 10px;
        }

        /* Mobile Responsive */
        @media screen and (max-width: 768px) {
            .features {
                flex-direction: column;
                align-items: center;
            }

            .index-main h1 {
                font-size: 2.5rem;
            }

            .index-main p.subheading {
                font-size: 1.1rem;
            }

            .feature-card {
                width: 80%;
            }

            .testimonials {
                text-align: center;
            }
        }

        @media screen and (max-width: 480px) {
            .index-main h1 {
                font-size: 2rem;
            }

            .index-main-btn, .see-how-btn {
                font-size: 1rem;
                padding: 10px 20px;
            }

            .testimonial {
                width: 300px;
                flex-direction: column;
                text-align: center;
            }

            .testimonial-quote {
                margin-right: 0;
            }
        }

        /* Main Page Styles Over */

/* Navigation Bar Styles*/



/* Footer Styles*/



/* About Us Page Styles*/



/* Step Wizard Styles*/

.step-wizard {
    background-color: var(--mpwhite);
    height: 10vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}
.step-wizard-list{
    background: var(--mpwhite);
    box-shadow: 0 15px 25px rgba(0,0,0,0.1);
    color: var(--mpblue);
    list-style-type: none;
    border-radius: 5px;
    display: flex;
    padding: 20px 10px;
    position: relative;
    z-index: 10;
}

.step-wizard-item{
    padding: 0 5px;
    flex-basis: 0;
    -webkit-box-flex: 1;
    -ms-flex-positive:1;
    flex-grow: 1;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    text-align: center;
    min-width: 120px;
    position: relative;
}
.step-wizard-item + .step-wizard-item:after{
    content: "";
    position: absolute;
    left: 0;
    top: 19px;
    background: var(--mpgreen);
    width: 100%;
    height: 2px;
    transform: translateX(-50%);
    z-index: -10;
}
.progress-count{
    height: 40px;
    width:40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: 600;
    margin: 0 auto;
    position: relative;
    z-index:10;
    color: transparent;
}
.progress-count:after{
    content: "";
    height: 40px;
    width: 40px;
    background: var(--mpgreen);
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: -10;
}
.progress-count:before{
    content: "";
    height: 10px;
    width: 20px;
    border-left: 3px solid #fff;
    border-bottom: 3px solid #fff;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -60%) rotate(-45deg);
    transform-origin: center center;
}
.progress-label{
    font-size: 14px;
    font-weight: 600;
    margin-top: 10px;
}
.current-item .progress-count:before,
.current-item ~ .step-wizard-item .progress-count:before{
    display: none;
}
.current-item ~ .step-wizard-item .progress-count:after{
    height:10px;
    width:10px;
}
.current-item ~ .step-wizard-item .progress-label{
    opacity: 0.5;
}
.current-item .progress-count:after{
    background: var(--mpwhite);
    border: 2px solid var(--mpgreen);
}
.current-item .progress-count{
    color: var(--mpgreen);
}

@media screen and (max-width: 768px) {
    .step-wizard {
      height: auto;
      display: flex;
      flex-direction: column;
      align-items: center;
      padding: 10px 0;
      margin-bottom: 15px;
    }
  
    .step-wizard-list {
      flex-direction: column;
      align-items: flex-start;
      width: 90%;
      padding: 15px 10px;
      margin: 0 auto;
    }
  
    .step-wizard-item {
      width: 100%;
      max-width: 300px;
      display: flex;
      flex-direction: row;
      align-items: center;
      position: relative;
      padding: 10px 0;
    }
  
    .progress-count {
      width: 30px;
      height: 30px;
      margin: 0;
      margin-right: 10px;
      font-size: 14px;
      line-height: 30px;
    }

    .progress-label {
      font-size: 13px;
      margin-top: 0;
      font-weight: 500;
    }
  
    .step-wizard-item + .step-wizard-item:after {
      content: "";
      width: 2px;
      background: var(--mpgreen);
      position: absolute;
      left: 15px;
      top: -10px;
      height: calc(100% + 10px);
      z-index: -1;
    }

    .step-wizard-item:last-child:after {
        height: 60%;
        top: -10px;
      }
}



/* Create Pool Styles*/










/* Payment Styles*/



/* Pricing Styles*/




/* JoinPool Styles*/



/* Team Selection Styles*/




/* Post Team Selection Styles*/

/* Login Styles*/



/* Tournament Select Styles */




/* User Home Styles */
/* User Home Styles */
/* User Home Styles */
/* User Home Styles */
/* User Home Styles */







/* Pool Home Styles */
/* Pool Home Styles */
/* Pool Home Styles */
/* Pool Home Styles */
/* Pool Home Styles */
/* Pool Home Styles */
/* Pool Home Styles */
