/* Support Hub Styles */
.stz-support-hub {
    min-height: 100vh;
    padding-top: 40px;
    /* background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%); */
}

.stz-support-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.stz-support-header {
    text-align: center;
    margin-bottom: 60px;
}

.stz-support-header h1 {
    font-size: 3.5rem;
    font-weight: bold;
    color: #fff;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #ffb300, #ff8a00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stz-support-header p {
    font-size: 1.3rem;
    color: #ccc;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Quick Actions */
.stz-quick-actions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-bottom: 80px;
}

.stz-quick-action-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 32px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.stz-quick-action-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 179, 0, 0.3);
}

.stz-quick-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.stz-quick-action-card.github-issues .stz-quick-icon {
    background: linear-gradient(135deg, #24292e, #586069);
}

.stz-quick-action-card.bug-report .stz-quick-icon {
    background: linear-gradient(135deg, #dc3545, #c82333);
}

.stz-quick-action-card.technical-support .stz-quick-icon {
    background: linear-gradient(135deg, #ffb300, #ff8a00);
}

.stz-quick-content h3 {
    font-size: 1.5rem;
    font-weight: bold;
    color: #fff;
    margin-bottom: 8px;
}

.stz-quick-content p {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 20px;
}

.stz-quick-btn {
    background: linear-gradient(135deg, #ffb300, #ff8a00);
    color: #fff;
    border: none;
    padding: 12px 24px;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    align-self: flex-start;
}

.stz-quick-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 179, 0, 0.3);
    color: #fff;
    text-decoration: none;
}

/* Support Sections */
.stz-support-section {
    margin-bottom: 80px;
}

.stz-section-header {
    text-align: center;
    margin-bottom: 48px;
}

.stz-section-header h2 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #fff;
    margin-bottom: 16px;
}

.stz-section-header p {
    font-size: 1.2rem;
    color: #ccc;
    max-width: 600px;
    margin: 0 auto;
}

/* Support Grid */
.stz-support-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
}

.stz-support-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 32px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.stz-support-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.stz-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: linear-gradient(135deg, #ffb300, #ff8a00);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-bottom: 24px;
}

.stz-support-card h3 {
    font-size: 1.4rem;
    font-weight: bold;
    color: #fff;
    margin-bottom: 16px;
}

.stz-support-card p {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 24px;
}

.stz-card-images {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
}

.stz-guide-img {
    width: 120px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stz-guide-img-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: #ccc;
    font-size: 0.8rem;
}

.stz-guide-img-placeholder svg {
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stz-troubleshoot-list {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.stz-troubleshoot-list li {
    color: #ccc;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.stz-troubleshoot-list li:before {
    content: "🔧";
    margin-right: 12px;
}

.stz-api-links {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.stz-api-link {
    background: rgba(255, 179, 0, 0.1);
    color: #ffb300;
    padding: 8px 16px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.9rem;
    border: 1px solid rgba(255, 179, 0, 0.3);
    transition: all 0.3s ease;
}

.stz-api-link:hover {
    background: rgba(255, 179, 0, 0.2);
    color: #ffb300;
    text-decoration: none;
}

.stz-card-link {
    color: #ffb300;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.stz-card-link:hover {
    color: #ff8a00;
    text-decoration: none;
}

/* Bug Report Section */
.stz-bug-report-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 48px;
    align-items: start;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border-radius: 20px;
}

.stz-bug-form-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.stz-bug-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.stz-form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.stz-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.stz-form-group label {
    color: #fff;
    font-size: 1rem;
    font-weight: 500;
}

.stz-form-input {
    padding: 16px 20px;
    border-radius: 12px;
    border: 1px solid #444;
    background: transparent;
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.stz-form-input:focus {
    outline: none;
    border-color: #ffb300;
    box-shadow: 0 0 0 2px rgba(255, 179, 0, 0.2);
    background: rgba(255, 179, 0, 0.05);
}

.stz-form-input::placeholder {
    color: #888;
}

/* Select styling for long options */
.stz-form-input[type="select"] option {
    padding: 8px;
    font-size: 0.9rem;
}

/* Custom select styling */
.stz-form-input {
    padding: 16px 20px;
    border-radius: 12px;
    border: 1px solid #444;
    background: transparent;
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.stz-form-input:focus {
    outline: none;
    border-color: #ffb300;
    box-shadow: 0 0 0 2px rgba(255, 179, 0, 0.2);
    background: rgba(255, 179, 0, 0.05);
}

/* Select dropdown styling */
.stz-form-input option {
    background-color: #2d2d2d;
    color: #fff;
    padding: 12px;
}

.stz-form-input option:hover {
    background-color: #ffb300;
    color: #000;
}

/* File Upload */
.stz-file-upload {
    position: relative;
}

.stz-file-input {
    position: absolute;
    opacity: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.stz-file-label {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    border: 2px dashed #444;
    border-radius: 12px;
    color: #ccc;
    cursor: pointer;
    transition: all 0.3s ease;
}

.stz-file-label:hover {
    border-color: #ffb300;
    color: #ffb300;
}

.stz-screenshot-preview {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 16px;
}

.stz-preview-img {
    width: 100px;
    height: 70px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Form Actions */
.stz-form-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 16px;
}

.stz-submit-btn {
    background: linear-gradient(135deg, #ffb300, #ff8a00);
    color: #fff;
    border: none;
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.stz-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 179, 0, 0.3);
}

.stz-submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.stz-form-message {
    font-size: 1rem;
    font-weight: 500;
}

.stz-form-message.success {
    color: #4CAF50;
}

.stz-form-message.error {
    color: #f44336;
}

/* Bug Info Card */
.stz-bug-info-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 32px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.stz-bug-info-card h3 {
    font-size: 1.4rem;
    font-weight: bold;
    color: #fff;
    margin-bottom: 24px;
}

.stz-bug-tips {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.stz-tip {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.stz-tip-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.stz-tip-content h4 {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.stz-tip-content p {
    color: #ccc;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* GitHub Section */
.stz-github-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.stz-github-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.stz-github-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
    color: #fff;
}

.stz-github-header h3 {
    font-size: 1.6rem;
    font-weight: bold;
}

.stz-github-card p {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 32px;
}

.stz-github-stats {
    display: flex;
    gap: 32px;
    margin-bottom: 32px;
}

.stz-stat {
    text-align: center;
}

.stz-stat-number {
    display: block;
    font-size: 2rem;
    font-weight: bold;
    color: #ffb300;
}

.stz-stat-label {
    color: #ccc;
    font-size: 0.9rem;
}

.stz-github-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.stz-github-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 24px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
    justify-content: center;
}

.stz-github-btn.primary {
    background: linear-gradient(135deg, #24292e, #586069);
    color: #fff;
}

.stz-github-btn.secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stz-github-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    color: #fff;
    text-decoration: none;
}

/* GitHub Guide */
.stz-github-guide {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 32px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.stz-github-guide h3 {
    font-size: 1.4rem;
    font-weight: bold;
    color: #fff;
    margin-bottom: 24px;
}

.stz-guide-steps {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.stz-guide-step {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.stz-step-number {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ffb300, #ff8a00);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.stz-step-content h4 {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.stz-step-content p {
    color: #ccc;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 768px) {
    .stz-support-header h1 {
        font-size: 2.5rem;
    }
    
    .stz-support-header p {
        font-size: 1.1rem;
    }
    
    .stz-quick-actions {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .stz-support-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .stz-bug-report-container {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .stz-form-row {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .stz-github-container {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .stz-github-stats {
        gap: 20px;
    }
    
    .stz-github-actions {
        flex-direction: column;
    }
    
    .stz-faq-question {
        padding: 20px;
        font-size: 1rem;
    }
    
    .stz-faq-answer p {
        padding: 0 20px 20px;
    }
}

@media (max-width: 480px) {
    .stz-support-container {
        padding: 0 16px;
    }
    
    .stz-support-header h1 {
        font-size: 2rem;
    }
    
    .stz-section-header h2 {
        font-size: 2rem;
    }
    
    .stz-quick-action-card,
    .stz-support-card,
    .stz-bug-form-card,
    .stz-bug-info-card,
    .stz-github-card,
    .stz-github-guide {
        padding: 24px;
    }
    
    .stz-form-input {
        padding: 14px 16px;
    }
    
    .stz-submit-btn {
        padding: 14px 24px;
        font-size: 1rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.stz-quick-action-card {
    animation: fadeInUp 0.6s ease-out;
}

.stz-quick-action-card:nth-child(1) { animation-delay: 0.1s; }
.stz-quick-action-card:nth-child(2) { animation-delay: 0.2s; }
.stz-quick-action-card:nth-child(3) { animation-delay: 0.3s; }

.stz-support-card {
    animation: slideInLeft 0.6s ease-out;
}

.stz-support-card:nth-child(1) { animation-delay: 0.4s; }
.stz-support-card:nth-child(2) { animation-delay: 0.5s; }
.stz-support-card:nth-child(3) { animation-delay: 0.6s; }

.stz-bug-form-card {
    animation: fadeInUp 0.6s ease-out 0.7s both;
}

.stz-bug-info-card {
    animation: slideInLeft 0.6s ease-out 0.8s both;
}

/* FAQ Section */
.stz-faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.stz-faq-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    margin-bottom: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.stz-faq-item:hover {
    border-color: rgba(255, 179, 0, 0.3);
}

.stz-faq-item.active {
    border-color: rgba(255, 179, 0, 0.5);
    box-shadow: 0 8px 20px rgba(255, 179, 0, 0.1);
}

.stz-faq-question {
    width: 100%;
    padding: 24px;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s ease;
}

.stz-faq-question:hover {
    background: rgba(255, 255, 255, 0.05);
}

.stz-faq-icon {
    color: #ffb300;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 16px;
}

.stz-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: rgba(0, 0, 0, 0.2);
}

.stz-faq-answer p {
    padding: 0 24px 24px;
    color: #ccc;
    line-height: 1.6;
    margin: 0;
} 