body {
    font-family: Arial, sans-serif;
    background-color: #ffffff;
}

/* .header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            background: white;
            padding: 10px 20px;
            box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        } */

.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: white;
    padding: 10px 20px;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: box-shadow 0.3s ease-in-out;
}

/* Box-Shadow When Scrolled */
.header.scrolled {
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
}

.header img {
    height: 30px;
}

.header-icons {
    display: flex;
    align-items: center;
    gap: 15px;
}

.header-icons img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
}

.main-container {
    max-width: 1200px;
    margin: auto;
    background: #fff;
    padding: 20px;
    /* box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1); */
    border-radius: 10px;
}

.app-logo {
    width: 180px;
    border-radius: 26px;
    box-shadow: 0 1px 2px 0 rgba(60, 64, 67, .3), 0 1px 3px 1px rgba(60, 64, 67, .15);
}

.app-title {
    font-size: 28px;
    font-weight: bold;
    margin-top: 10px;
}

.app-info {
    color: #666;
    font-size: 16px;
    margin: 5px 0;
}

.rating {
    color: #ff9800;
    font-size: 18px;
}

.install-btn {
    display: block;
    background-color: #00c853;
    color: white;
    font-size: 18px;
    padding: 12px;
    margin-top: 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    width: 150px;
    text-align: center;
}

.screenshots {
    display: flex;
    gap: 10px;
    padding: 10px 0;
    overflow-x: auto;
}

.screenshots img {
    width: 150px;
    height: 300px;
    border-radius: 10px;
}

.reviews {
    margin-top: 30px;
    text-align: left;
}

.review {
    background: #fff;
    padding: 15px 0 0 0;
    border-radius: 5px;
    margin-bottom: 10px;
    /* box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1); */
}

.download-btn {
    width: 100%;
    background-color: #ffd600;
    color: black;
    font-size: 18px;
    padding: 15px;
    text-align: center;
    font-weight: bold;
    text-decoration: none;
    border-radius: 5px;
    display: block;
    margin-top: 20px;
}

.app-name {
    font-size: 50px;
    font-weight: 600;
}

.app-company {
    font-size: 16px;
    font-weight: 600;
}

.app-header {
    font-size: 18px;
    font-weight: 600;
}

.web {
    font-size: 19px;
    color: #3d3d3d;
    font-family: pro;
    font-family: 'Product Sans', sans-serif;

}

.email {
    font-size: 16px;
    color: #3d3d3d;
    font-family: 'Product Sans', sans-serif;

}

.about_developer {
    font-size: 14px;
    font-weight: 700;
    font-family: system-ui;
    color: #3d3d3d;
}

/* Prevent text selection */
.user-select-none {
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

/* Smooth hover effect for arrow */
.toggle-arrow {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    transition: background 0.3s ease, transform 0.3s ease;
}

.toggle-arrow:hover {
    background-color: rgba(0, 0, 0, 0.1);
    /* Light gray background */
    cursor: pointer;
}

/* Smooth slide animation */
.animated-content {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.6s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease-in-out;
}

.animated-content.show {
    max-height: 500px;
    /* Adjust as needed */
    opacity: 1;
}

.rating-summary .rating-number {
    font-size: 50px;
    font-weight: bold;
}

.stars {
    display: flex;
    gap: 5px;
}

.stars i {
    color: #2e7d32;
    font-size: 12px;
}

.progress-bar-item {
    display: flex;
    align-items: center;
}

.progress-bar-item span {
    width: 20px;
    text-align: right;
    margin-right: 10px;
    font-weight: bold;
}

.progress {
    width: 100% !important;
    height: 10px !important;
    background-color: #e0e0e0 !important;
    border-radius: 5px !important;
    overflow: hidden !important;
    --bs-progress-bar-bg: #198754 !important;
}

.progress-bar {
    height: 100% !important;
    background-color: #198754 !important;
}

.total-reviews {
    font-size: 12px;
}

/* ------x Start  x------ */

.custom-button {
    border-radius: 50px;
    padding: 11px 54px;
    font-size: 16px;
    border: 1px solid #ccc;
}

.custom-button.primary {
    border: 1px solid #212529bf;
    color: #198754;
    background-color: transparent;
}

.custom-button.disabled {
    background-color: #e0e0e0;
    color: #a0a0a0;
    border: none;
    cursor: not-allowed;
}

#install-btn.downloading {
    background: linear-gradient(90deg, #198754 0%, #28a745 50%, #198754 100%);
    background-size: 200% 100%;
    animation: loadingEffect 1.5s infinite;
    color: white;
}

/* Animation for downloading effect */
@keyframes loadingEffect {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}



/* Container for the logo and spinner */
.spinner-container {
    position: relative;
    display: inline-block;
}


/* Circular Spinner */
.spinner-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 60px;
    /* Adjust size */
    height: 60px;
    /* Adjust size */
    border-radius: 50%;
    border: 3px solid transparent;
    /* Transparent border */
    border-top-color: #007bff;
    /* Default spinner color */
    animation: spin 1s linear infinite;
    transform: translate(-50%, -50%);
    display: none;
    /* Hidden by default */
}

/* Rotation Animation */
@keyframes spin {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}


/* ------x End  x------ */

/* for mobile devices */
@media (max-width: 768px) {
    .app-logo {
        width: 75px;
        /* Smaller width for mobile screens */
    }

    .app-name {
        font-size: 20px;
        font-weight: 600;
    }

    .app-company {
        font-size: 15px;
        font-weight: 600;
    }

    iframe {
        border: 0;
        width: 100% !important;
        height: 202px !important;
    }

    .ytp-chrome-bottom {
        display: none !important;
    }

}

@font-face {
    font-family: 'Product Sans';
    src: url('https://fonts.gstatic.com/s/productsans/v5/HYvgU2fE2nRJvZ5JFAumwegdm0LZdjqr5-oayXSOefg.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}