Aggiunge modulo Replay, Garage dev e YouTube a livello società.

Pipeline registrazione/upload con storage S3, archivio web e app, proxy replay
per il browser, OAuth YouTube sulla pagina club (Premium Full) e footer legale.

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
2026-06-03 07:53:11 +02:00
parent a87cda156b
commit 1f273f849d
87 changed files with 2952 additions and 195 deletions

View File

@@ -356,3 +356,171 @@
border-radius: 12px;
background: #000;
}
.live-main .replay-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
gap: 20px;
margin-top: 24px;
}
.live-main a.replay-card {
display: block;
text-decoration: none;
color: #eee;
background: #14141c;
border: 1px solid #2a2a36;
border-radius: 14px;
overflow: hidden;
transition: border-color 0.15s, transform 0.15s, box-shadow 0.15s;
}
.live-main a.replay-card:hover {
border-color: #e53935;
transform: translateY(-3px);
box-shadow: 0 12px 28px rgba(0, 0, 0, 0.45);
color: #fff;
text-decoration: none;
}
.live-main .replay-card__media {
position: relative;
background: #0a0a0e;
}
.live-main .replay-card__thumb {
width: 100%;
aspect-ratio: 16 / 9;
object-fit: cover;
background: #111;
display: block;
vertical-align: middle;
}
.live-main .replay-card__thumb--placeholder {
display: flex;
align-items: center;
justify-content: center;
min-height: 140px;
background: linear-gradient(145deg, #1a1a24 0%, #0d0d12 100%);
}
.live-main .replay-card__placeholder-icon {
font-size: 2rem;
color: #444;
}
.live-main .replay-card__play {
position: absolute;
left: 50%;
top: 50%;
transform: translate(-50%, -50%);
width: 52px;
height: 52px;
border-radius: 50%;
background: rgba(229, 57, 53, 0.92);
color: #fff;
font-size: 1.1rem;
line-height: 52px;
text-align: center;
padding-left: 4px;
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
pointer-events: none;
}
.live-main .replay-card__duration {
position: absolute;
right: 8px;
bottom: 8px;
padding: 3px 8px;
border-radius: 6px;
background: rgba(0, 0, 0, 0.75);
color: #fff;
font-size: 0.75rem;
font-weight: 600;
}
.live-main .replay-card__body {
padding: 12px 14px 14px;
}
.live-main .replay-card__title {
display: block;
font-size: 1rem;
margin: 0 0 6px;
color: #fff;
line-height: 1.3;
}
.live-main .replay-card__meta {
margin: 0;
font-size: 0.85rem;
color: #999;
}
.live-main .replay-card__meta--sub {
margin-top: 4px;
font-size: 0.8rem;
color: #777;
}
.live-main .replay-show__header {
margin-bottom: 20px;
}
.live-main .replay-show__header h1 {
margin: 0 0 8px;
font-size: 1.6rem;
}
.live-main .replay-show__meta {
margin: 0;
color: #999;
font-size: 0.95rem;
}
.live-main .replay-show__player {
padding: 0;
overflow: hidden;
margin-bottom: 16px;
}
.live-main .replay-show__player .replay-video {
display: block;
width: 100%;
border-radius: 12px;
}
.live-main .replay-show__details {
padding: 16px 18px;
}
.live-main .replay-show__details-line {
margin: 0 0 14px;
color: #aaa;
font-size: 0.9rem;
line-height: 1.5;
}
.live-main .replay-show__actions {
display: flex;
flex-wrap: wrap;
gap: 10px;
}
.live-main .replay-filter-form {
margin: 12px 0 20px;
display: flex;
gap: 8px;
flex-wrap: wrap;
align-items: center;
}
.live-main .replay-filter-form .input {
min-width: 200px;
padding: 10px 12px;
border: 1px solid #333;
border-radius: 10px;
background: #14141c;
color: #fff;
}

View File

@@ -1014,7 +1014,9 @@ body.nav-menu-open { overflow: hidden; }
.stripe-secure--compact i { font-size: 0.95rem; color: #888; }
.site-footer { border-top: 1px solid #252530; padding: 32px 0; margin-top: 40px; color: #888; font-size: 0.88rem; }
.site-footer .wrap { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 16px; }
.site-footer__stripe { flex: 1 1 100%; margin-top: 4px; }
.site-footer__legal { flex: 1 1 100%; margin-top: 4px; }
.site-footer__legal p { margin: 0 0 6px; line-height: 1.45; }
.site-footer__legal p:last-child { margin-bottom: 0; }
.compare-table { width: 100%; border-collapse: collapse; margin-top: 20px; font-size: 0.9rem; }
.compare-table th, .compare-table td { padding: 10px 12px; border-bottom: 1px solid #2a2a36; text-align: left; }
.compare-table th { color: #aaa; font-weight: 600; }