:root {
    --park-primary: #1A73E8;
    --park-primary-dark: #0d47a1;
    --park-primary-light: #e3f2fd;
    --park-accent: #34a853;
    --park-background: #f0f4f8;
    --park-card: #ffffff;
    --park-text: #202124;
    --park-text-secondary: #5f6368;
    --park-border: #dadce0;
    --park-shadow: 0 2px 10px rgba(60, 64, 67, 0.15);
    --park-radius: 16px;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--park-background);
    color: var(--park-text);
    line-height: 1.6;
}

/* Base styles using system fonts */
body {
    font-family: -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
}

/* Once custom fonts are loaded */
.fonts-stage-2 body {
    font-family: 'Montserrat', sans-serif;
}

/* Ensure consistent spacing during font load */
.fonts-stage-1 h1,
.fonts-stage-1 h2,
.fonts-stage-1 p {
    max-width: 100%;
    overflow-wrap: break-word;
}

/* Typography Styles */
h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--park-text);
    font-weight: 600;
    line-height: 1.3;
}

.footer-logo img {
    filter: drop-shadow(0 0 3px rgba(0, 0, 0, 0.2));
}

.app-card {
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.app-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.montserrat-200 {
    font-family: "Montserrat", sans-serif;
    font-weight: 200;
    font-style: normal;
}

.montserrat-400 {
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.montserrat-600 {
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    font-style: normal;
}

.montserrat-700 {
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-style: normal;
}


.nunito-700-italic {
    font-family: "Nunito", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: italic;
}

.roboto-condensed-400 {
    font-family: "Roboto Condensed", serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

.delius-swash-caps-regular {
    font-family: "Delius Swash Caps", cursive;
    font-weight: 500;
    font-style: italic;
}

.poppins-thin {
    font-family: "Poppins", serif;
    font-weight: 100;
    font-style: normal;
}

.poppins-extralight {
    font-family: "Poppins", serif;
    font-weight: 200;
    font-style: normal;
}

.poppins-light {
    font-family: "Poppins", serif;
    font-weight: 300;
    font-style: normal;
}

.poppins-regular {
    font-family: "Poppins", serif;
    font-weight: 400;
    font-style: normal;
}

.poppins-medium {
    font-family: "Poppins", serif;
    font-weight: 500;
    font-style: normal;
}

.poppins-semibold {
    font-family: "Poppins", serif;
    font-weight: 600;
    font-style: normal;
}

.poppins-bold {
    font-family: "Poppins", serif;
    font-weight: 700;
    font-style: normal;
}

.poppins-extrabold {
    font-family: "Poppins", serif;
    font-weight: 800;
    font-style: normal;
}

.poppins-black {
    font-family: "Poppins", serif;
    font-weight: 900;
    font-style: normal;
}

.poppins-thin-italic {
    font-family: "Poppins", serif;
    font-weight: 100;
    font-style: italic;
}

.poppins-extralight-italic {
    font-family: "Poppins", serif;
    font-weight: 200;
    font-style: italic;
}

.poppins-light-italic {
    font-family: "Poppins", serif;
    font-weight: 300;
    font-style: italic;
}

.poppins-regular-italic {
    font-family: "Poppins", serif;
    font-weight: 400;
    font-style: italic;
}

.poppins-medium-italic {
    font-family: "Poppins", serif;
    font-weight: 500;
    font-style: italic;
}

.poppins-semibold-italic {
    font-family: "Poppins", serif;
    font-weight: 600;
    font-style: italic;
}

.poppins-bold-italic {
    font-family: "Poppins", serif;
    font-weight: 700;
    font-style: italic;
}

.poppins-extrabold-italic {
    font-family: "Poppins", serif;
    font-weight: 800;
    font-style: italic;
}

.poppins-black-italic {
    font-family: "Poppins", serif;
    font-weight: 900;
    font-style: italic;
}


/* Search bar */
/* Search Box Wrapper */
.search-box-wrapper {
    position: relative;
    flex-grow: 1;
}

/* Input Field */
.search-box-wrapper .form-control {
    background-color: rgba(255, 255, 255, 0.9);
    border: none;
    height: 45px;
    font-size: 16px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    padding-left: 45px;
}

.search-box-wrapper .form-control:focus {
    background-color: #fff;
    box-shadow: 0 4px 12px rgba(26, 115, 232, 0.2);
    outline: none;
}

/* Search Icon */
.search-icon {
    left: 15px;
    color: #1A73E8;
    font-size: 18px;
    pointer-events: none;
    transition: color 0.3s ease;
}

.search-box-wrapper .form-control:focus+.search-icon {
    color: #174ea6;
}

/* Gradient Submit Button */
.btn-gradient {
    background: linear-gradient(135deg, #1A73E8, #3490EC);
    color: #fff;
    font-weight: 500;
    border: none;
    transition: all 0.3s ease;
    border-radius: 8px;
}

.btn-gradient:hover {
    background: linear-gradient(135deg, #174ea6, #1A73E8);
    box-shadow: 0 4px 10px rgba(26, 115, 232, 0.4);
}

/* Mobile Button */
.btn-outline-primary {
    font-size: 18px;
    padding: 5px 10px;
}

/* Modal Customizations */
.modal-content {
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.modal-body .form-control {
    font-size: 18px;
    padding: 12px 20px;
    border-radius: 25px;
}


/* App Card Styling */
.app-card-wrapper {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    padding: 12px;
    height: 100%;
    /* Ensure consistent height */
}

.app-card-wrapper:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

/* App Icon */
.app-icon-wrapper {
    width: 70px !important;
    height: 70px !important;
    margin-right: 15px;
    overflow: hidden;
    border-radius: 16px !important;
    /* More rounded corners */
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.app-icon {
    object-fit: contain;
    width: 100%;
    height: 100%;
}

.app-title {
    font-weight: 600 !important;
    color: #1A2233 !important;
    font-size: 1.05rem;
}

.app-info p {
    color: #5f6368 !important;
}

@media (max-width: 768px) {
    .app-icon-wrapper {
        width: 60px !important;
        height: 60px !important;
        margin-right: 10px;
    }

    .app-title {
        font-size: 0.95rem !important;
    }
}


@media (max-width: 468px) {
    .app-icon-wrapper {
        width: 40px !important;
        height: 40px !important;
        flex: 0 0 40px !important;
    }

    .app-title {
        font-size: 0.75rem !important;
    }

    .app-card-wrapper {
        min-height: 70px;
    }
}

/* Google Play Button */
.official-store-buttons .btn-google-play {
    background: linear-gradient(135deg, #1A73E8, #3490EC);
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    border-radius: 8px;
    padding: 10px 16px;
    text-align: center;
    box-shadow: 0 2px 6px rgba(26, 115, 232, 0.3);
    transition: all 0.3s ease;
}

.official-store-buttons .btn-google-play:hover {
    background: linear-gradient(135deg, #174ea6, #1A73E8);
    box-shadow: 0 4px 10px rgba(26, 115, 232, 0.4);
}

.official-store-buttons .btn-play-store {
    background: linear-gradient(135deg, #1A73E8, #3490EC);
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    border-radius: 8px;
    padding: 10px 16px;
    text-align: center;
    box-shadow: 0 2px 6px rgba(26, 115, 232, 0.3);
    transition: all 0.3s ease;
}

.official-store-buttons .btn-play-store:hover {
    background: linear-gradient(135deg, #174ea6, #1A73E8);
    box-shadow: 0 4px 10px rgba(26, 115, 232, 0.4);
}

.official-store-buttons .btn-outline-google-play {
    border: 2px solid #1A73E8;
    color: #1A73E8;
    background-color: transparent;
    border-radius: 8px;
    font-weight: bold;
    transition: all 0.3s ease-in-out;
}

.official-store-buttons .btn-outline-google-play:hover {
    background-color: #1A73E8;
    color: #fff;
    text-decoration: none;
}

/* App Store Button */
.official-store-buttons .btn-outline-app-store {
    border: 2px solid #1A73E8;
    color: #1A73E8;
    background-color: transparent;
    border-radius: 8px;
    font-weight: bold;
    transition: all 0.3s ease-in-out;
}

.official-store-buttons .btn-outline-app-store:hover {
    background-color: #1A73E8;
    color: #fff;
    text-decoration: none;
}

/* General Button Enhancements */
.official-store-buttons .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    padding: 8px 16px;
    cursor: pointer;
}

.official-store-buttons .btn i {
    margin-right: 8px;
}

/* Hero Section Styles */
.hero-section {
    margin-bottom: 2rem;
}

.hero-gradient {
    background: linear-gradient(135deg, var(--park-primary) 0%, var(--park-primary-dark) 100%);
    color: white;
    border-radius: 0 0 var(--park-radius) var(--park-radius);
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-search {
    height: 60px;
    border-radius: 30px;
    padding-left: 25px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border: none;
}

.hero-search-btn {
    position: absolute;
    right: 5px;
    top: 5px;
    height: 50px;
    border-radius: 25px;
    padding: 0 25px;
    background-color: var(--park-accent);
    border: none;
    font-weight: 600;
}

.hero-image {
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.2));
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.search-form-large {
    position: relative;
    max-width: 600px;
}

/* Categories Navigation */
.categories-nav-section {
    margin-bottom: 2rem;
}

.categories-scroll-container {
    position: relative;
}

.category-pill {
    display: flex;
    align-items: center;
    padding: 8px 16px;
    background-color: var(--park-card);
    border-radius: 30px;
    text-decoration: none;
    color: var(--park-text);
    transition: all 0.2s ease;
    box-shadow: 0 2px 5px rgba(60, 64, 67, 0.1);
    white-space: nowrap;
    margin-right: 10px;
}

.category-pill:hover {
    background-color: var(--park-primary-light);
    color: var(--park-primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(60, 64, 67, 0.15);
}

.category-icon {
    margin-right: 8px;
    display: flex;
    align-items: center;
}

.category-name {
    font-weight: 500;
    font-size: 14px;
}

.category-more {
    background-color: var(--park-primary-light);
    color: var(--park-primary);
}

.category-more-text {
    margin-right: 5px;
}

/* App Card Styles - Park Theme */
.park-app-card {
    background-color: var(--park-card);
    border-radius: var(--park-radius);
    overflow: hidden;
    box-shadow: var(--park-shadow);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    font-size: 0.9rem;
}

.park-app-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(60, 64, 67, 0.15);
}

.park-card-media {
    padding: 0.8rem;
    display: flex;
    justify-content: center;
    position: relative;
    background-color: var(--park-primary-light);
    border-bottom: 1px solid var(--park-border);
}

.park-app-icon {
    width: 64px;
    height: 64px;
    border-radius: 14px;
    object-fit: cover;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
}

.park-rating-badge {
    position: absolute;
    top: 5px;
    right: 5px;
    background-color: var(--park-card);
    color: var(--park-primary);
    font-weight: 700;
    padding: 3px 7px;
    border-radius: 12px;
    font-size: 10px;
    display: flex;
    align-items: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.park-rating-value {
    margin-right: 4px;
}

.park-card-info {
    padding: 0.8rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.park-app-title {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 3px;
    color: var(--park-text);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.3;
}

.park-app-developer {
    font-size: 11px;
    color: var(--park-text-secondary);
    margin-bottom: 8px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.park-download-badge {
    font-size: 10px;
    color: var(--park-text-secondary);
    display: flex;
    align-items: center;
    margin-top: auto;
    margin-bottom: 8px;
}

.park-download-badge i {
    margin-right: 4px;
    font-size: 10px;
}

.park-install-button {
    background-color: var(--park-primary);
    color: white;
    text-align: center;
    padding: 6px;
    border-radius: 16px;
    font-weight: 600;
    font-size: 12px;
    transition: background-color 0.2s ease;
}

.park-app-card:hover .park-install-button {
    background-color: var(--park-accent);
}

.park-rating-stars {
    color: #FFC107;
    margin-right: 2px;
    font-size: 10px;
}

.park-rating-value {
    margin-right: 2px;
    font-size: 10px;
}

/* Section Container Styles */
.app-section-container {
    background-color: var(--park-card);
    border-radius: var(--park-radius);
    padding: 1.2rem;
    margin-bottom: 1.5rem;
    box-shadow: var(--park-shadow);
}

.section-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    color: var(--park-text);
    display: flex;
    align-items: center;
}

.section-title i {
    color: var(--park-primary);
    margin-right: 8px;
}

/* Condensed grid layout */
.app-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

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

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

@media (min-width: 576px) {
    .app-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }

    .app-grid-4 {
        grid-template-columns: repeat(3, 1fr);
    }

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

@media (min-width: 768px) {
    .app-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1rem;
    }

    .app-grid-4 {
        grid-template-columns: repeat(4, 1fr);
    }

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

@media (min-width: 992px) {
    .app-grid {
        grid-template-columns: repeat(5, 1fr);
        gap: 1rem;
    }

    .app-grid-4 {
        grid-template-columns: repeat(4, 1fr);
    }

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

@media (min-width: 1200px) {
    .app-grid {
        grid-template-columns: repeat(6, 1fr);
    }

    .app-grid-4 {
        grid-template-columns: repeat(4, 1fr);
    }

    .category-app-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .similar-apps-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
    }
}

/* Button Styles */
.btn-primary {
    background-color: var(--park-primary);
    border-color: var(--park-primary);
}

.btn-primary:hover {
    background-color: var(--park-primary-dark);
    border-color: var(--park-primary-dark);
}

/* Base styles for the promo container */
.promo-container {
    position: relative;
    margin-bottom: 1rem;
}

.promo-content {
    border: 1px solid #ddd;
    background-color: #f9f9f9;
    border-radius: 8px;
    padding: 16px;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.promo-label {
    position: absolute;
    top: -14px;
    left: 0;
    font-size: 10px;
    color: #6c757d;
    padding: 0 15px;
    z-index: 10;
    white-space: nowrap;
}

.promo-large .promo-label {
    padding: 0 5px;
}

@media (max-width: 768px) {
    .promo-label {
        top: -10px;
        left: 0px;
        font-size: 9px;
    }
}

.content-area {
    overflow-y: auto;
    background-color: #f8fafc !important;
    padding: 20px !important;
}


.section-title {
    color: #1A2233;
    font-weight: 600;
    margin-bottom: 25px;
    font-size: 1.4rem !important;
    border-left: 4px solid #1A73E8;
    padding-left: 10px;
}

@media (max-width: 768px) {
    .app-details-line {
        padding: 0px !important;

    }

    .section-title {
        padding-bottom: 0px !important;
        margin-bottom: 5px !important;
    }
}

.app-section-container {
    background-color: white;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px !important;
}

@media (max-width: 768px) {
    .app-hero-section {
        margin-bottom: 0px !important;
    }

    .content-area {
        padding: 5px !important;
    }

    .hero-title-mobile {
        font-size: 1.25rem !important;
    }

    .hero-subtitle-mobile {
        font-size: 1rem !important;
    }

    .hero-gradient {
        padding: 10px !important;
        padding-bottom: 0px !important;
    }

    .hero-section {
        margin-bottom: 0px !important;
    }

    .app-section-container {
        padding: 10px !important;
    }
}

.w-10 {
    width: 10%;
}

.w-60px {
    width: 60px;
}

.ml-20 {
    margin-left: 20px;
}

.fs-8 {
    font-size: 0.8rem !important;
}

/* Custom Underline with Animation */
.category-link {
    position: relative;
    color: #5f6368;
    transition: color 0.3s ease;
    font-weight: 500;
}

.category-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #1A73E8;
    transition: width 0.3s ease;
}

.category-link:hover {
    color: #1A73E8;
}

.category-link:hover::after {
    width: 100%;
}

/* Adjust app icon on mobile */
@media (max-width: 768px) {
    img.rounded.shadow-sm {
        max-width: 70px;
        height: auto;
    }

    .fs-4 {
        font-size: 1.2rem !important;
    }

    .fs-6 {
        font-size: 0.9rem !important;
    }

    .fs-8 {
        font-size: 0.6rem !important;
    }
}

/* Sidebar Styling - Park Theme */
.sidebar {
    background: #fff !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05) !important;
    border-radius: 0 12px 12px 0;
}

.sidebar-category-list {
    padding-top: 10px;
}

.sidebar-category-link {
    color: #5f6368;
    transition: all 0.2s ease;
    padding: 10px 12px;
    border-radius: 8px;
    display: flex !important;
    align-items: center;
}

.sidebar-category-link:hover {
    background-color: #f0f4f8;
    color: #1A73E8;
    transform: translateX(3px);
}

.sidebar-category-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
    margin-right: 10px;
}

.sidebar-category-name {
    font-weight: 500;
    font-size: 0.9rem;
}

.sidebar-scroll-btn {
    background: #f0f4f8;
    border: none;
    color: #1A73E8;
    transition: all 0.2s ease;
}

.sidebar-scroll-btn:hover {
    background: #e8f0fe;
    color: #174ea6;
}

/* Carousel Navigation */
.carousel-nav-btn {
    width: 50px;
    height: 50px;
    background-color: rgba(26, 115, 232, 0.8);
    border-radius: 50%;
    top: 45%;
}

.carousel-nav-btn:hover {
    background-color: rgba(26, 115, 232, 1);
}

.carousel-control-prev {
    left: -10px;
}

.carousel-control-next {
    right: -10px;
}

/* App Details Page Styling */
.app-details-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    padding: 24px;
    margin-bottom: 24px;
}

.app-about-card {
    border-left: 4px solid var(--park-primary);
}

.app-about-title {
    font-size: 1.2rem;
    color: var(--park-primary);
}

.app-about-content {
    color: var(--park-text-secondary);
    line-height: 1.6;
    font-size: 0.95rem;
}

.app-details-header-wrapper {
    padding-bottom: 15px;
}

.app-details-icon {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.app-details-icon-wrapper {
    background: linear-gradient(135deg, #f8fafc, #fff);
}

.app-details-wrapper .app-title {
    color: #1A2233;
    font-size: 1.6rem !important;
}

.app-developer {
    color: #5f6368;
}

/* App Details Page Styles */
.app-hero-section {
    margin-bottom: 1.5rem;
}

.app-hero-icon {
    width: 100px;
    height: 100px;
    border-radius: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    border: 2px solid white;
}

.app-hero-title {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: white;
}

.app-hero-developer {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
}

.app-hero-rating {
    color: white;
    white-space: nowrap;
}

.app-stars-container {
    display: inline-flex;
    align-items: center;
    font-size: 16px;
}

@media (max-width: 768px) {
    .app-stars-container {
        font-size: 14px;
    }
}

.app-download-buttons {
    display: flex;
    flex-direction: column;
}

.app-store-btn,
.play-store-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.app-store-btn {
    background-color: #000000;
    color: #ffffff;
    border-color: #000000;
}

.play-store-btn {
    background-color: #01875f;
    color: #ffffff;
    border-color: #01875f;
}

.app-store-btn i,
.play-store-btn i {
    margin-right: 8px;
    font-size: 18px;
}

.app-store-btn:hover,
.play-store-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    color: #ffffff;
}

.app-details-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 1.5rem;
}

@media (min-width: 768px) {
    .app-details-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.app-detail-item {
    display: flex;
    align-items: flex-start;
    padding: 1rem;
    background-color: #f8f9fa;
    border-radius: 12px;
    transition: all 0.2s ease;
}

.app-detail-item:hover {
    background-color: var(--park-primary-light);
}

.app-detail-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--park-primary-light);
    color: var(--park-primary);
    border-radius: 50%;
    margin-right: 1rem;
    font-size: 18px;
}

.app-detail-content {
    flex: 1;
}

.app-detail-label {
    display: block;
    font-size: 12px;
    font-weight: 400;
    color: var(--park-text-secondary);
}

.app-detail-value {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--park-text);
}

.app-description {
    margin-top: 1.5rem;
    line-height: 1.8;
}

/* Screenshots Carousel */
.app-screenshots {
    margin: 2rem 0;
}

.screenshot-carousel {
    position: relative;
    overflow: hidden;
    border-radius: var(--park-radius);
    box-shadow: var(--park-shadow);
}

.screenshot-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--park-radius);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.screenshot-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
}

.screenshot-img {
    width: 100%;
    height: auto;
    border-radius: var(--park-radius);
    object-fit: contain;
    display: block;
}

.screenshot-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: var(--park-radius);
}

.screenshot-item:hover .screenshot-overlay {
    opacity: 1;
}

.screenshot-zoom {
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--park-primary);
    font-size: 1.2rem;
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.screenshot-item:hover .screenshot-zoom {
    transform: scale(1);
}

.carousel-control-prev,
.carousel-control-next {
    width: 40px;
    height: 40px;
    background-color: white;
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.9;
}

.carousel-control-prev {
    left: 15px;
}

.carousel-control-next {
    right: 15px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 20px;
    height: 20px;
}

.carousel-indicators {
    margin-bottom: -10px;
    z-index: 2;
}

.carousel-indicators button {
    width: 10px !important;
    height: 10px !important;
    border-radius: 50% !important;
    background-color: var(--park-primary) !important;
    opacity: 0.5;
}

.carousel-indicators .active {
    opacity: 1;
}

/* Similar Apps Section */
.similar-apps-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--park-text);
}

/* Blog Card Styles */
.blog-card {
    background-color: var(--park-card);
    border-radius: var(--park-radius);
    overflow: hidden;
    box-shadow: var(--park-shadow);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(60, 64, 67, 0.2);
}

.blog-card-image {
    position: relative;
    overflow: hidden;
    padding-top: 56.25%;
    /* 16:9 aspect ratio */
    background-color: var(--park-primary-light);
}

.blog-card-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.05);
}

.blog-card-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.blog-card-meta {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
}

.blog-card-category {
    background-color: var(--park-primary-light);
    color: var(--park-primary);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    margin-right: 10px;
}

.blog-card-date {
    font-size: 12px;
    color: var(--park-text-secondary);
}

.blog-card-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.blog-card-title a {
    color: var(--park-text);
    text-decoration: none;
    transition: color 0.2s ease;
}

.blog-card-title a:hover {
    color: var(--park-primary);
}

.blog-card-excerpt {
    font-size: 14px;
    color: var(--park-text-secondary);
    margin-bottom: 1rem;
    flex: 1;
}

.blog-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    border-top: 1px solid var(--park-border);
    padding-top: 1rem;
}

.blog-card-reading-time {
    font-size: 12px;
    color: var(--park-text-secondary);
    display: flex;
    align-items: center;
}

.blog-card-reading-time i {
    margin-right: 5px;
}

.blog-card-read-more {
    font-size: 14px;
    font-weight: 600;
    color: var(--park-primary);
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: all 0.2s ease;
}

.blog-card-read-more i {
    margin-left: 5px;
    transform: translateX(0);
    transition: transform 0.2s ease;
}

.blog-card-read-more:hover {
    color: var(--park-primary-dark);
}

.blog-card-read-more:hover i {
    transform: translateX(3px);
}

/* Sidebar Styles */
.recommended-apps {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.recommended-app-item {
    background-color: #f8f9fa;
    border-radius: 12px;
    padding: 0.75rem;
    transition: all 0.2s ease;
}

.recommended-app-item:hover {
    background-color: var(--park-primary-light);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.sidebar-categories {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

.sidebar-category {
    display: flex;
    align-items: center;
    padding: 10px;
    background-color: #f8f9fa;
    border-radius: 8px;
    text-decoration: none;
    color: var(--park-text);
    transition: all 0.2s ease;
}

.sidebar-category img,
.sidebar-category i {
    margin-right: 8px;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sidebar-category span {
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.sidebar-category:hover {
    background-color: var(--park-primary-light);
    color: var(--park-primary);
    transform: translateY(-2px);
}

.sidebar-category.view-all {
    background-color: var(--park-primary-light);
    color: var(--park-primary);
    grid-column: span 2;
    justify-content: center;
}

/* Active category pill */
.category-pill.active {
    background-color: var(--park-primary);
    color: white;
}

.category-pill.active:hover {
    background-color: var(--park-primary-dark);
    color: white;
}

@media (max-width: 991px) {
    .app-hero-section .app-download-buttons {
        display: flex;
        flex-direction: row;
        gap: 10px;
        justify-content: center;
        margin-top: 20px;
    }

    .app-hero-section .app-download-buttons .btn {
        margin: 0;
    }
}

/* Search Page Styles */
.search-hero-section {
    margin-bottom: 1.5rem;
}

.search-hero-section .search-form-large {
    max-width: 600px;
}

.search-result-count {
    background-color: var(--park-primary-light);
    color: var(--park-primary);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
}

.no-results {
    background-color: #f8f9fa;
    border-radius: var(--park-radius);
    padding: 3rem 1rem;
}

.no-results i {
    color: var(--park-border);
}

/* Pagination Styles */
.pagination {
    justify-content: center;
    margin-top: 2rem;
}

.pagination .page-item .page-link {
    color: var(--park-primary);
    border-radius: 8px;
    margin: 0 3px;
    padding: 8px 16px;
}

.pagination .page-item.active .page-link {
    background-color: var(--park-primary);
    border-color: var(--park-primary);
}

/* Show More Button */
#show-more-btn {
    transition: all 0.3s ease;
    border-radius: 30px;
    font-weight: 600;
}

#show-more-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

#show-more-btn i {
    transition: transform 0.3s ease;
}

#show-more-btn:hover i {
    transform: translateY(2px);
}

/* Footer Styles */
.park-footer {
    background-color: var(--park-primary-dark);
    color: rgba(255, 255, 255, 0.8);
    margin-top: 4rem;
}

.park-footer-top {
    padding: 4rem 0 3rem;
}

.park-footer-bottom {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 1.5rem 0;
    font-size: 14px;
}

.footer-logo-link {
    display: inline-block;
    margin-bottom: 1.5rem;
}

.footer-logo-container {
    background: #fff;
    border-radius: 10px;
    padding: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    display: inline-block;
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.footer-social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: var(--park-accent);
    color: white;
    transform: translateY(-3px);
}

.footer-heading {
    color: white;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
}

.footer-heading:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--park-accent);
}

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

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

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.2s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: white;
    transform: translateX(5px);
}

.footer-newsletter-text {
    font-size: 14px;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-newsletter-form .form-control {
    background-color: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    padding: 8px 15px;
    height: 40px;
    font-size: 14px;
}

.footer-newsletter-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.footer-newsletter-form .btn {
    background-color: var(--park-accent);
    border-color: var(--park-accent);
}

.copyright {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-app-badges {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.app-badge {
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    text-decoration: none;
    transition: all 0.2s ease;
    font-size: 12px;
    display: flex;
    align-items: center;
}

.app-badge i {
    margin-right: 5px;
    font-size: 14px;
}

.app-badge:hover {
    background-color: var(--park-accent);
    color: white;
}

@media (max-width: 767px) {
    .park-footer-top {
        padding: 3rem 0 2rem;
    }

    .footer-heading {
        margin-top: 1.5rem;
    }

    .park-footer-bottom .d-flex {
        text-align: center;
    }
}

/* Download Page Styles */
.download-instruction {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--park-text);
}

.official-stores-container {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.store-download-button {
    display: flex;
    align-items: center;
    padding: 12px 24px;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    min-width: 220px;
    white-space: nowrap;
}

.google-play-btn {
    background-color: #01875f;
    color: white;
    border: 1px solid #01875f;
}

.google-play-btn:hover {
    background-color: #016b4c;
    color: white;
    border-color: #016b4c;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.app-store-btn {
    background-color: #000;
    color: white;
    border: 1px solid #000;
}

.app-store-btn:hover {
    background-color: #333;
    color: white;
    border-color: #333;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.store-icon {
    font-size: 2rem;
    margin-right: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.store-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    white-space: nowrap;
}

.store-action {
    font-size: 0.7rem;
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 2px;
}

.store-name {
    font-size: 1.2rem;
    font-weight: 600;
}

.download-count-badge {
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
    display: inline-block;
}

.app-detail-value-link {
    color: var(--park-primary);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s ease;
}

.app-detail-value-link:hover {
    color: var(--park-primary-dark);
    text-decoration: underline;
}

/* Safety Tips Styles */
.safety-tips {
    margin-top: 1rem;
}

.safety-tip {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--park-border);
}

.safety-tip:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.safety-tip-icon {
    width: 40px;
    height: 40px;
    background-color: var(--park-primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    font-size: 1.2rem;
    color: var(--park-primary);
}

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

.safety-tip-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--park-text);
}

.safety-tip-text {
    font-size: 0.9rem;
    color: var(--park-text-secondary);
    margin-bottom: 0;
}

@media (max-width: 767px) {
    .official-stores-container {
        flex-direction: column;
        align-items: center;
    }

    .store-download-button {
        width: 100%;
        max-width: 280px;
    }
}

/* Category Grid Styles */
.category-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

@media (min-width: 576px) {
    .category-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 992px) {
    .category-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (min-width: 1200px) {
    .category-grid {
        grid-template-columns: repeat(6, 1fr);
    }
}

.category-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.5rem 1rem;
    background-color: var(--park-card);
    border-radius: var(--park-radius);
    box-shadow: var(--park-shadow);
    transition: all 0.3s ease;
    text-decoration: none;
    color: var(--park-text);
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(60, 64, 67, 0.2);
    background-color: var(--park-primary-light);
    color: var(--park-primary);
}

.category-card.active {
    background-color: var(--park-primary);
    color: white;
}

.category-card-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    padding: 12px;
    box-shadow: 0 4px 8px rgba(60, 64, 67, 0.15);
}

.category-card-icon img {
    width: 100%;
    height: auto;
}

.category-card-name {
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    line-height: 1.4;
}