/* Use Guide Page Styles */

/* Main Content */
.use-guide-main {
    background-color: #f5f5f5;
    min-height: calc(100vh - 60px);
    padding: 40px 20px 60px;
}

.use-guide-container {
    max-width: 1200px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 50px 60px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

/* Page Title */
.page-title {
    font-size: 36px;
    font-weight: 800;
    color: #000000;
    text-align: center;
    margin-bottom: 50px;
    padding-bottom: 20px;
    border-bottom: 2px solid #e0e0e0;
}

/* Guide Sections */
.guide-section {
    margin-bottom: 60px;
}

.section-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.section-text {
    padding-right: 20px;
}

.section-title {
    font-size: 24px;
    font-weight: 700;
    color: #0a0a0a;
    margin-bottom: 10px;
    padding-left: 15px;
    border-left: 4px solid #3b82f6;
}

.section-subtitle {
    font-size: 14px;
    color: #ff0000;
    margin-bottom: 20px;
    padding-left: 19px;
}

/* Numbered List with Badges */
.numbered-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.numbered-list li {
    font-size: 15px;
    line-height: 1.8;
    color: #333333;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.number-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
    flex-shrink: 0;
}

.number-badge.orange {
    background: #ff8c00;
}

.number-badge.blue {
    background: #3b82f6;
}

/* Rules List */
.rules-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.rules-list li {
    font-size: 15px;
    line-height: 1.8;
    color: #333333;
    margin-bottom: 12px;
    padding-left: 10px;
}

/* Process List */
.process-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.process-list li {
    font-size: 15px;
    line-height: 1.8;
    color: #333333;
    margin-bottom: 12px;
    padding-left: 10px;
}

/* Section Image */
.section-image {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.guide-image {
    width: 100%;
    max-width: 350px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.guide-image:hover {
    transform: scale(1.02);
}

.image-label {
    margin-top: -4px;
    background: #ff8c00;
    color: #ffffff;
    padding: 8px 20px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 0 0 8px 8px;
    width: 100%;
    max-width: 350px;
    text-align: center;
}

.image-placeholder {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, #f0f0f0 0%, #e0e0e0 100%);
    border: 2px dashed #cccccc;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
}

.placeholder-label {
    font-size: 16px;
    font-weight: 600;
    color: #666666;
    margin-bottom: 10px;
}

.placeholder-text {
    font-size: 13px;
    color: #999999;
    margin: 0;
}

/* Payment Section */
.payment-section {
    margin-top: 60px;
}

.payment-section .section-title {
    margin-bottom: 15px;
}

.payment-intro {
    font-size: 15px;
    line-height: 1.8;
    color: #555555;
    margin-bottom: 30px;
}

/* Payment Cards */
.payment-card {
    background-color: #fafafa;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 30px;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.payment-card:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border-color: #c4ff0d;
}

.payment-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 2px solid #e0e0e0;
}

.payment-logo {
    height: 60px;
    width: auto;
    max-width: 150px;
    object-fit: contain;
    border-radius: 6px;
}

.payment-title {
    font-size: 20px;
    font-weight: 700;
    color: #000000;
}

.payment-instructions h4 {
    font-size: 16px;
    font-weight: 600;
    color: #333333;
    margin-bottom: 15px;
}

.payment-instructions ol {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
    counter-reset: payment-counter;
}

.payment-instructions ol li {
    font-size: 14px;
    line-height: 1.8;
    color: #555555;
    margin-bottom: 10px;
    padding-left: 30px;
    position: relative;
    counter-increment: payment-counter;
}

.payment-instructions ol li::before {
    content: counter(payment-counter) ".";
    position: absolute;
    left: 0;
    font-weight: 600;
    color: #000000;
}

.screenshot-placeholder {
    width: 100%;
    height: 250px;
    background: linear-gradient(135deg, #f8f8f8 0%, #ececec 100%);
    border: 2px dashed #d0d0d0;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
    color: #888888;
}

/* Contact Section */
.contact-section {
    background: linear-gradient(135deg, #f9f9f9 0%, #f0f0f0 100%);
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 40px;
    text-align: center;
    margin-top: 60px;
}

.contact-title {
    font-size: 28px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 15px;
}

.contact-description {
    font-size: 15px;
    line-height: 1.8;
    color: #555555;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.contact-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 35px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.contact-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.whatsapp-btn {
    background-color: #25D366;
    color: #ffffff;
}

.whatsapp-btn:hover {
    background-color: #20BA5A;
}

.email-btn {
    background-color: #4285F4;
    color: #ffffff;
}

.email-btn:hover {
    background-color: #3367D6;
}

.telegram-btn {
    background-color: #0088cc;
    color: #ffffff;
}

.telegram-btn:hover {
    background-color: #006699;
}

/* Footer */
.footer {
    background-color: #000000;
    color: #ffffff;
    padding: 50px 20px 25px;
    border-top: 1px solid #1a1a1a;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 30px;
}

.footer-column h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: #888888;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #c4ff0d;
}

.footer-column p {
    color: #888888;
    font-size: 13px;
    line-height: 1.8;
    margin-bottom: 8px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #1a1a1a;
}

.footer-bottom p {
    color: #666666;
    font-size: 13px;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 992px) {
    .use-guide-container {
        padding: 40px 40px;
    }

    .section-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .section-text {
        padding-right: 0;
    }

    .page-title {
        font-size: 30px;
    }

    .section-title {
        font-size: 22px;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .use-guide-main {
        padding: 20px 15px 40px;
    }

    .use-guide-container {
        padding: 30px 25px;
    }

    .page-title {
        font-size: 26px;
        margin-bottom: 35px;
    }

    .section-title {
        font-size: 20px;
    }

    .payment-card {
        padding: 20px;
    }

    .payment-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .payment-logo {
        height: 50px;
        max-width: 130px;
    }

    .contact-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .contact-btn {
        justify-content: center;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .use-guide-main {
        padding: 15px 10px 30px;
    }

    .use-guide-container {
        padding: 20px 15px;
        border-radius: 4px;
    }

    .page-title {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .section-title {
        font-size: 16px;
        padding-bottom: 8px;
        margin-bottom: 15px;
    }

    .section-content {
        gap: 15px;
    }

    .rules-list li,
    .process-list li {
        font-size: 13px;
        padding-left: 25px;
        margin-bottom: 10px;
    }

    .rules-list li::before,
    .process-list li::before {
        width: 20px;
        height: 20px;
        font-size: 11px;
        line-height: 20px;
    }

    .image-placeholder {
        padding: 30px 15px;
        font-size: 12px;
    }

    .payment-cards {
        gap: 12px;
    }

    .payment-card {
        padding: 15px;
    }

    .payment-logo {
        height: 40px;
        max-width: 120px;
    }

    .payment-title {
        font-size: 15px;
        margin-bottom: 10px;
    }

    .payment-instructions li {
        font-size: 12px;
        margin-bottom: 8px;
    }

    .payment-screenshot {
        height: 120px;
        font-size: 11px;
    }

    .contact-section {
        padding: 25px 15px;
    }

    .contact-title {
        font-size: 18px;
    }

    .contact-description {
        font-size: 13px;
        margin-bottom: 20px;
    }

    .contact-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .contact-btn {
        width: 100%;
        padding: 12px 20px;
        font-size: 14px;
    }

    .contact-btn svg {
        width: 20px;
        height: 20px;
    }
}

/* Extra small phones */
@media (max-width: 360px) {
    .use-guide-container {
        padding: 15px 10px;
    }

    .page-title {
        font-size: 18px;
    }

    .section-title {
        font-size: 15px;
    }

    .rules-list li,
    .process-list li {
        font-size: 12px;
        padding-left: 22px;
    }

    .payment-card {
        padding: 12px;
    }

    .payment-title {
        font-size: 14px;
    }

    .contact-btn {
        padding: 10px 16px;
        font-size: 13px;
    }
}

