/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #070707;
    overflow-x: none;
    position: relative;
}
.main-content{
    animation: fadeIn 2s ease-out;
    transition: 1s;
}

/* Header Section */
header {
    display:flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    background-color: #000000;
    color: white;
    position: relative;
    z-index: 10;
}

.menu-icon {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    font-size: 30px;
}

.menu-icon span {
    width: 30px;
    height: 4px;
    background-color: white;
    transition: 0.3s;
}

.menu-icon:hover span {
    background-color: #f39c12;
}

.details p strong{
    color:#f39c12;
    font-size: 30px;
    font-weight: 600;
}
.details #followers{
    font-size: 30px;
    color: white;
    font-weight: 500;
}
.logo {
    display: flex;
    align-items: center;
    font-size: 30px;
    font-weight: 600;
    justify-content: flex-end;
    width: 100%;
}

.logo span {
    margin-right: 10px;
}

.logo i {
    color: #f39c12;
    font-size: 30px;
    animation: rocket-hover 1.5s infinite alternate;
}

/* Rocket hover animation */
@keyframes rocket-hover {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0);
    }
}

/* Side Navigation Panel */
.side-nav {
    position: fixed;
    top: 0;
    left: -250px; /* Initially hidden */
    height: 100%;
    width: 250px;
    background-color: #050505;
    padding-top: 60px;
    transition: transform 0.3s ease;
    z-index: 1000;
    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.5);
}

.side-nav.open {
    transform: translateX(250px); /* Move to visible position */
}

.side-nav-logo {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 20px;
    color: white;
}

.side-nav-logo .logo-text {
    font-size: 24px;
    font-weight: 600;
    margin-right: 10px;
}

.side-nav-logo .rocket-icon {
    font-size: 30px;
    color: #f39c12;
    animation: rocket-hover 1.5s infinite alternate;
}

.side-nav ul {
    list-style-type: none;
    padding: 0;
}

.side-nav ul li {
    padding: 15px 20px;
    border-bottom: 2px solid white;
}

.side-nav ul li a {
    color: white;
    font-size: 18px;
    display: block;
    text-decoration: none;
    padding: 10px 0;
    transition: background-color 0.3s;
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 30px;
    color: white;
    cursor: pointer;
}

/* Main Content */
.main-content {
    margin-left: 3px;
    padding: 60px 50px 50px;
}

.t1{
    color: #f39c12;
    font-size: 25px;
}

.main-content h2 {
    font-size: 35px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 20px;
}

.main-content h3 {
    font-size: 35px;
    margin-top: 40px;
    display: block;
    color: #ffffff;
    margin-bottom: 20px; /* Add space after h3 */
}

/* Features Section */
.features {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    margin-top: 40px;
    flex-wrap: wrap; /* Allows the items to wrap on smaller screens */
}

.feature-item {
    background-color: #1b1b1b;
    padding: 20px;
    width: 30%;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    text-align: center;
    transition: transform 0.3s ease-in-out;
    color: white;
}

.feature-item:hover {
    transform: translateY(-10px); /* Slightly raises the feature item on hover */
}

.feature-item i {
    background: linear-gradient(45deg ,#f39c12, #f01981);  /* Define your gradient colors */
    -webkit-background-clip: text;   /* Ensure the gradient is applied to the text */
    background-clip: text;           /* Same for non-webkit browsers */
    color: transparent;              /* Make the text color transparent to show the gradient */
    font-weight: bold;
    font-size: 40px;
    margin-bottom: 15px;
    transition: transform 0.3s ease;
}

.feature-item i:hover {
    transform: rotate(20deg); /* Adds a fun hover effect to the icon */
}

.feature-item h4 {
    background: linear-gradient(45deg ,#f39c12, #ff23a7);  /* Define your gradient colors */
    -webkit-background-clip: text;   /* Ensure the gradient is applied to the text */
    background-clip: text;           /* Same for non-webkit browsers */
    color: transparent;              /* Make the text color transparent to show the gradient */
    font-weight: bold;
    font-size: 22px;
    margin-bottom: 10px;
}


.feature-item p {
    font-size: 16px;
    color: #ddd;
}

/* Slider Container */
.slider-container {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 40px auto;
    text-align: center;
}

/* Slider Base Styles */
.slider {
    width: 100%;
    height: 12px;
    background: linear-gradient(90deg, #f39c12, #f01981);
    border-radius: 30px;
    appearance: none;
    outline: none;
    transition: background-color 0.3s ease;
}

/* Slider Base Styles */
.slider {
    width: 100%;
    height: 12px;
    background: linear-gradient(90deg,#f39c12, #f01981);
    border-radius: 30px;
    appearance: none;
    outline: none;
    transition: background-color 0.3s ease;
}

/* Slider Thumb Styling */
.slider::-webkit-slider-thumb {
    appearance: none;
    width: 40px; /* Reduced size */
    height: 40px; /* Reduced size */
    background-color: #f39c12;
    border-radius: 50%;
    cursor: pointer;
    transition: transform 0.2s ease, background-color 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    position: relative; /* Position relative for vertical adjustment */
    top: -12px; /* Adjust the thumb vertically */
}

.slider::-webkit-slider-thumb:hover {
    background-color: #e74c3c;
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
}

.slider::-webkit-slider-thumb:active {
    background-color: #c0392b;
    transform: scale(1.2);
}

/* Slider Track Styling */
.slider::-webkit-slider-runnable-track {
    height: 12px;
    background: #cd3a3a;
    border-radius: 30px;
}

/* For Firefox */
.slider::-moz-range-thumb {
    width: 20px; /* Reduced size for Firefox */
    height: 20px; /* Reduced size for Firefox */
    background-color: #f39c12;
    border-radius: 50%;
    cursor: pointer;
    transition: transform 0.2s ease, background-color 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    position: relative; /* Position relative for vertical adjustment */
    top: -4px; /* Adjust the thumb vertically */
}

.slider::-moz-range-thumb:hover {
    background-color: #e74c3c;
    transform: scale(1.3);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
}

.slider::-moz-range-thumb:active {
    background-color: #c0392b;
    transform: scale(1.4);
}

/* Pay Button Styling */
#payButton {
    background: linear-gradient(45deg ,#f39c12, #f01981); 
    color: white;
    border: none;
    width: 250px;
    padding: 18px 35px;
    font-size: 22px;
    font-weight: 600;
    font-weight: bold;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    text-transform: uppercase;
    margin-top: 50px;
    align-items: center;
    justify-content: center;
    align-self: center;
}

/* Pay Button Hover Effect */
#payButton:hover {
    background: linear-gradient(-45deg ,#f39c12, #f01981); 
    color: #ffffff;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

/* Pay Button Active Effect */
#payButton:active {
    transform: translateY(2px);
}

/* Focused Pay Button */
#payButton:focus {
    outline: none;
    box-shadow: 0 0 15px rgba(255, 159, 64, 0.8);
}

.why-promote{
    text-align: justify;
}

.adv i{
    background: linear-gradient(45deg, #f39c12, #f01981);  /* Define your gradient colors */
    -webkit-background-clip: text;   /* Ensure the gradient is applied to the text */
    background-clip: text;           /* Same for non-webkit browsers */
    color: transparent;              /* Make the text color transparent to show the gradient */
    font-weight: bold;  
    font-size: 24px;
    font-weight: 600;
}

.why-promote p{
    color: rgb(255, 255, 255);
    font-size: 20px;
    margin-bottom: 10px;
}
.details{
    margin-top: 16px;
}
.details p strong{
    font-size:24px;
    margin-left: 20px;
}
.details #followers,#planname{
    font-size: 24px;
    color: white;
}


/* Footer Section */
footer {
    text-align: center;
    padding: 20px;
    background-color: #121212;
    color: white;
    bottom: 0;
    width: 100%;
}

/* Buttons */
.buttons button {
    background: linear-gradient(45deg ,#f39c12, #f01981);
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 20px;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    margin-top: 20px;
    transition: background-color 0.3s ease;
}

.buttons button:hover {
    background: linear-gradient(-45deg ,#f39c12, #f01981);
    color: white;
}
.buttons button:focus {
    outline: none;
    box-shadow: 0 0 15px rgba(255, 159, 64, 0.8);
}
