
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;600;700&display=swap');

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

body {
font-family: 'Space Grotesk', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
background: #f5f5f5;
color: #2c3e50;
line-height: 1.6;
padding: 0;
overflow-x: hidden;
position: relative;
}

.warning-stripe {
background: repeating-linear-gradient(
    45deg,
    #ffd60a,
    #ffd60a 20px,
    #000 20px,
    #000 40px
);
height: 40px;
width: 100%;
position: fixed;
z-index: 1000;
}

.warning-stripe.top {
top: 0;
}

.warning-stripe.bottom {
bottom: 0;
}

.warning-text {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
background: #000;
color: #ffd60a;
padding: 4px 16px;
font-weight: 700;
font-size: 0.85rem;
letter-spacing: 2px;
border: 2px solid #ffd60a;
z-index: 10;
}

.container {
max-width: 700px;
margin: 0 auto;
padding: 50px 20px 80px;
}

h1 {
font-size: 3rem;
font-weight: 700;
color: #1e3a8a;
text-align: center;
}

.title-wrapper {
text-align: center;
}

.status-tag {
display: inline-block;
background: #10b981;
color: white;
padding: 6px 14px;
border-radius: 20px;
font-size: 0.75rem;
font-weight: 700;
letter-spacing: 0.5px;
text-transform: uppercase;
border: 2px solid #059669;
}

.subtitle {
font-size: 1.2rem;
color: #64748b;
font-style: italic;
text-align: center;
}

.section {
margin-bottom: 50px;
}

h2 {
font-size: 1.5rem;
font-weight: 700;
margin-bottom: 24px;
color: #059669;
position: relative;
display: inline-block;
}

h2::after {
content: '';
position: absolute;
bottom: -4px;
left: 0;
width: 100%;
height: 3px;
background: #059669;
}

.versions {
display: flex;
flex-direction: column;
gap: 16px;
}

.version-link {
display: flex;
align-items: center;
justify-content: space-between;
gap: 16px;
padding: 20px 26px;
background: white;
border: 3px solid #000;
border-radius: 0;
text-decoration: none;
color: #000000;
font-weight: 600;
font-size: 1.1rem;
transition: all 0.15s ease;
box-shadow: 4px 4px 0 #000;
position: relative;
flex-wrap: wrap;
}

.version-link:hover {
transform: translate(2px, 2px);
box-shadow: 2px 2px 0 #000;
background: #ffd60a;
}

.version-link:active {
transform: translate(4px, 4px);
box-shadow: 0 0 0 #000;
}

.version-title {
display: flex;
align-items: center;
gap: 8px;
flex: 0 0 auto;
}

.version-tags {
display: flex;
gap: 8px;
flex-wrap: wrap;
justify-content: flex-end;
margin-left: auto;
}

.tag {
display: inline-block;
padding: 4px 10px;
font-size: 0.65rem;
font-weight: 600;
text-transform: uppercase;
border: 1px solid;
letter-spacing: 0.3px;
border-radius: 3px;
white-space: nowrap;
}

.tag.good {
background: #d1fae5;
color: #065f46;
border-color: #10b981;
}

.tag.warning {
background: #fef3c7;
color: #92400e;
border-color: #f59e0b;
}

.tag.info {
background: #dbeafe;
color: #1e40af;
border-color: #3b82f6;
}

.tag.bad {
background: #fee2e2;
color: #991b1b;
border-color: #ef4444;
}

.tech-grid {
display: grid;
gap: 20px;
}

.tech-item {
background: white;
padding: 24px;
border: 3px solid #000;
position: relative;
transition: transform 0.2s ease;
}

.tech-item:hover {
transform: rotate(-1deg);
}

.tech-item:nth-child(2) {
transform: rotate(1deg);
}

.tech-item:nth-child(2):hover {
transform: rotate(0deg);
}

.tech-name {
font-weight: 700;
color: #059669;
margin-bottom: 8px;
font-size: 1.3rem;
}

.tech-desc {
color: #334155;
font-size: 1rem;
}

.note {
background: #ffd60a;
padding: 12px 16px;
border: 3px solid #000;
font-size: 0.9rem;
color: #000;
margin-top: 12px;
font-weight: 600;
}

footer {
text-align: center;
padding-bottom: 100px;
}

.footer-content {
color: #2f4a70;
font-size: 0.95rem;
font-weight: 800;
margin-bottom: 30px;
}

.made-by {
display: inline-flex;
align-items: center;
gap: 8px;
background: #fd2e48;
color: white;
padding: 16px 28px;
border: 3px solid #000;
font-size: 1.1rem;
font-weight: 700;
text-decoration: none;
box-shadow: 6px 6px 0 #000;
transition: all 0.2s ease;
position: relative;
overflow: hidden;
max-width: 90%;
text-align: center;
justify-content: center;
}

.made-by::before {
content: '';
position: absolute;
top: 0;
left: -100%;
width: 100%;
height: 100%;
background: rgba(255,255,255,0.2);
transition: left 0.5s ease;
}

.made-by:hover::before {
left: 100%;
}

.made-by:hover {
transform: translate(3px, 3px);
box-shadow: 3px 3px 0 #000;
}

.made-by:active {
transform: translate(6px, 6px);
box-shadow: 0 0 0 #000;
}

.heart {
color: #fff;
display: inline-block;
animation: heartbeat 1.5s ease-in-out infinite;
font-size: 1.2rem;
}

@keyframes heartbeat {
0%, 100% { transform: scale(1); }
10%, 30% { transform: scale(1.1); }
20%, 40% { transform: scale(0.95); }
}

.studio-name {
display: inline-block;
position: relative;
}

.studio-name::after {
content: '';
position: absolute;
bottom: -2px;
left: 0;
width: 0;
height: 2px;
background: white;
transition: width 0.3s ease;
}

.made-by:hover .studio-name::after {
width: 100%;
}

.globe-emoji {
font-size: 4rem;
display: block;
text-align: center;
margin: 30px 0;
animation: spin 10s linear infinite;
}

@keyframes spin {
from { transform: rotate(0deg); }
to { transform: rotate(360deg); }
}

@media (max-width: 600px) {
h1 {
    font-size: 2.2rem;
}

.container {
    padding: 40px 20px 20px;
}

.warning-stripe {
    height: 30px;
}

.warning-text {
    font-size: 0.65rem;
    padding: 3px 12px;
    letter-spacing: 1px;
}

.version-link {
    padding: 16px 20px;
}

.version-title {
    flex: 1 1 100%;
    font-size: 1rem;
}

.version-tags {
    flex: 1 1 100%;
    justify-content: flex-start;
    margin-left: 0;
}

.tag {
    font-size: 0.6rem;
    padding: 3px 8px;
}

.made-by {
    padding: 12px 20px;
    font-size: 0.95rem;
    gap: 6px;
    box-shadow: 4px 4px 0 #000;
    flex-wrap: wrap;
}

.made-by:hover {
    transform: translate(2px, 2px);
    box-shadow: 2px 2px 0 #000;
}

.made-by:active {
    transform: translate(4px, 4px);
    box-shadow: 0 0 0 #000;
}

.heart {
    font-size: 1rem;
}

.footer-content {
    font-size: 0.85rem;
    padding: 0 10px;
}

.globe-emoji {
    font-size: 3rem;
}

.subtitle {
    font-size: 1rem;
}
}