/* Page-specific styles */

/* FAQ Page */
.faq-page-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
}

.faq-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    padding: 40px;
    margin-top: 30px;
    backdrop-filter: blur(10px);
}

.faq-section {
    margin-bottom: 40px;
}

.faq-section:not(:last-child) {
    padding-bottom: 40px;
    border-bottom: 1px solid var(--glass-border);
}

.faq-section h2 {
    font-family: 'Orbitron', sans-serif;
    color: #40E0D0;
    font-size: 22px;
    margin-bottom: 25px;
    border-left: 4px solid #40E0D0;
    padding-left: 15px;
    line-height: 1.4;
}

.faq-section h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 18px;
    color: #fff;
    margin: 30px 0 15px;
}

.faq-section p {
    font-size: 16px;
    color: #ccc;
    margin-bottom: 20px;
    line-height: 1.8;
}

.steps-list {
    list-style: none;
    padding: 0;
}

.step-item {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background: rgba(255, 255, 255, 0.03);
    padding: 15px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.3s ease;
}

.step-item:hover {
    transform: translateX(5px);
    background: rgba(255, 255, 255, 0.05);
}

.step-number {
    background: #40E0D0;
    color: #000;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-weight: bold;
    font-family: 'Orbitron', sans-serif;
    font-size: 14px;
}

.step-text {
    color: #eee;
    line-height: 1.6;
}

.optional-steps {
    list-style: none;
    padding: 0;
}

.optional-steps li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #bbb;
    font-size: 15px;
}

.optional-steps li i {
    color: #40E0D0;
    font-size: 14px;
}

.winrar-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    background: rgba(64, 224, 208, 0.1);
    border: 1px solid #40E0D0;
    color: #40E0D0;
    text-decoration: none;
    border-radius: 25px;
    font-family: 'Orbitron', sans-serif;
    font-size: 14px;
    font-weight: bold;
    transition: all 0.3s;
}

.winrar-btn:hover {
    background: #40E0D0;
    color: #000;
    box-shadow: 0 0 20px rgba(64, 224, 208, 0.3);
}

@media (max-width: 768px) {
    .faq-card {
        padding: 25px;
    }

    .faq-section h2 {
        font-size: 18px;
    }

    .faq-section h3 {
        font-size: 16px;
    }

    .faq-section p {
        font-size: 14px;
    }
}

/* Share Buttons */
.vny-share-container {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 15px;
    margin: 20px 0;
    padding-top: 10px;
}

.vny-share-label {
    font-family: 'Orbitron', sans-serif;
    font-size: 11px;
    color: var(--accent);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: bold;
    margin-right: 15px;
}

.vny-share-buttons {
    display: flex;
    gap: 12px;
}

.vny-share-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    /* Glass effect */
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

.vny-share-btn:hover {
    background: rgba(64, 224, 208, 0.2);
    color: #40E0D0;
    border-color: rgba(64, 224, 208, 0.5);
    box-shadow: 0 0 15px rgba(64, 224, 208, 0.2);
}

.vny-share-buttons a[href*="facebook.com"]:hover {
    background: rgba(24, 119, 242, 0.2);
    color: #1877F2;
    border-color: rgba(24, 119, 242, 0.5);
    box-shadow: 0 0 15px rgba(24, 119, 242, 0.3);
}

.vny-share-buttons a[href*="x.com"]:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}

.vny-share-buttons a[href*="whatsapp.com"]:hover {
    background: rgba(37, 211, 102, 0.2);
    color: #25D366;
    border-color: rgba(37, 211, 102, 0.5);
    box-shadow: 0 0 15px rgba(37, 211, 102, 0.3);
}

.vny-share-btn i {
    font-size: 15px;
    pointer-events: none;
}

.copy-tooltip {
    position: absolute;
    bottom: 115%;
    left: 50%;
    transform: translateX(-50%) translateY(5px);
    background: var(--accent);
    color: #000;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 10px;
    font-family: 'Orbitron', sans-serif;
    font-weight: bold;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    pointer-events: none;
    white-space: nowrap;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

.copy-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: var(--accent) transparent transparent transparent;
}

.copy-link-btn.copied .copy-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

@media (max-width: 768px) {
    .vny-share-container {
        justify-content: flex-end;
        align-items: flex-end;
        flex-direction: column;
        gap: 10px;
        padding-right: 15px;
    }
}

/* Comments */
#cusdis_thread {
    background: rgba(255, 255, 255, 0.02);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);

    /* Custom Theme Variables */
    --cusdis-background: #0b0b0b;
    --cusdis-text-color: #f5f5f5;
    --cusdis-secondary-text-color: #888;
    --cusdis-input-bg: #151515;
    --cusdis-border-color: #222;
    --cusdis-button-bg: #b3003c;
    --cusdis-button-hover-bg: #e6004c;
}