/* Success Page Styles */

/* Gray Background Wrapper for Account Info */
.success-info-wrapper {
    background-color: #f5f5f5;
    padding: 40px 0;
    margin-bottom: 40px;
}

.account-info-section {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 20px 30px;
}

.account-info-section .info-item {
    margin-bottom: 30px;
}

.account-info-section .heading {
    margin-bottom: 8px;
    font-weight: 400;
    color: #666;
}

.account-info-section .content {
    font-weight: 600;
    margin-bottom: 8px;
    color: #000;
}

.account-info-section .description {
    margin-top: 8px;
    line-height: 1.5;
    color: #666;
}

/* Subscription Status */
.subscription-status {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    text-align: center;
}

.subscription-status .status-icon {
    margin-bottom: 10px;
    display: flex;
    justify-content: center;
}

.subscription-status h3 {
    font-weight: 600;
    margin: 10px 0;
}

.subscription-status p {
    color: #666;
}

/* Start Watching Button */
.start-watching-btn {
    margin-top: 30px;
    margin-bottom: 20px;
    text-align: center;
}


.standardbtn_lg:hover {
    background-color: #e67e00;
    border-color: #e67e00;
    color: white !important;
}

/* Section Divider */
.section-divider {
    border: none;
    border-top: 1px solid #e0e0e0;
    margin: 40px 0;
}

/* Download Section */
.download-title {
    margin: 30px 0 40px;
    font-weight: 600;
}

.nowtv-apps-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.download-layout {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 50px;
}

/* Devices Section (Left) */
.devices-section {
    flex: 0 0 auto;
    padding-top: 20px;
}

.devices-section img {
    max-width: 340px;
    width: 100%;
    height: auto;
}

/* Mobile Apps Section (Middle) */
.mobile-apps-section {
    flex: 0 0 auto;
    text-align: center;
    min-width: 180px;
}

.nowtv-app-logo {
    margin-bottom: 25px;
}

.nowtv-app-logo img {
    width: 70px;
    height: auto;
}

.section-title {
    font-size: 16px;
    font-weight: 600;
    color: #FF8C00;
    margin-bottom: 18px;
}

.store-badges {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
}

.store-badges a {
    display: block;
}

.store-badges img {
    height: 40px;
    width: auto;
}

/* Smart TV Section (Right) */
.smart-tv-section {
    flex: 0 0 auto;
    text-align: left;
    min-width: 180px;
}

.smart-tv-section .section-title {
    text-align: left;
}

.tv-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.tv-item {
    font-size: 16px;
    color: #333;
    font-weight: 500;
    display: flex;
    align-items: center;
    line-height: 1.5;
}

.tv-label {
    font-size: 11px;
    color: #999;
    margin-left: 5px;
    font-weight: normal;
}

.tv-logo-img {
    height: 20px;
    width: auto;
}

/* Responsive */
@media (max-width: 1024px) {
    .download-layout {
        gap: 40px;
    }
    
    .devices-section img {
        max-width: 300px;
    }
}

@media (max-width: 768px) {
    .success-info-wrapper {
        padding: 30px 0;
    }
    
    .account-info-section,
    .subscription-status {
        padding: 20px 15px;
    }
    
    .nowtv-apps-wrapper {
        padding: 15px;
    }
    
    .download-layout {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }
    
    .devices-section {
        padding-top: 0;
    }
    
    .devices-section img {
        max-width: 280px;
    }
    
    .mobile-apps-section,
    .smart-tv-section {
        text-align: center;
    }
    
    .smart-tv-section .section-title {
        text-align: center;
    }
    
    .tv-list {
        align-items: center;
    }
    
    .standardbtn_lg {
        padding: 12px 40px;
        font-size: 15px;
    }
}

