/* Demo Experience Modal Specific Styles */
#demo-experience-modal .modal-content {
    max-width: 900px;
}

.demo-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 30px 0;
}

.demo-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.demo-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.demo-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(2, 113, 252, 0.4);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(2, 113, 252, 0.2);
}

.demo-card:hover::before {
    left: 100%;
}

.demo-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #0271FC, #74b9ff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.demo-card:hover .demo-icon {
    transform: scale(1.1);
}

.demo-icon svg {
    width: 30px;
    height: 30px;
    color: white;
}

.demo-card h4 {
    color: white;
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 12px;
}

.demo-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    line-height: 1.5;
    margin: 0 0 20px;
}

.demo-btn {
    background: linear-gradient(135deg, #0271FC, #74b9ff);
    border: none;
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0 auto;
}

.demo-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(2, 113, 252, 0.3);
}

.demo-btn svg {
    width: 16px;
    height: 16px;
}

.demo-content-area {
    margin: 30px 0;
    min-height: 300px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 30px;
    position: relative;
}

.demo-placeholder {
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
}

.demo-placeholder svg {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    opacity: 0.5;
}

.demo-placeholder h4 {
    color: rgba(255, 255, 255, 0.8);
    font-size: 18px;
    font-weight: 500;
    margin: 0 0 10px;
}

.demo-placeholder p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    margin: 0;
}

.demo-features {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 20px;
    margin-top: 30px;
}

.demo-features h4 {
    color: white;
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 15px;
    background: linear-gradient(135deg, #0271FC, #74b9ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.demo-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.demo-features li {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    line-height: 1.5;
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
}

.demo-features li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #74b9ff;
    font-weight: bold;
    font-size: 16px;
}

/* Loading state for demo content */
.demo-content-area.loading {
    display: flex;
    align-items: center;
    justify-content: center;
}

.demo-content-area.loading::after {
    content: "";
    width: 40px;
    height: 40px;
    border: 3px solid rgba(255, 255, 255, 0.1);
    border-top-color: #0271FC;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* Responsive Design */
@media (max-width: 768px) {
    .demo-options {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .demo-card {
        padding: 20px;
    }
    
    .demo-features ul {
        grid-template-columns: 1fr;
    }
    
    .demo-content-area {
        padding: 20px;
        min-height: 250px;
    }
}

@media (max-width: 992px) and (min-width: 769px) {
    .demo-options {
        grid-template-columns: repeat(2, 1fr);
    }
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
} 