/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

/* Header Styles - Fedeli all'originale */
.jupiterx-header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.elementor {
    width: 100%;
}

.e-con-boxed {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.e-con-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 0;
}

.e-flex {
    display: flex;
}

.e-child {
    flex: 1;
}

/* Logo Styles */
.raven-site-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.raven-site-logo-link {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: default;
}

.raven-site-logo img {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    margin-bottom: 8px;
}

.logo-text {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    text-align: center;
}

/* Main Content - Under Construction */
.main-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 70vh;
    text-align: center;
    padding: 60px 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.construction-container {
    max-width: 800px;
    padding: 40px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.construction-icon {
    font-size: 80px;
    color: #6c757d;
    margin-bottom: 30px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.construction-title {
    font-size: 48px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

.construction-subtitle {
    font-size: 24px;
    color: #6c757d;
    margin-bottom: 30px;
    font-weight: 300;
}

.construction-message {
    font-size: 18px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 40px;
}

/* Footer Styles - Fedeli all'originale */
.jupiterx-footer {
    background: #333;
    color: #fff;
    padding: 60px 0 20px;
    margin-top: 60px;
}

.elementor-6076 .e-con-inner {
    display: flex;
    flex-direction: column;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.elementor-element-cafe52c {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    width: 100%;
}

.elementor-element-cafe52c .e-con-full.e-flex.e-con.e-child {
    max-width: 600px;
}

.elementor-element-706c9b33 {
    margin-bottom: 40px;
}

.elementor-element-706c9b33 img {
    width: 120px;
    height: auto;
    filter: brightness(0) invert(1);
}

.elementor-element-534f8a84 {
    border-top: 1px solid #555;
    padding-top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.elementor-heading-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #fff;
}

.elementor-icon-list-items {
    list-style: none;
    padding: 0;
}

.elementor-icon-list-item {
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
}

.elementor-icon-list-item a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.elementor-icon-list-item a:hover {
    color: #fff;
}

.elementor-icon-list-icon {
    margin-right: 10px;
    color: #8295a0;
    min-width: 20px;
    width: 20px;
}

.elementor-icon-list-icon i {
    color: #8295a0;
}

.elementor-icon-list-text {
    line-height: 1.5;
}

.elementor-element-13498b05 .elementor-heading-title {
    color: #999;
    font-size: 14px;
    margin: 0;
    text-align: center;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .elementor-element-cafe52c {
        justify-content: flex-start;
        gap: 0;
    }

    .construction-title {
        font-size: 36px;
    }

    .construction-subtitle {
        font-size: 20px;
    }

    .main-content {
        padding: 40px 20px;
    }

    .construction-container {
        padding: 30px 20px;
    }

    .raven-site-logo img {
        width: 50px;
        height: 50px;
    }

    .logo-text {
        font-size: 14px;
    }

    .construction-icon {
        font-size: 60px;
    }
}

@media (max-width: 480px) {
    .construction-title {
        font-size: 28px;
    }

    .construction-subtitle {
        font-size: 18px;
    }

    .construction-message {
        font-size: 16px;
    }

    .e-con-boxed {
        padding: 0 15px;
    }

    .construction-container {
        padding: 25px 15px;
    }
}