/* Google Play Store Screen (Slide 5) */
.playstore-bg {
    background: #FFFFFF;
    padding: 0;
    overflow-y: auto;
    max-height: 100%;
    -webkit-overflow-scrolling: touch;
}

.playstore-bg::-webkit-scrollbar {
    width: 4px;
}

.playstore-bg::-webkit-scrollbar-track {
    background: transparent;
}

.playstore-bg::-webkit-scrollbar-thumb {
    background: #DADCE0;
    border-radius: 4px;
}

.playstore-bg::-webkit-scrollbar-thumb:hover {
    background: #BDC1C6;
}

.playstore-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    background: #FFFFFF;
    border-bottom: 1px solid #E8EAED;
}

.playstore-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.playstore-title {
    font-size: 20px;
    color: #5F6368;
    font-weight: 400;
    font-family: 'Product Sans', Arial, sans-serif;
}

.playstore-icons {
    display: flex;
    align-items: center;
    gap: 16px;
}

.playstore-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4285F4, #34A853);
}

.playstore-app-info {
    display: flex;
    gap: 16px;
    padding: 20px 16px;
}

.playstore-app-icon {
    flex-shrink: 0;
}

.pdf-icon-large {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #DC143C, #8B0000);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 24px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.playstore-app-details {
    flex: 1;
}

.playstore-app-name {
    font-size: 22px;
    font-weight: 400;
    color: #202124;
    margin: 0 0 4px 0;
    line-height: 1.3;
}

.playstore-developer {
    font-size: 14px;
    color: #01875F;
    font-weight: 500;
    margin: 0 0 4px 0;
}

.playstore-meta {
    font-size: 12px;
    color: #5F6368;
    margin: 0;
}

.playstore-stats {
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 16px;
    border-top: 1px solid #E8EAED;
    border-bottom: 1px solid #E8EAED;
}

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

.stat-value {
    font-size: 16px;
    font-weight: 500;
    color: #202124;
    margin-bottom: 4px;
}

.stat-value .star {
    color: #FFB300;
    font-size: 14px;
}

.stat-label {
    font-size: 12px;
    color: #5F6368;
}

.stat-divider {
    width: 1px;
    height: 32px;
    background: #E8EAED;
}

.playstore-install-btn {
    width: calc(100% - 32px);
    margin: 16px 16px 12px;
    padding: 12px;
    background: #01875F;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-transform: capitalize;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

.playstore-install-btn:hover {
    background: #017A56;
    box-shadow: 0 2px 4px rgba(0,0,0,0.25);
}

.playstore-install-btn:active {
    transform: scale(0.98);
}

.playstore-actions {
    display: flex;
    gap: 12px;
    padding: 0 16px 16px;
}

.playstore-action-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px;
    background: white;
    border: 1px solid #DADCE0;
    border-radius: 8px;
    color: #01875F;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.playstore-action-btn:hover {
    background: #F8F9FA;
}

.playstore-banner {
    background: linear-gradient(135deg, #DC143C 0%, #8B0000 100%);
    padding: 20px;
    margin: 16px;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.banner-content {
    display: flex;
    gap: 16px;
    align-items: center;
}

.banner-phone {
    flex-shrink: 0;
}

.phone-screen {
    width: 120px;
    height: 160px;
    background: white;
    border-radius: 12px;
    padding: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    position: relative;
}

.ai-badge {
    background: #6B46C1;
    color: white;
    font-size: 9px;
    padding: 4px 8px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 8px;
    font-weight: 600;
}

.phone-screen h3 {
    font-size: 9px;
    color: #202124;
    margin: 0 0 6px 0;
    font-weight: 600;
    line-height: 1.3;
}

.phone-screen p {
    font-size: 8px;
    color: #5F6368;
    margin: 0;
    line-height: 1.4;
}

.banner-text {
    flex: 1;
    color: white;
}

.banner-text h2 {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 8px 0;
}

.banner-text p {
    font-size: 13px;
    margin: 0 0 12px 0;
    opacity: 0.95;
}

.banner-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.2);
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 11px;
}

.rating-icon {
    font-size: 16px;
}

.rating-stars {
    margin-left: auto;
    font-weight: 600;
}

/* Screenshots Section */
.screenshots-section {
    padding: 16px 0;
    background: #FFFFFF;
    border-top: 8px solid #F1F3F4;
}

.screenshots-scroll {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding: 0 16px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.screenshots-scroll::-webkit-scrollbar {
    display: none;
}

.screenshots-title {
    font-size: 16px;
    font-weight: 500;
    color: #202124;
    margin-bottom: 12px;
    padding: 0 16px;
}

.screenshot-item {
    flex-shrink: 0;
}

.screenshot-img {
    width: 160px;
    height: 280px;
    border-radius: 16px;
    object-fit: cover;
    box-shadow: 0 1px 3px rgba(0,0,0,0.12);
    border: 1px solid #DADCE0;
    display: block;
}

.screenshot-placeholder {
    width: 160px;
    height: 280px;
    background: linear-gradient(135deg, #F1F3F4 0%, #E8EAED 100%);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.12);
    border: 1px solid #DADCE0;
}

.screenshot-placeholder svg {
    opacity: 0.5;
}

.screenshot-placeholder p {
    font-size: 12px;
    color: #5F6368;
    margin: 0;
    font-weight: 500;
}

/* Playstore Sections */
.playstore-section {
    border-top: 8px solid #F1F3F4;
    background: #FFFFFF;
}

.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 16px;
    cursor: pointer;
    transition: background 0.2s;
}

.section-header:hover {
    background: #F8F9FA;
}

.section-header h3 {
    font-size: 18px;
    font-weight: 500;
    color: #202124;
    margin: 0;
}

.section-header svg {
    transition: transform 0.3s;
}

.section-header.expanded svg {
    transform: rotate(90deg);
}

.section-content {
    padding: 0 16px 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.section-content.show {
    max-height: 2000px;
    padding: 0 16px 20px;
}

.about-text {
    font-size: 14px;
    color: #5F6368;
    line-height: 1.6;
    margin: 0 0 12px 0;
}

.see-more-btn {
    background: transparent;
    border: none;
    color: #1967D2;
    font-size: 14px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 8px 0;
    cursor: pointer;
    margin-bottom: 16px;
    transition: all 0.2s;
}

.see-more-btn:hover {
    color: #174EA6;
}

.see-more-btn svg {
    transform: rotate(90deg);
    transition: transform 0.2s;
}

.see-more-btn:hover svg {
    transform: rotate(90deg) translateX(2px);
}

.info-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-top: 1px solid #E8EAED;
}

.info-label {
    font-size: 14px;
    color: #5F6368;
}

.info-value {
    font-size: 14px;
    color: #202124;
    font-weight: 500;
}

.category-badge {
    display: inline-block;
    background: #E8F0FE;
    color: #1967D2;
    padding: 6px 16px;
    border-radius: 16px;
    font-size: 12px;
    font-weight: 500;
    margin-top: 16px;
}

.safety-text {
    font-size: 13px;
    color: #5F6368;
    line-height: 1.5;
    margin: 0 0 20px 0;
}

.safety-cards {
    display: flex;
    flex-direction: column;
    gap: 1px;
    background: #E8EAED;
    border-radius: 12px;
    overflow: hidden;
}

.safety-card {
    background: #FFFFFF;
    padding: 16px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.safety-card-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.safety-card-content {
    flex: 1;
}

.safety-card-content h4 {
    font-size: 14px;
    font-weight: 400;
    color: #202124;
    margin: 0 0 4px 0;
    line-height: 1.4;
}

.learn-more {
    font-size: 13px;
    color: #1967D2;
    margin: 0;
    text-decoration: underline;
    cursor: pointer;
}

.learn-more:hover {
    color: #174EA6;
}

.safety-items {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.safety-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 13px;
    color: #202124;
}

.safety-item svg {
    flex-shrink: 0;
    margin-top: 2px;
}

/* Rating Summary */
.rating-summary {
    display: flex;
    gap: 24px;
    align-items: center;
}

.rating-large {
    text-align: center;
    min-width: 100px;
}

.rating-number {
    font-size: 48px;
    font-weight: 500;
    color: #202124;
    line-height: 1;
}

.rating-stars-large {
    color: #FFB300;
    font-size: 16px;
    margin: 8px 0;
}

.rating-count {
    font-size: 12px;
    color: #5F6368;
}

.rating-bars {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.rating-bar {
    display: flex;
    align-items: center;
    gap: 8px;
}

.bar-label {
    font-size: 12px;
    color: #5F6368;
    width: 8px;
}

.bar-track {
    flex: 1;
    height: 8px;
    background: #E8EAED;
    border-radius: 4px;
    overflow: hidden;
}

.bar-fill {
    height: 100%;
    background: #01875F;
    transition: width 0.3s;
}

.whats-new-text {
    font-size: 14px;
    color: #5F6368;
    line-height: 1.8;
    margin: 0;
}

/* Support Section */
.support-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.support-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.support-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.support-label {
    font-size: 12px;
    color: #5F6368;
    font-weight: 400;
}

.support-value {
    font-size: 14px;
    color: #1967D2;
    font-weight: 400;
    word-break: break-all;
}

.playstore-footer {
    padding: 24px 16px;
    text-align: center;
    background: #F8F9FA;
    border-top: 1px solid #E8EAED;
}

.btn-restart-playstore {
    background: #01875F;
    color: white;
    border: none;
    padding: 12px 32px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 1px 3px rgba(0,0,0,0.2);
    margin-bottom: 12px;
}

.btn-restart-playstore:hover {
    background: #017A56;
    box-shadow: 0 2px 4px rgba(0,0,0,0.25);
}

.btn-restart-playstore:active {
    transform: scale(0.98);
}

.footer-note {
    font-size: 13px;
    color: #5F6368;
    margin: 0;
    font-weight: 500;
}
