*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:sans-serif;
}

body{
    background:#0f0f0f;
    color:white;
    padding:20px;
}

.container{
    max-width:700px;
    margin:auto;
}

header{
    margin-bottom:20px;
}

header h1{
    font-size:32px;
}

header p{
    color:#aaa;
    margin-top:10px;
}

.progress-container{
    width:100%;
    height:8px;
    background:#222;
    border-radius:20px;
    overflow:hidden;
    margin-bottom:25px;
}

.progress-bar{
    width:12.5%;
    height:100%;
    background:#7b2cff;
}

.steps{
    display:flex;
    overflow:auto;
    gap:10px;
    margin-bottom:20px;
}

.step{
    min-width:90px;
    background:#181818;
    color:#888;
    padding:12px;
    border-radius:15px;
    text-align:center;
    font-size:14px;
}

.step span{
    width:30px;
    height:30px;
    display:block;
    margin:auto;
    margin-bottom:8px;
    border-radius:50%;
    background:#222;
    line-height:30px;
}

.active{
    background:#7b2cff;
    color:white;
}

.active span{
    background:white;
    color:#7b2cff;
}

.card{
    background:#171717;
    padding:25px;
    border-radius:25px;
}

.card h2{
    margin-bottom:30px;
}

.input-group{
    margin-bottom:20px;
}

.input-group label{
    display:block;
    color:#bbb;
    margin-bottom:10px;
}

input,
select{
    width:100%;
    border:none;
    outline:none;
    background:#222;
    color:white;
    padding:18px;
    border-radius:15px;
    font-size:15px;
}

input:focus,
select:focus{
    border:1px solid #7b2cff;
}

.buttons{
    display:flex;
    justify-content:space-between;
    margin-top:30px;
}

button{
    border:none;
    cursor:pointer;
}

.draft-btn{
    background:#222;
    color:white;
    padding:16px 25px;
    border-radius:15px;
}

.next-btn{
    background:#7b2cff;
    color:white;
    padding:16px 30px;
    border-radius:15px;
    font-size:15px;
}

.next-btn:hover{
    background:#8c42ff;
}

.hidden{
    display:none;
}

.upload-box{
    background:#1b1b1b;
    border:2px dashed #7b2cff;
    padding:40px;
    border-radius:25px;
    text-align:center;
    margin-top:25px;
}

.upload-box i{
    font-size:55px;
    color:#7b2cff;
    margin-bottom:20px;
}

.upload-box h3{
    margin-bottom:10px;
}

.upload-box p{
    color:#999;
    margin-bottom:20px;
}

.upload-btn{
    background:#7b2cff;
    color:white;
    padding:15px 30px;
    border:none;
    border-radius:15px;
    cursor:pointer;
}

.upload-btn:hover{
    background:#8c42ff;
}

.preview-container{
    margin-top:30px;

    display:grid;

    grid-template-columns:
    repeat(auto-fill,minmax(180px,1fr));

    gap:20px;
}

.image-card{

    background:#1b1b1b;
    border-radius:20px;
    overflow:hidden;
    position:relative;

}

.image-card img{
    width:100%;
    height:170px;
    object-fit:cover;
}

.card-buttons{

    display:flex;
    justify-content:space-between;
    padding:15px;

}

.delete-btn{

    background:red;
    color:white;
    border:none;
    padding:10px 15px;
    border-radius:10px;
    cursor:pointer;

}

.cover-btn{

    background:#7b2cff;
    color:white;
    border:none;
    padding:10px 15px;
    border-radius:10px;
    cursor:pointer;

}

.cover{
    border:3px solid lime;
}

.features-grid{

    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(220px,1fr));

    gap:20px;

    margin-top:30px;

}

.feature-card{

    background:#1b1b1b;

    border:1px solid #292929;

    padding:25px;

    border-radius:20px;

    transition:.3s;

}

.feature-card:hover{

    border-color:#7b2cff;

}

.feature-card input{

    width:auto;

    margin-right:10px;

}

.feature-card label{

    cursor:pointer;

    color:white;

}

.custom-feature{

    margin-top:40px;

}

.custom-feature h3{

    margin-bottom:15px;

}

.custom-feature input{

    margin-bottom:20px;

}

#customFeatures{

    display:flex;

    flex-wrap:wrap;

    gap:15px;

    margin-top:20px;

}

.custom-tag{

    background:#7b2cff;

    color:white;

    padding:12px 18px;

    border-radius:30px;

}
.pricing-grid{

    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(250px,1fr));

    gap:20px;

    margin-top:30px;

}

.calendar-card{

    margin-top:40px;

    background:#1b1b1b;

    border-radius:25px;

    padding:25px;

}

.calendar-card h3{

    margin-bottom:15px;

}

.calendar-card p{

    color:#aaa;

    margin-bottom:20px;

}

#datesContainer{

    display:flex;

    flex-wrap:wrap;

    gap:15px;

    margin-top:20px;

}

.date-tag{

    background:#7b2cff;

    color:white;

    padding:12px 18px;

    border-radius:30px;

}
.rules-grid{

    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(280px,1fr));

    gap:20px;

    margin-top:30px;

}

.rule-card{

    background:#1b1b1b;

    border:1px solid #292929;

    border-radius:20px;

    padding:25px;

    display:flex;

    justify-content:space-between;

    align-items:center;

}

.switch{

    position:relative;

    width:60px;

    height:30px;

}

.switch input{

    opacity:0;

}

.slider{

    position:absolute;

    top:0;
    left:0;
    right:0;
    bottom:0;

    background:#444;

    border-radius:30px;

    transition:.3s;

}

.slider::before{

    content:"";

    position:absolute;

    width:24px;
    height:24px;

    left:3px;
    top:3px;

    background:white;

    border-radius:50%;

    transition:.3s;

}

.switch input:checked + .slider{

    background:#7b2cff;

}

.switch input:checked + .slider::before{

    transform:translateX(30px);

}

.custom-rules{

    margin-top:40px;

}

.custom-rules h3{

    margin-bottom:20px;

}

#rulesContainer{

    display:flex;

    flex-wrap:wrap;

    gap:15px;

    margin-top:20px;

}

.rule-tag{

    background:#7b2cff;

    padding:12px 18px;

    border-radius:30px;

    color:white;

}
.section-title{

    margin-top:40px;
    margin-bottom:20px;

}

#profilePreview{

    margin-top:20px;

}

#profilePreview img{

    width:120px;
    height:120px;

    border-radius:50%;

    object-fit:cover;

    border:3px solid #7b2cff;

}

.documents-grid{

    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(250px,1fr));

    gap:20px;

}

.document-card{

    background:#1b1b1b;

    padding:25px;

    border-radius:20px;

    border:1px solid #292929;

}

.document-card h4{

    margin-bottom:15px;

}
.step-section{
    display:none;
}

.step-section.active-step{
    display:block;
}

.prev-btn,
.save-btn,
.publish-btn{

    padding:16px 25px;

    border:none;

    border-radius:15px;

    cursor:pointer;

}

.prev-btn{

    background:#222;

    color:white;

}

.save-btn{

    background:#ff9800;

    color:white;

}

.publish-btn{

    background:#00c853;

    color:white;

}

.success-screen{

    text-align:center;

    padding:80px;

}

.success-screen i{

    font-size:100px;

    color:#00c853;

    margin-bottom:30px;

}