@font-face {
    font-family: 'CS Regular';
    src: url('/fonts/cs_regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

html {
    scroll-behavior: smooth;
}



/* Apply only to specific elements */
.cs-regular {
    font-family: 'CS Regular', sans-serif;
    font-size:larger;

}



body {
    background-color: #130d18;
    color: white;
}

::-webkit-scrollbar {
    width: 8px; /* Make scrollbar thinner */
}

/* Scrollbar Track (Background) */
::-webkit-scrollbar-track {
    background: black; /* Black background */
    border-radius: 10px;
}

/* Scrollbar Handle */
::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background: #483164; /* Lighter purple */
    background-image: linear-gradient(0deg, #000, #752bd0 50%, #000);
}

/* Navbar styling */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.3); /* Semi-transparent black */
    backdrop-filter: blur(10px); /* Frosted glass effect */
    -webkit-backdrop-filter: blur(10px); /* Safari support */
    z-index: 1000;
    padding: 15px 20px;
    transition: all 0.3s ease-in-out;
}

.navbar li {
    color: black;
    font-weight: bold;
    padding: 10px 15px;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
        transform: translateY(-10px);
    display: inline-block; /* Ensures transform works */
}

/* Navbar Link Hover Effect */
.navbar li:hover {
    color: #bf00ff; /* Purple glow */
    text-shadow: 0px 0px 12px #7300ff;
    transform: translateY(-13px); /* Slight lift effect */
}



/* Banner section */
.banner {
    height: 100vh;
    background: url('/images/sale_banner.png') no-repeat center center/cover;
    display: flex;
    align-items: center;
    text-align: left;
    padding: 0 6.5%;
}

.heading {
    margin-right: 50%;
}

.heading p {
    font-size: 18px;
    font-weight: 300;
}

.heading button{
    background-color: white;
    border: 1px solid white;
    border-radius: 25px;
    color:#610480;
    padding: 10px 35px;
    font-weight: bolder;
    font-size: 20px;
    margin: 10px;
    transition: 0.7s ease-in-out;
}



.heading button:hover{
    background-color: #610480;
    border: 1px solid #610480;
    border-radius: 25px;
    color:white;
}

.description {
    font-size: 12px;
}

.icon-img {
    margin-top: 2%;
    width: 80px;
    height: 80px;
}
 
.row{
    padding-left: 55px;
    padding-right: 55px;
}

.con h2{
    border-bottom: 2px solid #610480;
    padding-top: 20px;
    padding-bottom: 20px;
    margin-left: 20%;
    margin-right: 20%;
}

/* FAQ Section */
.faq-section {
    padding: 30px;
    text-align: center;
}

.faq-title {
    border-bottom: 2px solid #9866c6;
    padding-top: 20px;
    padding-bottom: 20px;
    margin-left: 20%;
    margin-right: 20%;
}

/* FAQ Container */
.faq-container {
    max-width: 1000px;
    margin: auto;
    background: black;
    margin-top: 4%;
    border: 2px solid #8458bb;
    border-radius: 10px;
}

/* FAQ Item - No Margin to Remove Space */
.faq-item {
    border: 1px solid #8458bb;
    overflow: hidden;
}

/* Remove Space Between FAQ Items */
.faq-item:not(:last-child) {
    border-bottom: none;
}

/* FAQ Question Button */
.faq-question {
    width: 100%;
    background: black;
    color: white;
    font-size: 20px;
    font-weight: 500;
    padding: 15px;
    text-align: left;
    border: none;
    outline: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background 0.3s ease-in-out;
}

.faq-question:hover {
    background-color: #3d236a;
}

/* FAQ Icon (Plus/Minus) */
.faq-icon {
    font-size: 24px;
    font-weight: bold;
    transition: transform 0.3s ease-in-out;
}

/* FAQ Answer - Hidden by Default */
.faq-answer {
    max-height: 0;
    padding: 0 15px;
    font-size: 18px;
    color: white;
    background-color: black;
    text-align: left;
    border-top: 2px solid #8458bb;
    overflow: hidden;
    transition: max-height 0.5s ease-in-out, padding 0.5s ease-in-out;
}

/* Open FAQ - When Active */
.faq-item.active .faq-answer {
    max-height: 200px; /* Adjust based on content height */
    padding: 15px;
}

.faq-item.active .faq-icon {
    content: "−";
    transform: rotate(180deg);
}


.containerr {
    display: flex;
    max-width: 1100px;
    margin: 0 auto;
    gap: 30px;
    padding: 50px 20px;
}

.left-section {
    flex: 6;
    padding-left: 30px;
    border-left: 2px solid #8458bb;
}

.right-section {
    flex: 4;
    padding-right: 30px;
    border-right: 2px solid #8458bb;

}


.contact-container h2 {
    color: white;
    text-transform: uppercase;
    font-size: 20px;

    margin-bottom: 10px;
    position: relative;
    display: inline-block; /* Ensures the border only extends as needed */
}

.contact-container h2::after {
    margin-top: 5px;
    content: "";
    display: block;
    width: 90%; /* Covers only half of the text width */
    height: 2px; /* Border thickness */
    background-color: #8458bb;
}

.contact-container p{
    font-size: 13px;
    color: #8458bb;
}


.form-control {
    background: #111;
    border: none;
    border-bottom: 1px solid #8458bb;
    color: #ccc;
    padding: 10px;
}

.form-control:focus {
    border-color: #a379e2;
    background: #222;
    color: #fff;
}

.input-group-text {
    background: transparent;
    border: none;
    color: #8458bb;
    font-size: 18px;
}

.custom-checkbox label {
    color: #a379e2;
    font-size: 14px;
}

.btn-custom {
    background: transparent;
    border: 1px solid #8458bb;
    color: #8458bb;
    width: 100%;
    padding: 10px;
    text-transform: uppercase;
}

.btn-custom:hover {
    background: #8458bb;
    color: #fff;
}
.form-control::placeholder {
    color: #8458bb;
    opacity: 1; /* Ensures full visibility */
}

.contact-container i{
    color: white;
}

.right-section h2 {
    color: white;
    text-transform: uppercase;
    font-size: 20px;

    margin-bottom: 10px;
    position: relative;
    display: inline-block; /* Ensures the border only extends as needed */
}

.right-section h2::after {
    margin-top: 5px;
    content: "";
    display: block;
    width: 30%; /* Covers only half of the text width */
    height: 2px; /* Border thickness */
    background-color: #8458bb;
}

.right-section p{
    font-size: 13px;
    color: #8458bb;
}

.contact-infoo {
    display: flex;
    align-items: center;
    gap: 20px; /* Adds space between each icon and text */
    color: #8458bb; /* Matches your theme */
}

.contact-infoo i {
    font-size: 18px;
    color: #ffffff;
}

.head h2{
    margin-top: 3%;
    border-bottom: 2px solid #9b57cf;
    padding-top: 20px;
    padding-bottom: 20px;
    margin-left: 20%;
    margin-right: 20%;
}

.elo-header h2{
    border-bottom: 2px solid #55048000;
    padding-top: 20px;
    padding-bottom: 20px;
    margin-left: 20%;
    margin-right: 20%;
    text-align: center;
}

.elo-form-container {
    background: black;
    padding: 2%;
    padding-bottom: 0;
    border-radius: 10px;
    text-align: center;
    margin: 0 auto;
    width: 1200px;
    margin-top: 2%;
    box-shadow: 0px 0px 78px rgb(133 4 249); /* Outer glow effect */

}

.elo-form-container h2 {
    border-bottom: 2px solid #4C4E69;
    padding-top: 20px;
    padding-bottom: 20px;
    margin-left: 20%;
    margin-right: 20%;
}

.btn-premier{
    background-color: transparent;
    width: 30%;
    font-size: large;
    color: #ffffff;
}
.btn-competitive{
    background-color: transparent;
    width: 30%;
    font-size: large;
    color: #ffffff;
}

.btn-faceit{
    background-color: transparent;
    width: 30%;
    font-size: large;
    color: #ffffff;
}



/* Styling for the active button */
.elo-form-container button.active-btn {
    border-bottom: 2px solid white;
    font-weight: bold;
}

.elo-inputs {
    margin-top: 3%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    margin-bottom: 10px;
}

.elo-group {
    display: flex;
    align-items: center;
    gap: 5px;
}

.btn-elo {
    color: white;
    border: 1px solid #4C4E69;
    border-radius: 5px;
    padding: 13px;
    cursor: pointer;
    background-color: transparent;
}

.elo-input {
    width: 11rem;
    font-size: 16px;
    border: none;
    background: transparent;
    color: white;
    padding: 13px;
    border-radius: 5px;
    border: 1px solid #4C4E69;

}

.elo-input::placeholder{
    color: #4C4E69;
    opacity: 1; /* Ensures full visibility */
    font-size: larger;
}

.elo-select {
    background: transparent;
    color: white;
    padding-top: 2.5%;
    padding-bottom: 2.5%;
    border-radius: 5px;
}
.elo-group select{
    padding: 10px;
    padding-top: 13px;
    padding-bottom: 13px;
}

.elo-group select option {
    margin: 40px;
    background: black;
    color: #fff;
    border: 1px solid white;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
  }

  

.elo-placeholder {
    width: 109px;
    height: 50px;
    display: block;
    position: relative;
}

.elo-placeholder-container {
    position: relative;
    display: inline-block;
    text-align: center;
}

.elo-text {
    position: absolute;
    top: 50%;
    left: 55%;
    transform: translate(-50%, -50%);
    font-size: 25px;
    font-weight: bold;
    color: white;
}


.elo-arrow {
    font-size: 30px;
    color: white;
    font-weight: bolder;
    background: #5B25EC;
    border-radius: 50%;
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 8px;
}

.elo-pricing {
    display: flex;
    flex-direction: row;
    gap: 10px;
    justify-content: space-between;
    margin-top: 15px;
    padding-top: 30px;
    padding-bottom: 30px;
    border-top: 2px solid #4C4E69;
    border-bottom: 2px solid #4C4E69;
}

.elo-group-map {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1%;
    margin-top: 30px;
}

.elo-group-map button {
    width: 10%;
    padding: 10px;
    font-weight: bold;
}

.map-select-container {
    position: relative;
    width: 78%; /* Remaining width between the buttons */
}

.map-select-container select {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    background-color: black;
    color: white;
}

.map-label {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background-color: black;
    padding: 0 6px;
    font-size: 16px;
    font-weight: bold;
    color: white;
    z-index: 1;
}


.pricing-box {
    padding: 15px;
    border-radius: 5px;
    width: 40%;
    border: 1px solid #4C4E69;
    background-color: #06030a;
    text-align: left;
}

.elo-options {
    padding: 2%;
    display: flex;
    flex-direction: row;
    margin-top: 10px;
    justify-content: space-around;
}

.elo-options label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;

}

.elo-options input[type="checkbox"] {
    width: 1em;
    height: 1em;
    accent-color: #4C4E69;
    border-radius: 15px;
  }
  

.elo-error{
    color: red;

}

.payment-row {
    display: flex;
    justify-content: flex-start;
    padding: 15px 20px;
}

.payment-row img {
    height: 47px; /* Adjust size as needed */
    width: 46px;
    margin-right: 15px;
    opacity: 0.7;
    transition: opacity 0.3s ease-in-out;
    color: #6F74A8;
}

.payment-row img:hover {
    opacity: 1;
}

.chat-section {
    display: flex;
    align-items: center;
    color: #ffffff;
    font-size: 16px;
    justify-content: flex-end; /* Aligns content to the right */
    gap: 10px;
    width: 100%; /* Ensures it spans the full width */
}

.chat-section .live-chat {
    display: flex;
    align-items: center;
    margin-left: 10px;
    color: #ffffff;
    font-weight: bold;
    text-decoration: none;
}

.chat-section .live-chat img {
    height: 20px;
    margin-right: 5px;
}

.chat-section span{
    color: #C0C1CA;
    font-weight: bold;
}

.chat{
    text-decoration: underline;
}

.elo-placeholder-faceit {
    width: 70px;
    height: 70px !important;
    display: block;
    position: relative;
}

#priceee {
  opacity: 0;
  transition: opacity 0.3s ease;
  color:#999;
  text-decoration: line-through;
  font-size: 18px;

}

#priceee.show {
  opacity: 1;
}


#actualPrice {
  opacity: 0;
  transition: opacity 0.3s ease;
  color:#999;
  text-decoration: line-through;
  font-size: 18px;

}

#actualPrice.show {
  opacity: 1;
}

.price-container {
    display: flex;
    align-items: center;
    gap: 20px;
}

#actualFaceitPrice {
  opacity: 0;
  transition: opacity 0.3s ease;
  color: #999;
  text-decoration: line-through;
  font-size: 18px;
}

#actualFaceitPrice.show {
  opacity: 1;
}

#basePrice {
  opacity: 0;
  transition: opacity 0.3s ease;
  color: #999;
  text-decoration: line-through;
  font-size: 18px;
}

#basePrice.show {
  opacity: 1;
}

.btn-order {
    background: transparent;
    padding: 13px 25px;
    font-size: 25px;
    border-radius: 30px;
    font-weight: 700;
    border: 2px solid #363959;
    cursor: pointer;
    margin-top: 30px;
    color: white;
    transition: 0.5s ease;
}

.btn-order:hover {
    background: transparent;
    padding: 13px 25px;
    font-size: 25px;
    border-radius: 30px;
    font-weight: 700;
    border: 2px solid white;
    cursor: pointer;
    margin-top: 30px;
    color: white;
}
.tooltip-icon {
    display: inline-block;
    color: #4C4E69;
    font-size: 14px;
    width: 18px;
    height: 18px;
    text-align: center;
    line-height: 18px;
    border-radius: 50%;
    cursor: pointer;
    margin-left: 5px;
    position: relative;
    border: 1px solid #4C4E69;
}

.tooltip-icon::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 120%;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 5px 8px;
    border-radius: 5px;
    white-space: nowrap;
    font-size: 12px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s, visibility 0.2s;
}

.tooltip-icon:hover::after {
    opacity: 1;
    visibility: visible;
}

.pricing-box p{
    font-size: 16px;
    color:#B3B4C0;
    font-weight: 600;
}

.pricing-box span{
    font-size: 24px;
    font-weight: 700;
}


/* Footer Container */
.footer {
    background-color: #0f0b20;
    color: #fff;
    text-align: center;
    padding: 20px 0;
    font-family: Arial, sans-serif;
    padding: 7%;
    padding-bottom: 0;
}

/* Payment Methods Row */
.payment-methods {
    display: flex;
    justify-content: center;
    gap: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.payment-methods img {
    height: 40px;
    width: 50px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.payment-methods img:hover {
    opacity: 1;
}

/* Footer Main Content */
.footer-content {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 20px;
}

.contact-info{
    display: flex;
    flex-direction: column;
}
/* Contact Info */
.contact-info h3, .useful-links h3 {
    color: #610480;
}

.contact-info span, .useful-links span {
    font-size: 14px;
    margin: 5px 0;
}

.contact-info img {
    width: 20px;
    margin-right: 8px;
    vertical-align: middle;
}

/* Logo Center */
.logo-center img {
    width: 500px;
}

/* Useful Links */
.useful-links a {
    text-decoration: none;
    color: #620C90;
    font-weight: bolder;
    transition: color 0.3s ease;
}

.useful-links a:hover {
    color: #fff;
}

/* Footer Bottom Section */
.footer-bottom {
    font-size: 12px;
    margin-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 10px;
}

.bottom1{
    display: flex;
    flex-direction: row;
    gap: 10px;
    justify-content: center;
}

.bottom2{
    display: flex;
    flex-direction: row;
    gap: 10px;
    justify-content: center;
}
.discord{
    display:flex;
    flex-direction: row;
    gap: 5px;
}

.mail{
    display:flex;
    flex-direction: row;
    gap: 5px;
}

.btm2{
    color: #7618A7;
}

@media only screen and (max-width: 420px) {
                .chat-section {
                display: grid;
                gap: 1px;
                position:relative;
                left:-160px;
                top:146px;
                font-size: 10px
                }
                
                .btn-order {
                background: transparent;
                padding: 13px 25px;
                font-size: 25px;
                border-radius: 30px;
                font-weight: 700;
                border: 2px solid #363959;
                cursor: pointer;
                margin-top: 60px;
                color: white;
                transition: 0.5s ease;
                }
            
                
                .logo-center img {
                width: 200%;
                }
                .elo-arrow{
                    position:relative;
                    left:42%;
                }
            
                .elo-form-container{
                    width: 26rem;
                    padding:4%;
                    
                }
                .elo-inputs{
                     display:grid;
                    
            
                }
                    
                .elo-placeholder {
                width: 89px;
                height: 10px;
                display: block;
                position: relative;
                }
            
            
            
                    .containerr {
                    display: grid;
                    margin-left: 1%;
                    gap: -2px;
                    padding: 17% 9%;
                    position:relative;
                    left: -9%;
                    }
                        .heading {
                            margin-top: -10px;
                            margin-left: -20px;
                        }
                        .heading button{
                    background-color: white;
                    border: 1px solid white;
                    border-radius: 25px;
                    color:#610480;
                    padding: 10px 35px;
                    font-weight: bolder;
                    font-size: 20px;
                    margin: 10px;
                    transition: 0.7s ease-in-out;
                    position:relative;
                    top:10px;
                    left:-12px;
                            
                }
                .elo-input {
                width: 10rem;
                font-size: 16px;
                border: none;
                background: transparent;
                color: white;
                padding: 13px;
                border-radius: 5px;
                border: 1px solid #4C4E69;
            
            }
            
                
       
                
}
@media only screen and (max-width: 440px) {
                .chat-section {
                display: grid;
                gap: 1px;
                position:relative;
                left:-160px;
                top:146px;
                font-size: 10px
                }
                
                .btn-order {
                background: transparent;
                padding: 13px 25px;
                font-size: 25px;
                border-radius: 30px;
                font-weight: 700;
                border: 2px solid #363959;
                cursor: pointer;
                margin-top: 60px;
                color: white;
                transition: 0.5s ease;
                }
            
                
                .logo-center img {
                width: 200%;
                }
                .elo-arrow{
                    position:relative;
                    left:42%;
                }
            
                .elo-form-container{
                    width: 26rem;
                    padding:4%;
                    
                }
                .elo-inputs{
                     display:grid;
                    
            
                }
                    
                .elo-placeholder {
                width: 89px;
                height: 10px;
                display: block;
                position: relative;
                }
            
            
            
                    .containerr {
                    display: grid;
                    margin-left: 1%;
                    gap: -2px;
                    padding: 17% 9%;
                    position:relative;
                    left: -9%;
                    }
                        .heading {
                            margin-top: -10px;
                            margin-left: -20px;
                        }
                        .heading button{
                    background-color: white;
                    border: 1px solid white;
                    border-radius: 25px;
                    color:#610480;
                    padding: 10px 35px;
                    font-weight: bolder;
                    font-size: 20px;
                    margin: 10px;
                    transition: 0.7s ease-in-out;
                    position:relative;
                    top:10px;
                    left:-12px;
                            
                }
                .elo-input {
                width: 8.5rem;
                font-size: 16px;
                border: none;
                background: transparent;
                color: white;
                padding: 13px;
                border-radius: 5px;
                border: 1px solid #4C4E69;
            
            }
            
                
       
                
}