:root {
    --primary: #ff69b4;
    --primary-light: #ffd1e6;
    --primary-dark: #d44a91;
    --white: #ffffff;
    --gray: #f5f5f5;
    --dark: #333;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}
    
.feature-card ul li::before {
    opacity: 1;
    transform: scale(1.2);
    color: var(--primary-light);
}

/* Video Showcase Styles */
.video-showcase {
    padding: 4rem 2rem;
    background: rgba(0, 0, 0, 0.2);
    margin: 4rem 0;
    position: relative;
}

.video-showcase h2 {
    position: relative;
    z-index: 1; 
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, var(--primary), #ff9ecd);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: titleFloat 3s ease-in-out infinite;
}

.showcase-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 2rem;
    position: relative;
}

.showcase-content {
    flex: 1;
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 105, 180, 0.15);
    backdrop-filter: blur(10px);
}

.video-carousel {
    display: flex;
    transition: transform 0.5s ease-in-out;
    height: 100%;
}

.carousel-slide {
    min-width: 100%;
    display: flex;
    flex-direction: column;
    padding: 2rem;
}

.video-wrapper {
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
    border-radius: 16px;
    position: relative;
    background: rgba(0, 0, 0, 0.3);
}

.video-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
    background: rgba(0, 0, 0, 0.2);
}

/* Custom Video Player Styles */
.demo-video::-webkit-media-controls {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 100%);
}

.demo-video::-webkit-media-controls-panel {
    display: flex !important;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.demo-video:hover::-webkit-media-controls-panel {
    opacity: 1;
}

.demo-video::-webkit-media-controls-play-button {
    background-color: var(--primary);
    border-radius: 50%;
    transition: transform 0.2s ease;
}

.demo-video::-webkit-media-controls-play-button:hover {
    transform: scale(1.1);
}

.demo-video::-webkit-media-controls-current-time-display,
.demo-video::-webkit-media-controls-time-remaining-display {
    color: #fff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.demo-video::-webkit-media-controls-timeline {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    height: 3px;
    transition: height 0.2s ease;
}

.demo-video::-webkit-media-controls-timeline:hover {
    height: 5px;
}

.demo-video::-webkit-media-controls-volume-slider {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    padding: 0 5px;
}

.demo-video::-webkit-media-controls-mute-button,
.demo-video::-webkit-media-controls-fullscreen-button {
    opacity: 0.8;
    transition: opacity 0.2s ease;
}

.demo-video::-webkit-media-controls-mute-button:hover,
.demo-video::-webkit-media-controls-fullscreen-button:hover {
    opacity: 1;
}

/* Firefox specific styles */
.demo-video::-moz-range-track {
    background: rgba(255, 255, 255, 0.2);
}

.demo-video::-moz-range-thumb {
    background: var(--primary);
    border: none;
    height: 12px;
    width: 12px;
    border-radius: 50%;
}

.video-wrapper:hover video {
    transform: scale(1.02);
}

.video-info {
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    border: 1px solid rgba(255, 105, 180, 0.1);
}

.style-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 12px rgba(255, 105, 180, 0.2);
}

.style-badge svg {
    width: 20px;
    height: 20px;
}

.prompt-container {
    text-align: left;
}

.prompt-container h3 {
    font-size: 1.1rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.prompt-text {
    font-family: 'Poppins', monospace;
    font-size: 0.9rem;
    line-height: 1.6;
    color: #ccc;
    background: rgba(0, 0, 0, 0.2);
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 105, 180, 0.1);
    white-space: pre-wrap;
    margin: 0;
}

.nav-arrow {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 105, 180, 0.2);
    color: white;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.nav-arrow:hover {
    background: rgba(255, 105, 180, 0.2);
    transform: scale(1.1);
}

.nav-arrow svg {
    width: 24px;
    height: 24px;
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
    padding: 1rem;
}

.indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator:hover {
    background: rgba(255, 105, 180, 0.4);
}

.indicator.active {
    background: var(--primary);
    transform: scale(1.2);
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
    .video-showcase {
        padding: 2rem 1rem;
    }

    .showcase-container {
        gap: 1rem;
    }

    .nav-arrow {
        width: 40px;
        height: 40px;
    }

    .carousel-slide {
        padding: 1rem;
    }

    .video-info {
        margin-top: 1.5rem;
        padding: 1rem;
    }

    .prompt-text {
        font-size: 0.8rem;
    }
}


body {
    background-color: #1a1a1a;
    color: var(--white);
    overflow-x: hidden;
}

.animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: linear-gradient(45deg, #1a1a1a, #2a1a2a);
    overflow: hidden;
}

.particles {
    position: absolute;
    width: 100%;
    height: 100%;
}

.particle {
    position: absolute;
    background: var(--primary-light);
    border-radius: 50%;
    opacity: 0.3;
    animation: float 15s infinite;
}

@keyframes float {
    0% {
        transform: translateY(0) translateX(0);
        opacity: 0.3;
    }
    50% {
        transform: translateY(-100px) translateX(50px);
        opacity: 0.6;
    }
    100% {
        transform: translateY(0) translateX(0);
        opacity: 0.3;
    }
}

.navbar {
    background: rgba(26, 26, 26, 0.95);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 105, 180, 0.1);
}

.nav-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.logo {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    margin-left: 2rem;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary);
}

.main-content {
    padding-top: 100px;
    min-height: 100vh;
}

.hero {
    text-align: center;
    padding: 4rem 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--primary), #ff9ecd);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: titleFloat 3s ease-in-out infinite;
}

@keyframes titleFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.hero p {
    font-size: 1.2rem;
    color: #ccc;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    max-width: 1200px;
    margin: 2rem auto 4rem;
    padding: 2rem;
    perspective: 1000px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 24px;
    padding: 2.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 105, 180, 0.15);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.15);
    animation: featureCardIn 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    opacity: 0;
}

@keyframes featureCardIn {
    from {
        opacity: 0;
        transform: translateY(30px) rotateX(-10deg);
    }
    to {
        opacity: 1;
        transform: translateY(0) rotateX(0);
    }
}

.feature-card:nth-child(1) { animation-delay: 0.2s; }
.feature-card:nth-child(2) { animation-delay: 0.4s; }

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, 
        transparent,
        var(--primary),
        transparent
    );
    transform: scaleX(0);
    transition: transform 0.6s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card::after {
    content: '';
    position: absolute;
    inset: 1px;
    border-radius: 24px;
    background: linear-gradient(180deg, 
        rgba(255, 255, 255, 0.03) 0%,
        rgba(255, 105, 180, 0.05) 100%
    );
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px) rotateX(5deg);
    border-color: var(--primary);
    box-shadow: 
        0 15px 35px rgba(255, 105, 180, 0.2),
        0 0 20px rgba(255, 105, 180, 0.1);
}

.feature-card:hover::after {
    opacity: 1;
}

.feature-card h3 {
    color: var(--primary);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.feature-card p {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.feature-card ul {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 0;
}

.feature-card ul li {
    color: #ccc;
    margin: 1rem 0;
    padding-left: 2rem;
    position: relative;
    transition: transform 0.3s ease;
}

.feature-card ul li::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-size: 1.1rem;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.feature-card:hover ul li {
    transform: translateX(5px);
}

.feature-card:hover ul li::before {
    opacity: 1;
    transform: scale(1.2);
    color: var(--primary-light);
}

.packages {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    max-width: 1400px;
    margin: 4rem auto;
    padding: 0 2rem;
    perspective: 1000px;
}

.package {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 24px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 105, 180, 0.15);
    backdrop-filter: blur(10px);
    animation: fadeInUp 0.5s ease-out forwards;
    opacity: 0;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.15);
    display: flex;
    flex-direction: column;
    min-height: 500px;
}

.package::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 105, 180, 0.1),
        transparent
    );
    transition: 0.5s;
}

.package:hover::before {
    left: 100%;
}

.package::after {
    content: '';
    position: absolute;
    inset: 1px;
    border-radius: 24px;
    background: linear-gradient(180deg, 
        rgba(255, 255, 255, 0.03) 0%,
        rgba(255, 105, 180, 0.05) 100%
    );
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.package:hover {
    transform: translateY(-15px) rotateX(5deg);
    border-color: var(--primary);
    box-shadow: 
        0 15px 35px rgba(255, 105, 180, 0.2),
        0 0 20px rgba(255, 105, 180, 0.1),
        0 0 0 1px rgba(255, 105, 180, 0.3);
}

.package:hover::after {
    opacity: 1;
}

.package h2 {
    color: var(--primary);
    font-size: 2rem;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.package h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent,
        var(--primary),
        transparent
    );
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.package:hover h2::after {
    transform: scaleX(1);
}

.package .price {
    font-size: 3rem;
    font-weight: 600;
    background: linear-gradient(135deg, var(--white), var(--primary-light));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.package:hover .price {
    transform: scale(1.1);
}

.package .credits {
    font-size: 1.3rem;
    color: #ccc;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 1rem;
}

.package .credits::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: var(--primary);
    opacity: 0.5;
}

.custom-credits {
    margin-top: 1.5rem;
}

.custom-credits input {
    width: 100%;
    padding: 1rem;
    border: 1px solid rgba(255, 105, 180, 0.3);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--white);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-align: center;
}

.custom-credits input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 15px rgba(255, 105, 180, 0.2);
    background: rgba(255, 255, 255, 0.08);
}

.custom-credits input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.package-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    margin-bottom: 2rem;
}

.btn {
    background: linear-gradient(135deg, #0070ba, #003087);
    color: white;
    border: none;
    padding: 1.2rem 1rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(0, 112, 186, 0.3);
    margin-top: auto;
}

.btn .paypal-logo {
    height: 20px;
    width: auto;
    margin-right: 4px;
}

.btn .button-text {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn:hover {
    background: linear-gradient(135deg, #003087, #0070ba);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 112, 186, 0.4);
}

.btn .button-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    animation: shine 8s infinite;
}

@keyframes shine {
    0% {
        left: -100%;
        opacity: 0.5;
    }
    20% {
        left: 100%;
        opacity: 0.5;
    }
    100% {
        left: 100%;
        opacity: 0;
    }
}

.btn:disabled {
    background: linear-gradient(135deg, #a1a1a1, #7a7a7a);
    cursor: not-allowed;
    box-shadow: none;
    transform: none;
    opacity: 0.7;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.1),
        transparent
    );
    transition: 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn:active {
    transform: translateY(0);
    background: #003087;
    box-shadow: 0 3px 10px rgba(0, 112, 186, 0.2);
}

/* PayPal button animation */
@keyframes paypalPulse {
    0% { box-shadow: 0 0 0 0 rgba(0, 112, 186, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(0, 112, 186, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 112, 186, 0); }
}

.btn:not(:disabled) {
    animation: paypalPulse 2s infinite;
}

.package ul {
    list-style: none;
    padding: 1.5rem;
    margin: 1.5rem 0;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    border: 1px solid rgba(255, 105, 180, 0.1);
}

.package ul li {
    margin: 0.8rem 0;
    color: #ccc;
    position: relative;
    padding-left: 1.5rem;
}

.package ul li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--primary);
}

/* Price and Discount Styles - No Animations */
.price-container {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.5rem;
    /* animation removed */
}

.price-main {
    font-weight: 700;
    font-size: 1.8rem;
    color: var(--white);
    text-shadow: 0 0 20px rgba(255, 105, 180, 0.2);
    transform-origin: left;
    padding-left: 40px;
    background: linear-gradient(135deg, #af04ff, #f5b52c);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.price-strike {
    font-size: 1.1rem;
    font-weight: 200;
    position: relative;
    background: linear-gradient(135deg, #6a76ff, #ff3d81);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0.8;
}


.price-strike::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -2px;
    right: -2px;
    height: 2px;
    background: linear-gradient(90deg,
        transparent,
        rgba(255, 105, 180, 0.8),
        rgba(255, 105, 180, 0.8),
        transparent
    );
    transform: scaleX(1); /* set final state */
    /* animation removed */
    will-change: transform;
}

.discount-container {
    display: flex;
    overflow: visible;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.2rem;
    /* animation removed */
}


.discount-badge {
    background: linear-gradient(135deg, #6a76ff, #ff3d81);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    padding: 0.4rem 0.8rem;
    border-radius: 999px;
    font-weight: 600;
    font-size: 1.0rem;
    letter-spacing: 0.5px;
    /* solid border with gradient color */
    border: 2px solid;
    border-image-slice: 1;
    border-image-source: linear-gradient(135deg, #6a76ff, #ff3d81);
}

.discount-expiry {
    font-size: 0.85rem;
    color: #ffd1e6;
    background: rgba(255, 255, 255, 0.05);
    padding: 0.4rem 0.8rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 105, 180, 0.1);
    transition: all 0.3s ease;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.discount-expiry:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 105, 180, 0.2);
}

.error-message {
    display: none;
    background: rgba(255, 51, 51, 0.1);
    color: #ff3333;
    padding: 1rem;
    border-radius: 10px;
    margin-top: 2rem;
    text-align: center;
    animation: fadeIn 0.3s ease;
    border: 1px solid rgba(255, 51, 51, 0.3);
}

footer {
    background: rgba(26, 26, 26, 0.95);
    padding: 2rem 0;
    margin-top: 4rem;
    border-top: 1px solid rgba(255, 105, 180, 0.1);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    margin-left: 2rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.package:nth-child(1) { animation-delay: 0.1s; }
.package:nth-child(2) { animation-delay: 0.2s; }
.package:nth-child(3) { animation-delay: 0.3s; }
.package:nth-child(4) { animation-delay: 0.4s; }

/* Payment Status Pages */
.payment-status {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 24px;
    padding: 3rem;
    text-align: center;
    max-width: 600px;
    margin: 2rem auto;
    border: 1px solid rgba(255, 105, 180, 0.15);
    backdrop-filter: blur(10px);
    animation: fadeInUp 0.5s ease-out forwards;
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.15);
    position: relative;
    overflow: hidden;
}

.payment-status::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 105, 180, 0.1),
        transparent
    );
    transition: 0.5s;
}

.payment-status:hover::before {
    left: 100%;
}

.status-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    display: inline-block;
    border-radius: 50%;
    width: 100px;
    height: 100px;
    line-height: 100px;
    animation: iconScale 0.5s ease-out forwards;
}

.success .status-icon {
    background: linear-gradient(135deg, rgba(46, 213, 115, 0.2), rgba(46, 213, 115, 0.1));
    color: #2ed573;
    text-shadow: 0 0 20px rgba(46, 213, 115, 0.5);
}

.cancelled .status-icon {
    background: linear-gradient(135deg, rgba(255, 71, 87, 0.2), rgba(255, 71, 87, 0.1));
    color: #ff4757;
    text-shadow: 0 0 20px rgba(255, 71, 87, 0.5);
}

@keyframes iconScale {
    from {
        transform: scale(0);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.payment-status h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--primary), #ff9ecd);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: titleFloat 3s ease-in-out infinite;
}

.credits-info {
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    border: 1px solid rgba(255, 105, 180, 0.2);
}

.credits-added {
    font-size: 2.5rem;
    font-weight: 600;
    color: #2ed573;
    display: block;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 20px rgba(46, 213, 115, 0.3);
}

.total-credits {
    font-size: 1.2rem;
    color: #ccc;
}

.status-message {
    font-size: 1.2rem;
    color: #ccc;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.action-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.return-btn {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
}

.return-btn:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    transform: translateY(-2px);
}

.try-again-btn {
    background: linear-gradient(135deg, #2ed573, #1abc9c);
}

.try-again-btn:hover {
    background: linear-gradient(135deg, #1abc9c, #2ed573);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .features {
        grid-template-columns: 1fr;
    }
    
    .nav-links {
        display: none;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .footer-links a {
        margin: 0 1rem;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }

    .payment-status {
        margin: 2rem 1rem;
        padding: 2rem 1rem;
    }

    .action-buttons {
        flex-direction: column;
    }
}

/* Pricing Table Styles */
.pricing-info-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.cost-info-box {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    text-align: center;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.cost-info-box h3 {
    color: var(--primary);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.cost-info-box p {
    margin: 0;
    font-size: 1.1rem;
}

.cost-info-box strong {
    color: var(--primary);
    font-weight: 600;
}

.pricing-table-container {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 3rem;
}

.pricing-table-container h2 {
    text-align: center;
    color: var(--primary);
    margin-bottom: 2rem;
    font-size: 2rem;
    font-weight: 600;
}

.table-wrapper {
    overflow-x: auto;
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.2);
}

.service-pricing-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    color: var(--white);
    font-size: 1rem;
    line-height: 1.6;
}

.service-pricing-table th,
.service-pricing-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.service-pricing-table th {
    background: rgba(255, 255, 255, 0.05);
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.service-pricing-table tbody tr {
    transition: background-color 0.3s ease;
}

.service-pricing-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.05);
}

.service-pricing-table td:last-child {
    font-family: 'Monaco', 'Consolas', monospace;
    color: var(--primary);
    font-weight: 600;
    text-align: center;
}

@media (max-width: 768px) {
    .pricing-table-container {
        padding: 1rem;
    }
    
    .service-pricing-table {
        font-size: 0.9rem;
    }
    
    .service-pricing-table th,
    .service-pricing-table td {
        padding: 0.75rem;
    }
}

.pricing-section {
    text-align: center;
    padding: 4rem 2rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-section .section-title {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 1rem;
    font-weight: 600;
    text-shadow: 0 0 20px rgba(255, 105, 180, 0.3);
}

.pricing-section .section-subtitle {
    font-size: 1.2rem;
    color: var(--white);
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto 2rem;
    line-height: 1.6;
}