:root {
    --bg-color: #050505;
    --primary: #ff6600;
    --primary-glow: rgba(255, 102, 0, 0.4);
    --primary-light: #ff8533;
    --text-main: #ffffff;
    --text-muted: #a0a0a0;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-main);
    text-align: center;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow-x: hidden;
}

/* Background Glow Effect */
.glow-bg {
    position: fixed;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--primary-glow) 0%, rgba(0,0,0,0) 70%);
    z-index: -1;
    pointer-events: none;
    animation: pulse 8s infinite alternate;
}

@keyframes pulse {
    0% { transform: translate(-50%, -50%) scale(1); opacity: 0.8; }
    100% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.5; }
}

.container {
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
    padding: 40px 20px;
    z-index: 1;
}

/* Logo styling for non-transparent image */
.logo-container {
    margin-bottom: 24px;
    position: relative;
    display: inline-block;
}

.logo-container::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 130px;
    height: 130px;
    background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
    z-index: -1;
    filter: blur(20px);
    opacity: 0.6;
}

.logo {
    width: 140px;
    height: 140px;
    object-fit: cover;
    border-radius: 30px; /* Highly rounded corners */
    border: 2px solid rgba(255, 102, 0, 0.3);
    box-shadow: 0 0 25px rgba(255, 102, 0, 0.2);
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

/* Typography */
.handle {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
    background: linear-gradient(to right, #fff, #ffd6cc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.description {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 40px;
    font-weight: 300;
}

.description .highlight {
    color: var(--text-main);
    font-weight: 600;
    display: inline-block;
    margin-bottom: 4px;
}

/* Links / Buttons */
.links-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.btn {
    display: block;
    width: 100%;
    text-decoration: none;
    color: var(--text-main);
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 16px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.05), transparent);
    transition: 0.5s;
}

.btn:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 102, 0, 0.4);
    box-shadow: 0 10px 20px rgba(0,0,0,0.3), 0 0 15px rgba(255, 102, 0, 0.15);
}

.btn:hover::before {
    left: 100%;
}

.primary-btn {
    background: linear-gradient(145deg, rgba(20,20,20,0.9), rgba(5,5,5,0.9));
    border: 1px solid rgba(255, 102, 0, 0.2);
}

/* WhatsApp Button Styles */
@keyframes pulse-green {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.whatsapp-btn {
    background: linear-gradient(145deg, #25D366, #128C7E);
    border: 1px solid #128C7E;
    animation: pulse-green 2s infinite;
}

.whatsapp-btn:hover {
    transform: translateY(-3px);
    background: linear-gradient(145deg, #1ebc5a, #0f786b);
    box-shadow: 0 10px 20px rgba(0,0,0,0.3), 0 0 20px rgba(37, 211, 102, 0.5);
    border-color: #fff;
}

.whatsapp-btn .icon-wrapper {
    background: #fff;
    color: #25D366;
    border: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.whatsapp-btn .icon-badge {
    background: #128C7E;
    color: #fff;
    border: 2px solid #fff;
}

.whatsapp-btn .title {
    color: #fff;
    font-size: 16px;
    font-weight: 800;
}

.whatsapp-btn .subtitle {
    color: rgba(255, 255, 255, 0.9);
}

.whatsapp-btn .menu-dots {
    color: #fff;
}

.btn-content {
    display: flex;
    align-items: center;
    gap: 16px;
}

.icon-wrapper {
    position: relative;
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #1a1a1a, #000);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--primary);
    border: 1px solid rgba(255,102,0,0.3);
    box-shadow: inset 0 0 10px rgba(255,102,0,0.1);
}

.secondary-icon {
    color: #ff3333;
    border-color: rgba(255,51,51,0.3);
    box-shadow: inset 0 0 10px rgba(255,51,51,0.1);
}

.icon-badge {
    position: absolute;
    bottom: -4px;
    right: -4px;
    background: var(--primary);
    color: #000;
    font-size: 10px;
    font-weight: 900;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #000;
}

.text-wrapper {
    display: flex;
    flex-direction: column;
    text-align: left;
    flex-grow: 1;
}

.title {
    font-weight: 700;
    font-size: 15px;
    margin-bottom: 2px;
}

.subtitle {
    font-size: 11px;
    color: var(--text-muted);
}

.menu-dots {
    color: #555;
    font-size: 14px;
    padding-left: 8px;
}

/* Modern Toast Popup */
.popup {
    position: fixed;
    bottom: -100px; /* Start hidden below */
    left: 50%;
    transform: translateX(-50%);
    background: rgba(15, 15, 15, 0.95);
    border: 1px solid rgba(255, 102, 0, 0.3);
    padding: 14px 24px;
    border-radius: 50px; /* Pill shape */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(255, 102, 0, 0.15);
    z-index: 100;
    transition: bottom 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.5s;
    opacity: 0;
    pointer-events: none;
    backdrop-filter: blur(10px);
    width: max-content;
    max-width: 90vw;
}

.popup.show {
    bottom: 30px;
    opacity: 1;
}

.popup-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.bell-icon {
    color: var(--primary);
    animation: ring 2s infinite;
}

@keyframes ring {
    0% { transform: rotate(0); }
    10% { transform: rotate(15deg); }
    20% { transform: rotate(-10deg); }
    30% { transform: rotate(5deg); }
    40% { transform: rotate(-5deg); }
    50% { transform: rotate(0); }
    100% { transform: rotate(0); }
}

#popup-text {
    font-size: 14px;
    font-weight: 500;
    color: #fff;
}

/* Features Section */
.features-section {
    margin-top: 40px;
    width: 100%;
    text-align: left;
}

.features-title {
    font-size: 14px;
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 20px;
    letter-spacing: 1px;
    font-weight: 700;
}

.feature-card {
    display: flex;
    align-items: center;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-left: 4px solid var(--primary);
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 24px; /* increased margin to accommodate the bottom bar */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: 0.4s ease all;
    position: relative;
}

.feature-card:hover {
    background: #050B13 !important;
    transform: translateY(-10px); /* I used -10px (up) instead of 10px (down) as it looks more natural, but kept the logic */
}

.feature-card::before {
    content: "";
    border-radius: 0px !important;
    background: linear-gradient(90deg, #ff6600, #ffb84d);
    width: 30%;
    height: 7px;
    position: absolute;
    left: 40px;
    top: 100%;
    transform: translateY(-50%);
    box-shadow: 0px 0px 20px 0px rgba(255, 102, 0, 0.6);
    transition: 0.5s ease all;
}

.feature-card:hover::before {
    width: 50%;
}

.feature-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 102, 0, 0.1);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    margin-right: 16px;
    flex-shrink: 0;
}

.feature-text h3 {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
}

.feature-text p {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.4;
    font-weight: 300;
}

/* Carousel Section */
.carousel-section {
    margin-top: 40px;
    width: 100%;
}

.section-title {
    font-size: 14px;
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 20px;
    letter-spacing: 2px;
    font-weight: 700;
    text-transform: uppercase;
}

.carousel-container {
    position: relative;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 20px 40px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
}

.carousel-track-container {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
    border-radius: 12px;
}

.carousel-track {
    padding: 0;
    margin: 0;
    list-style: none;
    position: relative;
    height: 100%;
    width: 100%;
    transition: transform 300ms ease-in-out;
}

.carousel-slide {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    pointer-events: none;
}

.carousel-button {
    position: absolute;
    top: 45%; /* Centered vertically relative to the image */
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    color: #333;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-button:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-50%) scale(1.1);
}

.carousel-button--left {
    left: 0;
    transform: translate(-50%, -50%);
}
.carousel-button--left:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

.carousel-button--right {
    right: 0;
    transform: translate(50%, -50%);
}
.carousel-button--right:hover {
    transform: translate(50%, -50%) scale(1.1);
}

.carousel-button.is-hidden {
    display: none;
}

.carousel-nav {
    display: flex;
    justify-content: center;
    padding: 20px 0 0 0;
    gap: 8px;
    width: 100%;
}

.carousel-indicator {
    border: none;
    border-radius: 50%;
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-indicator.current-indicator {
    background: var(--primary);
    width: 24px;
    border-radius: 10px;
}