.artin-demo-scene {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0a0a0a;
    direction: rtl
}

canvas.artin-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%
}

.artin-card-wrap {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 460px;
    padding: 0 1rem
}

.artin-glass {
    background: rgba(0, 0, 0, 0.5);
    border-radius: 20px;
    padding: 1.75rem;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(7, 124, 193, 0.2)
}

.artin-field {
    margin-bottom: 0.85rem
}

.artin-field label {
    display: block;
    font-size: 11px;
    color: #64748b;
    margin-bottom: 4px
}

.artin-field input,
.artin-field select {
    width: 100%;
    padding: 10px 14px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.06);
    color: #e2e8f0;
    font-size: 13px;
    outline: none;
    direction: rtl;
    transition: border-color 0.2s;
    font-family: IranSans;
}

.artin-field select option {
    color: #484848;
    background:#FFFFFF;
}

.artin-field input::placeholder {
    color: #a0adc0
}

.artin-field input:focus,
.artin-field select:focus {
    border-color: rgba(7, 124, 193, 0.3);
    background: rgb(21 15 37 / 95%);
    color: #e2e8f0;
}

.artin-row2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem
}

.artin-btn {
    width: 100%;
    padding: 13px;
    border: none;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    margin-top: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.2s;
    background: linear-gradient(135deg, #077CC1, #077CC1);
    color: #fff;
    box-shadow: 0 4px 20px rgba(7, 124, 193, 0.4)
}

.artin-btn:hover {
    color: #ffffffaa;
}

.artin-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed
}

.artin-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border-radius: 100px;
    padding: 5px 14px;
    font-size: 11px;
    font-weight: 500;
    margin-bottom: 1rem;
    background: rgba(7, 124, 193, 0.15);
    border: 1px solid rgba(7, 124, 193, 0.3);
    color: #077CC1
}

.artin-dot {
    width: 6px;
    height: 6px;
    background: #077CC1;
    border-radius: 50%;
    display: inline-block;
    animation: artin-pulse 2s infinite
}

.artin-title {
    font-size: clamp(18px, 3vw, 24px);
    font-weight: 700;
    color: #fff;
    line-height: 1.4;
    margin: 0
}

.artin-gradient {
    background: linear-gradient(90deg, #077CC1, #077CC1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.artin-error {
    display: none;
    color: #ef4444;
    font-size: 11px;
    margin-top: 4px;
    font-weight: 400
}

@keyframes artin-pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1)
    }

    50% {
        opacity: 0.4;
        transform: scale(1.5)
    }
}

@media(max-width:480px) {
    .artin-row2 {
        grid-template-columns: 1fr
    }
}

.page-id-3478 .container {
    max-width: 100% !important;
    width: 100% !important;
}

.page-id-3478 canvas {
    width: 100% !important;
}