/* Globe Rental Panel - Landing Page Neon Theme CSS */
/* Dark theme with card and board neon effects */

/* Root variables for neon theme */
:root {
    /* Dark theme colors */
    --bg-dark-primary: #1a1a24;
    --bg-dark-secondary: #2d2d39;
    --bg-dark-tertiary: #25252b;
    
    /* Neon colors */
    --neon-pink: #ff007f;
    --neon-magenta: #ff00ff;
    --neon-cyan: #00ffff;
    --neon-blue: #0080ff;
    
    /* Text colors */
    --text-primary: #ffffff;
    --text-secondary: #b0b0b0;
    --text-muted: #808080;
    
    /* Accent colors */
    --accent-primary: #7c3aed;
    --accent-secondary: #ec4899;
    --accent-tertiary: #3b82f6;
}

/* Global styles for landing page */
body.landing-page {
    background: linear-gradient(135deg, #0f0f1a 0%, #1a1a24 100%);
    color: var(--text-primary);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    min-height: 100vh;
    overflow-x: hidden;
}

/* Animated background particles */
body.landing-page::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255, 0, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0, 255, 255, 0.1) 0%, transparent 50%);
    animation: backgroundFloat 20s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

@keyframes backgroundFloat {
    0%, 100% { opacity: 1; transform: translateY(0); }
    50% { opacity: 0.8; transform: translateY(-20px); }
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

@keyframes float-delayed {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-25px); }
}

@keyframes float-slow {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
}

.animate-float {
    animation: float 6s ease-in-out infinite;
}

.animate-float-delayed {
    animation: float-delayed 8s ease-in-out infinite;
}

.animate-float-slow {
    animation: float-slow 10s ease-in-out infinite;
}

/* Navigation with neon effects */
body.landing-page nav {
    background: rgba(45, 45, 57, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 0, 255, 0.3);
    box-shadow: 0 4px 20px rgba(255, 0, 255, 0.1);
}

/* Navigation container width optimization for better balance */
body.landing-page nav > div {
    max-width: 1152px; /* max-w-6xl equivalent */
    margin-left: auto;
    margin-right: auto;
}

body.landing-page nav a {
    color: var(--text-primary);
    transition: all 0.3s ease;
    position: relative;
}

body.landing-page nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--neon-pink), var(--neon-cyan));
    transition: width 0.3s ease;
}

body.landing-page nav a:hover::after {
    width: 100%;
}

body.landing-page nav a:hover {
    color: var(--neon-cyan);
    text-shadow: 0 0 10px var(--neon-cyan);
}

/* Hero section with neon card */
.hero-section {
    position: relative;
    background: transparent;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Ensure hero section fills viewport properly on mobile */
@media (max-width: 640px) {
    .hero-section {
        min-height: calc(100vh - 64px);
        padding-top: 80px;
    }
}

/* Neon Card Effect */
.neon-card {
    position: relative;
    background: var(--bg-dark-secondary);
    border-radius: 20px;
    padding: 40px;
    margin: 20px auto;
    max-width: 1200px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.5);
    overflow: hidden;
}

.neon-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    padding: 3px;
    background: linear-gradient(
        45deg,
        var(--neon-pink),
        var(--neon-cyan),
        var(--neon-pink)
    );
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    animation: rotating 4s linear infinite;
    filter: drop-shadow(0 15px 50px #000);
    z-index: -1;
}

.neon-card::after {
    content: "";
    position: absolute;
    top: 3px;
    left: 3px;
    right: 3px;
    bottom: 3px;
    background: var(--bg-dark-secondary);
    border-radius: 17px;
    z-index: -1;
}

@keyframes rotating {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Box neon effect variant */
.neon-box {
    position: relative;
    background: var(--bg-dark-secondary);
    border-radius: 20px;
    padding: 60px 40px;
    margin: 30px auto;
    max-width: 800px;
    border: 1px solid rgba(255, 0, 255, 0.2);
}

.neon-box::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(
        var(--neon-pink),
        var(--neon-cyan),
        var(--neon-pink)
    );
    background-size: 200% 200%;
    border-radius: 20px;
    filter: blur(20px);
    opacity: 0.3;
    animation: rotating 4s linear infinite;
    z-index: -1;
}

/* Title with neon glow */
.neon-title {
    font-size: 3.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--neon-pink), var(--neon-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
    margin-bottom: 30px;
    text-shadow: 0 0 30px rgba(255, 0, 255, 0.5);
    display: inline-block;
    word-break: break-word;
    line-height: 1.3;
}

/* Typing animation cursor visibility - Hidden */
#cursor {
    display: none !important;
    visibility: hidden;
}

@keyframes blink {
    0%, 50% {
        opacity: 1;
    }
    51%, 100% {
        opacity: 0;
    }
}

.neon-subtitle {
    font-size: 1.5rem;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 50px;
}

/* Hero content */
.hero-content {
    text-align: center;
    z-index: 2;
    position: relative;
    width: 100%;
    max-width: 100%;
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 30px;
    background: linear-gradient(135deg, var(--neon-pink), var(--neon-cyan), var(--neon-pink));
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero-content p {
    font-size: 1.3rem;
    color: var(--text-secondary);
    margin-bottom: 50px;
}

/* Neon buttons */
.neon-btn {
    display: inline-block;
    padding: 15px 40px;
    margin: 10px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    background: linear-gradient(var(--bg-dark-secondary), var(--bg-dark-secondary)) padding-box,
                linear-gradient(135deg, var(--neon-pink), var(--neon-cyan)) border-box;
}

.neon-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.neon-btn:hover::before {
    left: 100%;
}

.neon-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 0, 255, 0.4),
                0 0 20px rgba(0, 255, 255, 0.3);
    color: var(--text-primary);
}

.neon-btn-primary {
    background: linear-gradient(135deg, var(--neon-pink), var(--neon-cyan));
    color: var(--text-primary);
    box-shadow: 0 0 20px rgba(255, 0, 255, 0.5);
}

.neon-btn-primary:hover {
    box-shadow: 0 15px 40px rgba(255, 0, 255, 0.6),
                0 0 30px rgba(0, 255, 255, 0.5);
}

.neon-btn-secondary {
    background: transparent;
    color: var(--neon-cyan);
}

/* Feature cards with neon effects */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.feature-card-neon {
    background: var(--bg-dark-secondary);
    border-radius: 15px;
    padding: 30px;
    border: 1px solid rgba(255, 0, 255, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card-neon::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 0, 255, 0.1), transparent);
    transition: left 0.5s;
}

.feature-card-neon:hover::before {
    left: 100%;
}

.feature-card-neon:hover {
    transform: translateY(-10px);
    border-color: var(--neon-cyan);
    box-shadow: 0 15px 40px rgba(0, 255, 255, 0.3),
                0 0 30px rgba(255, 0, 255, 0.2);
}

.feature-card-neon .icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--neon-pink), var(--neon-cyan));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--text-primary);
    box-shadow: 0 5px 20px rgba(255, 0, 255, 0.3);
}

.feature-card-neon h3 {
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 15px;
    background: linear-gradient(135deg, var(--neon-pink), var(--neon-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.feature-card-neon p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Pricing cards with neon effects */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 50px auto;
    max-width: 1200px;
    padding: 20px;
}

.pricing-card-neon {
    background: var(--bg-dark-secondary);
    border-radius: 20px;
    padding: 40px;
    border: 2px solid rgba(255, 0, 255, 0.3);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.pricing-card-neon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--neon-pink), var(--neon-cyan));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.pricing-card-neon:hover::before {
    transform: scaleX(1);
}

.pricing-card-neon:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: var(--neon-cyan);
    box-shadow: 0 20px 50px rgba(255, 0, 255, 0.3),
                0 0 40px rgba(0, 255, 255, 0.2);
}

.pricing-card-neon.popular {
    border-color: var(--neon-pink);
    box-shadow: 0 0 30px rgba(255, 0, 255, 0.4);
}

.pricing-card-neon.popular::after {
    content: 'POPULAR';
    position: absolute;
    top: 20px;
    right: -30px;
    background: linear-gradient(135deg, var(--neon-pink), var(--neon-cyan));
    color: var(--text-primary);
    padding: 8px 50px;
    transform: rotate(45deg);
    font-size: 0.8rem;
    font-weight: 700;
    box-shadow: 0 5px 15px rgba(255, 0, 255, 0.5);
}

.pricing-card-neon .price {
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--neon-pink), var(--neon-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Testimonial cards */
.testimonial-card-neon {
    background: var(--bg-dark-secondary);
    border-radius: 15px;
    padding: 30px;
    border: 1px solid rgba(0, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.testimonial-card-neon:hover {
    border-color: var(--neon-cyan);
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.3);
    transform: translateY(-5px);
}

/* Stats cards */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 40px 0;
}

/* Stats section alignment */
.stats-section-container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Stats section spacing improvements */
.hero-content > div:last-child {
    margin-top: 3rem;
}

@media (max-width: 768px) {
    .hero-content > div:last-child {
        margin-top: 2rem;
    }
}

@media (max-width: 640px) {
    .hero-content > div:last-child {
        margin-top: 1.5rem;
    }
}

.stat-card-neon {
    background: rgba(45, 45, 57, 0.8);
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    border: 1px solid rgba(255, 0, 255, 0.3);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin: 0 auto;
}

.stat-card-neon:hover {
    transform: translateY(-5px);
    border-color: var(--neon-cyan);
    box-shadow: 0 10px 30px rgba(255, 0, 255, 0.3);
}

.stat-card-neon .number {
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--neon-pink), var(--neon-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    margin-bottom: 8px;
    line-height: 1.1;
}

.stat-card-neon .label {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.2;
    margin-top: 4px;
}

/* Section titles */
.section-title-neon {
    font-size: 3rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--neon-pink), var(--neon-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle-neon {
    font-size: 1.2rem;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 50px;
}

/* Footer with neon border */
.footer-neon {
    background: var(--bg-dark-tertiary);
    border-top: 1px solid rgba(255, 0, 255, 0.3);
    padding: 50px 20px;
    margin-top: 100px;
    position: relative;
}

.footer-neon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--neon-pink), var(--neon-cyan));
}

.footer-neon a {
    color: var(--text-secondary);
    transition: color 0.3s ease;
}

.footer-neon a:hover {
    color: var(--neon-cyan);
    text-shadow: 0 0 10px var(--neon-cyan);
}

/* Contact Card Neon */
.contact-card-neon {
    position: relative;
    background: rgba(45, 45, 57, 0.8);
    border: 1px solid rgba(255, 0, 255, 0.3);
    box-shadow: 0 10px 30px rgba(255, 0, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
}

.contact-card-neon::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
    transition: left 0.5s ease;
}

.contact-card-neon:hover::before {
    left: 100%;
}

.contact-card-neon:hover {
    border-color: rgba(0, 255, 255, 0.5);
    box-shadow: 0 20px 40px rgba(255, 0, 255, 0.4), 0 0 30px rgba(0, 255, 255, 0.3);
    transform: translateY(-5px);
}

/* Hero Section Mobile Fixes */
.hero-content {
    position: relative;
    z-index: 20;
}

@media (max-width: 640px) {
    .hero-section {
        min-height: calc(100vh - 64px);
        padding: 80px 10px 40px !important;
    }
    
    .hero-content {
        margin-bottom: 2rem;
        padding-top: 0 !important;
    }
    
    .hero-content h1 {
        font-size: 1.5rem !important;
        line-height: 1.3;
        margin-bottom: 1.5rem;
        min-height: 1.5em;
    }
    
    .neon-title {
        font-size: 1.5rem !important;
        line-height: 1.3;
    }
    
    .neon-subtitle {
        font-size: 0.75rem;
        line-height: 1.4;
    }
    
    /* Ensure typing animation is visible on mobile */
    #typing-text {
        display: inline-block;
        word-break: break-word;
        overflow-wrap: break-word;
    }
    
    #cursor {
        display: none !important;
        visibility: hidden;
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .neon-title,
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .section-title-neon {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .hero-section {
        min-height: calc(100vh - 80px);
        padding: 100px 15px 50px;
    }
    
    .neon-card,
    .neon-box {
        padding: 30px 20px;
        margin: 15px;
        border-radius: 15px;
    }
    
    .neon-title,
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p,
    .neon-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title-neon {
        font-size: 2rem;
    }
    
    .section-subtitle-neon {
        font-size: 1rem;
    }
    
    .feature-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .neon-btn {
        padding: 12px 30px;
        font-size: 0.9rem;
        display: block;
        width: 100%;
        margin: 10px 0;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .stat-card-neon {
        padding: 20px 15px;
    }
    
    .stat-card-neon .number {
        font-size: 2rem;
    }
    
    .stat-card-neon .label {
        font-size: 0.85rem;
    }
    
    .feature-card-neon,
    .pricing-card-neon {
        padding: 25px;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 60px 10px 40px;
    }
    
    .neon-card,
    .neon-box {
        padding: 20px 15px;
        margin: 10px;
        border-radius: 12px;
    }
    
    .neon-title,
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .hero-content p,
    .neon-subtitle {
        font-size: 1rem;
    }
    
    .section-title-neon {
        font-size: 1.8rem;
    }
    
    .section-subtitle-neon {
        font-size: 0.9rem;
    }
    
    .stat-card-neon {
        padding: 15px 10px;
    }
    
    .stat-card-neon .number {
        font-size: 1.75rem;
    }
    
    .stat-card-neon .label {
        font-size: 0.75rem;
    }
    
    .pricing-card-neon .price {
        font-size: 2rem;
    }
    
    .feature-card-neon .icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
    
    .neon-card::before {
        animation: none;
    }
    
    .neon-box::before {
        animation: none;
    }
}

/* High contrast mode */
@media (prefers-contrast: high) {
    .neon-card,
    .neon-box,
    .feature-card-neon,
    .pricing-card-neon {
        border-width: 3px;
    }
}

