:root {
    --bg-dark: #0a0e14;
    --card-bg: rgba(255, 255, 255, 0.05);
    --primary: #00f2fe;
    --secondary: #4facfe;
    --accent: #ff007a;
    --text-main: #e0e6ed;
    --text-dim: #94a3b8;
    --glass: rgba(15, 23, 42, 0.8);
    --gold: #f6e05e;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
}

body {
    background: var(--bg-dark);
    color: var(--text-main);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Glassmorphism Header */
header {
    background: var(--glass);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 10%;
    position: sticky;
    top: 0;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -1px;
}

/* Hero Section */
.hero {
    padding: 8rem 10% 4rem;
    text-align: center;
    background: radial-gradient(circle at top, rgba(0, 242, 254, 0.1) 0%, transparent 70%);
}

h1 {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    letter-spacing: -2px;
}

h1 span {
    color: var(--primary);
}

.sub-hero {
    font-size: 1.25rem;
    color: var(--text-dim);
    max-width: 700px;
    margin: 0 auto 3rem;
}

/* Premium Button */
.cta-button {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #000;
    padding: 1.2rem 3rem;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-block;
    box-shadow: 0 10px 30px rgba(0, 242, 254, 0.3);
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 242, 254, 0.5);
}

/* Pricing Card */
.pricing-section {
    padding: 4rem 10%;
}

.card {
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 3rem;
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.card::before {
    content: 'ELITE';
    position: absolute;
    top: -20px;
    right: -20px;
    font-size: 5rem;
    font-weight: 900;
    opacity: 0.03;
    pointer-events: none;
}

.price {
    font-size: 3.5rem;
    font-weight: 800;
    margin: 1.5rem 0;
}

.price span {
    font-size: 1rem;
    color: var(--text-dim);
}

.features {
    list-style: none;
    margin-bottom: 3rem;
    text-align: left;
}

.features li {
    margin: 1rem 0;
    display: flex;
    align-items: center;
}

.features li::before {
    content: '✔';
    color: var(--primary);
    margin-right: 1rem;
    font-weight: bold;
}

/* Payment Modal Simulation */
.fawry-modal {
    background: #000;
    border: 2px solid var(--gold);
    border-radius: 16px;
    padding: 2rem;
    max-width: 400px;
    margin: 2rem auto;
}

.fawry-header {
    background: #fff;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}
