html {
    scroll-behavior: smooth;
}

@import url('https://googleapis.com');

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

body {
    background: url('background.jpg') no-repeat center center/cover fixed;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    overflow-y: auto !important;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 5%; 
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 99;
    backdrop-filter: blur(20px);
    background: rgba(0, 0, 0, 0.2);
}

.logo {
    font-size: 28px;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

/* Animated Brand Pulse Effect */
.animate-pulse {
    animation: punkPulse 0.6s ease-in-out;
}

@keyframes punkPulse {
    0% { transform: scale(1); text-shadow: none; }
    50% { transform: scale(1.15); color: #00ffcc; text-shadow: 0 0 15px #00ffcc, 0 0 30px #00ffcc; }
    100% { transform: scale(1); text-shadow: none; }
}

nav {
    display: flex;
    align-items: center;
    margin-left: auto;
}

nav a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    margin-left: 25px;
    font-size: 0.95rem;
}

.user-auth {
    margin-left: 25px;
}

.user-auth .login-btn-modal {
    height: 38px;
    padding: 0 25px;
    background: transparent;
    border: 2px solid #fff;
    border-radius: 40px;
    font-size: 15px;
    color: #fff;
    font-weight: 500;
    cursor: pointer;
    transition: .5s;
}

.user-auth .login-btn-modal:hover {
    background: #fff;
    color: #222;
}

/* Responsive Mobile Rules to stop top overspill text */
@media (max-width: 650px) {
    header {
        padding: 15px 4%;
    }
    .logo {
        font-size: 22px;
    }
    nav a {
        margin-left: 12px;
        font-size: 0.85rem;
    }
    .user-auth {
        margin-left: 12px;
    }
    .user-auth .login-btn-modal {
        padding: 0 15px;
        font-size: 13px;
        height: 32px;
    }
}

/* Full-Screen Hero Presentation Wrapper Setup */
.hero-section {
    position: relative;
    min-height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 20px 40px; 
    box-sizing: border-box;
    
    /* FIX CODE: This pushes the section layer behind the fixed navbar link layer */
    z-index: 1; 
}


/* Custom Blooming Petal Entrance Animation */
@keyframes petalBloom {
    0% { transform: scale(0.3) rotate(-8deg); opacity: 0; border-radius: 50% 0% 50% 0%; }
    60% { opacity: 0.9; border-radius: 35% 35% 35% 35%; }
    100% { transform: scale(1) rotate(0deg); opacity: 1; border-radius: 40px 12px 40px 12px; }
}

/* Center Layout Card with Fixed Padding for Locked Bottom Controls */
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 650px;
    width: 100%;
    background: rgba(20, 20, 25, 0.6); 
    padding: 40px 30px 85px; 
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), inset 0 0 20px rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    text-align: center;
    animation: petalBloom 1.4s cubic-bezier(0.175, 0.885, 0.32, 1.15) forwards;
    transform-origin: center center;
}

/* Italicized & High-Contrast Hero Text */
.hero-title {
    font-size: 2.2rem;
    font-weight: 700;
    font-style: italic;
    color: #ffffff;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.8);
    letter-spacing: 0.5px;
    line-height: 1.35;
}

@media (max-width: 480px) {
    .hero-title { font-size: 1.7rem; }
}

/* Pricing Slider Configurations */
.slider-wrapper {
    margin-top: 20px;
    width: 100%;
}

.slider-intro {
    font-size: 0.95rem;
    color: #00ffcc; 
    font-weight: 500;
    margin-bottom: 20px;
    line-height: 1.45;
}

/* Auto-sizing container cleared for card transitions */
.plans-container {
    position: relative;
    min-height: 410px; 
    width: 100%;
    margin-bottom: 15px;
}
/* High-Contrast Checkout Buttons */
.checkout-btn {
    display: block;
    width: 100%;
    text-align: center;
    background: #00ffcc; /* Vibrant brand neon turquoise */
    color: #111111 !important; /* Deep charcoal text for premium contrast */
    padding: 12px 20px;
    border-radius: 25px;
    font-size: 0.95rem;
    font-weight: 700;
    text-decoration: none !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 255, 204, 0.2);
}

.checkout-btn:hover {
    background: #ffffff; /* Turns bright white on hover */
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
}




.plan-card {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 14px;
    padding: 20px 15px 35px; 
    text-align: left;
    opacity: 0;
    transform: translateX(30px) scale(0.95);
    pointer-events: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.plan-card.active {
    opacity: 1;
    transform: translateX(0) scale(1);
    pointer-events: auto;
}

.plan-card h3 {
    font-size: 1.3rem;
    color: #ffffff !important; 
    margin: 5px 0 10px;
}

.badge {
    display: inline-block;
    padding: 3px 10px;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 20px;
}
.badge.free { background: #666; color: #fff; }
.badge.bronze { background: #cd7f32; color: #fff; }
.badge.silver { background: #a0a0a0; color: #111; }
.badge.gold { background: #ffd700; color: #111; }
.badge.platinum { background: #dfdfdf; color: #111; }

.price-row {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    padding-bottom: 10px;
    font-size: 0.88rem;
    color: #ffffff !important;
}

.price-row strong {
    color: #00ffcc !important;
}

/* Custom Soft Asterisk Layout Configurations */
.features-list {
    list-style: none !important; /* Disables standard browser bullets */
    padding-left: 0px; 
}

.features-list li {
    font-size: 0.85rem;
    color: #ffffff !important; 
    margin-bottom: 8px;
    line-height: 1.35;
    position: relative;
    padding-left: 15px; /* Spaces out text from our soft marker */
}

/* Generates a soft neon asterisk before each text block */
.features-list li::before {
    content: "*";
    position: absolute;
    left: 0;
    top: 0;
    color: #00ffcc !important; /* Soft, stylish brand accent hue */
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1;
}

/* Absolute safeguard to suppress leftover boxicons */
.features-list li i {
    display: none !important;
}

/* Locked Navigation Control Row Hooks to Bottom Edge */
.slider-controls {
    position: absolute;
    bottom: 30px; 
    left: 30px;
    right: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 10;
    background: transparent;
}

.slider-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    padding: 5px 12px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 0.8rem;
    font-weight: 500;
    transition: all 0.2s;
}

.slider-btn:hover {
    background: #fff;
    color: #111;
}

#slider-dots {
    font-size: 0.8rem;
    color: #aaaaaa;
}

/* Mobile Layout Responsive Balancing */
@media (max-width: 500px) {
    .hero-content {
        padding-bottom: 95px;
    }
    .plans-container {
        min-height: 520px; 
    }
}

/* Validation System Window Frameworks */
.auth-modal {
    position: fixed;
    width: 420px;
    height: 440px;
    background: rgba(0, 0, 0, .4);
    border: 2px solid rgba(255, 255, 255, .3);
    border-radius: 20px;
    box-shadow: 0 0 30px rgba(0, 0, 0, .5);
    backdrop-filter: blur(20px);
    color: #fff;
    inset: 0;
    margin: auto;
    display: flex;
    align-items: center;
    overflow: hidden;
    transform: scale(0);
    transition: height .2s ease, transform .5s ease;
    z-index: 1000;
}

@media (max-width: 450px) {
    .auth-modal { width: 90%; height: 420px; }
    .auth-modal.slide { height: 680px; }
}

.auth-modal.show { transform: scale(1); }
.auth-modal.slide { height: 640px; }


.auth-modal .form-box.login,
.auth-modal.slide .form-box.register {
    transform: translateX(0);
    transition: transform .18s ease;
}

.auth-modal.slide .form-box.login { transform: translateX(-400px); transition: none; }
.auth-modal .form-box.register { position: absolute; transform: translateX(400px); }
.form-box h2 { font-size: 35px; text-align: center; }
.input-box { position: relative; width: 100%; height: 50px; margin: 30px 0; }

.input-box input {
    width: 100%;
    height: 100%;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, .3);
    outline: none;
    border-radius: 40px;
    font-size: 16px;
    color: #fff;
    padding: 20px 45px 20px 20px;
}

.input-box input::placeholder { color: #fff; }
.input-box i { position: absolute; right: 20px; top: 50%; transform: translateY(-50%); font-size: 20px; }

.btn {
    width: 100%;
    height: 45px;
    background: #fff;
    border-radius: 40px;
    border: none;
    box-shadow: 0 0 10px rgba(0, 0, 0, .1);
    font-size: 16px;
    color: #222;
    font-weight: 500;
    cursor: pointer;
}

.form-box p { font-size: 14.5px; text-align: center; margin: 25px 0 10px; }
.form-box p a { color: #fff; text-decoration: none; font-weight: 600; }
.form-box p a:hover { text-decoration: underline; }

/* Clear White Circular Close Option */
.auth-modal .close-btn-modal {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 35px;
    height: 35px;
    background: #ffffff !important;
    border: 2px solid rgba(0, 0, 0, 0.2);
    border-radius: 50% !important;
    font-size: 24px;
    line-height: 28px;
    color: #111111 !important;
    font-weight: 800;
    cursor: pointer;
    z-index: 1010;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.auth-modal .close-btn-modal:hover {
    background: #ff3366 !important;
    color: #ffffff !important;
    transform: scale(1.1) rotate(90deg);
}

/* User Account Systems UI */
.profile-box .avatar-circle {
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 50%;
    line-height: 40px;
    text-align: center;
    font-size: 25px;
    color: #222;
    font-weight: 600;
    cursor: pointer;
}

.profile-box .dropdown {
    position: absolute;
    top: 85px;
    right: 5%;
    padding: 10px;
    background: #fff;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    transform: translateY(20px);
    opacity: 0;
    pointer-events: none;
    transition: .5s;}
    .profile-box.show .dropdown { transform: translateY(0); 
    opacity: 1; pointer-events: auto; }
    .profile-box .dropdown a { padding: 6px 12px; border-radius: 4px; color: #222; text-decoration: none; font-weight: 500; margin: 2px 0; transition: .2s; }.profile-box .dropdown a:hover { background: #eee; }
    /* Alert Box Elements */
    .alert-box {position: fixed;inset: 0;top: 35px;margin: 0 auto;width: 350px;height: 70px;background: #fff;border-radius: 6px;padding: 0 15px;z-index: 2000;overflow: hidden;transform: translateY(calc(-100% - 35px));transition: .5s ease;
    }
    
    .alert-box.show { transform: translateY(0); }
    .alert { display: flex; align-items: center; height: 100%; color: #222; font-weight: 500; }
    .alert::after { content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 5px; background: #0abf30; animation: progress 6s linear forwards; }
    .alert.error::after { background: #f00; }@keyframes progress { 100% { width: 0; } }
    .alert i { font-size: 35px; color: #0abf30; margin-right: 8px; }
    .alert.error i { color: #f00; }

/* Gives About and Contact their own full screens with nice spacing */
#about, #contact {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 0 auto !important; /* Clears your old margin spacing */
}



























