@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;800&display=swap');

body {
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #0f172a, #1e293b, #334155);
    color: #e2e8f0;
    min-height: 100vh;
    overflow-x: hidden;
}

#particles-js {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}

.container {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 120px 20px;
    max-width: 900px;
    margin: 0 auto;
}

.title {
    font-size: 72px;
    font-weight: 800;
    margin-bottom: 10px;
    background: linear-gradient(90deg, #a78bfa, #60a5fa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -2px;
}

.subtitle {
    font-size: 42px;
    font-weight: 600;
    margin: 20px 0;
    color: #cbd5e1;
}

.tagline {
    font-size: 24px;
    margin-bottom: 80px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.preview-box {
    margin: 80px 0;
    padding: 40px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.preview-img {
    max-width: 100%;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.buttons {
    display: flex;
    gap: 40px;
    justify-content: center;
    margin: 100px 0;
    flex-wrap: wrap;
}

.btn {
    padding: 20px 60px;
    font-size: 20px;
    font-weight: 600;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
    min-width: 240px;
}

.view-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(167, 139, 250, 0.5);
    color: #e2e8f0;
}

.view-btn:hover {
    background: rgba(167, 139, 250, 0.2);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(167, 139, 250, 0.3);
}

.download-btn {
    background: linear-gradient(90deg, #a78bfa, #60a5fa);
    border: none;
    color: white;
}

.download-btn:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(96, 165, 250, 0.4);
}

.password {
    font-size: 26px;
    padding: 30px 50px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: inline-block;
}

.password span {
    color: #a78bfa;
    font-size: 32px;
    font-weight: 800;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 100;
    left: 0; top: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.7);
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.modal-content {
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(30px);
    padding: 60px;
    border-radius: 24px;
    border: 1px solid rgba(167, 139, 250, 0.3);
    max-width: 700px;
    width: 90%;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.close {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 50px;
    color: #cbd5e1;
    cursor: pointer;
    opacity: 0.7;
}

.close:hover { opacity: 1; }

.modal h2 {
    font-size: 36px;
    background: linear-gradient(90deg, #a78bfa, #60a5fa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 40px;
}

.modal ul {
    text-align: left;
    font-size: 20px;
    line-height: 2.2;
}