/* Once Human Patch Notes - Main Styles */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 100%);
    color: #e0e0e0;
    line-height: 1.6;
    min-height: 100vh;
    padding: 20px;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
}

header {
    text-align: center;
    padding: 60px 20px 40px;
    position: relative;
}

.logo {
    font-size: 4em;
    margin-bottom: 20px;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

h1 {
    color: #ffffff;
    font-size: 3em;
    margin-bottom: 10px;
    font-weight: 300;
    letter-spacing: 2px;
}

.subtitle {
    color: #7c3aed;
    font-size: 1.3em;
    font-weight: 500;
    margin-bottom: 10px;
}

.description {
    color: #888888;
    font-size: 1em;
    max-width: 600px;
    margin: 0 auto;
}

.versions-grid {
    display: grid;
    gap: 30px;
    margin-top: 50px;
    padding: 0 20px;
}

.version-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a3e 100%);
    border: 1px solid #2a2a2a;
    border-radius: 16px;
    padding: 30px;
    text-decoration: none;
    color: #e0e0e0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.version-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #7c3aed, #ec4899);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.version-card:hover::before {
    transform: scaleX(1);
}

.version-card:hover {
    transform: translateY(-8px);
    border-color: #7c3aed;
    box-shadow: 0 20px 40px rgba(124, 58, 237, 0.3);
    background: linear-gradient(135deg, #222222 0%, #3a3a4e 100%);
}

.version-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.version-info {
    flex: 1;
}

.version-number {
    font-size: 2em;
    color: #ffffff;
    font-weight: 500;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.badge {
    display: inline-block;
    background: linear-gradient(135deg, #7c3aed, #ec4899);
    color: #ffffff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.4em;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.version-date {
    color: #888888;
    font-size: 1em;
    display: flex;
    align-items: center;
    gap: 8px;
}

.highlights {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #2a2a2a;
}

.highlights-title {
    color: #7c3aed;
    font-size: 0.9em;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.highlights-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.highlight-item {
    color: #cccccc;
    font-size: 0.95em;
    padding-left: 20px;
    position: relative;
}

.highlight-item::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: #7c3aed;
    font-weight: bold;
}

.arrow {
    font-size: 2em;
    color: #7c3aed;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.4s ease;
}

.version-card:hover .arrow {
    opacity: 1;
    transform: translateX(0);
}

footer {
    text-align: center;
    margin-top: 80px;
    padding: 40px 20px;
    border-top: 1px solid #2a2a2a;
}

.footer-content {
    color: #666666;
    font-size: 0.9em;
}

.footer-content p {
    margin: 5px 0;
}

.footer-signature {
    margin-top: 15px;
    color: #d8a7b1;
    font-style: italic;
}

/* Анимация появления */
.version-card {
    animation: fadeInUp 0.6s ease-out backwards;
}

.version-card:nth-child(1) {
    animation-delay: 0.1s;
}

.version-card:nth-child(2) {
    animation-delay: 0.2s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2em;
    }
    
    .logo {
        font-size: 3em;
    }
    
    .subtitle {
        font-size: 1.1em;
    }
    
    .version-card {
        padding: 20px;
    }
    
    .version-number {
        font-size: 1.5em;
    }
    
    .version-header {
        flex-direction: column;
    }
    
    .arrow {
        align-self: flex-end;
        margin-top: 10px;
    }
}
