* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}



/* Decorative background elements */
.bg-decoration {
    position: absolute;
    opacity: 0.1;
}

.star-1 {
    top: 10%;
    left: 15%;
    font-size: 24px;
    color: #fff;
    animation: float 3s ease-in-out infinite;
}

.star-2 {
    top: 20%;
    right: 20%;
    font-size: 18px;
    color: #fff;
    animation: float 4s ease-in-out infinite reverse;
}

.star-3 {
    bottom: 30%;
    left: 10%;
    font-size: 20px;
    color: #fff;
    animation: float 5s ease-in-out infinite;
}

.rocket {
    top: 15%;
    right: 10%;
    font-size: 32px;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

@keyframes bounce {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-5px); }
}

.container {
    background: white;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    width: 100%;
    padding: 30px 30px 40px 30px;
    
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.header {
    text-align: center;
    margin-bottom: 25px;
}

.logo {
    font-size: 28px;
    font-weight: 700;
}

.logo .pro {
    color: #4f46e5;
}

.logo .profs {
    color: #1f2937;
}

.logo .picreel {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #6b7280;
    margin-top: -5px;
}

.welcome-title {
    font-size: 32px;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 20px 0;
}

.rocket-emoji {
    margin-left: 8px;
}

.success-badge {
    display: inline-flex;
    align-items: center;
    background: #dcfce7;
    color: #16a34a;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 16px;
}

.success-badge::before {
    content: "✅";
    margin-right: 8px;
}

.subtitle {
    color: #6b7280;
    font-size: 16px;
    margin-bottom: 32px;
}

.launch-button {
    background: #1870D5;
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    margin-bottom: 0px;
   
}

.launch-button:hover {
    background-color: #0A53A8 !important;
}

.launch-button::after {
    content: "→";
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.launch-button:hover::after {
    transform: translateX(4px);
}

.features-section {
    text-align: left;
}

.features-title {
    font-size: 24px;
    font-weight: 700;
    color: #1f2937;
    text-align: center;
    margin-bottom: 8px;
}

.features-subtitle {
    color: #6b7280;
    text-align: center;
    margin-bottom: 32px;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 0px;
}

.feature-item {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #374151;
}

.feature_name {
    margin-left: 10px;
}

.feature-item .icon {
    margin-left: 8px;
    opacity: 0.7;
}

.pro-tip {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.pro-tip-icon {
    background: #4f46e5;
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
}

.pro-tip-content h4 {
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 4px;
}

.pro-tip-content p {
    color: #6b7280;
    font-size: 14px;
    line-height: 1.5;
}

.bottom-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid #e5e7eb;
}

.skip-link {
    color: #6b7280;
    text-decoration: none;
    font-size: 14px;
}

.tutorial-button {
    background: transparent;
    border: 1px solid #d1d5db;
    color: #374151;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 14px;
    cursor: pointer;
    margin-right: 12px;
}

.get-started-button {
    background: #4f46e5;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
}

@media (max-width: 640px) {
    .container {
        padding: 24px;
        margin: 10px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .welcome-title {
        font-size: 24px;
    }

    .bottom-actions {
        flex-direction: column;
        gap: 12px;
    }
}
#wpbody-content{
    padding-bottom: 0 !important;
    height: 100vh;
}

#wpbody{
    height: 100vh;
}