* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    background: #fff;
    color: #202124;
    max-width: 480px;
    margin: 0 auto;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
    min-height: 100vh;
}

html {
    background: #f0f0f0;
}

/* Dark Section */
.dark-section {
    background: #202124;
    padding-bottom: 16px;
}

.dark-section .app-info {
    margin-top: -50px;
    z-index: 10;
    position: relative;
}

.dark-section .app-details h1 {
    color: #fff;
}

.dark-section .verified {
    color: #01875f;
}

.dark-section .stats {
    border-bottom: 1px solid #333;
}

.dark-section .stat-value {
    color: #fff;
}

.dark-section .stat-value .star {
    color: #fff;
}

.dark-section .stat-label {
    color: #888;
}

.dark-section .age-rating {
    border-color: #fff;
    color: #fff;
}

.dark-section .stat-item:not(:last-child)::after {
    background: #333;
}

.dark-section .actions {
    border-bottom: none;
}

.dark-section .action-item {
    color: #01875f;
}

/* Header */
.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    position: sticky;
    top: 0;
    background: #202124;
    z-index: 100;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 8px;
}

.play-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 18px;
    font-weight: 500;
}

.play-logo img {
    height: 38px;
    width: auto;
}

.play-logo span {
    font-size: 22px;
    color: #5f6368;
    font-weight: 500;
}

.top-developer {
    display: flex;
    align-items: center;
    gap: 4px;
    border: 2px solid #ffc107;
    border-radius: 20px;
    padding: 4px 12px 4px 10px;
    font-size: 12px;
    color: #fff;
    overflow: visible;
}

.gold-text-art {
    font-size: 16px;
    font-weight: bold;
    font-style: italic;
    background: linear-gradient(180deg, #fff9c4 0%, #ffd54f 30%, #ff8f00 70%, #e65100 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    filter: drop-shadow(1px 1px 0px #5d4037) drop-shadow(2px 2px 1px rgba(0,0,0,0.5));
    margin-right: 6px;
    padding-right: 4px;
}

.up-to-badge {
    background: linear-gradient(180deg, #ffd54f 0%, #ff8f00 100%);
    color: #4a148c;
    font-size: 10px;
    font-weight: bold;
    padding: 2px 6px;
    border-radius: 10px;
    text-transform: uppercase;
}

.top-developer img {
    width: 20px;
    height: 20px;
}

/* Navigation */
.nav-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 16px;
    background: #202124;
}

.nav-bar .material-icons {
    color: #fff;
    cursor: pointer;
}

/* App Info */
.app-info {
    display: flex;
    align-items: center;
    padding: 16px;
    gap: 16px;
}

.app-icon {
    width: 72px;
    height: 72px;
    border-radius: 16px;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
}

.app-icon-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.app-icon-inner {
    color: #ffc107;
    font-size: 32px;
    font-weight: bold;
    font-family: serif;
}

.app-icon-crown {
    position: absolute;
    top: -8px;
    font-size: 16px;
}

.app-icon-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.app-details h1 {
    font-size: 24px;
    font-weight: 500;
    color: #202124;
    margin-bottom: 4px;
}

.verified {
    display: flex;
    align-items: center;
    gap: 4px;
    color: #5f6368;
    font-size: 14px;
}

.verified-icon {
    width: 16px;
    height: 16px;
    background: linear-gradient(135deg, #4285f4, #34a853, #fbbc05, #ea4335);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.verified-icon::after {
    content: "▶";
    color: #fff;
    font-size: 8px;
    margin-left: 2px;
}

/* Stats */
.stats {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    padding: 16px;
    border-bottom: 1px solid #e0e0e0;
}

.stat-item {
    text-align: center;
    flex: 1;
    position: relative;
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-item:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 24px;
    width: 1px;
    background: #e0e0e0;
}

.stat-value {
    font-size: 16px;
    font-weight: 500;
    white-space: nowrap;
    line-height: 1.2;
}

.stat-value .star {
    color: #202124;
}

.stat-label {
    font-size: 12px;
    color: #5f6368;
    margin-top: 4px;
}

.age-rating {
    border: 1px solid #202124;
    padding: 1px 3px;
    border-radius: 3px;
    font-size: 12px;
    font-weight: 500;
}

/* Install Button */
.install-btn {
    display: block;
    margin: 16px 16px 8px 16px;
    background: #01875f;
    color: #fff;
    border: 2px solid #01875f;
    border-radius: 8px;
    padding: 12px;
    font-size: 16px;
    font-weight: 500;
    width: calc(100% - 32px);
    cursor: pointer;
    box-sizing: border-box;
    text-align: center;
    text-decoration: none;
}

/* Play Now Button */
.play-now-btn {
    display: block;
    margin: 0 16px 16px 16px;
    background: transparent;
    color: #01875f;
    border: 2px solid #01875f;
    border-radius: 8px;
    padding: 12px;
    font-size: 16px;
    font-weight: 500;
    width: calc(100% - 32px);
    cursor: pointer;
    box-sizing: border-box;
    text-align: center;
    text-decoration: none;
}

/* Actions */
.actions {
    display: flex;
    justify-content: center;
    gap: 40px;
    padding: 8px 16px;
}

.action-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #01875f;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
}

.action-item .material-icons {
    font-size: 20px;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

/* Global Material Icons - prevent text selection */
.material-icons {
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.bookmark-icon {
    width: 20px;
    height: 20px;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

/* Tagline */
.tagline {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    color: #01875f;
    font-size: 15px;
    text-align: center;
}

.tagline-icon {
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #4285f4, #34a853, #fbbc05, #ea4335);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tagline-icon::after {
    content: "▶";
    color: #fff;
    font-size: 12px;
    margin-left: 2px;
}

/* Video Preview */
.video-preview {
    position: relative;
    width: 100%;
    height: 280px;
    margin: 0;
    overflow: hidden;
    background: #000;
}

.video-preview::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: linear-gradient(to bottom, transparent, #202124);
    pointer-events: none;
    z-index: 2;
}

.video-darken {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.1);
    pointer-events: none;
    z-index: 1;
}

.preview-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #000;
    pointer-events: none;
}

.preview-video::-webkit-media-controls {
    display: none !important;
}

.preview-video::-webkit-media-controls-enclosure {
    display: none !important;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.video-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.video-badge {
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 500;
}

.video-jackpot {
    background: linear-gradient(90deg, #ffd700, #ff8c00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 12px;
    font-weight: bold;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 0, 0, 0.7);
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    transition: background 0.3s;
}

.video-play-btn:hover {
    background: rgba(0, 0, 0, 0.9);
}

.video-play-btn .material-icons {
    color: #fff;
    font-size: 24px;
}

.play-text {
    color: #fff;
    font-size: 14px;
    font-weight: 500;
}

.video-game-title {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
}

.gold-text {
    font-size: 20px;
    font-weight: bold;
    background: linear-gradient(180deg, #ffd700 0%, #ff8c00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.sub-text {
    font-size: 10px;
    color: #ffd700;
    letter-spacing: 2px;
    margin-left: 2px;
}

/* Screenshots */
.screenshots {
    padding: 8px 0;
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
}

.screenshots::-webkit-scrollbar {
    display: none;
}

.screenshots-inner {
    display: inline-flex;
    gap: 12px;
    padding: 0 16px;
}

.screenshot {
    width: 140px;
    height: 280px;
    border-radius: 12px;
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    flex-shrink: 0;
    overflow: hidden;
    position: relative;
}

.screenshot img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.screenshot-1 {
    background: linear-gradient(180deg, #2d5016 0%, #1a3d0c 50%, #0d2205 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 10px;
}

.screenshot-1::before {
    content: "FRUIT SLOT MACHINE";
    color: #ffd700;
    font-size: 10px;
    font-weight: bold;
    text-align: center;
    display: block;
    margin-bottom: 5px;
}

.slot-machine {
    width: 90%;
    height: 60%;
    background: linear-gradient(180deg, #8b4513, #654321);
    border-radius: 8px;
    border: 3px solid #ffd700;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 5px;
}

.slot-reels {
    display: flex;
    gap: 4px;
    background: #000;
    padding: 8px;
    border-radius: 4px;
    margin: 5px 0;
}

.reel {
    width: 25px;
    height: 60px;
    background: #fff;
    border-radius: 2px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    font-size: 14px;
}

.win-text {
    color: #ffd700;
    font-size: 28px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    margin-top: 10px;
}

.tiger-mascot {
    width: 50px;
    height: 70px;
    background: linear-gradient(180deg, #ff9800, #e65100);
    border-radius: 50% 50% 40% 40%;
    position: absolute;
    bottom: 20px;
    left: 10px;
}

.screenshot-2 {
    background: linear-gradient(180deg, #1a237e 0%, #7b1fa2 50%, #e91e63 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 10px;
}

.screenshot-2::before {
    content: "FIGHT FOR THE RICHES!";
    color: #ffd700;
    font-size: 11px;
    font-weight: bold;
    text-shadow: 1px 1px 2px #000;
}

.multipliers {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    justify-content: center;
    margin-top: 80px;
}

.multiplier {
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    color: #fff;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 10px;
    font-weight: bold;
}

.screenshot-3 {
    background: linear-gradient(180deg, #0d0221 0%, #1a0533 50%, #2d0845 100%);
}

.jackpot-text {
    position: absolute;
    bottom: 30px;
    right: 10px;
    color: #ffd700;
    font-size: 24px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
}

/* About Section */
.about-section {
    padding: 20px 16px;
}

.about-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.about-header h2 {
    font-size: 18px;
    font-weight: 500;
}

.about-header .material-icons {
    color: #5f6368;
}

.about-text {
    font-size: 14px;
    color: #5f6368;
    line-height: 1.5;
    margin-bottom: 16px;
}

/* Tags */
.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag {
    background: #f5f5f5;
    color: #5f6368;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    white-space: nowrap;
}

/* Custom Screenshot Images using gradients and shapes */
.game-visual {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.screenshot-1 .game-visual {
    background: linear-gradient(180deg, #1b5e20 0%, #2e7d32 30%, #1b5e20 100%);
}

.fruit-header {
    background: linear-gradient(90deg, #f44336, #ff9800, #4caf50);
    padding: 8px;
    text-align: center;
    font-weight: bold;
    color: #fff;
    font-size: 11px;
    text-shadow: 1px 1px 2px #000;
}

.slot-frame {
    background: linear-gradient(180deg, #5d4037, #3e2723);
    margin: 10px;
    padding: 10px;
    border-radius: 10px;
    border: 3px solid #ffc107;
}

.slot-screen {
    background: #000;
    padding: 5px;
    border-radius: 5px;
}

.slot-row {
    display: flex;
    justify-content: space-around;
    margin: 3px 0;
}

.slot-cell {
    width: 28px;
    height: 28px;
    background: #fff;
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.win-banner {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #ffd700, #ffb300);
    padding: 10px 20px;
    border-radius: 10px;
    font-size: 24px;
    font-weight: bold;
    color: #b71c1c;
    text-shadow: 1px 1px 0 #fff;
    border: 3px solid #b71c1c;
}

.mascot {
    position: absolute;
    bottom: 10px;
    left: 5px;
    width: 60px;
    height: 80px;
}

.mascot-body {
    width: 50px;
    height: 60px;
    background: linear-gradient(180deg, #ff9800, #e65100);
    border-radius: 25px 25px 20px 20px;
    position: relative;
    margin-left: 5px;
}

.mascot-face {
    width: 40px;
    height: 35px;
    background: #fff;
    border-radius: 50%;
    position: absolute;
    top: 8px;
    left: 5px;
}

.mascot-eyes {
    display: flex;
    justify-content: space-around;
    padding-top: 8px;
}

.mascot-eye {
    width: 8px;
    height: 8px;
    background: #000;
    border-radius: 50%;
}

.mascot-nose {
    width: 10px;
    height: 8px;
    background: #e91e63;
    border-radius: 50%;
    margin: 3px auto;
}

.mascot-mouth {
    width: 15px;
    height: 8px;
    background: #c62828;
    border-radius: 0 0 10px 10px;
    margin: 0 auto;
}

.gold-coins {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 30px;
    background: linear-gradient(0deg, #ffd700 0%, transparent 100%);
}

.screenshot-2 .game-visual {
    background: radial-gradient(circle at 50% 30%, #7c4dff, #304ffe 50%, #1a237e 100%);
}

.riches-title {
    text-align: center;
    padding: 15px 5px;
    color: #ffd700;
    font-weight: bold;
    font-size: 14px;
    text-shadow: 2px 2px 4px #000;
    line-height: 1.3;
}

.tiger-chars {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 10px 0;
}

.tiger-char {
    width: 50px;
    height: 60px;
    background: linear-gradient(180deg, #ff9800, #e65100);
    border-radius: 20px 20px 15px 15px;
    position: relative;
}

.tiger-face-small {
    width: 35px;
    height: 30px;
    background: #fff;
    border-radius: 50%;
    position: absolute;
    top: 5px;
    left: 7.5px;
}

.multiplier-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
    padding: 10px;
    margin-top: 20px;
}

.mult-badge {
    background: linear-gradient(135deg, #ff5722, #e64a19);
    color: #fff;
    padding: 6px 4px;
    border-radius: 15px;
    font-size: 9px;
    font-weight: bold;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.mult-badge.green {
    background: linear-gradient(135deg, #4caf50, #2e7d32);
}

.mushroom {
    position: absolute;
    top: 60px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 30px;
}

.screenshot-3 .game-visual {
    background: linear-gradient(180deg, #0d0d0d 0%, #1a1a2e 50%, #2d1b4e 100%);
    position: relative;
}

.ufo {
    position: absolute;
    top: 20px;
    right: 10px;
    width: 50px;
    height: 25px;
    background: linear-gradient(180deg, #9c27b0, #7b1fa2);
    border-radius: 50%;
    box-shadow: 0 0 20px #e040fb;
}

.ufo::before {
    content: "";
    position: absolute;
    top: -10px;
    left: 15px;
    width: 20px;
    height: 15px;
    background: linear-gradient(180deg, #ce93d8, #9c27b0);
    border-radius: 50%;
}

.ufo-beam {
    position: absolute;
    top: 45px;
    right: 15px;
    width: 40px;
    height: 80px;
    background: linear-gradient(180deg, rgba(224, 64, 251, 0.5), transparent);
    clip-path: polygon(20% 0%, 80% 0%, 100% 100%, 0% 100%);
}

.lady-silhouette {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 150px;
}

.lady-body {
    width: 60px;
    height: 100px;
    background: linear-gradient(180deg, #d4a574, #c4956a);
    border-radius: 30px 30px 25px 25px;
    margin: 0 auto;
    position: relative;
}

.lady-dress {
    position: absolute;
    bottom: -40px;
    left: -5px;
    width: 70px;
    height: 50px;
    background: linear-gradient(180deg, #ffd700, #ff8c00);
    border-radius: 0 0 35px 35px;
}

.lady-hair {
    width: 50px;
    height: 40px;
    background: linear-gradient(180deg, #3e2723, #1a1a1a);
    border-radius: 25px 25px 0 0;
    position: absolute;
    top: -35px;
    left: 5px;
}

.jackpot-amount {
    position: absolute;
    bottom: 15px;
    right: 5px;
    color: #ffd700;
    font-size: 18px;
    font-weight: bold;
    text-shadow: 0 0 10px #ffd700, 2px 2px 4px #000;
}

.stars {
    position: absolute;
    width: 100%;
    height: 100%;
}

.star {
    position: absolute;
    width: 2px;
    height: 2px;
    background: #fff;
    border-radius: 50%;
}

/* Features Section */
.features-section {
    padding: 20px 16px;
}

.feature-item {
    margin-bottom: 16px;
    line-height: 1.6;
}

.feature-item .emoji {
    font-size: 16px;
    margin-right: 4px;
}

.feature-item .highlight {
    color: #202124;
    font-weight: 500;
}

.feature-item .text {
    color: #5f6368;
    font-size: 14px;
}

.feature-title {
    font-weight: 500;
    color: #202124;
    font-size: 14px;
}

.download-cta {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #202124;
    font-size: 15px;
    font-weight: 500;
    margin-top: 20px;
}

.download-cta .emoji {
    font-size: 18px;
}

/* Updated Section */
.updated-section {
    padding: 20px 16px;
    border-top: 1px solid #e0e0e0;
}

.updated-section h3 {
    font-size: 16px;
    font-weight: 500;
    color: #202124;
    margin-bottom: 4px;
}

.updated-section .date {
    font-size: 14px;
    color: #5f6368;
}

/* Data Safety Section */
.data-safety-section {
    padding: 20px 16px;
}

.data-safety-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.data-safety-header h2 {
    font-size: 18px;
    font-weight: 500;
}

.data-safety-header .material-icons {
    color: #5f6368;
}

.data-safety-desc {
    font-size: 14px;
    color: #5f6368;
    line-height: 1.6;
    margin-bottom: 20px;
}

.data-safety-card {
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 16px;
}

.safety-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px 0;
}

.data-safety-card > .safety-item:last-of-type {
    border-bottom: none;
}

.safety-item .material-icons {
    color: #5f6368;
    font-size: 20px;
    flex-shrink: 0;
}

.safety-item-content {
    flex: 1;
}

.safety-item-title {
    font-size: 14px;
    color: #202124;
    margin-bottom: 2px;
}

.safety-item-subtitle {
    font-size: 12px;
    color: #5f6368;
}

.safety-item-subtitle .underline-text {
    color: #5f6368;
}

.safety-item-title .underline-text {
    color: #5f6368;
}

.see-details {
    color: #01875f;
    font-size: 14px;
    font-weight: 500;
    margin-top: 16px;
    cursor: pointer;
}

/* Ratings Section */
.ratings-section {
    padding: 20px 16px;
}

.ratings-section h2 {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 8px;
}

.ratings-subtitle {
    font-size: 12px;
    color: #5f6368;
    margin-bottom: 16px;
}

.device-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
}

.device-tab {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border: 1px solid #e0e0e0;
    border-radius: 20px;
    font-size: 13px;
    color: #5f6368;
    cursor: pointer;
}

.device-tab.active {
    background: #e6f4ea;
    border-color: #01875f;
    color: #01875f;
}

.device-tab .material-icons {
    font-size: 16px;
}

.rating-display {
    display: flex;
    gap: 24px;
    margin-bottom: 24px;
}

.rating-big {
    text-align: center;
}

.rating-number {
    font-size: 48px;
    font-weight: 400;
    line-height: 1;
}

.rating-stars {
    color: #01875f;
    font-size: 14px;
    margin: 4px 0;
}

.rating-count {
    font-size: 12px;
    color: #5f6368;
}

.rating-bars {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
}

.rating-bar-row {
    display: flex;
    align-items: center;
    gap: 8px;
}

.rating-bar-label {
    font-size: 12px;
    color: #5f6368;
    width: 12px;
}

.rating-bar-track {
    flex: 1;
    height: 8px;
    background: #e0e0e0;
    border-radius: 4px;
    overflow: hidden;
}

.rating-bar-fill {
    height: 100%;
    background: #01875f;
    border-radius: 4px;
}

/* Reviews */
.review-item {
    padding: 16px 0;
    border-top: 1px solid #f5f5f5;
}

.review-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
}

.review-user {
    display: flex;
    align-items: center;
    gap: 12px;
}

.review-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #5f6368;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
}

.review-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.review-name {
    font-size: 14px;
    font-weight: 500;
}

.review-header .material-icons {
    color: #5f6368;
}

.review-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.review-stars {
    color: #01875f;
    font-size: 12px;
}

.review-date {
    font-size: 12px;
    color: #5f6368;
}

.review-text {
    font-size: 14px;
    color: #202124;
    line-height: 1.5;
    margin-bottom: 12px;
}

.review-helpful {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.review-helpful-text {
    font-size: 12px;
    color: #5f6368;
}

.review-helpful-btns {
    display: flex;
    gap: 8px;
}

.helpful-btn {
    padding: 6px 16px;
    border: 1px solid #e0e0e0;
    border-radius: 20px;
    font-size: 12px;
    color: #5f6368;
    background: #fff;
    cursor: pointer;
}

/* Footer */
.footer-section {
    padding: 20px 16px;
}

.footer-title {
    font-size: 14px;
    font-weight: 500;
    color: #202124;
    margin-bottom: 16px;
}

.footer-link {
    display: block;
    font-size: 14px;
    color: #5f6368;
    padding: 10px 0;
    text-decoration: none;
}

.footer-category {
    font-size: 12px;
    font-weight: 500;
    color: #202124;
    margin-top: 16px;
    margin-bottom: 8px;
}

.footer-bottom {
    display: flex;
    gap: 24px;
    padding: 16px 0;
    border-top: 1px solid #e0e0e0;
    margin-top: 16px;
}

.footer-bottom a {
    font-size: 12px;
    color: #5f6368;
    text-decoration: none;
}

.footer-bottom span {
    font-size: 12px;
    color: #5f6368;
}

/* Bottom Navigation */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    max-width: 480px;
    margin: 0 auto;
    background: #fff;
    display: flex;
    justify-content: space-around;
    padding: 8px 0 12px;
    border-top: 1px solid #e0e0e0;
    z-index: 100;
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    color: #5f6368;
    font-size: 12px;
    text-decoration: none;
    cursor: pointer;
}

.nav-item.active {
    color: #01875f;
}

.nav-item .material-icons {
    font-size: 24px;
}

/* Custom Bookmark Modal */
.bookmark-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.bookmark-modal.show {
    display: flex;
}

.bookmark-modal-content {
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    max-width: 320px;
    width: 90%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.bookmark-modal-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.bookmark-modal-header .material-icons {
    color: #01875f;
    font-size: 28px;
}

.bookmark-modal-header h3 {
    font-size: 18px;
    font-weight: 500;
    color: #202124;
    margin: 0;
}

.bookmark-modal-text {
    font-size: 14px;
    color: #5f6368;
    line-height: 1.6;
    margin-bottom: 20px;
}

.bookmark-modal-text strong {
    color: #202124;
    font-weight: 500;
}

.bookmark-modal-btn {
    width: 100%;
    background: #01875f;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 12px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s;
}

.bookmark-modal-btn:hover {
    background: #016d4d;
}


.helpful-btn {
    transition: all 0.3s ease;
}

.helpful-btn:hover {
    background: #f5f5f5;
}

.helpful-btn.helpful-active {
    background: #e6f4ea;
    color: #01875f;
    border-color: #01875f;
}


/* Screen reader only - for accessibility */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}


.copyright {
    text-align: center;
    padding: 16px 0;
    margin-top: 8px;
    border-top: 1px solid #e0e0e0;
}

.copyright p {
    font-size: 14px;
    color: #5f6368;
    margin: 0;
}
