/* ==========================================================================
   Global Styles
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #7CE28B;
    --primary-color-transparent: rgba(124, 226, 139, 0.2);
}

body {
    background-color: #0a0a0a;
    min-height: 100vh;
    font-family: 'Inter', sans-serif;
    color: white;
    overflow-x: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    margin: 0;
    padding-top: 80px;
}

/* ==========================================================================
   Visual Effects
   ========================================================================== */
.blur-effect {
    position: absolute;
    top: 100px;
    width: 1000px;
    height: 1000px;
    background: radial-gradient(circle, rgb(141, 233, 155) 0%, rgba(141, 233, 155, 0) 70%);
    filter: blur(100px);
    opacity: 100;
    transform: translate(-50%, -50%) translateZ(0);
    will-change: transform;
    pointer-events: none;
    z-index: -1;
}

.blur-effect-2 {
    position: absolute;
    top: 1300px;
    left: 100%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgb(141, 233, 155) 0%, rgba(141, 233, 155, 0) 70%);
    filter: blur(100px);
    opacity: 100;
    transform: translate(-50%, -50%) translateZ(0);
    will-change: transform;
    pointer-events: none;
    z-index: -1;
}

.blur-effect-3 {
    position: absolute;
    top: 2500px;
    left: 0%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgb(141, 233, 155) 0%, rgba(141, 233, 155, 0) 70%);
    filter: blur(100px);
    opacity: 100;
    transform: translate(-50%, -50%) translateZ(0);
    will-change: transform;
    pointer-events: none;
    z-index: -1;
}

@keyframes float {
    0%, 100% {
        transform: translate(-50%, -50%);
    }    
    50% {
        transform: translate(-30%, -30%);
    }    
}

.background-effects {
    position: relative;
}

.background-effects::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(100px);
    -webkit-backdrop-filter: blur(100px);
    z-index: -1;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.5);
        opacity: 0.2;
    }
    100% {
        transform: scale(1);
        opacity: 0.5;
    }
}

/* ==========================================================================
   Header Section
   ========================================================================== */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1rem 10rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-border {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--primary-color);
    mix-blend-mode: screen;
    opacity: 0.35;
}

.logo {
    cursor: pointer;
    display: flex;
    align-items: center;
    transition: transform 0.3s ease;
}

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

.logo img {
    height: 75px;
    width: auto;
}

.header-right {
    display: flex;
    align-items: center;
}

.login-btn {
    padding: 0.7rem 1.8rem;
    background: var(--primary-color);
    color: #0a0a0a;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 10px rgba(124, 226, 139, 0.2);
    position: relative;
    overflow: hidden;
}

.login-btn:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.login-btn:hover:before {
    width: 200px;
    height: 200px;
}

.login-btn:hover {
    background: #8de99b;
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(124, 226, 139, 0.4);
}

.login-btn:active {
    transform: translateY(1px);
    box-shadow: 0 2px 8px rgba(124, 226, 139, 0.3);
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 2rem;
    position: relative;
    overflow: hidden;
}

.hero-text {
    text-align: center;
    max-width: 800px;
}

.hero-text h1 {
    font-size: 4.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: white;
}

.hero-text h2 {
    font-size: 3.2rem;
    font-weight: 900;
    letter-spacing: 0.2em;
    background: linear-gradient(45deg, #7CE28B 0%, #8de99b 50%, #9FEDD7 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    opacity: 1;
    transform: translateY(-1rem);
}

.footer {
    margin-top: auto;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    padding: 1.5rem 0;
    z-index: 1000;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-brand {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(to right, #7CE28B, #8de99b, #9FEDD7);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.footer-support {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-support:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.footer-support svg {
    transition: transform 0.3s ease;
}

.footer-support:hover svg {
    transform: scale(1.1);
}

/* ==========================================================================
   Features Section
   ========================================================================== */
.features {
    padding: 6rem 2rem;
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 0 auto;
    max-width: 1400px;
    padding: 2rem;
}

.features-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.features-header h3 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.features-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.features-header p {
    color: #ffffff90;
    font-size: 1.1rem;
    line-height: 1.6;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.feature-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(124, 226, 139, 0.3);
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: rgba(124, 226, 139, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    background: rgba(124, 226, 139, 0.2);
    transform: scale(1.1);
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: white;
}

.feature-card p {
    color: #ffffff90;
    line-height: 1.6;
}

/* ==========================================================================
   Image Preview Section
   ========================================================================== */
.image-preview {
    padding: 6rem 0;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

.preview-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.preview-header h3 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.preview-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.preview-header span {
    color: #ffffff90;
    font-size: 1.1rem;
    line-height: 1.6;
}

.image-carousel {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
}

.carousel-track {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 2rem;
}

.carousel-slide {
    position: relative;
    transition: transform 0.3s ease;
}

.carousel-slide img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.carousel-slide:hover {
    transform: scale(1.05);
}

.carousel-slide img {
    transition: transform 0.3s ease;
}

.carousel-slide img:hover {
    transform: scale(1.02);
}

/* ==========================================================================
   Pricing Box
   ========================================================================== */
.pricing {
    padding: 6rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
    position: relative;
}

.pricing-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.pricing-header h3 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.pricing-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.pricing-header p {
    color: #ffffff90;
    font-size: 1.1rem;
    line-height: 1.6;
}

.pricing-box {
    width: 100%;
    max-width: 1000px;
    height: 350px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 3rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.pricing-box:hover {
    transform: translateY(-5px);
    border-color: rgba(124, 226, 139, 0.3);
    background: rgba(255, 255, 255, 0.08);
}

.pricing-badge {
    background: var(--primary-color);
    color: #0a0a0a;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    position: absolute;
    top: 2rem;
    left: 3rem;
    z-index: 1;
}

.pricing-left {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.pricing-amount {
    position: relative;
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    margin-top: 2rem;
}

.pricing-amount span {
    font-size: 1.2rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
}

.payment-methods {
    margin-top: -1rem;
}

.payment-methods h4 {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
}

.crypto-icons {
    display: flex;
    gap: 0.3rem;
    flex-wrap: wrap;
}

.crypto-icon {
    width: 48px;
    height: 48px;
    transition: transform 0.3s ease;
}

.crypto-icon:hover {
    transform: scale(1.1);
}

.pricing-divider {
    width: 1px;
    height: 100%;
    background: linear-gradient(180deg, 
        rgba(255, 255, 255, 0) 0%, 
        rgba(255, 255, 255, 0.1) 50%, 
        rgba(255, 255, 255, 0) 100%);
    margin: 0 auto;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 50px 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
}

.pricing-features li svg {
    flex-shrink: 0;
    color: var(--primary-color);
}

.pricing-button {
    margin-top: -1rem;
    padding: 1rem 2rem;
    background: var(--primary-color);
    color: #0a0a0a;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 50%;
}

.pricing-button:hover {
    background: #8de99b;
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(124, 226, 139, 0.4);
}

.pricing-button:active {
    transform: translateY(1px);
    box-shadow: 0 2px 8px rgba(124, 226, 139, 0.3);
}


/* Video loading states */
.video-loading {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2;
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.loading-error {
    color: #ff5757;
    background: rgba(255, 87, 87, 0.1);
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 14px;
    text-align: center;
}

