:root {
    --bg-dark: #050505;
    --bg-card: #101010;
    --accent: #4ade80; /* Modern neon green */
    --accent-glow: rgba(74, 222, 128, 0.4);
    --text-main: #ffffff;
    --text-muted: #9ca3af;
    --glass: rgba(255, 255, 255, 0.05);
    --border: rgba(255, 255, 255, 0.1);
    
    --font: 'Poppins', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font);
    overflow-x: hidden;
}

/* Cinematic Background */
.cinematic-bg {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: url('https://images.wallpapersden.com/image/download/minecraft-rtx-4k_bGZraGmUmZqaraWkpJRmbmdlrWZlbWU.jpg') center/cover no-repeat;
    z-index: -2;
}
.overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(5,5,5,0.85), var(--bg-dark));
    backdrop-filter: blur(3px);
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
a { text-decoration: none; color: inherit; transition: 0.3s; }

/* Navigation */
.nav {
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid var(--border);
}
.blur-nav {
    background: rgba(5, 5, 5, 0.7);
    backdrop-filter: blur(20px);
}
.nav__container { display: flex; justify-content: space-between; align-items: center; }

.logo { font-weight: 800; font-size: 24px; letter-spacing: 1px; color: #fff; }
.nav__links { display: flex; gap: 30px; align-items: center; }
.nav__links a:not(.btn-nav) { color: var(--text-muted); font-size: 14px; font-weight: 500; }
.nav__links a:hover { color: #fff; }

.btn-nav {
    background: var(--accent);
    color: #000;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    box-shadow: 0 0 15px var(--accent-glow);
}
.btn-nav:hover { transform: scale(1.05); background: #fff; }

/* Hero */
.hero { padding: 100px 0; min-height: 90vh; display: flex; align-items: center; }
.hero__wrapper { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }

.badge-premium {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(255,255,255,0.1); padding: 8px 16px;
    border-radius: 100px; font-size: 13px; font-weight: 600; margin-bottom: 25px;
    border: 1px solid var(--border);
}

h1 { font-size: 64px; line-height: 1.1; font-weight: 800; margin-bottom: 20px; letter-spacing: -1px; }
.highlight {
    background: linear-gradient(90deg, #fff, #ccc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block; font-size: 48px; font-weight: 300;
}

.desc-reveal { font-size: 18px; color: var(--text-muted); margin-bottom: 40px; line-height: 1.6; max-width: 500px; }

.hero__stats { display: flex; gap: 40px; margin-bottom: 40px; border-left: 1px solid var(--border); padding-left: 20px; }
.stat-item { display: flex; flex-direction: column; }
.val { font-size: 24px; font-weight: 700; color: var(--accent); }
.lbl { font-size: 12px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; }

.hero__btns { display: flex; gap: 15px; }
.btn {
    padding: 16px 32px; border-radius: 12px; font-weight: 600;
    display: inline-flex; align-items: center; justify-content: center;
    cursor: pointer;
}
.btn--primary {
    background: var(--accent); color: #000;
    box-shadow: 0 10px 30px var(--accent-glow);
}
.btn--primary:hover { transform: translateY(-2px); background: #fff; }
.btn--glass {
    background: rgba(255,255,255,0.05); color: #fff;
    border: 1px solid var(--border);
    backdrop-filter: blur(10px);
}
.btn--glass:hover { background: rgba(255,255,255,0.1); border-color: #fff; }

/* Realistic iPhone 14 Mockup */
.hero__device { position: relative; perspective: 1000px; }
.iphone-14 {
    width: 300px; height: 600px;
    background: #000;
    border-radius: 45px;
    box-shadow: 0 0 0 2px #333, 0 0 0 4px #000, 0 20px 50px rgba(0,0,0,0.5);
    position: relative;
    z-index: 2;
    transform: rotateY(-15deg) rotateX(5deg);
    transition: 0.5s ease-out;
}
.iphone-14:hover { transform: rotateY(0) rotateX(0); }
.screen {
    width: 100%; height: 100%;
    background: #000;
    border-radius: 42px;
    overflow: hidden;
    position: relative;
}
.dynamic-island {
    width: 80px; height: 24px;
    background: #000;
    position: absolute; top: 10px; left: 50%; transform: translateX(-50%);
    border-radius: 20px; z-index: 10;
}

/* App Store Simulation */
.app-store-ui { background: #1c1c1e; height: 100%; color: #fff; overflow-y: auto; font-family: -apple-system, sans-serif; }
.app-header-img { height: 200px; background: url('https://image.api.playstation.com/vulcan/img/rnd/202010/2716/6H6W1eK76X9J9v9a9e9b9r9.png') center/cover; }
.app-meta-row { display: flex; gap: 15px; padding: 15px 20px; margin-top: -30px; position: relative; align-items: flex-start; }
.app-icon-real { width: 80px; height: 80px; border-radius: 18px; border: 3px solid #1c1c1e; }
.app-texts h3 { font-size: 20px; margin-bottom: 4px; }
.app-texts p { font-size: 13px; color: #888; margin-bottom: 10px; }
.app-btn-get {
    background: #2c2c2e; color: #0a84ff;
    font-weight: 700; font-size: 13px;
    padding: 6px 20px; border-radius: 15px;
    display: inline-block;
}
.app-rating-row { display: flex; justify-content: space-between; padding: 20px; border-top: 1px solid #333; border-bottom: 1px solid #333; margin: 0 20px; }
.r-item { text-align: center; }
.r-item strong { display: block; font-size: 18px; color: #888; }
.r-item span { font-size: 10px; color: #666; }
.app-screens { padding: 20px; }
.app-screens img { width: 100%; border-radius: 10px; }

.phone-glow {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    width: 300px; height: 500px;
    background: var(--accent);
    filter: blur(100px);
    opacity: 0.2;
    z-index: 1;
}

/* Sections */
.section { padding: 100px 0; }
.dark-section { background: #0a0a0a; }
.glass-section { position: relative; }

.section-header { text-align: center; max-width: 600px; margin: 0 auto 60px; }
.section-header h2 { font-size: 42px; margin-bottom: 15px; }
.section-header p { color: var(--text-muted); font-size: 18px; }

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 40px 30px;
    border-radius: 20px;
    transition: 0.3s;
}
.feature-card:hover { border-color: var(--accent); transform: translateY(-10px); }
.icon-circle {
    width: 60px; height: 60px; background: rgba(255,255,255,0.05);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-size: 24px; color: var(--accent); margin-bottom: 25px;
}
.feature-card h3 { font-size: 20px; margin-bottom: 15px; }
.feature-card p { color: var(--text-muted); line-height: 1.6; font-size: 15px; }

/* Why Skyress */
.row-flex { display: flex; gap: 60px; align-items: center; }
.text-content { flex: 1; }
.text-content h2 { font-size: 36px; margin-bottom: 20px; }
.modern-list { margin-top: 30px; }
.modern-list li { display: flex; gap: 15px; margin-bottom: 20px; font-size: 16px; color: #ddd; align-items: center; }
.modern-list i { color: var(--accent); font-size: 20px; }

.image-content { flex: 1; display: flex; justify-content: center; }
.glass-card-visual {
    width: 300px;
    background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.02));
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 24px;
    padding: 30px;
}
.g-row { display: flex; align-items: center; gap: 15px; margin-bottom: 20px; font-size: 18px; font-weight: 600; }
.g-row i { width: 40px; text-align: center; color: var(--accent); }

/* Pricing */
.pricing-section { padding-bottom: 100px; }
.pricing-card-main {
    background: linear-gradient(to right, #111, #0a0a0a);
    border: 1px solid var(--border);
    border-radius: 30px;
    padding: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    overflow: hidden;
}
.pricing-card-main::before {
    content: ''; position: absolute; top: 0; right: 0; width: 300px; height: 300px;
    background: var(--accent); filter: blur(150px); opacity: 0.1;
}
.p-left h3 { font-size: 32px; margin-bottom: 10px; }
.p-left .sub { color: var(--text-muted); margin-bottom: 20px; }
.tags { display: flex; gap: 15px; }
.tags span { background: rgba(255,255,255,0.1); padding: 6px 12px; border-radius: 8px; font-size: 13px; font-weight: 500; }

.p-right { text-align: right; position: relative; z-index: 2; }
.price-display { margin-bottom: 20px; }
.p-old { font-size: 24px; color: #666; text-decoration: line-through; margin-right: 15px; }
.p-new { font-size: 56px; font-weight: 800; color: #fff; }
.promo-area {
    background: rgba(74, 222, 128, 0.1);
    border: 1px dashed var(--accent);
    padding: 10px 20px; border-radius: 8px;
    display: inline-block; margin-bottom: 25px; cursor: pointer;
}
.promo-area code { font-weight: 800; font-size: 18px; margin: 0 10px; color: var(--accent); }
.btn--large { padding: 20px 50px; font-size: 18px; background: var(--accent); color: #000; border-radius: 12px; font-weight: 700; }
.btn--large:hover { background: #fff; }

footer { padding: 40px 0; text-align: center; color: #444; border-top: 1px solid #111; }

#toast {
    position: fixed; bottom: 30px; left: 50%; transform: translateX(-50%) translateY(100px);
    background: var(--accent); color: #000; padding: 12px 30px; border-radius: 50px;
    font-weight: 600; opacity: 0; transition: 0.3s; z-index: 200;
}
#toast.show { transform: translateX(-50%) translateY(0); opacity: 1; }

@media (max-width: 900px) {
    .hero__wrapper { grid-template-columns: 1fr; text-align: center; }
    .hero__stats { justify-content: center; border: none; padding: 0; }
    .hero__btns { justify-content: center; }
    .hero__device { display: none; }
    .grid-3 { grid-template-columns: 1fr; }
    .row-flex { flex-direction: column; }
    .pricing-card-main { flex-direction: column; text-align: center; gap: 40px; padding: 40px 20px; }
    .p-right { text-align: center; }
    .tags { justify-content: center; }
    .nav__links { display: none; }
}
