:root {
    --red-700: #b91c1c;
    --red-600: #dc2626;
    --red-800: #991b1b;
    --red-500: #ef4444;
    --red-900: #7f1d1d;
    --red-50: #fef2f2;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.5;
}

.min-h-screen {
    min-height: 100vh;
    background: linear-gradient(to bottom right, var(--red-700), var(--red-600), var(--red-800));
    display: flex;
    flex-direction: column;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 1rem;
    flex-grow: 1;
}

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

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

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

.app-card {
    background: white;
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transform: scale(1);
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

.app-card:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 15px rgba(239, 68, 68, 0.2);
}

.image-container {
    position: relative;
    height: 12rem;
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.content {
    padding: 1.5rem;
}

.app-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.icon {
    width: 1.5rem;
    height: 1.5rem;
    padding: 0.5rem;
    background: var(--red-50);
    border-radius: 0.5rem;
    position: relative;
}

.icon::before {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--red-600);
}

.tv-icon::before {
    content: "📺";
}

.play-icon::before {
    content: "▶️";
}

.book-icon::before {
    content: "📚";
}

h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1f2937;
}

p {
    color: #4b5563;
    margin-bottom: 1rem;
}

.rating {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.stars {
    color: var(--red-500);
}

.rating span {
    font-size: 0.875rem;
    font-weight: 500;
    color: #6b7280;
}

footer {
    background: rgba(127, 29, 29, 0.5);
    backdrop-filter: blur(4px);
    margin-top: 4rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.5rem 1rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.9);
}

.disclaimer {
    font-size: 0.875rem;
    margin-top: 0.5rem;
    color: rgba(255, 255, 255, 0.7);
}