/* 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;
    background: #000000;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
    }
    50% {
        box-shadow: 0 0 40px rgba(255, 255, 255, 0.3);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.8;
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Enhanced Falling Stars Animation */
.falling-stars-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.falling-star {
    position: absolute;
    width: 3px;
    height: 3px;
    background: radial-gradient(circle, #ffffff 0%, rgba(255,255,255,0.8) 50%, transparent 100%);
    border-radius: 50%;
    box-shadow: 
        0 0 6px #ffffff,
        0 0 12px #ffffff,
        0 0 18px #ffffff,
        0 0 24px rgba(255,255,255,0.5);
    animation: fall linear infinite;
}

.falling-star:nth-child(odd) {
    background: radial-gradient(circle, #e0e0e0 0%, rgba(224,224,224,0.8) 50%, transparent 100%);
    box-shadow: 
        0 0 6px #e0e0e0,
        0 0 12px #e0e0e0,
        0 0 18px #e0e0e0,
        0 0 24px rgba(224,224,224,0.4);
}

.falling-star:nth-child(3n) {
    width: 4px;
    height: 4px;
    background: radial-gradient(circle, #f0f0f0 0%, rgba(240,240,240,0.9) 50%, transparent 100%);
    box-shadow: 
        0 0 8px #f0f0f0,
        0 0 16px #f0f0f0,
        0 0 24px #f0f0f0,
        0 0 32px rgba(240,240,240,0.3);
}

.falling-star:nth-child(5n) {
    width: 2px;
    height: 2px;
    opacity: 0.7;
}

.falling-star:nth-child(1) { left: 10%; animation-duration: 3s; animation-delay: 0s; }
.falling-star:nth-child(2) { left: 20%; animation-duration: 4s; animation-delay: 0.5s; }
.falling-star:nth-child(3) { left: 30%; animation-duration: 3.5s; animation-delay: 1s; }
.falling-star:nth-child(4) { left: 40%; animation-duration: 4.5s; animation-delay: 1.5s; }
.falling-star:nth-child(5) { left: 50%; animation-duration: 3.2s; animation-delay: 2s; }
.falling-star:nth-child(6) { left: 60%; animation-duration: 4.2s; animation-delay: 0.3s; }
.falling-star:nth-child(7) { left: 70%; animation-duration: 3.8s; animation-delay: 0.8s; }
.falling-star:nth-child(8) { left: 80%; animation-duration: 4.8s; animation-delay: 1.3s; }
.falling-star:nth-child(9) { left: 90%; animation-duration: 3.3s; animation-delay: 1.8s; }
.falling-star:nth-child(10) { left: 15%; animation-duration: 4.3s; animation-delay: 2.3s; }
.falling-star:nth-child(11) { left: 25%; animation-duration: 3.7s; animation-delay: 0.2s; }
.falling-star:nth-child(12) { left: 35%; animation-duration: 4.7s; animation-delay: 0.7s; }
.falling-star:nth-child(13) { left: 45%; animation-duration: 3.1s; animation-delay: 1.2s; }
.falling-star:nth-child(14) { left: 55%; animation-duration: 4.1s; animation-delay: 1.7s; }
.falling-star:nth-child(15) { left: 65%; animation-duration: 3.9s; animation-delay: 2.2s; }
.falling-star:nth-child(16) { left: 75%; animation-duration: 4.9s; animation-delay: 0.1s; }
.falling-star:nth-child(17) { left: 85%; animation-duration: 3.4s; animation-delay: 0.6s; }
.falling-star:nth-child(18) { left: 95%; animation-duration: 4.4s; animation-delay: 1.1s; }
.falling-star:nth-child(19) { left: 5%; animation-duration: 3.6s; animation-delay: 1.6s; }
.falling-star:nth-child(20) { left: 12%; animation-duration: 4.6s; animation-delay: 2.1s; }
.falling-star:nth-child(21) { left: 22%; animation-duration: 3.2s; animation-delay: 0.4s; }
.falling-star:nth-child(22) { left: 32%; animation-duration: 4.8s; animation-delay: 0.9s; }
.falling-star:nth-child(23) { left: 42%; animation-duration: 3.5s; animation-delay: 1.4s; }
.falling-star:nth-child(24) { left: 52%; animation-duration: 4.2s; animation-delay: 1.9s; }
.falling-star:nth-child(25) { left: 62%; animation-duration: 3.8s; animation-delay: 0.3s; }
.falling-star:nth-child(26) { left: 72%; animation-duration: 4.5s; animation-delay: 0.8s; }
.falling-star:nth-child(27) { left: 82%; animation-duration: 3.3s; animation-delay: 1.3s; }
.falling-star:nth-child(28) { left: 92%; animation-duration: 4.1s; animation-delay: 1.8s; }
.falling-star:nth-child(29) { left: 8%; animation-duration: 3.7s; animation-delay: 0.5s; }
.falling-star:nth-child(30) { left: 18%; animation-duration: 4.3s; animation-delay: 1.0s; }

@keyframes fall {
    0% {
        transform: translateY(-100vh) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: translateY(100vh) rotate(360deg);
        opacity: 0;
    }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(30px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo h2 {
    font-size: 1.8rem;
    font-weight: 900;
    background: linear-gradient(45deg, #ffffff, #cccccc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.5);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    padding: 12px 24px;
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.nav-link:hover,
.nav-link.active {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.discord-link {
    background: linear-gradient(45deg, #5865F2, #7289DA);
    color: white;
}

.discord-link:hover {
    background: linear-gradient(45deg, #4752C4, #5B6EAE);
    transform: translateY(-2px) scale(1.05);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: #ffffff;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 2;
    padding-top: 70px;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-text {
    animation: slideInLeft 1s ease-out;
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    line-height: 0.9;
}

.title-line {
    background: linear-gradient(45deg, #ffffff, #cccccc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 50px rgba(255, 255, 255, 0.5);
    animation: glow 2s ease-in-out infinite alternate;
}

.title-subtitle {
    font-size: 2.5rem;
    color: #888888;
    font-weight: 600;
    margin-top: 10px;
}

@keyframes glow {
    from { text-shadow: 0 0 20px rgba(255, 255, 255, 0.5); }
    to { text-shadow: 0 0 30px rgba(255, 255, 255, 0.8), 0 0 40px rgba(255, 255, 255, 0.3); }
}

.hero-description {
    font-size: 1.2rem;
    color: #cccccc;
    margin-bottom: 40px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-visual {
    animation: slideInRight 1s ease-out;
}

.executor-preview {
    position: relative;
    transform: perspective(1000px) rotateY(-10deg) rotateX(5deg);
    transition: transform 0.3s ease;
}

.executor-preview:hover {
    transform: perspective(1000px) rotateY(-5deg) rotateX(2deg) scale(1.02);
}

.ui-screenshot {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.ui-screenshot:hover {
    transform: scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.6);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
    text-transform: none;
    letter-spacing: 0.5px;
    backdrop-filter: blur(10px);
}

.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: left 0.6s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn:active {
    transform: translateY(-1px) scale(0.98);
    transition: all 0.1s ease;
}

.btn-primary {
    background: linear-gradient(135deg, #ffffff, #f0f0f0);
    color: #000000;
    border: 2px solid transparent;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #f0f0f0, #e0e0e0);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: inherit;
    z-index: -1;
}

.btn-primary:hover::after {
    opacity: 1;
}

.btn-primary:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 20px 45px rgba(255, 255, 255, 0.5);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.btn-secondary::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.1);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: inherit;
    z-index: -1;
}

.btn-secondary:hover::after {
    opacity: 1;
}

.btn-secondary:hover {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 20px 45px rgba(255, 255, 255, 0.2);
}

.btn.large {
    padding: 20px 40px;
    font-size: 1.1rem;
}

.btn-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.btn:hover .btn-glow {
    left: 100%;
}

/* Features Section */
.features {
    padding: 100px 0;
    position: relative;
    z-index: 2;
}

.section-title {
    text-align: center;
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 60px;
    background: linear-gradient(45deg, #ffffff, #cccccc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.feature-card {
    background: rgba(15, 15, 15, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(20px);
    animation: fadeInUp 0.6s ease-out;
}

.feature-card:hover {
    transform: translateY(-15px) scale(1.03);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(255, 255, 255, 0.15);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
    transition: all 0.3s ease;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.5));
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #ffffff;
}

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

.feature-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover .feature-glow {
    opacity: 1;
}

/* CTA Section */
.cta {
    padding: 100px 0;
    text-align: center;
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #ffffff, #cccccc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-content p {
    font-size: 1.2rem;
    color: #cccccc;
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Pricing Styles */
.pricing-hero {
    padding: 150px 0 100px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.pricing-title {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #ffffff, #cccccc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pricing-subtitle {
    font-size: 1.2rem;
    color: #cccccc;
}

.pricing-section {
    padding: 50px 0 100px;
    position: relative;
    z-index: 2;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.pricing-card {
    background: rgba(12, 12, 12, 0.95);
    border: 2px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(25px);
    animation: fadeInUp 0.8s ease-out;
}

.pricing-card.recommended {
    border-color: #ffffff;
    transform: scale(1.05);
    box-shadow: 0 25px 50px rgba(255, 255, 255, 0.1);
}

.pricing-card:hover {
    transform: translateY(-18px) scale(1.04);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5), 0 0 50px rgba(255, 255, 255, 0.15);
}

.pricing-card.recommended:hover {
    transform: translateY(-15px) scale(1.08);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5), 0 0 50px rgba(255, 255, 255, 0.2);
}

.pricing-header {
    margin-bottom: 30px;
    position: relative;
}

.plan-name {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #ffffff;
}

.plan-badge {
    display: inline-block;
    padding: 5px 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.plan-badge.popular {
    background: linear-gradient(45deg, #ffffff, #cccccc);
    color: #000000;
}

.pricing-price {
    margin: 30px 0;
}

.currency {
    font-size: 1.5rem;
    color: #cccccc;
    vertical-align: top;
}

.amount {
    font-size: 4rem;
    font-weight: 900;
    color: #ffffff;
}

.period {
    font-size: 1.2rem;
    color: #cccccc;
}

.pricing-description {
    margin-bottom: 30px;
}

.pricing-description p {
    color: #cccccc;
    line-height: 1.6;
}

.features-list {
    list-style: none;
    margin: 30px 0;
    text-align: left;
}

.features-list li {
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.check {
    color: #28a745;
    font-weight: bold;
}

.pricing-btn {
    width: 100%;
    margin-top: 20px;
}

.card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.pricing-card:hover .card-glow {
    opacity: 1;
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    position: relative;
    z-index: 2;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.faq-item {
    background: rgba(20, 20, 20, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-5px);
}

.faq-item h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #ffffff;
}

.faq-item p {
    color: #cccccc;
    line-height: 1.6;
}

/* Status Styles */
.status-hero {
    padding: 150px 0 100px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.status-title {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #ffffff, #cccccc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.status-subtitle {
    font-size: 1.2rem;
    color: #cccccc;
}

.status-dashboard {
    padding: 50px 0 100px;
    position: relative;
    z-index: 2;
}

.status-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.status-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.status-blur-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(20, 20, 20, 0.7);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
}

.status-content {
    position: relative;
    z-index: 1;
    padding: 30px;
}

.status-card:hover {
    transform: translateY(-12px) scale(1.03);
    animation: float 3s ease-in-out infinite;
}

.status-card:hover .status-blur-bg {
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(30, 30, 30, 0.8);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(255, 255, 255, 0.15);
}

.status-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.status-icon {
    position: relative;
}

.status-indicator {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.status-indicator.updating {
    background: #ffc107;
}

.status-indicator.online {
    background: #28a745;
}

.status-indicator.eta {
    background: #17a2b8;
}

.pulse-ring {
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid;
    border-radius: 50%;
    animation: pulse 2s ease-out infinite;
}

.pulse-ring.green {
    border-color: #28a745;
}

.pulse-ring:not(.green) {
    border-color: #ffc107;
}

.pulse-ring.delay-1 {
    animation-delay: 0.5s;
}

.pulse-ring.delay-2 {
    animation-delay: 1s;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(2);
        opacity: 0;
    }
}

.countdown-ring {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: conic-gradient(#17a2b8 75%, rgba(23, 162, 184, 0.2) 75%);
    position: relative;
    animation: rotate 4s linear infinite;
}

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

.status-header h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffffff;
}

.status-info {
    margin-bottom: 20px;
}

.status-text {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #ffffff;
}

.status-description {
    color: #cccccc;
    line-height: 1.6;
    font-size: 0.9rem;
}

.status-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.detail-label {
    color: #cccccc;
    font-size: 0.9rem;
}

.detail-value {
    color: #ffffff;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Status History */
.status-history {
    padding: 100px 0;
    position: relative;
    z-index: 2;
}

.history-timeline {
    margin-top: 60px;
    position: relative;
}

.history-timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: rgba(255, 255, 255, 0.2);
}

.timeline-item {
    position: relative;
    padding-left: 60px;
    margin-bottom: 40px;
}

.timeline-marker {
    position: absolute;
    left: 11px;
    top: 5px;
    width: 18px;
    height: 18px;
    background: #ffffff;
    border-radius: 50%;
    border: 3px solid #000000;
}

.timeline-content {
    background: rgba(20, 20, 20, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 25px;
    transition: all 0.3s ease;
}

.timeline-content:hover {
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateX(10px);
}

.timeline-time {
    color: #cccccc;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.timeline-content h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #ffffff;
}

.timeline-content p {
    color: #cccccc;
    line-height: 1.6;
}

/* Status Subscribe */
.status-subscribe {
    padding: 100px 0;
    text-align: center;
    position: relative;
    z-index: 2;
}

.subscribe-content h2 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #ffffff, #cccccc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.subscribe-content p {
    font-size: 1.2rem;
    color: #cccccc;
    margin-bottom: 40px;
}

/* Compatibility Page Styles */
.compatibility-page {
    min-height: 100vh;
    padding-top: 80px;
}

.compatibility-hero {
    padding: 4rem 0 2rem;
    text-align: center;
}

.page-title {
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, #ffffff, #cccccc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    animation: fadeInUp 0.8s ease-out;
}

.page-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.compatibility-content {
    padding: 2rem 0 4rem;
}

.compatibility-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.compatibility-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: fadeInUp 0.8s ease-out;
    position: relative;
    overflow: hidden;
}

.compatibility-card::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.8s ease;
}

.compatibility-card:hover::before {
    left: 100%;
}

.compatibility-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4), 0 0 30px rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.08);
}

.compatibility-card.supported {
    border-color: rgba(34, 197, 94, 0.3);
}

.compatibility-card.coming-soon {
    border-color: rgba(251, 191, 36, 0.3);
}

.compatibility-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.compatibility-icon {
    width: 40px;
    height: 40px;
    color: #ffffff;
}

.compatibility-header h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    flex: 1;
}

.status-badge {
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-badge.supported {
    background: rgba(34, 197, 94, 0.2);
    color: #22c55e;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.status-badge.coming-soon {
    background: rgba(251, 191, 36, 0.2);
    color: #fbbf24;
    border: 1px solid rgba(251, 191, 36, 0.3);
}

.compatibility-body h3,
.compatibility-body h4 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-weight: 600;
}

.version-list {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.version-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0;
    color: rgba(255, 255, 255, 0.8);
}

.check-icon {
    width: 16px;
    height: 16px;
    color: #22c55e;
    flex-shrink: 0;
}

.requirements {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 1rem;
    margin-top: 1rem;
}

.requirements ul {
    list-style: none;
    padding: 0;
    margin: 0.5rem 0 0 0;
}

.requirements li {
    color: rgba(255, 255, 255, 0.7);
    padding: 0.25rem 0;
    position: relative;
    padding-left: 1rem;
}

.requirements li::before {
    content: '•';
    color: #ffffff;
    position: absolute;
    left: 0;
}

.coming-soon-text {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.eta-info,
.planned-features {
    margin-bottom: 1.5rem;
}

.eta-info p {
    color: #fbbf24;
    font-weight: 600;
    font-size: 1.1rem;
    margin: 0.5rem 0 0 0;
}

.planned-features ul {
    list-style: none;
    padding: 0;
    margin: 0.5rem 0 0 0;
}

.planned-features li {
    color: rgba(255, 255, 255, 0.7);
    padding: 0.25rem 0;
    position: relative;
    padding-left: 1rem;
}

.planned-features li::before {
    content: '→';
    color: #fbbf24;
    position: absolute;
    left: 0;
}

.additional-info {
    display: flex;
    justify-content: center;
}

.info-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    max-width: 500px;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.info-card h3 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-weight: 600;
}

.info-card p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.discord-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #5865f2, #4752c4);
    color: #ffffff;
    padding: 0.75rem 1.5rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.discord-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(88, 101, 242, 0.3);
    background: linear-gradient(135deg, #4752c4, #3c4396);
}

.discord-btn svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.discord-btn:hover svg {
    transform: scale(1.1);
}

/* Enhanced Discord Button Styles */
.btn.enhanced {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #5865f2, #4752c4);
    border: 1px solid rgba(88, 101, 242, 0.3);
    box-shadow: 0 4px 15px rgba(88, 101, 242, 0.2);
}

.btn.enhanced::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 ease;
}

.btn.enhanced:hover::before {
    left: 100%;
}

.btn.enhanced:hover {
    background: linear-gradient(135deg, #4752c4, #3c4396);
    border-color: rgba(88, 101, 242, 0.5);
    box-shadow: 0 8px 25px rgba(88, 101, 242, 0.4);
    transform: translateY(-3px);
}

.btn.enhanced svg {
    transition: all 0.3s ease;
}

.btn.enhanced:hover svg {
    transform: scale(1.1) rotate(5deg);
}

.btn.enhanced .btn-glow {
    background: radial-gradient(circle, rgba(88, 101, 242, 0.3) 0%, transparent 70%);
}

.btn.enhanced:hover .btn-glow {
    background: radial-gradient(circle, rgba(88, 101, 242, 0.5) 0%, transparent 70%);
}

/* Responsive Design for Compatibility Page */
@media (max-width: 768px) {
    .compatibility-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .compatibility-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .compatibility-header h2 {
        font-size: 1.25rem;
    }
    
    .compatibility-card {
        padding: 1.5rem;
    }
}

/* Footer */
.footer {
    background: rgba(10, 10, 10, 0.9);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 60px 0 30px;
    position: relative;
    z-index: 2;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-brand h3 {
    font-size: 1.5rem;
    font-weight: 900;
    margin-bottom: 10px;
    background: linear-gradient(45deg, #ffffff, #cccccc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-brand p {
    color: #cccccc;
}

.footer-links {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #cccccc;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #ffffff;
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: #666666;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(0, 0, 0, 0.95);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        backdrop-filter: blur(20px);
        padding: 30px 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .title-subtitle {
        font-size: 1.8rem;
    }

    .executor-preview {
        transform: none;
    }

    .executor-preview:hover {
        transform: scale(1.02);
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card.recommended {
        transform: none;
    }

    .pricing-card.recommended:hover {
        transform: translateY(-10px);
    }

    .hero-buttons,
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
    }

    .section-title {
        font-size: 2rem;
    }

    .pricing-title,
    .status-title {
        font-size: 2.5rem;
    }

    .features-grid,
    .status-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .timeline-item {
        padding-left: 40px;
    }

    .history-timeline::before {
        left: 10px;
    }

    .timeline-marker {
        left: 1px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .title-subtitle {
        font-size: 1.4rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }

    .btn.large {
        padding: 15px 30px;
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .pricing-title,
    .status-title {
        font-size: 2rem;
    }

    .amount {
        font-size: 3rem;
    }

    .feature-card,
    .pricing-card,
    .status-card,
    .faq-item {
        padding: 25px 20px;
    }

    .falling-star {
        width: 1px;
        height: 1px;
    }
}