* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: #ffffff;
    color: #202124;
    line-height: 1.4;
}

/* Header */
.header {
    background: #fff;
    border-bottom: 1px solid #dadce0;
    padding: 0 24px;
    position: sticky;
    top: 0;
    z-index: 99;
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    height: 64px;
    gap: 24px;
    justify-content: space-around;
}

.menu-btn {
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.2s;
}

.menu-btn:hover {
    background-color: #f1f3f4;
}

/* Dropdown */
.dropdown-menu {
  position: absolute;
  top: 40px; /* below the button */
  right: 0;
  background: #fff;
  border: 1px solid #dadce0;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  min-width: 150px;
  z-index: 2000;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.dropdown-item {
  display: block;
  padding: 10px 16px;
  color: #202124;
  text-decoration: none;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  cursor: pointer;
  font-size: 14px;
}

.dropdown-item:hover {
  background-color: #f1f3f4;
}



/* Side Drawer */
.drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1500;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.3s ease;
}

.drawer-overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.drawer {
    position: fixed;
    top: 0;
    left: -320px;
    width: 320px;
    height: 100vh;
    background: #fff;
    z-index: 1600;
    transition: left 0.3s ease;
    overflow-y: auto;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
}

.drawer.active {
    left: 0;
}

.drawer-header {
    padding: 20px 24px;
    border-bottom: 1px solid #e8eaed;
    display: flex;
    align-items: center;
    gap: 16px;
}

.drawer-close {
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer;
    border-radius: 50%;
    transition: background-color 0.2s;
}

.drawer-close:hover {
    background-color: #f1f3f4;
}

.drawer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
}

.drawer-logo-icon {
    width: 28px;
    height: 28px;
    background: linear-gradient(45deg, #4285f4, #34a853, #fbbc04, #ea4335);
    border-radius: 6px;
}

.drawer-logo-text {
    font-size: 20px;
    font-weight: 400;
    color: #202124;
}

.drawer-menu {
    padding: 8px 0;
}

.drawer-section {
    padding: 8px 0;
}

.drawer-section-title {
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 500;
    color: #5f6368;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.drawer-item {
    display: flex;
    align-items: center;
    padding: 12px 24px;
    color: #202124;
    text-decoration: none;
    transition: background-color 0.2s;
    gap: 16px;
}

.drawer-item:hover {
    background-color: #f1f3f4;
}

.drawer-item.active {
    background-color: #e8f0fe;
    color: #1a73e8;
    border-right: 3px solid #1a73e8;
}

.drawer-item-icon {
    width: 24px;
    height: 24px;
    opacity: 0.7;
}

.drawer-item.active .drawer-item-icon {
    opacity: 1;
}

.drawer-divider {
    height: 1px;
    background: #e8eaed;
    margin: 8px 0;
}

/* Profile Section in Header */
.profile-section {
    display: flex;
    align-items: center;
    gap: 12px;
}

.profile-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #4285f4;
    border: none;
    cursor: pointer;
    color: white;
    font-weight: 500;
    transition: transform 0.2s;
}

.profile-btn:hover {
    transform: scale(1.05);
}

.help-btn, .settings-btn {
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer;
    border-radius: 50%;
    transition: background-color 0.2s;
    opacity: 0.7;
}

.help-btn:hover, .settings-btn:hover {
    background-color: #f1f3f4;
    opacity: 1;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: #202124;
}

.logo-icon {
    width: 24px;
    height: 24px;
    background: linear-gradient(45deg, #4285f4, #34a853, #fbbc04, #ea4335);
    border-radius: 4px;
}

.search-container {
    flex: 1;
    max-width: 720px;
    position: relative;
}

.search-box {
    width: 100%;
    height: 48px;
    background: #f1f3f4;
    border: none;
    border-radius: 24px;
    padding: 0 20px 0 48px;
    font-size: 16px;
    outline: none;
}

.search-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    opacity: 0.6;
}

.profile-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #4285f4;
    border: none;
    cursor: pointer;
    color: white;
    font-weight: 500;
}

/* Navigation */
.nav-container {
    background: #fff;
    border-bottom: 1px solid #dadce0;
    padding: 0 24px;
}

.nav-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 32px;
    overflow-x: auto;
}

.nav-item {
    padding: 16px 0;
    text-decoration: none;
    color: #5f6368;
    font-weight: 500;
    white-space: nowrap;
    border-bottom: 2px solid transparent;
    transition: all 0.2s;
}

.nav-item.active {
    color: #1a73e8;
    border-bottom-color: #1a73e8;
}

/* Main Content */
.main-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 24px;
}

/* Hero Section */
.hero-section {
    margin-bottom: 40px;
}

.hero-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    padding: 40px;
    color: white;
    position: relative;
    overflow: hidden;
    margin-bottom: 24px;
}

.hero-content h1 {
    font-size: 32px;
    font-weight: 400;
    margin-bottom: 12px;
}

.hero-content p {
    font-size: 16px;
    opacity: 0.9;
    margin-bottom: 24px;
}

.hero-btn {
    background: rgba(255,255,255,0.2);
    border: 1px solid rgba(255,255,255,0.3);
    color: white;
    padding: 12px 24px;
    border-radius: 20px;
    cursor: pointer;
    font-weight: 500;
    backdrop-filter: blur(10px);
}

/* Categories */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 16px;
    margin-bottom: 40px;
}

.category-card {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s;
    border: 1px solid transparent;
}

.category-card:hover {
    background: #f1f3f4;
    border-color: #dadce0;
}

.category-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(45deg, #4285f4, #34a853);
    border-radius: 12px;
    margin: 0 auto 12px;
}

.category-name {
    font-weight: 400;
    color: #202124;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
}

/* Section Headers */
.section {
    margin-bottom: 40px;
}

.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.section-title {
    font-size: 20px;
    font-weight: 500;
    color: #202124;
}

.see-more {
    color: #1a73e8;
    text-decoration: none;
    font-weight: 500;
}

/* Game Cards */
.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

.game-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid #e8eaed;
}

.game-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.game-image {
    width: 100%;
    height: 160px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    position: relative;
}

.game-icon {
    position: absolute;
    bottom: 12px;
    left: 12px;
    width: 48px;
    height: 48px;
    background: white;
    border-radius: 12px;
    border: 2px solid white;
}

.game-info {
    padding: 16px;
}

.game-title {
    font-size: 16px;
    font-weight: 500;
    color: #202124;
    margin-bottom: 4px;
}

.game-developer {
    color: #5f6368;
    font-size: 14px;
    margin-bottom: 8px;
}

.game-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 12px;
}

.stars {
    color: #ff9800;
    font-size: 14px;
}

.rating-text {
    color: #5f6368;
    font-size: 14px;
}

.game-price {
    font-weight: 500;
    color: #137333;
}

/* Horizontal Scroll */
.horizontal-scroll {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    padding-bottom: 8px;
}

.horizontal-scroll::-webkit-scrollbar {
    height: 6px;
}

.horizontal-scroll::-webkit-scrollbar-track {
    background: #f1f3f4;
    border-radius: 3px;
}

.horizontal-scroll::-webkit-scrollbar-thumb {
    background: #dadce0;
    border-radius: 3px;
}

.horizontal-card {
    min-width: 280px;
    flex-shrink: 0;
}

/* Details Pages */

/* Main Content */
.main-content {
    max-width: 1200px;
    margin: 15px auto;
    padding: 0px;
}

/* Breadcrumb */
.breadcrumb {
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #5f6368;
}

.breadcrumb a {
    color: #1a73e8;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

/* App Header */
.app-header {
    display: flex;
    gap: 24px;
    margin-bottom: 32px;
    padding: 24px;
    background: #f8f9fa;
    border-radius: 12px;
}

.app-icon-large {
    width: 140px;
    height: 140px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    border-radius: 16px;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

.app-icon-large::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
}

.app-info {
    flex: 1;
}

.app-title {
    font-size: 28px;
    font-weight: 400;
    color: #202124;
    margin-bottom: 8px;
}

.app-developer {
    color: #1a73e8;
    font-size: 16px;
    margin-bottom: 16px;
    cursor: pointer;
}

.app-developer:hover {
    text-decoration: underline;
}

.app-stats {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 20px;
    flex-wrap: wrap;
    margin-top: 15px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.stat-value {
    font-size: 18px;
    font-weight: 500;
    color: #202124;
}

.stat-label {
    font-size: 12px;
    color: #5f6368;
    text-transform: uppercase;
}

.rating-stars {
    display: flex;
    align-items: center;
    gap: 8px;
}

.stars {
    color: #ff9800;
    font-size: 18px;
}

.rating-text {
    color: #202124;
    font-weight: 500;
}

.content-rating {
    background: #e8f5e8;
    color: #137333;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
}

/* Download Section */
.download-section {
    display: flex;
    gap: 16px;
    align-items: center;
    margin-top: 20px;
}

.install-btn {
    background: #1a73e8;
    color: white;
    border: none;
    padding: 12px 32px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    min-width: 120px;
}

.install-btn:hover {
    background: #1557b0;
    transform: translateY(-1px);
}

.install-btn.installing {
    background: #5f6368;
    cursor: not-allowed;
}

.wishlist-btn, .share-btn {
    background: none;
    border: none;
    padding: 12px;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 5px;
}

.wishlist-btn:hover, .share-btn:hover {
    background: #f1f3f4;
}

.install-share-wishlist{
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Screenshots Section */
.screenshots-section {
    margin-bottom: 40px;
}

.section-title {
    font-size: 20px;
    font-weight: 500;
    color: #202124;
    margin-bottom: 20px;
    margin-top: 20px;
}

.screenshots-container {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    padding-bottom: 8px;
}

.screenshot {
    width: 200px;
    height: 355px;
    background: linear-gradient(45deg, #f093fb, #f5576c);
    border-radius: 12px;
    flex-shrink: 0;
    cursor: pointer;
    transition: transform 0.2s;
    position: relative;
    overflow: hidden;
}

.screenshot:hover {
    transform: scale(1.05);
}

.screenshot::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
}

/* About Section */
.about-section {
    margin-bottom: 40px;
}

.app-description {
    font-size: 16px;
    line-height: 1.6;
    color: #202124;
    margin-bottom: 16px;
}

.read-more {
    color: #1a73e8;
    cursor: pointer;
    font-weight: 500;
}

.read-more:hover {
    text-decoration: underline;
}

/* App Info Grid */
.app-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-bottom: 40px;
}

.info-section {
    background: #f8f9fa;
    padding: 24px;
    border-radius: 12px;
}

.info-section h3 {
    font-size: 18px;
    font-weight: 500;
    color: #202124;
    margin-bottom: 16px;
}

.info-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #e8eaed;
}

.info-item:last-child {
    border-bottom: none;
}

.info-label {
    color: #5f6368;
    font-size: 14px;
}

.info-value {
    color: #202124;
    font-weight: 500;
    text-align: right;
}

/* Reviews Section */
.reviews-section {
    margin-bottom: 20px;
}

.reviews-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.see-all-reviews {
    color: #1a73e8;
    text-decoration: none;
    font-weight: 500;
}

.see-all-reviews:hover {
    text-decoration: underline;
}

.rating-breakdown {
    display: flex;
    gap: 32px;
    margin-bottom: 32px;
    align-items: center;
}

.overall-rating {
    text-align: center;
}

.overall-score {
    font-size: 48px;
    font-weight: 400;
    color: #202124;
    margin-bottom: 8px;
}

.overall-stars {
    color: #ff9800;
    font-size: 20px;
    margin-bottom: 4px;
}

.total-reviews {
    color: #5f6368;
    font-size: 14px;
}

.rating-bars {
    flex: 1;
}

.rating-bar {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.bar-label {
    width: 10px;
    font-size: 14px;
    color: #5f6368;
}

.bar-track {
    flex: 1;
    height: 8px;
    background: #e8eaed;
    border-radius: 4px;
    overflow: hidden;
}

.bar-fill {
    height: 100%;
    background: #ff9800;
    border-radius: 4px;
}

.review-card {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 16px;
}

.review-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.reviewer-avatar {
    width: 32px;
    height: 32px;
    background: #4285f4;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 500;
    font-size: 14px;
}

.reviewer-info {
    flex: 1;
}

.reviewer-name {
    font-weight: 500;
    color: #202124;
    margin-bottom: 4px;
}

.review-date {
    color: #5f6368;
    font-size: 12px;
}

.review-rating {
    color: #ff9800;
    font-size: 14px;
}

.review-text {
    color: #202124;
    line-height: 1.5;
}

/* Similar Apps */
.similar-apps {
    margin-bottom: 40px;
}

.apps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

.app-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid #e8eaed;
}

.app-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.app-card-content {
    padding: 16px;
    display: flex;
    gap: 16px;
    align-items: center;
}

.app-card-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(45deg, #43e97b, #38f9d7);
    border-radius: 12px;
    flex-shrink: 0;
}

.app-card-info {
    flex: 1;
}

.app-card-title {
    font-size: 16px;
    font-weight: 500;
    color: #202124;
    margin-bottom: 4px;
}

.app-card-developer {
    color: #5f6368;
    font-size: 14px;
    margin-bottom: 8px;
}

.app-card-rating {
    display: flex;
    align-items: center;
    gap: 4px;
}

.app-card-stars {
    color: #ff9800;
    font-size: 14px;
}

.app-card-rating-text {
    color: #5f6368;
    font-size: 14px;
}

/* ========================================
   BLOG-SPECIFIC STYLES
   Add these to your existing style.css
   ======================================== */

/* Blog Post Cards - Enhanced styling */
.blog-post-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid #e8eaed;
    display: flex;
    flex-direction: column;
}

.blog-post-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

/* Blog Featured Image */
.blog-featured-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    position: relative;
    overflow: hidden;
}

.blog-featured-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
    transition: background 0.3s ease;
}

.blog-post-card:hover .blog-featured-image::after {
    background: rgba(0, 0, 0, 0.2);
}

/* Blog Category Badge */
.blog-category-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(255, 255, 255, 0.95);
    padding: 6px 12px;
    border-radius: 16px;
    font-size: 12px;
    font-weight: 500;
    color: #1a73e8;
    z-index: 1;
    backdrop-filter: blur(10px);
}

/* Blog Content Area */
.blog-content {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-title {
    font-size: 18px;
    font-weight: 500;
    color: #202124;
    margin-bottom: 8px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-excerpt {
    font-size: 14px;
    color: #5f6368;
    line-height: 1.6;
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex: 1;
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 13px;
    color: #5f6368;
    padding-top: 12px;
    border-top: 1px solid #f1f3f4;
}

.blog-meta-item {
    display: flex;
    align-items: center;
    gap: 4px;
}

.blog-author {
    display: flex;
    align-items: center;
    gap: 8px;
}

.blog-author-avatar {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: linear-gradient(45deg, #4285f4, #34a853);
}

.blog-read-time::before {
    content: '•';
    margin-right: 8px;
    color: #dadce0;
}

/* Blog List Layout (Alternative to Grid) */
.blog-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.blog-list-item {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e8eaed;
    display: flex;
    cursor: pointer;
    transition: all 0.3s ease;
}

.blog-list-item:hover {
    transform: translateX(4px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.blog-list-image {
    width: 280px;
    min-width: 280px;
    height: 200px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    position: relative;
}

.blog-list-content {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-list-category {
    font-size: 12px;
    font-weight: 500;
    color: #1a73e8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.blog-list-title {
    font-size: 24px;
    font-weight: 500;
    color: #202124;
    margin-bottom: 12px;
    line-height: 1.3;
}

.blog-list-excerpt {
    font-size: 15px;
    color: #5f6368;
    line-height: 1.6;
    margin-bottom: 16px;
    flex: 1;
}

.blog-list-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 14px;
    color: #5f6368;
}

/* Blog Sidebar */
.blog-sidebar {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 24px;
}

.blog-sidebar-title {
    font-size: 16px;
    font-weight: 500;
    color: #202124;
    margin-bottom: 16px;
}

.blog-sidebar-list {
    list-style: none;
}

.blog-sidebar-item {
    padding: 12px 0;
    border-bottom: 1px solid #e8eaed;
}

.blog-sidebar-item:last-child {
    border-bottom: none;
}

.blog-sidebar-link {
    color: #202124;
    text-decoration: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.2s;
}

.blog-sidebar-link:hover {
    color: #1a73e8;
}

.blog-sidebar-count {
    font-size: 13px;
    color: #5f6368;
    background: #e8eaed;
    padding: 2px 8px;
    border-radius: 12px;
}

/* Newsletter Subscription Box */
.newsletter-box {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    padding: 32px;
    color: white;
    text-align: center;
    margin-bottom: 40px;
    margin-top: 40px;
}

.newsletter-title {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 12px;
}

.newsletter-description {
    font-size: 14px;
    opacity: 0.9;
    margin-bottom: 24px;
}

.newsletter-form {
    display: flex;
    gap: 12px;
    max-width: 400px;
    margin: 0 auto;
}

.newsletter-input {
    flex: 1;
    padding: 12px 16px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    outline: none;
}

.newsletter-button {
    background: rgba(255, 255, 255, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.5);
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.2s;
    backdrop-filter: blur(10px);
}

.newsletter-button:hover {
    background: rgba(255, 255, 255, 0.4);
}

/* Blog Tags */
.blog-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
}

.blog-tag {
    background: #f1f3f4;
    color: #5f6368;
    padding: 6px 12px;
    border-radius: 16px;
    font-size: 12px;
    text-decoration: none;
    transition: all 0.2s;
}

.blog-tag:hover {
    background: #e8eaed;
    color: #202124;
}

/* Trending Posts Widget */
.trending-posts {
    background: white;
    border-radius: 12px;
    padding: 24px;
    border: 1px solid #e8eaed;
}

.trending-post-item {
    display: flex;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid #f1f3f4;
    cursor: pointer;
    transition: all 0.2s;
}

.trending-post-item:hover {
    transform: translateX(4px);
}

.trending-post-item:last-child {
    border-bottom: none;
}

.trending-post-number {
    font-size: 24px;
    font-weight: 700;
    color: #e8eaed;
    min-width: 32px;
}

.trending-post-content {
    flex: 1;
}

.trending-post-title {
    font-size: 14px;
    font-weight: 500;
    color: #202124;
    margin-bottom: 4px;
    line-height: 1.4;
}

.trending-post-meta {
    font-size: 12px;
    color: #5f6368;
}

/* Blog Filters */
.blog-filters {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
    overflow-x: auto;
    padding-bottom: 8px;
}

.blog-filter-btn {
    background: white;
    border: 1px solid #dadce0;
    color: #5f6368;
    padding: 8px 16px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    transition: all 0.2s;
}

.blog-filter-btn:hover {
    background: #f8f9fa;
    border-color: #5f6368;
}

.blog-filter-btn.active {
    background: #e8f0fe;
    border-color: #1a73e8;
    color: #1a73e8;
}

/* Pagination */
.blog-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid #e8eaed;
}

.pagination-btn {
    background: white;
    border: 1px solid #dadce0;
    color: #5f6368;
    padding: 8px 16px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s;
    min-width: 40px;
    text-align: center;
}

.pagination-btn:hover:not(.active):not(:disabled) {
    background: #f8f9fa;
    border-color: #5f6368;
}

.pagination-btn.active {
    background: #1a73e8;
    border-color: #1a73e8;
    color: white;
}

.pagination-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

/* Blog Article Page Specific Styles */
.blog-article-header {
    max-width: 800px;
    margin: 0 auto 40px;
    text-align: center;
}

.blog-article-category {
    font-size: 14px;
    font-weight: 500;
    color: #1a73e8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.blog-article-title {
    font-size: 36px;
    font-weight: 500;
    color: #202124;
    line-height: 1.2;
    margin-bottom: 16px;
}

.blog-article-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    color: #5f6368;
    font-size: 14px;
    margin-bottom: 32px;
}

.blog-article-image {
    width: 100%;
    max-width: 1000px;
    height: 400px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    border-radius: 12px;
    margin: 0 auto 40px;
}

.blog-article-content {
    max-width: 720px;
    margin: 0 auto;
    font-size: 16px;
    line-height: 1.8;
    color: #202124;
}

.blog-article-content p {
    margin-bottom: 20px;
}

.blog-article-content h2 {
    font-size: 28px;
    font-weight: 500;
    margin: 40px 0 20px;
    color: #202124;
}

.blog-article-content h3 {
    font-size: 22px;
    font-weight: 500;
    margin: 32px 0 16px;
    color: #202124;
}

.blog-article-content ul,
.blog-article-content ol {
    margin-bottom: 20px;
    padding-left: 24px;
}

.blog-article-content li {
    margin-bottom: 8px;
}

.blog-article-content blockquote {
    border-left: 4px solid #1a73e8;
    padding-left: 20px;
    margin: 24px 0;
    font-style: italic;
    color: #5f6368;
}

/* Social Share Buttons */
.social-share {
    display: flex;
    gap: 12px;
    margin: 40px 0;
    justify-content: center;
}

.social-share-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #dadce0;
    background: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.social-share-btn:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
}

/* Related Posts */
.related-posts {
    margin-top: 60px;
    padding-top: 60px;
    border-top: 1px solid #e8eaed;
}

.related-posts-title {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 24px;
    color: #202124;
}

.share-wishlist{
    display: flex;
    gap: 15px;
}

/* Responsive Design for Blog */
@media (max-width: 768px) {
    .blog-list-item {
        flex-direction: column;
    }

    .blog-list-image {
        width: 100%;
        min-width: 100%;
        height: 180px;
    }

    .blog-list-title {
        font-size: 20px;
    }

    .share-wishlist{
        justify-content: center;
        align-items: center;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-button {
        width: 100%;
    }

    .blog-article-title {
        font-size: 28px;
    }

    .blog-article-image {
        height: 250px;
    }

    .blog-featured-image {
        height: 180px;
    }

    .blog-filters {
        padding-bottom: 12px;
    }
}

@media (max-width: 480px) {
    .blog-content {
        padding: 16px;
    }

    .blog-title {
        font-size: 16px;
    }

    .blog-excerpt {
        font-size: 13px;
    }

    .blog-meta {
        font-size: 12px;
        gap: 12px;
    }

    .blog-article-title {
        font-size: 24px;
    }

    .blog-article-content h2 {
        font-size: 22px;
    }

    .blog-article-content h3 {
        font-size: 18px;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-content {
        padding: 0 16px;
        gap: 16px;
    }

    .main-content {
        padding: 16px;
    }

    .app-header {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }

    .app-icon-large {
        width: 120px;
        height: 120px;
        align-self: center;
    }

    .app-title {
        font-size: 24px;
    }

    .app-stats {
        justify-content: center;
    }

    .rating-breakdown {
        align-items: center;
        text-align: center;
    }

    .screenshots-container {
        gap: 12px;
    }

    .screenshot {
        width: 160px;
        height: 284px;
    }
}

@media (max-width: 480px) {

    .header{
        padding: 0;
    }

    .download-section {
        align-items: center;
        margin-top: 20px;
        justify-content: space-between;
    }

    .install-btn {
        width: 100%;
    }

    .apps-grid {
        grid-template-columns: 1fr;
    }

    .screenshot {
        width: 140px;
        height: 248px;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-content {
        padding: 5px;
        gap: 10px;
    }

    .logo{
        display: none;
    }

    .help-btn{
        display: none;
    }

    .nav-container{
        padding: 0px;
    }

    .search-container {
        max-width: none;
    }

    .nav-content {
        padding: 0 16px;
        gap: 24px;
    }

    .main-content {
        padding: 16px;
    }

    .hero-card {
        padding: 24px;
    }

    .hero-content h1 {
        font-size: 24px;
    }

    .categories-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    }

    .games-grid {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
        gap: 16px;
    }
}

@media (max-width: 480px) {
    .header-content {
        height: 56px;
    }

    .search-box {
        height: 40px;
        font-size: 14px;
    }

    .hero-card {
        padding: 20px;
    }

    .categories-grid {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        gap: 12px;
    }

    .category-card {
        padding: 16px;
    }

    .games-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   AUTHENTICATION PAGE STYLES
   Add these to your existing style.css
   ======================================== */

/* Auth Container */
.auth-container {
    max-width: 480px;
    margin: 40px auto;
    position: relative;
}

/* Auth Card */
.auth-card {
    background: white;
    border-radius: 12px;
    padding: 48px 40px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border: 1px solid #e8eaed;
    display: none;
    animation: fadeIn 0.3s ease;
}

.auth-card.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Auth Header */
.auth-header {
    text-align: center;
    margin-bottom: 32px;
}

.auth-logo {
    display: flex;
    justify-content: center;
    margin-bottom: 24px;
}

.auth-title {
    font-size: 28px;
    font-weight: 400;
    color: #202124;
    margin-bottom: 8px;
}

.auth-subtitle {
    font-size: 16px;
    color: #5f6368;
}

/* Auth Form */
.auth-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Form Group */
.form-group {
    display: flex;
    flex-direction: column;
    position: relative;
}

.form-label {
    font-size: 14px;
    font-weight: 500;
    color: #202124;
    margin-bottom: 8px;
}

.form-input {
    width: 100%;
    height: 48px;
    padding: 12px 16px;
    border: 1px solid #dadce0;
    border-radius: 8px;
    font-size: 16px;
    color: #202124;
    background: white;
    transition: all 0.2s;
    outline: none;
}

.form-input:focus {
    border-color: #1a73e8;
    box-shadow: 0 0 0 3px rgba(26, 115, 232, 0.1);
}

.form-input::placeholder {
    color: #5f6368;
}

.form-hint {
    font-size: 12px;
    color: #5f6368;
    margin-top: 6px;
}

/* Password Toggle */
.password-toggle {
    position: absolute;
    right: 12px;
    top: 38px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    border-radius: 4px;
    opacity: 0.6;
    transition: all 0.2s;
}

.password-toggle:hover {
    opacity: 1;
    background: #f1f3f4;
}

/* Form Row (for side-by-side inputs) */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

/* Form Options */
.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: -8px;
}

/* Checkbox */
.checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #5f6368;
    cursor: pointer;
    user-select: none;
}

.form-checkbox {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #1a73e8;
}

.checkbox-label:hover {
    color: #202124;
}

/* Link Text */
.link-text {
    color: #1a73e8;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s;
}

.link-text:hover {
    color: #1557b0;
    text-decoration: underline;
}

/* Auth Buttons */
.auth-btn {
    width: 100%;
    height: 48px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    outline: none;
}

.auth-btn.primary {
    background: #1a73e8;
    color: white;
}

.auth-btn.primary:hover {
    background: #1557b0;
    box-shadow: 0 2px 8px rgba(26, 115, 232, 0.3);
}

.auth-btn.primary:active {
    background: #0d47a1;
}

.auth-btn.secondary {
    background: white;
    color: #202124;
    border: 1px solid #dadce0;
}

.auth-btn.secondary:hover {
    background: #f8f9fa;
    border-color: #5f6368;
}

.auth-btn.secondary:active {
    background: #f1f3f4;
}

/* Auth Divider */
.auth-divider {
    display: flex;
    align-items: center;
    text-align: center;
    color: #5f6368;
    font-size: 14px;
    margin: 8px 0;
}

.auth-divider::before,
.auth-divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid #e8eaed;
}

.auth-divider span {
    padding: 0 16px;
}

/* Auth Footer */
.auth-footer {
    text-align: center;
    color: #5f6368;
    font-size: 14px;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid #e8eaed;
}

/* Error Message */
.error-message {
    background: #fce8e6;
    color: #c5221f;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    margin-top: 16px;
}

.error-message svg {
    flex-shrink: 0;
}

/* Success Message */
.success-message {
    background: #e6f4ea;
    color: #137333;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    margin-top: 16px;
}

.success-message svg {
    flex-shrink: 0;
}

/* Loading State */
.auth-btn.loading {
    position: relative;
    color: transparent;
    pointer-events: none;
}

.auth-btn.loading::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border: 3px solid transparent;
    border-top-color: currentColor;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
    top: 50%;
    left: 50%;
    margin-left: -10px;
    margin-top: -10px;
}

.auth-btn.primary.loading::after {
    border-top-color: white;
}

.auth-btn.secondary.loading::after {
    border-top-color: #1a73e8;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Search Suggestions */
.search-suggestions {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    max-height: 400px;
    overflow-y: auto;
    z-index: 1000;
}

.suggestion-item {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    cursor: pointer;
    transition: background 0.2s;
}

.suggestion-item:hover {
    background: #f1f3f4;
}

.suggestion-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    margin-right: 12px;
    object-fit: cover;
}

.suggestion-info {
    flex: 1;
}

.suggestion-name {
    font-size: 14px;
    font-weight: 500;
    color: #202124;
}

.suggestion-category {
    font-size: 12px;
    color: #5f6368;
    margin-top: 2px;
}

.suggestion-rating {
    font-size: 12px;
    color: #ffa000;
    font-weight: 500;
}

.suggestion-view-all {
    padding: 12px 16px;
    text-align: center;
    color: #1a73e8;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    border-top: 1px solid #e0e0e0;
}

.suggestion-view-all:hover {
    background: #f1f3f4;
}

.suggestion-loading,
.suggestion-empty {
    padding: 20px;
    text-align: center;
    color: #5f6368;
    font-size: 14px;
}

/* Spinner animation */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Input Error State */
.form-input.error {
    border-color: #c5221f;
}

.form-input.error:focus {
    border-color: #c5221f;
    box-shadow: 0 0 0 3px rgba(197, 34, 31, 0.1);
}

.form-error-text {
    color: #c5221f;
    font-size: 12px;
    margin-top: 6px;
    display: flex;
    align-items: center;
    gap: 4px;
}

/* Input Success State */
.form-input.success {
    border-color: #137333;
}

.form-input.success:focus {
    border-color: #137333;
    box-shadow: 0 0 0 3px rgba(19, 115, 51, 0.1);
}

/* Password Strength Indicator */
.password-strength {
    margin-top: 8px;
}

.password-strength-bar {
    height: 4px;
    background: #e8eaed;
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 6px;
}

.password-strength-fill {
    height: 100%;
    transition: all 0.3s;
    border-radius: 2px;
}

.password-strength-fill.weak {
    width: 33%;
    background: #ea4335;
}

.password-strength-fill.medium {
    width: 66%;
    background: #fbbc04;
}

.password-strength-fill.strong {
    width: 100%;
    background: #34a853;
}

.password-strength-text {
    font-size: 12px;
    color: #5f6368;
}

/* Social Login Buttons */
.social-login-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.social-btn {
    width: 100%;
    height: 48px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    border: 1px solid #dadce0;
    background: white;
    color: #202124;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.social-btn:hover {
    background: #f8f9fa;
    border-color: #5f6368;
}

.social-btn:active {
    background: #f1f3f4;
}

.social-btn img {
    width: 20px;
    height: 20px;
}

/* Two Factor Authentication */
.two-factor-inputs {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.two-factor-input {
    width: 48px;
    height: 56px;
    text-align: center;
    font-size: 24px;
    font-weight: 500;
    border: 2px solid #dadce0;
    border-radius: 8px;
    outline: none;
    transition: all 0.2s;
}

.two-factor-input:focus {
    border-color: #1a73e8;
    box-shadow: 0 0 0 3px rgba(26, 115, 232, 0.1);
}

/* Verification Badge */
.verification-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #e8f0fe;
    color: #1a73e8;
    padding: 6px 12px;
    border-radius: 16px;
    font-size: 12px;
    font-weight: 500;
}

/* Profile Setup Progress */
.setup-progress {
    display: flex;
    justify-content: space-between;
    margin-bottom: 32px;
}

.setup-step {
    flex: 1;
    text-align: center;
    position: relative;
}

.setup-step::before {
    content: '';
    position: absolute;
    top: 16px;
    left: 50%;
    right: -50%;
    height: 2px;
    background: #e8eaed;
    z-index: 0;
}

.setup-step:last-child::before {
    display: none;
}

.setup-step-circle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #e8eaed;
    color: #5f6368;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 8px;
    font-weight: 500;
    font-size: 14px;
    position: relative;
    z-index: 1;
}

.setup-step.active .setup-step-circle {
    background: #1a73e8;
    color: white;
}

.setup-step.completed .setup-step-circle {
    background: #34a853;
    color: white;
}

.setup-step-label {
    font-size: 12px;
    color: #5f6368;
}

.setup-step.active .setup-step-label {
    color: #1a73e8;
    font-weight: 500;
}

/* Terms and Conditions Box */
.terms-box {
    background: #f8f9fa;
    border: 1px solid #e8eaed;
    border-radius: 8px;
    padding: 16px;
    font-size: 13px;
    color: #5f6368;
    line-height: 1.6;
    max-height: 150px;
    overflow-y: auto;
}

.terms-box::-webkit-scrollbar {
    width: 6px;
}

.terms-box::-webkit-scrollbar-track {
    background: #f1f3f4;
    border-radius: 3px;
}

.terms-box::-webkit-scrollbar-thumb {
    background: #dadce0;
    border-radius: 3px;
}

/* Responsive Design for Auth Pages */
@media (max-width: 768px) {
    .auth-container {
        margin: 24px auto;
    }

    .auth-card {
        padding: 32px 24px;
    }

    .auth-title {
        font-size: 24px;
    }

    .auth-subtitle {
        font-size: 14px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .auth-container {
        margin: 16px;
    }

    .auth-card {
        padding: 24px 20px;
        border-radius: 8px;
    }

    .auth-title {
        font-size: 22px;
    }

    .auth-form {
        gap: 16px;
    }

    .form-input,
    .auth-btn {
        height: 44px;
    }

    .form-options {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .two-factor-inputs {
        gap: 8px;
    }

    .two-factor-input {
        width: 40px;
        height: 48px;
        font-size: 20px;
    }
}

/* Additional Utility Classes */
.text-center {
    text-align: center;
}

.mt-1 {
    margin-top: 8px;
}

.mt-2 {
    margin-top: 16px;
}

.mb-1 {
    margin-bottom: 8px;
}

.mb-2 {
    margin-bottom: 16px;
}



/* ========================================
   FOOTER STYLES
   Add these to your existing style.css
   ======================================== */

/* Footer */
.footer {
    background: #f8f9fa;
    border-top: 1px solid #e8eaed;
    margin-top: 80px;
    padding: 48px 24px 24px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

/* Footer Top Section */
.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid #e8eaed;
}

/* Footer Column */
.footer-column {
    display: flex;
    flex-direction: column;
}

/* Footer Logo */
.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-logo-text {
    font-size: 20px;
    font-weight: 500;
    color: #202124;
}

.footer-description {
    font-size: 14px;
    color: #5f6368;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Footer Social Icons */
.footer-social {
    display: flex;
    gap: 12px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: white;
    border: 1px solid #e8eaed;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #5f6368;
    transition: all 0.2s;
    text-decoration: none;
}

.social-icon:hover {
    background: #1a73e8;
    border-color: #1a73e8;
    color: white;
    transform: translateY(-2px);
}

/* Footer Title */
.footer-title {
    font-size: 16px;
    font-weight: 500;
    color: #202124;
    margin-bottom: 16px;
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #5f6368;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #1a73e8;
}

/* Footer Bottom Section */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom-left {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.footer-bottom-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Language Selector */
.footer-language {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #5f6368;
}

.language-select {
    background: white;
    border: 1px solid #dadce0;
    border-radius: 6px;
    padding: 6px 12px;
    font-size: 14px;
    color: #5f6368;
    cursor: pointer;
    outline: none;
    transition: all 0.2s;
}

.language-select:hover {
    border-color: #5f6368;
}

.language-select:focus {
    border-color: #1a73e8;
    box-shadow: 0 0 0 3px rgba(26, 115, 232, 0.1);
}

/* Footer Copyright */
.footer-copyright {
    font-size: 14px;
    color: #5f6368;
    margin: 0;
}

/* Footer Link */
.footer-link {
    color: #5f6368;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

.footer-link:hover {
    color: #1a73e8;
}

.footer-separator {
    color: #dadce0;
}

.profile-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
}

.profile-header {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 2rem;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
}

.profile-avatar-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.profile-avatar-large {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #1a73e8;
}

.avatar-upload {
  display: flex;
  gap: 0.5rem;
}

.avatar-upload-btn,
.avatar-save-btn {
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s;
}

.avatar-upload-btn {
  background: #f1f3f4;
  color: #5f6368;
}

.avatar-upload-btn:hover {
  background: #e8eaed;
}

.avatar-save-btn {
  background: #1a73e8;
  color: white;
}

.avatar-save-btn:hover {
  background: #1557b0;
}

.profile-info h1 {
  margin: 0 0 0.5rem 0;
  font-size: 2rem;
  color: #202124;
}

.profile-email {
  color: #5f6368;
  margin: 0 0 0.5rem 0;
}

.profile-role {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: #e8f0fe;
  color: #1a73e8;
  border-radius: 16px;
  font-size: 14px;
  font-weight: 500;
  text-transform: capitalize;
}

.profile-tabs {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  border-bottom: 2px solid #e8eaed;
  overflow-x: auto;
}

.tab-btn {
  padding: 1rem 1.5rem;
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
  color: #5f6368;
  transition: all 0.3s;
  white-space: nowrap;
}

.tab-btn:hover {
  color: #1a73e8;
}

.tab-btn.active {
  color: #1a73e8;
  border-bottom-color: #1a73e8;
}

.profile-content {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  padding: 2rem;
}

.profile-tab-content {
  animation: fadeIn 0.3s ease-in;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.content-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.content-header h2 {
  margin: 0;
  font-size: 1.5rem;
  color: #202124;
}

.edit-btn,
.save-btn,
.cancel-btn {
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s;
}

.edit-btn {
  background: #1a73e8;
  color: white;
}

.edit-btn:hover {
  background: #1557b0;
}

.edit-actions {
  display: flex;
  gap: 0.5rem;
}

.save-btn {
  background: #34a853;
  color: white;
}

.save-btn:hover {
  background: #2d8e47;
}

.cancel-btn {
  background: #f1f3f4;
  color: #5f6368;
}

.cancel-btn:hover {
  background: #e8eaed;
}

.profile-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-weight: 500;
  color: #202124;
  font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.75rem;
  border: 1px solid #dadce0;
  border-radius: 6px;
  font-size: 14px;
  font-family: inherit;
  transition: all 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #1a73e8;
  box-shadow: 0 0 0 3px rgba(26, 115, 232, 0.1);
}

.form-group input:disabled,
.form-group select:disabled,
.form-group textarea:disabled {
  background: #f8f9fa;
  color: #5f6368;
  cursor: not-allowed;
}

.empty-message {
  text-align: center;
  color: #5f6368;
  padding: 3rem;
  font-size: 16px;
}

.apps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.app-card {
  border: 1px solid #dadce0;
  border-radius: 8px;
  padding: 1rem;
  transition: all 0.3s;
}

.app-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.reviews-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
}

.review-card {
  border: 1px solid #dadce0;
  border-radius: 8px;
  padding: 1.5rem;
  transition: all 0.3s;
}

.review-card:hover {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.loading-spinner {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 400px;
  font-size: 18px;
  color: #5f6368;
}

/* Responsive Design */
@media (max-width: 768px) {
  .profile-container {
    padding: 1rem;
  }

  .profile-header {
    flex-direction: column;
    text-align: center;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .profile-tabs {
    gap: 0.5rem;
  }

  .tab-btn {
    padding: 0.75rem 1rem;
    font-size: 14px;
  }

  .content-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .apps-grid {
    grid-template-columns: 1fr;
  }
}

.profile-tab-content {
  padding: 20px;
}

.review-card {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 15px;
  transition: box-shadow 0.2s ease;
}

.review-card:hover {
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.review-card img {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  object-fit: cover;
}

.review-app-name a {
  font-weight: 600;
  color: #2563eb;
  text-decoration: none;
}

.review-app-name a:hover {
  text-decoration: underline;
}

.reviews-container {
  padding: 2rem;
  min-height: 100vh;
  border-radius: 12px;
  animation: fadeIn 0.5s ease;
}

.reviews-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 1.5rem;
  border-bottom: 2px solid #e5e7eb;
  padding-bottom: 0.75rem;
}

.reviews-empty {
  text-align: center;
  padding: 5rem 1rem;
  color: #6b7280;
}

.empty-icon {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  opacity: 0.7;
}

.empty-text {
  font-size: 1.1rem;
  font-weight: 600;
  color: #374151;
}

.empty-subtext {
  color: #9ca3af;
  font-size: 0.9rem;
  margin-top: 0.25rem;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.25rem;
}

.review-card {
  display: flex;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 1.25rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
}

.review-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.08);
  border-color: #dbeafe;
}

.app-icon {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  object-fit: cover;
  flex-shrink: 0;
  margin-right: 1rem;
  border: 1px solid #f1f5f9;
}

.review-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.app-name {
  font-size: 1rem;
  font-weight: 600;
  color: #2563eb;
  text-decoration: none;
  margin-bottom: 0.25rem;
}

.app-name:hover {
  text-decoration: underline;
}

.review-rating {
  display: flex;
  align-items: center;
  margin-bottom: 0.4rem;
}

.star {
  color: #d1d5db;
  font-size: 1rem;
  transition: color 0.2s ease;
}

.star.filled {
  color: #fbbf24;
}

.rating-text {
  margin-left: 0.4rem;
  font-size: 0.8rem;
  color: #6b7280;
}

.review-comment {
  font-size: 0.9rem;
  color: #374151;
  line-height: 1.5;
  margin-top: 0.25rem;
  flex-grow: 1;
}

.review-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 0.75rem;
}

.review-date {
  font-size: 0.75rem;
  color: #9ca3af;
}

.review-actions {
  display: flex;
  gap: 0.5rem;
}

.btn-edit,
.btn-delete {
  background: none;
  border: none;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: color 0.2s ease;
}

.btn-edit {
  color: #2563eb;
}

.btn-edit:hover {
  color: #1d4ed8;
}

.btn-delete {
  color: #dc2626;
}

.btn-delete:hover {
  color: #b91c1c;
}

/* ========================================
   BOTTOM NAVIGATION (MOBILE)
   ======================================== */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    border-top: 1px solid #dadce0;
    padding: 8px 0 8px;
    z-index: 1000;
    display: none;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.05);
}

.bottom-nav-content {
    display: flex;
    justify-content: space-around;
    align-items: center;
    max-width: 100%;
    margin: 0 auto;
}

.bottom-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #5f6368;
    padding: 6px 12px;
    border-radius: 12px;
    transition: all 0.2s ease;
    position: relative;
    flex: 1;
    min-width: 0;
}

.bottom-nav-item:active {
    transform: scale(0.95);
}

.bottom-nav-icon {
    width: 24px;
    height: 24px;
    margin-bottom: 4px;
    opacity: 0.7;
    transition: all 0.2s ease;
}

.bottom-nav-item.active .bottom-nav-icon {
    opacity: 1;
}

.bottom-nav-label {
    font-size: 12px;
    font-weight: 500;
    white-space: nowrap;
    transition: all 0.2s ease;
}

.bottom-nav-item.active {
    color: #1a73e8;
}

.bottom-nav-item.active .bottom-nav-label {
    font-weight: 600;
}

@media (hover: hover) {
    .bottom-nav-item:hover {
        background-color: #f1f3f4;
    }
}

body.has-bottom-nav {
    /* padding-bottom: 65px; */
}

/* Full-screen centered container */
.notfound-container {
  position: relative;
  height: 50vh;
  width: 100%;
  background: linear-gradient(135deg, #2c3e50, #3498db);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  overflow: hidden;
  font-family: 'Poppins', sans-serif;
}

/* Add a smooth animated background glow */
.notfound-background::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 10%, transparent 60%);
  animation: moveGlow 10s linear infinite;
}

@keyframes moveGlow {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Content box styling */
.notfound-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 600px;
  padding: 40px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* 404 Number */
.notfound-title {
  font-size: 8rem;
  font-weight: 800;
  margin: 0;
  color: #ff6b6b;
  text-shadow: 0 0 20px rgba(255, 107, 107, 0.6);
}

/* Subtitle */
.notfound-subtitle {
  font-size: 2rem;
  margin-top: 10px;
  margin-bottom: 15px;
  color: #f1f1f1;
}

/* Description text */
.notfound-text {
  font-size: 1rem;
  color: #e0e0e0;
  margin-bottom: 30px;
  line-height: 1.6;
}

/* Button styling */
.notfound-button {
  display: inline-block;
  padding: 12px 30px;
  background-color: #3498db;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  border-radius: 30px;
  transition: all 0.3s ease;
}

.notfound-button:hover {
  background-color: #1d6fa5;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}


@media (max-width: 768px) {
    .bottom-nav {
        display: block;
    }
    
    .main-content {
        padding-bottom: 80px;
    }
    
    .install-share-wishlist{
        display: grid;
        width: 100%;
        gap: 5px;
    }
}

@media (max-width: 480px) {
    .bottom-nav {
        padding: 6px 0 6px;
    }
    
    .bottom-nav-item {
        padding: 4px 8px;
    }
    
    .bottom-nav-icon {
        width: 22px;
        height: 22px;
        margin-bottom: 2px;
    }
    
    .bottom-nav-label {
        font-size: 11px;
    }
}

@supports (padding-bottom: env(safe-area-inset-bottom)) {
    .bottom-nav {
        padding-bottom: calc(8px + env(safe-area-inset-bottom));
    }
    
    /* body.has-bottom-nav {
        padding-bottom: calc(65px + env(safe-area-inset-bottom));
    } */
}


@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}


/* Responsive Footer */
@media (max-width: 1024px) {
    .footer-top {
        grid-template-columns: 2fr 1fr 1fr;
        gap: 32px;
    }

    .footer-column:nth-child(4),
    .footer-column:nth-child(5) {
        grid-column: span 1;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 40px 16px 20px;
        margin-top: 60px;
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
        margin-bottom: 32px;
        padding-bottom: 32px;
    }

    .footer-column:first-child {
        grid-column: span 2;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .footer-bottom-left {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .footer-bottom-right {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 32px 16px 20px;
        margin-top: 40px;
        margin-bottom: 60px;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-column:first-child {
        grid-column: span 1;
    }

    .footer-logo-text {
        font-size: 18px;
    }

    .footer-description {
        font-size: 13px;
    }

    .footer-title {
        font-size: 15px;
    }

    .footer-links a {
        font-size: 13px;
    }

    .footer-social {
        gap: 8px;
    }

    .social-icon {
        width: 36px;
        height: 36px;
    }

    .footer-copyright,
    .footer-link {
        font-size: 13px;
    }

    .language-select {
        font-size: 13px;
        padding: 6px 10px;
    }
}

/* Newsletter Signup in Footer (Optional) */
.footer-newsletter {
    background: white;
    border: 1px solid #e8eaed;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 40px;
}

.footer-newsletter-title {
    font-size: 18px;
    font-weight: 500;
    color: #202124;
    margin-bottom: 8px;
}

.footer-newsletter-description {
    font-size: 14px;
    color: #5f6368;
    margin-bottom: 16px;
}

.footer-newsletter-form {
    display: flex;
    gap: 12px;
}

.footer-newsletter-input {
    flex: 1;
    height: 44px;
    padding: 0 16px;
    border: 1px solid #dadce0;
    border-radius: 8px;
    font-size: 14px;
    outline: none;
    transition: all 0.2s;
}

.footer-newsletter-input:focus {
    border-color: #1a73e8;
    box-shadow: 0 0 0 3px rgba(26, 115, 232, 0.1);
}

.footer-newsletter-button {
    height: 44px;
    padding: 0 24px;
    background: #1a73e8;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
}

.footer-newsletter-button:hover {
    background: #1557b0;
    box-shadow: 0 2px 8px rgba(26, 115, 232, 0.3);
}

/* App Download Buttons in Footer (Optional) */
.footer-app-buttons {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.app-button {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: #202124;
    color: white;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.2s;
}

.app-button:hover {
    background: #303134;
    transform: translateY(-2px);
}

.app-button-icon {
    width: 24px;
    height: 24px;
}

.app-button-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.app-button-label {
    font-size: 10px;
    opacity: 0.8;
}

.app-button-store {
    font-size: 14px;
    font-weight: 500;
}

@media (max-width: 480px) {
    .footer-newsletter-form {
        flex-direction: column;
    }

    .footer-newsletter-button {
        width: 100%;
    }

    .footer-app-buttons {
        flex-direction: column;
    }

    .app-button {
        width: 100%;
        justify-content: center;
    }
}