/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: white;
    background-color: #212121;
    overflow-x: hidden;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(33, 33, 33, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled .nav-container {
    padding: 10px 20px;
    min-height: 40px;
}

.navbar.scrolled .logo {
    width: 32px;
    height: 32px;
}

.navbar.scrolled .logo-text {
    font-size: 1.2rem;
}



.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s ease;
    min-height: 60px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.nav-logo:hover {
    text-decoration: none;
    color: inherit;
    opacity: 0.8;
}

.logo-img {
    height: 40px;
    transition: height 0.3s ease;
}

.navbar.scrolled .logo-img {
    height: 28px;
}

.logo-text {
    font-weight: 600;
    color: white;
    font-size: 20px;
    transition: font-size 0.3s ease;
}

.navbar.scrolled .logo-text {
    font-size: 16px;
}
    color: white;
}

.logo {
    width: 48px;
    height: 48px;
}

.logo-text {
    font-weight: 600;
    color: white;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-link {
    text-decoration: none;
    color: white;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: rgba(255, 255, 255, 0.7);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #0567E0;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-cta {
    display: flex;
    align-items: center;
}

/* Hero Section */
.hero {
    padding: 100px 0 30px;
    background: #212121;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    margin-top: 0;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero-logo {
    margin-bottom: 40px;
}

.hero-logo-img {
    width: 100px;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* Hero Video */
.hero-video {
    margin-bottom: 40px;
    margin-top: 30px;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.video-container {
    position: relative;
    width: 100%;
    max-width: 448px;
    aspect-ratio: 16 / 9;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: max-width 0.3s ease;
    background: #000;
    margin: 0;
    padding: 0;
    border: none;
    display: block;
}

.video-container.playing {
    max-width: 800px;
    background: #000;
    aspect-ratio: 16 / 9; /* Maintain 16:9 when playing */
}

/* YouTube Player container and iframe - force fill */
.video-container > *,
.video-container > div[id^="youtube-player"],
.video-container iframe {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    border: none !important;
    margin: 0 !important;
    padding: 0 !important;
    object-fit: fill !important;
}

/* Ensure YouTube Player's internal iframe fills container */
.video-container > div[id^="youtube-player"] iframe,
.video-container > div iframe,
.video-container div[id^="youtube-player"] iframe {
    width: 100% !important;
    height: 100% !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    border: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Force all YouTube Player elements to fill */
.video-container div,
.video-container span {
    box-sizing: border-box !important;
}

/* Remove any padding or margins from YouTube Player wrapper */
.video-container > div[id^="youtube-player"],
.video-container > div {
    padding: 0 !important;
    margin: 0 !important;
    width: 100% !important;
    height: 100% !important;
    min-width: 100% !important;
    min-height: 100% !important;
    max-width: 100% !important;
    max-height: 100% !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    overflow: hidden !important;
    box-sizing: border-box !important;
}

/* Force YouTube iframe to fill completely */
.video-container iframe[src*="youtube.com"],
.video-container iframe[src*="youtu.be"],
.video-container iframe {
    width: 100% !important;
    height: 100% !important;
    min-width: 100% !important;
    min-height: 100% !important;
    max-width: 100% !important;
    max-height: 100% !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    border: none !important;
    margin: 0 !important;
    padding: 0 !important;
    transform: scale(1) !important;
    object-fit: fill !important;
    box-sizing: border-box !important;
}

.video-preview {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    cursor: pointer;
    margin: 0;
    padding: 0;
    border: none;
}

.video-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    background-color: transparent;
    min-height: 100%;
    pointer-events: none;
    user-select: none;
    margin: 0;
    padding: 0;
    border: none;
    vertical-align: top;
}

.video-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: transform 0.2s ease;
    pointer-events: none;
}

.video-preview:hover .video-play-button {
    transform: translate(-50%, -50%) scale(1.1);
}

/* Navigation Divider */
.nav-divider {
    width: 100%;
    height: 1px;
    background: #2C2C2C;
    margin: 0;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1001;
    transition: all 0.3s ease;
}

/* Hero Divider */
.hero-divider {
    width: 100%;
    height: 1px;
    background: #2C2C2C;
    margin: 0;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    color: white;
}

.gradient-text {
    color: #0567E0;
}

.hero-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-pricing {
    text-align: center;
    margin-bottom: 32px;
}

.price-display {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 8px;
    margin-bottom: 8px;
}

.currency {
    font-size: 2rem;
    color: #666;
    vertical-align: top;
}

.amount {
    font-size: 4rem;
    font-weight: 700;
    color: white;
}

.period {
    font-size: 1.25rem;
    color: #666;
}

.pricing-description {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 0;
}

.hero-buttons {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 32px;
}

.hero-buttons .purchase-btn {
    flex: 1;
    max-width: 300px;
    padding: 16px 24px;
    font-size: 16px;
    min-height: 56px;
    white-space: nowrap;
}

.compatibility {
    color: #666;
    font-size: 0.9rem;
    text-align: center;
    margin: 8px 0 80px 0;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 16px;
    gap: 8px;
}

/* Make sure links with btn class look like buttons */
a.btn {
    text-decoration: none;
    color: inherit;
}

a.btn:hover {
    text-decoration: none;
    color: inherit;
}

.btn-primary {
    background: #0567E0;
    color: white;
    box-shadow: 0 4px 20px rgba(5, 103, 224, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(19, 41, 153, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-outline {
    background: transparent;
    color: #0567E0;
    border: 2px solid #0567E0;
}

.btn-outline:hover {
    background: #0567E0;
    color: white;
}

.nav-cta .btn {
    background: transparent;
    color: #0567E0;
    border: 2px solid #0567E0;
    padding: 8px 20px;
    font-size: 14px;
    min-width: 100px;
    transition: all 0.3s ease;
    box-shadow: none;
}

.nav-cta .btn:hover {
    background: #0567E0;
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(5, 103, 224, 0.3);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1002;
}

/* Show hamburger menu only on mobile */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: white;
    border-radius: 3px;
    transition: all 0.3s ease;
    transform-origin: center;
    display: block;
    position: relative;
    margin: 3px 0;
}

/* Force the X animation with CSS custom properties */
.mobile-menu-toggle.active span:nth-child(1) {
    --transform-1: rotate(45deg) translate(5px, 5px);
    --bg-1: #0567E0;
    transform: var(--transform-1, rotate(45deg) translate(5px, 5px)) !important;
    background: var(--bg-1, #0567E0) !important;
}

.mobile-menu-toggle.active span:nth-child(2) {
    --opacity-2: 0;
    --transform-2: scaleX(0);
    opacity: var(--opacity-2, 0) !important;
    transform: var(--transform-2, scaleX(0)) !important;
}

.mobile-menu-toggle.active span:nth-child(3) {
    --transform-3: rotate(-45deg) translate(5px, -5px);
    --bg-3: #0567E0;
    transform: var(--transform-3, rotate(-45deg) translate(5px, -5px)) !important;
    background: var(--bg-3, #0567E0) !important;
}

/* Ensure the animation works - multiple selectors for reliability */
.mobile-menu-toggle.active span:nth-child(1),
button.mobile-menu-toggle.active span:nth-child(1),
#mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px) !important;
    background: #0567E0 !important;
}

.mobile-menu-toggle.active span:nth-child(2),
button.mobile-menu-toggle.active span:nth-child(2),
#mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0 !important;
    transform: scaleX(0) !important;
}

.mobile-menu-toggle.active span:nth-child(3),
button.mobile-menu-toggle.active span:nth-child(3),
#mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px) !important;
    background: #0567E0 !important;
}

/* Additional fallback with even higher specificity */
button#mobile-menu-toggle.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px) !important;
    background: #0567E0 !important;
}

button#mobile-menu-toggle.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0 !important;
    transform: scaleX(0) !important;
}

button#mobile-menu-toggle.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px) !important;
    background: #0567E0 !important;
}

/* First line - becomes top part of X */
.mobile-menu-toggle.active span:first-child {
    transform: rotate(45deg) translate(5px, 5px);
    background: #0567E0 !important;
}

/* Second line - disappears */
.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0 !important;
    transform: scaleX(0) !important;
}

/* Third line - becomes bottom part of X */
.mobile-menu-toggle.active span:last-child {
    transform: rotate(-45deg) translate(5px, -5px);
    background: #0567E0 !important;
}

/* Hover effect for mobile menu toggle */
.mobile-menu-toggle:hover span {
    background: #0567E0;
}

.mobile-menu-toggle.active:hover span {
    background: white;
}

/* Force the animation to work with higher specificity */
button.mobile-menu-toggle.active span:first-child {
    transform: rotate(45deg) translate(5px, 5px) !important;
    background: #0567E0 !important;
}

button.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0 !important;
    transform: scaleX(0) !important;
}

button.mobile-menu-toggle.active span:last-child {
    transform: rotate(-45deg) translate(5px, -5px) !important;
    background: #0567E0 !important;
}

/* Additional specificity for mobile menu toggle */
#mobile-menu-toggle.active span:first-child {
    transform: rotate(45deg) translate(5px, 5px) !important;
    background: #0567E0 !important;
}

#mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0 !important;
    transform: scaleX(0) !important;
}

#mobile-menu-toggle.active span:last-child {
    transform: rotate(-45deg) translate(5px, -5px) !important;
    background: #0567E0 !important;
}

/* Force X animation with maximum specificity */
.test-button-x span:nth-child(1),
#test-button.test-button-x span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px) !important;
    background: white !important;
}

.test-button-x span:nth-child(2),
#test-button.test-button-x span:nth-child(2) {
    opacity: 0 !important;
    transform: scaleX(0) !important;
}

.test-button-x span:nth-child(3),
#test-button.test-button-x span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px) !important;
    background: white !important;
}

.hamburger-x span:nth-child(1),
#mobile-menu-toggle.hamburger-x span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px) !important;
    background: white !important;
}

.hamburger-x span:nth-child(2),
#mobile-menu-toggle.hamburger-x span:nth-child(2) {
    opacity: 0 !important;
    transform: scaleX(0) !important;
}

.hamburger-x span:nth-child(3),
#mobile-menu-toggle.hamburger-x span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px) !important;
    background: white !important;
}

/* Force mobile menu to be visible */
.mobile-menu.force-visible,
#mobile-menu.force-visible {
    display: flex !important;
    opacity: 1 !important;
    visibility: visible !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    z-index: 1001 !important;
    background: rgba(33, 33, 33, 0.98) !important;
    backdrop-filter: blur(20px) !important;
    padding: 80px 20px 20px !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
    align-items: center !important;
}

/* Ensure hamburger button is always on top */
.mobile-menu-toggle,
#mobile-menu-toggle {
    z-index: 9999999 !important;
    position: fixed !important;
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(33, 33, 33, 0.98);
    backdrop-filter: blur(20px);
    z-index: 1001;
    padding: 80px 20px 20px;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    transform: translateY(-20px);
}

.mobile-menu.active {
    display: flex;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mobile-menu .nav-links {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 40px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease 0.1s;
}

.mobile-menu.active .nav-links {
    opacity: 1;
    transform: translateY(0);
}

.mobile-menu .nav-link {
    font-size: 1.5rem;
    font-weight: 600;
    text-align: center;
    padding: 15px 0;
    transition: all 0.3s ease;
    position: relative;
}

.mobile-menu .nav-link:hover {
    color: #0567E0;
    transform: scale(1.05);
}

.mobile-menu .nav-cta {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    width: 100% !important;
    text-align: center !important;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease 0.2s;
}

.mobile-menu.active .nav-cta {
    opacity: 1;
    transform: translateY(0);
}

/* Force center Buy Now button with maximum specificity */
.mobile-menu .nav-cta .btn,
.mobile-menu .nav-cta .btn.btn-outline,
.mobile-menu .nav-cta .btn.purchase-btn,
.mobile-menu .nav-cta button.btn,
#mobile-menu .nav-cta .btn,
#mobile-menu .nav-cta .btn.btn-outline,
#mobile-menu .nav-cta .btn.purchase-btn,
#mobile-menu .nav-cta button.btn,
div.mobile-menu div.nav-cta button.btn.btn-outline.purchase-btn {
    font-size: 1.2rem !important;
    padding: 16px 32px !important;
    min-width: 200px !important;
    width: 100% !important;
    max-width: 300px !important;
    margin: 0 auto !important;
    display: block !important;
    text-align: center !important;
    transition: all 0.3s ease !important;
    float: none !important;
    position: static !important;
    left: auto !important;
    right: auto !important;
    transform: none !important;
    box-sizing: border-box !important;
}

/* Force center the nav-cta container */
.mobile-menu .nav-cta,
#mobile-menu .nav-cta,
div.mobile-menu div.nav-cta {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    width: 100% !important;
    text-align: center !important;
    margin: 0 !important;
    padding: 0 !important;
}

.mobile-menu .nav-cta .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(5, 103, 224, 0.4);
}

.btn-large {
    padding: 20px 40px;
    font-size: 18px;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn.disabled,
.btn-large.disabled {
    background: #666 !important;
    color: #999 !important;
    border-color: #666 !important;
    cursor: not-allowed !important;
    opacity: 0.6 !important;
    transform: none !important;
    box-shadow: none !important;
    padding: 20px 30px !important;
    min-height: 60px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-direction: column !important;
}

.btn.disabled:hover,
.btn-large.disabled:hover {
    background: #666 !important;
    color: #999 !important;
    border-color: #666 !important;
    transform: none !important;
    box-shadow: none !important;
}

.coming-soon {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: #ccc;
    margin-top: 4px;
    font-weight: 400;
    height: 16px;
}

.btn-icon {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin: 40px 0 16px 0;
}

.compatibility {
    color: #666;
    font-size: 0.9rem;
    text-align: center;
    margin: 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666;
    font-weight: 500;
}

.check-icon {
    color: #0567E0;
    font-weight: 600;
    width: 16px;
    height: 16px;
}

/* Features Section */
.features {
    padding: 30px 0;
    background: #212121;
    color: white;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}

.feature-card {
    background: transparent;
    border: none;
    padding: 20px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}



.step-image {
    width: 100%;
    height: auto !important;
    min-height: auto !important;
    max-height: none !important;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
    border-radius: 12px;
    overflow: hidden;
    background: transparent;
    display: block !important;
}

.image-placeholder {
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.4);
    font-size: 14px;
    font-weight: 500;
}

.step-gif {
    width: 100% !important;
    height: auto !important;
    max-width: 100% !important;
    max-height: none !important;
    min-height: auto !important;
    object-fit: contain !important;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: block !important;
    aspect-ratio: unset !important;
}

.step-gif:hover {
    transform: scale(1.02);
}

/* Responsive adjustments for step images */
@media (max-width: 1024px) {
    .step-image {
        height: auto;
    }
}

@media (max-width: 768px) {
    .step-image {
        height: auto !important;
        min-height: auto !important;
        max-height: none !important;
        background: transparent;
        margin-left: -20px;
        margin-right: -20px;
        width: calc(100% + 40px);
        display: block !important;
        overflow: visible !important;
    }
    
    .step-gif {
        width: 100% !important;
        height: auto !important;
        max-width: 100% !important;
        max-height: none !important;
        min-height: auto !important;
        object-fit: contain !important;
        background: transparent;
        border-radius: 8px;
        display: block !important;
        aspect-ratio: unset !important;
    }
}

@media (max-width: 480px) {
    .step-image {
        height: auto !important;
        min-height: auto !important;
        max-height: none !important;
        background: transparent;
        margin-left: -20px;
        margin-right: -20px;
        width: calc(100% + 40px);
        display: block !important;
        overflow: visible !important;
    }
    
    .step-gif {
        width: 100% !important;
        height: auto !important;
        max-width: 100% !important;
        max-height: none !important;
        min-height: auto !important;
        object-fit: contain !important;
        background: transparent;
        border-radius: 8px;
        display: block !important;
        aspect-ratio: unset !important;
    }
}

.visual-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.plugin-icon, .folder-icon, .sheets-icon, .window-icon, .render-icon, .video-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.arrow {
    font-size: 24px;
    color: rgba(255, 255, 255, 0.6);
    font-weight: bold;
}

.plugin-panel {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 15px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.panel-header {
    font-weight: 600;
    margin-bottom: 10px;
    color: white;
}

.panel-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.input-field {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 8px 12px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.button {
    background: #0567E0;
    color: white;
    border-radius: 8px;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
}

.dropdown {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 15px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.dropdown-header {
    font-weight: 600;
    margin-bottom: 10px;
    color: white;
}

.dropdown-options {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.option {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    padding: 5px 10px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.apply-button {
    background: #0567E0;
    color: white;
    border-radius: 12px;
    padding: 12px 24px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(5, 103, 224, 0.4);
}

.result-icon {
    font-size: 24px;
}

.step-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
    margin: 20px 0 15px 0;
    position: relative;
    z-index: 2;
}

.step-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    font-size: 0.95rem;
    position: relative;
    z-index: 2;
    text-align: center;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 16px;
}

.section-description {
    font-size: 1.25rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.step-card {
    background: #212121;
    padding: 40px;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.step-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.step-icon {
    width: 80px;
    height: 80px;
    background: #0567E0;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.step-icon .icon {
    font-size: 2rem;
    color: white;
    width: 32px;
    height: 32px;
}

.step-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: white;
    margin-bottom: 16px;
}

.step-description {
    color: #666;
    line-height: 1.6;
}

/* Pricing Section */
.pricing {
    padding: 120px 0;
    background: #f8fafc;
}

.pricing-card {
    max-width: 800px;
    margin: 0 auto;
    background: #212121;
    border-radius: 20px;
    padding: 60px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
}

.pricing-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.pricing-info {
    text-align: left;
}

.price {
    margin-bottom: 16px;
}

.currency {
    font-size: 2rem;
    color: #666;
    vertical-align: top;
}

.amount {
    font-size: 4rem;
    font-weight: 700;
    color: white;
}

.period {
    font-size: 1.25rem;
    color: #666;
    margin-left: 8px;
}

.pricing-description {
    color: #666;
    margin-bottom: 32px;
    font-size: 1.1rem;
}

.pricing-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.pricing-features .feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #666;
    font-size: 1.1rem;
}

.pricing-cta {
    text-align: center;
}

.platform-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
}

.purchase-btn {
    flex: 1;
    margin-bottom: 0;
    padding: 16px 24px;
    font-size: 16px;
    min-height: 56px;
}

.compatibility {
    color: #666;
    font-size: 0.9rem;
}

/* Form Styles */
.customer-info {
    margin: 24px 0;
    padding: 20px;
    background: #f8fafc;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.customer-info h5 {
    margin: 0 0 16px 0;
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
}

.form-group {
    margin-bottom: 16px;
}

.form-group:last-child {
    margin-bottom: 0;
}

.form-group label {
    display: block;
    margin-bottom: 6px;
    color: #374151;
    font-weight: 500;
    font-size: 0.9rem;
}

.form-group input {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.form-group input:focus {
    outline: none;
    border-color: #0567E0;
    box-shadow: 0 0 0 3px rgba(19, 41, 153, 0.1);
}

.form-group input.error {
    border-color: #ef4444;
}

.form-group input.success {
    border-color: #10b981;
}

/* Modal Footer Sticky */
.modal-footer {
    position: sticky;
    bottom: 0;
    background: #212121;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 48px 20px 24px;
    margin: 0 -24px -24px -24px;
    display: flex;
    gap: 12px;
    justify-content: flex-end;
}

.modal-footer .btn {
    min-width: 120px;
}

/* FAQ Section */
.faq {
    padding: 30px 0;
    background: #212121;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 24px;
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #212121;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.05);
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    margin: 0;
}

.faq-icon {
    width: 20px;
    height: 20px;
    color: rgba(255, 255, 255, 0.7);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 24px 24px 24px;
    max-height: 200px;
}

.faq-answer p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin: 0;
}

/* Footer */
.footer {
    background: #212121;
    padding: 80px 0 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand {
    max-width: 400px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.footer-logo:hover {
    text-decoration: none;
    color: inherit;
    opacity: 0.8;
}

.footer-logo .logo {
    width: 48px;
    height: 48px;
}

.footer-logo .logo-text {
    color: white;
    font-weight: 600;
    font-size: 20px;
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 0;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    margin-bottom: 16px;
}

.footer-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid #e2e8f0;
    padding-top: 40px;
    text-align: center;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.7);
}

.footer-business-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-align: center;
}

.business-details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.business-details p {
    margin: 0;
    line-height: 1.4;
}

.business-details a {
    color: var(--primary-color);
    text-decoration: none;
}

.business-details a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .footer-business-info {
        gap: 0.75rem;
    }
    
    .business-details {
        font-size: 0.8rem;
    }
}

/* Legal Pages Styles */
.legal-content {
    padding: 120px 0 80px;
    background: var(--bg-primary);
    min-height: 100vh;
}

.legal-header {
    text-align: center;
    margin-bottom: 60px;
}

.legal-header h1 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.legal-date {
    color: var(--text-secondary);
    font-size: 1rem;
}

.legal-text {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
    color: var(--text-primary);
}

.legal-text h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 2.5rem 0 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.legal-text h2:first-child {
    border-top: none;
    margin-top: 0;
}

.legal-text h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 1.5rem 0 0.75rem;
}

.legal-text p {
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.legal-text ul, .legal-text ol {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.legal-text li {
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.legal-text a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.legal-text a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .legal-content {
        padding: 100px 0 60px;
    }
    
    .legal-header h1 {
        font-size: 2.5rem;
    }
    
    .legal-text {
        padding: 0 1rem;
    }
    
    .legal-text h2 {
        font-size: 1.25rem;
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .pricing-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .pricing-info {
        text-align: center;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 1024px) {
    .hero {
        padding: 120px 0 40px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-cta {
        order: 2;
        margin-right: 60px; /* Add space for hamburger menu */
    }
    
    .nav-cta .btn {
        padding: 8px 16px;
        font-size: 14px;
        min-width: auto;
        white-space: nowrap;
    }
    
    .mobile-menu-toggle {
        order: 3;
    }
    
    .nav-container {
        padding: 15px 20px;
    }
    
    .hero {
        padding: 100px 0 40px;
        min-height: auto;
    }
    
    .hero-title {
        font-size: 2.5rem;
        line-height: 1.2;
        margin-bottom: 20px;
    }
    
    .hero-description {
        font-size: 1.1rem;
        margin-bottom: 32px;
        padding: 0 10px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 16px;
        align-items: stretch;
        max-width: 400px;
        margin: 0 auto 32px auto;
    }
    
    .hero-buttons .purchase-btn {
        max-width: none !important;
        padding: 16px 24px;
        font-size: 16px;
        min-height: 56px;
        white-space: normal;
        text-align: center;
        width: 100% !important;
        flex: 1 !important;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 16px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-description {
        font-size: 1.1rem;
        padding: 0 10px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .feature-card {
        padding: 20px 15px;
    }
    
    .step-image {
        height: 150px;
    }
    
    .step-description {
        font-size: 0.9rem;
        padding: 0 10px;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .faq-question {
        padding: 20px;
    }
    
    .faq-question h3 {
        font-size: 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .support-cta {
        padding: 24px;
        margin: 30px auto 0;
    }
    
    .support-cta-content {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .support-cta-title {
        font-size: 1.25rem;
    }
    
    .support-cta-button {
        padding: 10px 20px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .nav-container {
        padding: 12px 16px;
    }
    
    .hero {
        padding: 90px 0 30px;
    }
    
    .hero-title {
        font-size: 2rem;
        line-height: 1.1;
        margin-bottom: 16px;
    }
    
    .hero-description {
        font-size: 1rem;
        margin-bottom: 24px;
        padding: 0 5px;
    }
    
    .hero-buttons {
        max-width: 100%;
        margin: 0 auto 24px auto;
    }
    
    .hero-buttons .purchase-btn {
        padding: 14px 20px;
        font-size: 15px;
        min-height: 52px;
    }
    
    .hero-pricing {
        margin-bottom: 24px;
    }
    
    .price-display {
        gap: 4px;
    }
    
    .currency {
        font-size: 1.5rem;
    }
    
    .amount {
        font-size: 3rem;
    }
    
    .period {
        font-size: 1rem;
    }
    
    .pricing-description {
        font-size: 0.9rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .section-description {
        font-size: 1rem;
    }
    
    .features {
        padding: 20px 0;
    }
    
    .features-grid {
        gap: 20px;
    }
    
    .feature-card {
        padding: 15px 10px;
    }
    
    .step-image {
        height: 120px;
        margin-bottom: 15px;
    }
    
    .step-number {
        font-size: 2rem;
        margin: 15px 0 10px 0;
    }
    
    .step-description {
        font-size: 0.85rem;
        padding: 0 5px;
    }
    
    .faq {
        padding: 20px 0;
    }
    
    .faq-question {
        padding: 16px;
    }
    
    .faq-question h3 {
        font-size: 0.95rem;
        line-height: 1.4;
    }
    
    .faq-answer {
        padding: 0 16px;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 16px 16px 16px;
    }
    
    .footer {
        padding: 60px 0 30px;
    }
    
    .footer-content {
        gap: 25px;
    }
    
    .footer-title {
        font-size: 1rem;
    }
    
    .footer-link {
        font-size: 0.85rem;
    }
    
    .business-details {
        font-size: 0.75rem;
    }
    
    .support {
        padding: 40px 0;
    }
    
    .support-cta {
        padding: 20px;
    }
    
    .support-cta-title {
        font-size: 1.1rem;
    }
    
    .support-cta-button {
        padding: 8px 16px;
        font-size: 13px;
    }
    
    .nav-cta .btn {
        padding: 6px 12px;
        font-size: 13px;
    }
    
    .nav-cta {
        margin-right: 50px; /* Add space for hamburger menu on small screens */
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content > * {
    animation: fadeInUp 0.8s ease-out;
}

.hero-title {
    animation-delay: 0.2s;
}

.hero-description {
    animation-delay: 0.4s;
}

.hero-buttons {
    animation-delay: 0.6s;
}

.hero-features {
    animation-delay: 0.8s;
}

/* Smooth scrolling for anchor links */
html {
    scroll-behavior: smooth;
}

/* Focus states for accessibility */
.btn:focus,
.nav-link:focus {
    outline: 2px solid #0567E0;
    outline-offset: 2px;
}

/* Loading states */
.purchase-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.purchase-btn.loading {
    position: relative;
}

.purchase-btn.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid transparent;
    border-top: 2px solid currentColor;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Plugin Preview Section */
.plugin-preview {
    padding: 80px 0;
    background: #212121;
    overflow: hidden;
}

.plugin-container {
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1000px;
    transform-style: preserve-3d;
}

.plugin-image {
    max-width: 600px;
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    transform: translateZ(0);
}

.plugin-image:hover {
    transform: rotateX(5deg) rotateY(5deg) translateZ(20px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

/* Parallax effect */
@media (prefers-reduced-motion: no-preference) {
    .plugin-image {
        will-change: transform;
    }
}

/* Support Section */
.support {
    padding: 60px 0;
    background: #212121;
    color: white;
}

.support-cta {
    max-width: 800px;
    margin: 40px auto 0;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s ease;
}

.support-cta:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
}

.support-cta-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 24px;
}

.support-cta-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: white;
    margin: 0;
}

.support-cta-button {
    background: white;
    color: #1a1a1a;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.support-cta-button:hover {
    background: #f0f0f0;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Mobile Support Section */
@media (max-width: 768px) {
    .support-cta {
        padding: 24px;
        margin: 30px auto 0;
    }
    
    .support-cta-content {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .support-cta-title {
        font-size: 1.25rem;
    }
    
    .support-cta-button {
        padding: 10px 20px;
        font-size: 14px;
    }
}

/* Modal Input Overrides - Force Dark Theme */
.modal-overlay .form-group input,
.modal-content .form-group input,
.modal-overlay input[type="text"],
.modal-overlay input[type="email"],
.modal-content input[type="text"],
.modal-content input[type="email"] {
    background: #1a1a1a !important;
    background-color: #1a1a1a !important;
    color: white !important;
    border: 2px solid #333 !important;
    border-radius: 8px !important;
    padding: 12px 16px !important;
    font-size: 1rem !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

.modal-overlay .form-group input:focus,
.modal-content .form-group input:focus,
.modal-overlay input[type="text"]:focus,
.modal-overlay input[type="email"]:focus,
.modal-content input[type="text"]:focus,
.modal-content input[type="email"]:focus {
    background: #2a2a2a !important;
    background-color: #2a2a2a !important;
    border-color: #0567E0 !important;
    box-shadow: none !important;
    outline: none !important;
}

.modal-overlay input::-webkit-input-placeholder,
.modal-overlay input::-moz-placeholder,
.modal-overlay input:-ms-input-placeholder,
.modal-overlay input::placeholder,
.modal-content input::-webkit-input-placeholder,
.modal-content input::-moz-placeholder,
.modal-content input:-ms-input-placeholder,
.modal-content input::placeholder {
    color: rgba(255, 255, 255, 0.5) !important;
}

/* Modal Customer Info Section - Dark Background */
.modal-overlay .customer-info,
.modal-content .customer-info {
    background: #212121 !important;
    padding: 20px !important;
    border-radius: 12px !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    margin: 20px 0 !important;
}

.modal-overlay .customer-info h5,
.modal-content .customer-info h5 {
    color: white !important;
    margin: 0 0 16px 0 !important;
    font-size: 1.1rem !important;
}

/* Modal Platform Icons - Force White */
.modal-overlay .platform-icon,
.modal-content .platform-icon {
    filter: brightness(0) invert(1) !important;
    width: 20px !important;
    height: 20px !important;
}

/* Success Page Styles */
.success-section {
    padding: 120px 0 80px;
    background: #212121;
    color: white;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

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

.success-icon {
    margin-bottom: 32px;
    animation: bounceIn 0.6s ease-out;
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.success-title {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 16px;
}

.success-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 48px;
    line-height: 1.6;
}

.license-section {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 32px;
    margin-bottom: 48px;
}

.license-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: white;
    margin-bottom: 20px;
}

.license-key-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.license-key {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 12px 20px;
    font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
    font-size: 1.1rem;
    color: #10B981;
    font-weight: 600;
    letter-spacing: 1px;
    min-width: 200px;
    text-align: center;
}

.copy-btn {
    background: #0567E0;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 12px 20px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.copy-btn:hover {
    background: #0456C4;
    transform: translateY(-1px);
}

.download-section {
    margin-bottom: 48px;
}

.download-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: white;
    margin-bottom: 24px;
}

.download-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.download-buttons .download-btn {
    flex: 1;
    max-width: 300px;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.instructions-section {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 32px;
    margin-bottom: 48px;
    text-align: left;
}

.instructions-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: white;
    margin-bottom: 20px;
    text-align: center;
}

.instructions-list {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    padding-left: 20px;
}

.instructions-list li {
    margin-bottom: 12px;
    font-size: 1.1rem;
}

.support-section {
    text-align: center;
}

.support-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: white;
    margin-bottom: 16px;
}

.support-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    line-height: 1.6;
}

.support-description a {
    color: #0567E0;
    text-decoration: none;
    font-weight: 600;
}

.support-description a:hover {
    text-decoration: underline;
}

/* Email Instructions */
.email-instructions {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 24px;
    margin: 24px 0;
    text-align: left;
}

.email-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: white;
    margin-bottom: 12px;
}

.email-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 16px;
}

.email-tips {
    background-color: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    padding: 16px;
    margin-top: 16px;
}

.email-tips p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    margin-bottom: 8px;
}

.email-tips ul {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 8px 0;
    padding-left: 20px;
}

.email-tips li {
    margin-bottom: 4px;
}

.email-support {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-top: 12px;
}

.email-support a {
    color: #0567E0;
    text-decoration: none;
    font-weight: 600;
}

.email-support a:hover {
    text-decoration: underline;
}

/* Download Status */
.download-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.download-status {
    margin-top: 16px;
    padding: 12px;
    border-radius: 8px;
    text-align: center;
}

.download-info {
    color: #0567E0;
    font-size: 0.9rem;
    margin: 0;
}

.download-success {
    color: #10B981;
    font-size: 0.9rem;
    margin: 0;
    font-weight: 600;
}

.download-error {
    color: #EF4444;
    font-size: 0.9rem;
    margin: 0;
    font-weight: 600;
}

/* Support Contacts */
.support-contacts {
    background-color: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    padding: 20px;
    margin-top: 16px;
    text-align: left;
}

.support-contacts p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    margin-bottom: 8px;
}

.support-contacts ul {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 12px 0;
    padding-left: 20px;
}

.support-contacts li {
    margin-bottom: 6px;
}

.support-contacts a {
    color: #0567E0;
    text-decoration: none;
    font-weight: 600;
}

.support-contacts a:hover {
    text-decoration: underline;
}

/* Mobile Success Page */
@media (max-width: 768px) {
    .success-title {
        font-size: 2.5rem;
    }
    
    .success-description {
        font-size: 1.1rem;
    }
    
    .license-key-container {
        flex-direction: column;
        align-items: stretch;
    }
    
    .license-key {
        min-width: auto;
    }
    
    .download-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .download-buttons .download-btn {
        max-width: none;
    }
    
    .instructions-section {
        padding: 24px;
    }
}