/* Mobile CSS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #070707;
    overflow-x: hidden;
    position: relative;
    font-size: 14px; /* Smaller font size for better compactness */
}

/* Header Section */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 10px; /* Reduced padding */
    background-color: #000;
    color: #fff;
}

.menu-icon {
    display: flex;
    flex-direction: column;
    gap: 3px; /* Reduced gap for compactness */
    cursor: pointer;
    font-size: 24px; /* Smaller icon */
}

.menu-icon span {
    width: 28px;
    height: 4px;
    background-color: white;
    transition: 0.3s;
}

.menu-icon:hover span {
    background-color: #f39c12;
}

.logo {
    font-size: 20px; /* Smaller font */
    font-weight: 600;
    color: #ffffff;
    display: flex;
    align-items: center;
}

/* Side Navigation */
.side-nav {
    position: fixed;
    top: 0;
    left: -250px;
    height: 100%;
    width: 250px;
    background-color: #050505;
    padding-top: 60px;
    transition: transform 0.3s ease;
}

.side-nav.open {
    transform: translateX(250px);
}

.side-nav ul {
    list-style-type: none;
    padding: 0;
}

.side-nav ul li {
    padding: 10px 12px; /* Reduced padding */
    border-bottom: 2px solid white;
}

.side-nav ul li a {
    color: white;
    font-size: 14px; /* Smaller font size for mobile */
    display: block;
    text-decoration: none;
    padding: 6px 0; /* Reduced padding */
    transition: background-color 0.3s ease;
}

.side-nav ul li a:hover {
    background-color: #f39c12;
}

/* Main Content */
.main-content {
    margin-left: 0;
    padding: 40px 12px 20px 12px; /* Compact padding */
}

.main-content h2 {
    font-size: 22px; /* Reduced size for mobile */
    color: #fff;
    font-weight: 600;
    margin-bottom: 10px; /* Reduced margin */
}

.main-content h3 {
    font-size: 18px; /* Slightly smaller heading */
    color: #ffffff;
    margin-top: 10px;
}

header {
    animation: fadeInUp 1s ease-out;
}

.main-content {
    animation: fadeInUp 2s ease-out;
}

/* Features Section */
.features {
    display: flex;
    flex-direction: column;
    gap: 10px; /* Tightened gap for mobile screens */
    margin-top: 15px; /* Reduced margin */
}

.feature-item {
    padding: 10px;
    width: 100%;
    background-color: #1b1b1b;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-item i {
    background: linear-gradient(45deg ,#f39c12, #f01981); 
    -webkit-background-clip: text;   
    background-clip: text;           
    color: transparent;              
    font-weight: bold;
    font-size: 26px; /* Smaller icon */
    margin-bottom: 8px; /* Reduced margin */
}

.feature-item h4 {
    background: linear-gradient(45deg ,#f39c12, #f01981);  
    -webkit-background-clip: text;   
    background-clip: text;           
    color: transparent;              
    font-weight: bold;
    font-size: 16px; /* Smaller feature heading */
    margin-bottom: 6px;
}

.feature-item p {
    font-size: 14px; /* Smaller text */
    color: #ddd;
}

/* Slider Section */
.slider-container {
    width: 85%;
    margin: 20px auto;
    text-align: center;
}

.slider {
    margin-top: 20px;
    width: 100%;
    height: 6px; /* Thinner slider */
    background: linear-gradient(90deg, #f39c12, #f01981);
    border-radius: 30px;
}

.slider::-webkit-slider-thumb {
    width: 18px;
    height: 18px;
    background-color: #f39c12;
    transition: transform 0.2s ease, background-color 0.3s ease, box-shadow 0.3s ease;
    border-radius: 50%;
    top: -2px;
    cursor: pointer;
}

.slider::-webkit-slider-thumb:hover {
    background-color: #e74c3c;
    transform: scale(1.1);
}

.slider::-webkit-slider-thumb:active {
    background-color: #c0392b;
    transform: scale(1.2);
}

/* Pay Button Styling */
#payButton {
    background: linear-gradient(45deg ,#f39c12, #f01981); 
    color: white;
    border: none;
    margin-left: 0; /* Adjust for mobile */
    padding: 12px 20px; /* Reduced padding */
    font-size: 14px; /* Smaller font size */
    font-weight: bold;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    text-transform: uppercase;
    margin-left: 70px;
    width: 60%; /* Full width button */
    margin-top: 15px; /* Reduced margin */
}

/* Pay Button Hover Effect */
#payButton:hover {
    background: linear-gradient(-45deg ,#f39c12, #f01981); 
    color: #ffffff;
    transform: translateY(-4px);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.3);
}

/* Footer Section */


.t1 {
    font-size: 16px; /* Slightly smaller text */
}

.details {
    margin-top: 18px;
}

.details p strong {
    font-size: 16px;
    margin-left: 18px;
}

.details #followers, #planname {
    font-size: 16px;
    color: white;
}

h3 {
    font-size: 22px; /* Adjusted heading size */
}

.why-promote p {
    font-size: 14px; /* Smaller text for better readability */
}

.adv i {
    font-size: 14px;
}

.buttons button {
    height: 40%; /* Reduced height */
    font-size: 15px; /* Smaller font size */
    font-weight: 600;
    background: linear-gradient(45deg ,#f39c12, #f01981);
}

.buttons button:hover {
    background: linear-gradient(-45deg ,#f39c12, #f01981);
    color: white;
}

/* Responsive Typography for smaller screens */
@media (max-width: 768px) {
    body {
        font-size: 13px; /* Smaller base font size for small screens */
    }

    .main-content h2 {
        font-size: 20px; /* Smaller heading size */
    }

    .slider::-webkit-slider-thumb {
        width: 16px;
        height: 16px;
    }

    .menu-icon {
        font-size: 22px; /* Smaller icon size */
    }

    .logo {
        font-size: 18px; /* Smaller logo font */
    }

    .features {
        gap: 8px; /* Tightened gap for compactness */
    }

    #payButton {
        font-size: 16px; /* Smaller button font */
        padding: 12px 16px;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 12px; /* Smallest font for very small screens */
    }

    .main-content h2 {
        font-size: 18px; /* Smaller heading */
    }

    .slider::-webkit-slider-thumb {
        width: 14px;
        height: 14px;
    }

    .menu-icon {
        font-size: 20px; /* Very small menu icon */
    }

    .logo {
        font-size: 16px; /* Very small logo text */
    }

    .feature-item {
        padding: 8px; /* Smaller padding in feature items */
    }

    .feature-item i {
        font-size: 22px; /* Smaller icon sizes */
    }

    .feature-item h4 {
        font-size: 14px; /* Smaller feature heading */
    }

    .feature-item p {
        font-size: 12px; /* Smaller text inside features */
    }
}
