@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
    /* Color Variables */
    --primary-color: #0d6efd;
    --secondary-color: #0a2647;
    --dark-bg: #020B16;
    --card-bg: #041325;
    --text-color: #ffffff;
    --border-color: rgba(255, 255, 255, 0.1);
    
    /* Gradients */
    --gradient-primary: linear-gradient(45deg, #0d6efd, #0a58ca);
    
    /* Shadows */
    --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* Floating Shapes */
.floating-shapes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.shape {
    position: absolute;
    opacity: 0.02;
    animation: floatShape 30s linear infinite;
}

.shape-1 {
    width: 100px;
    height: 100px;
    background: var(--primary-color);
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    top: 15%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 150px;
    height: 150px;
    background: var(--primary-color);
    border-radius: 50%;
    top: 60%;
    right: 15%;
    animation-delay: -7s;
}

.shape-3 {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    top: 30%;
    right: 25%;
    animation-delay: -14s;
}

.shape-4 {
    width: 120px;
    height: 120px;
    background: var(--primary-color);
    clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%);
    top: 70%;
    left: 25%;
    animation-delay: -21s;
}

@keyframes floatShape {
    0% {
        transform: translate(0, 0) rotate(0deg) scale(1);
        opacity: 0.02;
    }
    25% {
        transform: translate(5px, 5px) rotate(90deg) scale(1.05);
        opacity: 0.03;
    }
    50% {
        transform: translate(0, 10px) rotate(180deg) scale(1);
        opacity: 0.02;
    }
    75% {
        transform: translate(-5px, 5px) rotate(270deg) scale(0.95);
        opacity: 0.03;
    }
    100% {
        transform: translate(0, 0) rotate(360deg) scale(1);
        opacity: 0.02;
    }
}

/* Base Styles */
body {
    background-color: var(--dark-bg);
    color: var(--text-color);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate3d(1, 1, 1, 0deg); }
    50% { transform: translateY(-20px) rotate3d(1, 1, 1, 2deg); }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

@keyframes glow {
    0% { box-shadow: 0 0 5px rgba(13, 110, 253, 0.2); }
    50% { box-shadow: 0 0 20px rgba(13, 110, 253, 0.4); }
    100% { box-shadow: 0 0 5px rgba(13, 110, 253, 0.2); }
}

/* Navbar Styles */
.navbar {
    background-color: var(--card-bg) !important;
    border-bottom: 1px solid var(--border-color);
    padding: 1rem 0;
}

.navbar-brand {
    color: var(--text-color) !important;
    font-weight: 600;
    font-size: 1.5rem;
}

.nav-link {
    color: var(--text-color) !important;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-color) !important;
}

/* Hero Section */
.hero {
    padding-top: 120px;
    padding-bottom: 120px;
    background: var(--dark-bg);
    overflow: hidden;
    position: relative;
}

.hero-text {
    animation: fadeIn 1s ease-out;
    position: relative;
    z-index: 4;
}

.hero-image {
    position: relative;
    z-index: 3;
    width: 100%;
}

.hero-image img {
    max-width: 120%;
    height: auto;
    border-radius: 20px;
    transition: transform 0.3s ease;
    animation: floatImage 4s ease-in-out infinite;
}

@keyframes floatImage {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
    100% {
        transform: translateY(0);
    }
}

/* Remove hover effect since we have floating animation */
.hero-image img:hover {
    transform: none;
}

/* Credit Cards */
.credit-card {
    background: var(--gradient-primary);
    border: none;
    border-radius: 15px;
    color: white;
    width: 300px;
    height: 190px;
    position: absolute;
    box-shadow: var(--box-shadow);
    transition: all 0.3s ease;
}

.card1 {
    top: 20%;
    left: 50%;
    transform: translateX(-50%) rotate(-15deg);
    z-index: 2;
}

.card2 {
    top: 30%;
    left: 50%;
    transform: translateX(-40%) rotate(-5deg);
    z-index: 1;
}

.chip {
    width: 50px;
    height: 40px;
    background: linear-gradient(135deg, #ffd700, #ffa500);
    border-radius: 8px;
}

.card-number {
    font-size: 1.4rem;
    letter-spacing: 2px;
}

.card-info {
    font-size: 0.8rem;
    text-transform: uppercase;
}

/* Phone Mockup */
.phone-mockup {
    position: absolute;
    top: 10%;
    left: 50%;
    transform: translateX(-50%) rotate(5deg);
    width: 280px;
    height: 560px;
    background: linear-gradient(145deg, #2a2a2a, #1a1a1a);
    border-radius: 30px;
    padding: 15px;
    box-shadow: var(--box-shadow);
    z-index: 3;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, #1a1a1a, #0f0f0f);
    border-radius: 25px;
    padding: 20px;
    color: white;
    overflow: hidden;
}

.app-status-bar {
    font-size: 0.8rem;
    opacity: 0.8;
    margin-bottom: 2rem;
}

.balance-section {
    background: var(--gradient-primary);
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 2rem;
}

.balance-amount {
    font-size: 2rem;
    font-weight: 600;
    margin: 0;
}

.action-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.action-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
}

/* Payment Cards */
.payment-options {
    position: relative;
    z-index: 5;
    background: var(--dark-bg);
}

.payment-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    transition: all 0.3s ease;
    margin-top: 30px;
    position: relative;
    overflow: hidden;
}

.payment-card::before {
    display: none;
}

.payment-card .card-body {
    position: relative;
    z-index: 1;
}

.payment-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow);
    border-color: var(--primary-color);
}

.payment-label {
    background: var(--gradient-primary);
    color: white;
    padding: 1rem 2rem;
    border-radius: 30px;
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    font-weight: 500;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(13, 110, 253, 0.3);
    z-index: 2;
}

.payment-icon {
    color: var(--primary-color);
    animation: pulse 2s infinite;
    margin-bottom: 2rem;
}

.payment-icon i {
    filter: drop-shadow(0 0 10px rgba(13, 110, 253, 0.3));
}

.payment-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.payment-card p {
    font-size: 1.1rem;
    opacity: 0.9;
    line-height: 1.6;
}

.payment-card .btn {
    padding: 1rem 1.5rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Feature Cards */
.feature-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    transition: all 0.3s ease;
    overflow: hidden;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow);
}

.feature-card .card-title {
    color: var(--text-color);
    font-size: 1.3rem;
}

.feature-card .text-primary {
    color: var(--primary-color) !important;
}

/* FAQ Section */
.faq {
    position: relative;
    z-index: 5;
}

.accordion-item {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    margin-bottom: 1rem;
}

.accordion-button {
    background: var(--card-bg);
    color: var(--text-color);
    border: none;
    padding: 1.5rem;
}

.accordion-button:not(.collapsed) {
    background: var(--gradient-primary);
    color: white;
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
    background: var(--card-bg);
    color: var(--text-color);
    padding: 1.5rem;
}

/* Footer */
.footer {
    background: var(--card-bg);
    border-top: 1px solid var(--border-color);
}

/* Custom Bootstrap Overrides */
.btn-primary {
    background: var(--gradient-primary);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 500;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--box-shadow);
}

.btn-outline-light {
    border-color: var(--border-color);
    transition: all 0.3s ease;
}

.btn-outline-light:hover {
    transform: translateY(-3px);
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.badge {
    font-weight: 500;
}

/* Responsive Adjustments */
@media (min-width: 992px) {
    .hero-image {
        position: absolute;
        right: -100px;
        top: 60%;
        transform: translateY(-50%);
        width: 600px;
        height: 600px;
    }

    .card1 {
        left: 0;
        transform: rotate(-15deg);
    }

    .card2 {
        left: 40px;
        transform: rotate(-5deg);
    }

    .phone-mockup {
        right: 0;
        left: auto;
        transform: rotate(5deg);
    }
}

@media (max-width: 991px) {
    .hero {
        padding-top: 100px;
        padding-bottom: 60px;
    }

    .hero-image {
        margin-top: 40px;
        width: 100%;
    }

    .hero-image img {
        max-width: 100%;
    }

    .floating-cards {
        transform: scale(0.8);
    }
}

@media (max-width: 768px) {
    .hero {
        padding-top: 80px;
        padding-bottom: 40px;
    }

    .hero-text h1 {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .hero {
        padding-top: 60px;
        padding-bottom: 30px;
    }

    .hero-text h1 {
        font-size: 1.8rem;
    }

    .payment-label {
        font-size: 0.9rem;
        padding: 0.7rem 1.2rem;
        top: -15px;
    }

    .payment-card .card-body {
        padding: 3.5rem 1.2rem 1.5rem !important;
    }

    .payment-icon i {
        font-size: 3em;
    }

    .navbar-brand svg {
        width: 200px;
        height: auto;
    }
}

/* Additional Responsive Fixes */
.navbar-collapse {
    background-color: transparent;
    padding: 1rem;
    border-radius: 10px;
}

@media (max-width: 991px) {
    .navbar-collapse {
        margin-top: 1rem;
    }

    .social-links {
        margin-top: 1rem;
        justify-content: center;
        font-size: 16pt;
    }
}

/* Features Section */
.features {
    background: var(--dark-bg);
    position: relative;
    z-index: 5;
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    position: relative;
    display: inline-block;
}

.gradient-text::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.feature-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    transition: all 0.3s ease;
    overflow: hidden;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow);
    border-color: var(--primary-color);
}

.feature-card::before {
    display: none;
}

.feature-icon-wrapper {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    position: relative;
    transform: rotate(45deg);
    margin-left: auto;
    margin-right: auto;
}

.feature-icon {
    font-size: 2rem;
    color: white;
    transform: rotate(-45deg);
}

.time-display {
    text-align: center;
}

.time-block {
    background: rgba(255, 255, 255, 0.05);
    padding: 1rem;
    border-radius: 15px;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.time-block:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

.time-separator {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1rem 0;
}

.line {
    flex: 1;
    height: 2px;
    background: var(--border-color);
    margin: 0 10px;
}

.features-list .feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    padding: 0.8rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.features-list .feature-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
}

.feature-check {
    width: 30px;
    height: 30px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
}

.feature-check i {
    color: white;
    font-size: 0.9rem;
}

.security-features {
    text-align: center;
}

.security-item {
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.security-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

.security-item i {
    font-size: 2rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.security-item p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0.9;
}

/* Responsive Features */
@media (max-width: 768px) {
    .feature-icon-wrapper {
        width: 60px;
        height: 60px;
    }

    .feature-icon {
        font-size: 1.5rem;
    }

    .feature-card .card-body {
        padding: 1.5rem !important;
    }

    .features-list .feature-item {
        padding: 0.6rem;
    }

    .security-item {
        padding: 0.8rem;
    }
}

@media (max-width: 576px) {
    .gradient-text::after {
        width: 60px;
    }

    .feature-card {
        margin-bottom: 1rem;
    }

    .time-block, .security-item {
        padding: 0.8rem;
    }
}

/* FAQ Section */
.faq {
    position: relative;
    z-index: 5;
}

.accordion-button {
    white-space: normal;
    text-align: left;
}

/* Footer Responsive */
.footer .social-links {
    flex-wrap: wrap;
    justify-content: center;
}

.footer .btn {
    margin: 0.5rem;
}

/* Animation Adjustments */
@media (max-width: 768px) {
    [data-aos] {
        opacity: 1 !important;
        transform: none !important;
    }
}

/* Info Section Styles */
.info-section {
    background: var(--dark-bg);
    position: relative;
    z-index: 5;
}

.info-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    transition: all 0.3s ease;
    overflow: hidden;
}

.info-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow);
    border-color: var(--primary-color);
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(145deg, rgba(13, 110, 253, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.info-card:hover::before {
    opacity: 1;
}

.telegram-title {
    font-size: 1.5rem;
    color: var(--text-color);
    opacity: 0.9;
}

.telegram-address {
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.info-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.info-icon i {
    font-size: 2rem;
    color: white;
}

.info-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.info-text {
    font-size: 1.1rem;
    opacity: 0.9;
    line-height: 1.6;
}

.working-hours {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hour-item {
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.hour-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
}

.hour-item i {
    color: var(--primary-color);
    font-size: 0.8rem;
}

@media (max-width: 768px) {
    .telegram-address {
        font-size: 2rem;
    }

    .info-icon {
        width: 60px;
        height: 60px;
    }

    .info-icon i {
        font-size: 1.5rem;
    }

    .info-title {
        font-size: 1.3rem;
    }

    .info-text {
        font-size: 1rem;
    }

    .hour-item {
        font-size: 1.1rem;
        padding: 0.6rem;
    }
}

/* Section Styles */
section {
    padding: 5rem 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    text-align: center;
}

.section-subtitle {
    color: var(--primary-color);
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

/* Card Styles */
.card {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow);
}

.card-body {
    padding: 2rem;
}

.card-title {
    color: var(--text-color);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.card-text {
    color: var(--text-color);
    opacity: 0.8;
}

/* Features Section */
.feature-icon {
    width: 64px;
    height: 64px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.feature-icon i {
    font-size: 1.5rem;
    color: white;
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.feature-description {
    color: var(--text-color);
    opacity: 0.8;
    line-height: 1.6;
}

/* Payment Options */
.payment-option {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.payment-option:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow);
}

.payment-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.payment-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.payment-description {
    color: var(--text-color);
    opacity: 0.8;
    margin-bottom: 1.5rem;
}

/* FAQ Accordion */
.accordion {
    --bs-accordion-bg: var(--card-bg);
    --bs-accordion-border-color: var(--border-color);
    --bs-accordion-btn-color: var(--text-color);
    --bs-accordion-btn-bg: var(--card-bg);
    --bs-accordion-active-bg: var(--card-bg);
    --bs-accordion-active-color: var(--primary-color);
    --bs-accordion-btn-focus-border-color: var(--primary-color);
    --bs-accordion-btn-focus-box-shadow: 0 0 0 0.25rem rgba(var(--primary-rgb), 0.25);
}

.accordion-item {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
}

.accordion-button {
    font-weight: 500;
}

.accordion-button:not(.collapsed) {
    box-shadow: none;
}

.accordion-body {
    color: var(--text-color);
    opacity: 0.8;
    line-height: 1.6;
}

/* Footer */
footer {
    background-color: var(--card-bg);
    border-top: 1px solid var(--border-color);
    padding: 4rem 0;
    margin-top: 4rem;
}

.footer-title {
    color: var(--text-color);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--text-color);
    opacity: 0.8;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--primary-color);
}

.footer-bottom {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.footer-bottom p {
    color: var(--text-color);
    opacity: 0.8;
    margin: 0;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: var(--text-color);
    opacity: 0.8;
    transition: opacity 0.3s ease, color 0.3s ease;
}

.social-links a:hover {
    opacity: 1;
    color: var(--primary-color);
}

/* Loader Styles */
.loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark-bg);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.loader-wrapper.fade-out {
    opacity: 0;
    visibility: hidden;
}

.loader {
    width: 50px;
    height: 50px;
    border: 3px solid var(--border-color);
    border-radius: 50%;
    border-top-color: var(--primary-color);
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Promo Code Section */
.promo-section {
    background: linear-gradient(45deg, rgba(13, 110, 253, 0.05), rgba(10, 88, 202, 0.05));
    border-top: 1px solid rgba(13, 110, 253, 0.1);
    border-bottom: 1px solid rgba(13, 110, 253, 0.1);
}

.promo-code {
    position: relative;
    overflow: hidden;
}

.promo-badge {
    background: var(--gradient-primary);
    border: none;
    padding: 1rem 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(13, 110, 253, 0.3);
    transform: translateY(0);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.promo-badge:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(13, 110, 253, 0.4);
}

.promo-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transition: 0.5s;
}

.promo-badge:hover::before {
    left: 100%;
}

.promo-text {
    font-size: 1.25rem;
    font-weight: 600;
    color: white;
    margin: 0;
    display: inline-block;
}

.typewriter {
    border-right: 3px solid;
    width: 0;
    white-space: nowrap;
    overflow: hidden;
    animation: cursor 1s step-end infinite;
}

@keyframes cursor {
    from, to { border-color: transparent }
    50% { border-color: white; }
}

.promo-icon {
    margin-right: 0.75rem;
    animation: bounce 2s ease infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-5px); }
    60% { transform: translateY(-3px); }
}

@media (max-width: 576px) {
    .promo-text {
        font-size: 1rem;
    }
    
    .promo-badge {
        padding: 0.75rem 1.5rem;
    }
}
.hero {
  margin-top: 50px;
}
.hero {
  margin-top: 90px;
}

@media (max-width: 768px) {
  .hero {
    margin-top: 100px;
  }
}
.payment-scroll::-webkit-scrollbar {
  height: 6px;
}
.payment-scroll::-webkit-scrollbar-thumb {
  background: #0d6efd;
  border-radius: 10px;
}
.payment-scroll::-webkit-scrollbar-track {
  background: transparent;
}
#promoText {
  color: white;
  font-size: 1.2rem;
  font-weight: 600;
  display: inline-block;
  min-width: 250px;
  white-space: nowrap;
  overflow: hidden;
}
