
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    background-color: #0d0d0d;
    color: #333;
    overflow-x: hidden;
}


#header {
    position: fixed;
    top: 0;
    width: 100%;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 15px 50px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

#header-img {
    height: 45px;
    transition: transform 0.3s ease;
}

#header-img:hover {
    transform: scale(1.1);
}

#nav-bar {
    display: flex;
    gap: 30px;
}

.nav-link {
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #e94560;
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: #e94560;
}

.nav-link:hover::after {
    width: 100%;
}


.hero {
    margin-top: 80px;
    text-align: center;
    padding: 120px 20px;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    pointer-events: none;
}

.hero h1 {
    font-size: 52px;
    margin-bottom: 20px;
    background: linear-gradient(90deg, #fff, #e94560);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 1s ease;
}

.hero p {
    font-size: 20px;
    margin-bottom: 35px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1s ease 0.2s both;
}

.hero button {
    padding: 15px 40px;
    background: linear-gradient(135deg, #e94560 0%, #c73e54 100%);
    color: white;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(233, 69, 96, 0.4);
    animation: fadeInUp 1s ease 0.4s both;
}

.hero button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(233, 69, 96, 0.6);
    background: linear-gradient(135deg, #ff6b6b 0%, #e94560 100%);
}


#features {
    display: flex;
    justify-content: space-around;
    padding: 100px 50px;
    background: linear-gradient(180deg, #0d0d0d 0%, #1a1a2e 100%);
}

#features h1 {
    position: absolute;
    width: 100%;
    text-align: center;
    color: #fff;
    font-size: 42px;
    margin-bottom: 60px;
    left: 0;
    top: 80px;
}

#features > div {
    width: 30%;
    background: linear-gradient(145deg, #1a1a2e, #16213e);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid rgba(255,255,255,0.05);
    margin-top: 60px;
}

#features > div:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(233, 69, 96, 0.2);
    border-color: rgba(233, 69, 96, 0.3);
}

#features h2 {
    color: #e94560;
    font-size: 24px;
    margin-bottom: 15px;
}

#features p {
    color: #aaa;
    font-size: 16px;
}


#trailer {
    text-align: center;
    padding: 100px 20px;
    background: linear-gradient(180deg, #1a1a2e 0%, #0d0d0d 100%);
}

#trailer h1 {
    color: #fff;
    font-size: 42px;
    margin-bottom: 40px;
}

#video {
    max-width: 100%;
    height: 400px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    border: 2px solid rgba(233, 69, 96, 0.3);
}


#pricing {
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 100px 50px;
    background: linear-gradient(180deg, #0d0d0d 0%, #1a1a2e 100%);
    flex-wrap: wrap;
}

#pricing h1 {
    width: 100%;
    text-align: center;
    color: #fff;
    font-size: 42px;
    margin-bottom: 50px;
}

.pricing-card {
    width: 30%;
    min-width: 280px;
    background: linear-gradient(145deg, #1a1a2e, #16213e);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid rgba(255,255,255,0.05);
    position: relative;
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #e94560, #ff6b6b);
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(233, 69, 96, 0.2);
}

.pricing-card h2 {
    color: #fff;
    font-size: 28px;
    margin-bottom: 10px;
}

.pricing-card > p {
    color: #e94560;
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 20px;
}

.pricing-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.pricing-card ul li {
    color: #aaa;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.pricing-card ul li:last-child {
    border-bottom: none;
}

.pricing-card button {
    padding: 15px 40px;
    border: none;
    background: linear-gradient(135deg, #e94560 0%, #c73e54 100%);
    color: white;
    border-radius: 50px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.pricing-card button:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(233, 69, 96, 0.4);
}


#subscribe {
    text-align: center;
    padding: 100px 20px;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    position: relative;
}

#subscribe h1 {
    color: #fff;
    font-size: 42px;
    margin-bottom: 20px;
}

#subscribe > p {
    color: #aaa;
    margin-bottom: 40px;
    font-size: 18px;
}

#form {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

#form input[type="email"] {
    padding: 15px 25px;
    width: 350px;
    border: 2px solid rgba(233, 69, 96, 0.3);
    border-radius: 50px;
    background: rgba(255,255,255,0.05);
    color: #fff;
    font-size: 16px;
    transition: all 0.3s ease;
    outline: none;
}

#form input[type="email"]:focus {
    border-color: #e94560;
    box-shadow: 0 0 20px rgba(233, 69, 96, 0.3);
}

#form input[type="email"]::placeholder {
    color: #666;
}

#submit {
    padding: 15px 40px;
    border: none;
    background: linear-gradient(135deg, #e94560 0%, #c73e54 100%);
    color: white;
    border-radius: 50px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

#submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(233, 69, 96, 0.4);
    background: linear-gradient(135deg, #ff6b6b 0%, #e94560 100%);
}


footer {
    text-align: center;
    padding: 30px;
    background: #0d0d0d;
    color: #666;
    font-size: 14px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

footer p {
    margin: 0;
}


@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 1024px) {
    #features > div,
    .pricing-card {
        width: 45%;
    }
}

@media (max-width: 768px) {
    #header {
        flex-direction: column;
        padding: 15px 20px;
    }
    
    #nav-bar {
        margin-top: 15px;
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .nav-link {
        font-size: 13px;
    }
    
    .hero h1 {
        font-size: 32px;
    }
    
    .hero p {
        font-size: 16px;
    }
    
    #features {
        flex-direction: column;
        align-items: center;
        padding: 80px 20px;
    }
    
    #features > div {
        width: 100%;
        max-width: 400px;
        margin-bottom: 20px;
    }
    
    #pricing {
        flex-direction: column;
        align-items: center;
    }
    
    .pricing-card {
        width: 100%;
        max-width: 400px;
        margin-bottom: 20px;
    }
    
    #video {
        width: 100%;
        height: auto;
    }
    
    #form input[type="email"] {
        width: 100%;
        max-width: 350px;
    }
}
