/* Support page specific styles */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0);
    animation: fadeOutToDark 2s forwards;
    z-index: 1;
}

@keyframes fadeOutToDark {
    from {
        background: rgba(0, 0, 0, 0);
    }
    to {
        background: rgba(0, 0, 0, 0.7);
    }
}

/* Support page structure styles */
.support-issue {
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    padding: 20px;
    margin: 20px 0;
    background: rgba(0, 0, 0, 0.3);
    text-align: left;
}

.platform-solution {
    border-left: 2px solid rgba(255, 255, 255, 0.5);
    padding-left: 15px;
    margin: 15px 0;
    background: rgba(0, 0, 0, 0.2);
    padding: 10px 15px;
    border-radius: 5px;
}
