* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Press Start 2P', cursive;
    background: linear-gradient(180deg, #4a7c59 0%, #2d5a3a 100%);
    color: #fff;
    line-height: 1.8;
    font-size: 10px;
    position: relative;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(0deg, transparent, transparent 15px, rgba(0, 0, 0, 0.1) 15px, rgba(0, 0, 0, 0.1) 16px),
        repeating-linear-gradient(90deg, transparent, transparent 15px, rgba(0, 0, 0, 0.1) 15px, rgba(0, 0, 0, 0.1) 16px);
    pointer-events: none;
    z-index: 1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    position: relative;
    z-index: 2;
}

/* Header */
header {
    text-align: center;
    padding: 40px 20px;
    background: linear-gradient(135deg, #8b4513 0%, #654321 100%);
    border: 6px solid #000;
    box-shadow: 
        inset 0 0 0 2px #a0522d,
        0 8px 0 rgba(0, 0, 0, 0.8);
    margin-bottom: 40px;
    position: relative;
    opacity: 0;
    transform: translateY(-30px);
    animation: fadeInDown 0.8s ease-out 0.2s forwards;
}

@keyframes fadeInDown {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

h1 {
    font-size: 24px;
    text-shadow: 4px 4px 0 #000;
    margin-bottom: 20px;
    color: #ffeb3b;
    letter-spacing: 2px;
    animation: glow 3s ease-in-out infinite;
}

@keyframes glow {
    0%, 100% {
        text-shadow: 4px 4px 0 #000, 0 0 10px rgba(255, 235, 59, 0.3);
    }
    50% {
        text-shadow: 4px 4px 0 #000, 0 0 20px rgba(255, 235, 59, 0.6), 0 0 30px rgba(255, 235, 59, 0.4);
    }
}

.subtitle {
    font-size: 12px;
    color: #b0bec5;
    text-shadow: 2px 2px 0 #000;
    margin-top: 15px;
}

/* Telegram Bot Section */
.telegram-section {
    background: linear-gradient(135deg, #2196f3 0%, #1976d2 100%);
    border: 6px solid #000;
    box-shadow: 
        inset 0 0 0 2px #64b5f6,
        0 8px 0 rgba(0, 0, 0, 0.8);
    padding: 30px;
    margin: 40px 0;
    text-align: center;
    position: relative;
    opacity: 0;
    transform: scale(0.95);
    animation: fadeInScale 0.6s ease-out 0.4s forwards;
}

@keyframes fadeInScale {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.telegram-section h2 {
    font-size: 16px;
    margin-bottom: 20px;
    text-shadow: 3px 3px 0 #000;
    color: #fff;
}

.telegram-section p {
    font-size: 11px;
    line-height: 2;
    margin-bottom: 25px;
    color: #e3f2fd;
    text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.5);
}

.telegram-btn {
    display: inline-block;
    background: linear-gradient(135deg, #26a69a 0%, #00897b 100%);
    color: #fff;
    padding: 18px 35px;
    text-decoration: none;
    border: 5px solid #000;
    box-shadow: 
        inset 0 0 0 2px #4db6ac,
        0 6px 0 rgba(0, 0, 0, 0.8);
    font-size: 12px;
    transition: all 0.2s ease-out;
    position: relative;
    text-shadow: 2px 2px 0 #000;
    overflow: hidden;
}

.telegram-btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.telegram-btn:hover::after {
    width: 300px;
    height: 300px;
}

.telegram-btn:hover {
    transform: translateY(3px) scale(1.05);
    box-shadow: 
        inset 0 0 0 2px #4db6ac,
        0 3px 0 rgba(0, 0, 0, 0.8);
}

.telegram-btn:active {
    transform: translateY(6px) scale(1);
    box-shadow: 
        inset 0 0 0 2px #4db6ac,
        0 0 0 rgba(0, 0, 0, 0.8);
}

.telegram-btn::before {
    content: '📱';
    margin-right: 10px;
    font-size: 16px;
    display: inline-block;
    animation: phoneRing 2s ease-in-out infinite;
    position: relative;
    z-index: 1;
}

@keyframes phoneRing {
    0%, 100% { transform: rotate(0deg); }
    10%, 30% { transform: rotate(-10deg); }
    20%, 40% { transform: rotate(10deg); }
    50% { transform: rotate(0deg); }
}

/* Navigation Menu */
.nav-menu {
    background: linear-gradient(135deg, #424242 0%, #212121 100%);
    border: 6px solid #000;
    box-shadow: 
        inset 0 0 0 2px #616161,
        0 8px 0 rgba(0, 0, 0, 0.8);
    padding: 30px;
    margin: 40px 0;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease-out 0.6s forwards;
}

.nav-menu h2 {
    font-size: 16px;
    margin-bottom: 25px;
    text-align: center;
    text-shadow: 3px 3px 0 #000;
    color: #ffeb3b;
}

.nav-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.nav-grid .nav-link {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.4s ease-out forwards;
}

.nav-grid .nav-link:nth-child(1) { animation-delay: 0.7s; }
.nav-grid .nav-link:nth-child(2) { animation-delay: 0.75s; }
.nav-grid .nav-link:nth-child(3) { animation-delay: 0.8s; }
.nav-grid .nav-link:nth-child(4) { animation-delay: 0.85s; }
.nav-grid .nav-link:nth-child(5) { animation-delay: 0.9s; }
.nav-grid .nav-link:nth-child(6) { animation-delay: 0.95s; }
.nav-grid .nav-link:nth-child(7) { animation-delay: 1s; }
.nav-grid .nav-link:nth-child(8) { animation-delay: 1.05s; }
.nav-grid .nav-link:nth-child(9) { animation-delay: 1.1s; }
.nav-grid .nav-link:nth-child(10) { animation-delay: 1.15s; }
.nav-grid .nav-link:nth-child(11) { animation-delay: 1.2s; }
.nav-grid .nav-link:nth-child(12) { animation-delay: 1.25s; }

.nav-link {
    display: block;
    background: linear-gradient(135deg, #5c6bc0 0%, #3f51b5 100%);
    color: #fff;
    padding: 15px;
    text-decoration: none;
    border: 4px solid #000;
    box-shadow: 
        inset 0 0 0 2px #7986cb,
        0 4px 0 rgba(0, 0, 0, 0.8);
    text-align: center;
    transition: all 0.2s ease-out;
    font-size: 10px;
    text-shadow: 2px 2px 0 #000;
    position: relative;
    overflow: hidden;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: left 0.3s ease-out;
}

.nav-link:hover::before {
    left: 100%;
}

.nav-link:hover {
    transform: translateY(2px) scale(1.02);
    box-shadow: 
        inset 0 0 0 2px #7986cb,
        0 2px 0 rgba(0, 0, 0, 0.8);
    background: linear-gradient(135deg, #7986cb 0%, #5c6bc0 100%);
}

.nav-link:active {
    transform: translateY(4px);
    box-shadow: 
        inset 0 0 0 2px #7986cb,
        0 0 0 rgba(0, 0, 0, 0.8);
}

/* Launcher Cards (detail pages) */
.launcher {
    background: linear-gradient(135deg, #616161 0%, #424242 100%);
    border: 6px solid #000;
    box-shadow: 
        inset 0 0 0 2px #757575,
        0 8px 0 rgba(0, 0, 0, 0.8);
    padding: 35px;
    margin: 40px 0;
    position: relative;
    scroll-margin-top: 20px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease-out forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.launcher:nth-child(1) { animation-delay: 0.1s; }
.launcher:nth-child(2) { animation-delay: 0.15s; }
.launcher:nth-child(3) { animation-delay: 0.2s; }
.launcher:nth-child(4) { animation-delay: 0.25s; }
.launcher:nth-child(5) { animation-delay: 0.3s; }
.launcher:nth-child(6) { animation-delay: 0.35s; }
.launcher:nth-child(7) { animation-delay: 0.4s; }
.launcher:nth-child(8) { animation-delay: 0.45s; }
.launcher:nth-child(9) { animation-delay: 0.5s; }
.launcher:nth-child(10) { animation-delay: 0.55s; }
.launcher:nth-child(11) { animation-delay: 0.6s; }
.launcher:nth-child(12) { animation-delay: 0.65s; }

.launcher:target {
    animation: highlightPulse 1s ease-out;
}

@keyframes highlightPulse {
    0%, 100% {
        box-shadow: 
            inset 0 0 0 2px #757575,
            0 8px 0 rgba(0, 0, 0, 0.8);
    }
    50% {
        box-shadow: 
            inset 0 0 0 4px #ffeb3b,
            0 8px 0 rgba(0, 0, 0, 0.8),
            0 0 30px rgba(255, 235, 59, 0.6);
    }
}

.launcher h2 {
    font-size: 18px;
    color: #ffeb3b;
    margin-bottom: 25px;
    text-shadow: 3px 3px 0 #000;
    border-bottom: 4px solid #ffeb3b;
    padding-bottom: 15px;
}

.launcher-content {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 30px;
    margin-bottom: 25px;
}

.launcher-image {
    width: 100%;
    height: 200px;
    background: #1a1a1a;
    border: 4px solid #000;
    box-shadow: inset 0 0 0 2px #333;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    image-rendering: pixelated;
    object-fit: cover;
    transition: transform 0.3s ease-out, box-shadow 0.3s ease-out;
    overflow: hidden;
}

.launcher-image:hover {
    transform: scale(1.05);
    box-shadow: inset 0 0 0 2px #333, 0 0 20px rgba(255, 235, 59, 0.3);
}

.launcher-image img {
    transition: transform 0.3s ease-out;
}

.launcher-image:hover img {
    transform: scale(1.1);
}

.launcher-info {
    font-size: 11px;
    line-height: 2.2;
    color: #e0e0e0;
    text-shadow: 1px 1px 0 #000;
}

.launcher-info p {
    margin-bottom: 15px;
}

/* Pros and Cons */
.pros-cons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 25px 0;
}

.pros, .cons {
    background: rgba(0, 0, 0, 0.3);
    border: 4px solid #000;
    padding: 20px;
    box-shadow: inset 0 0 0 2px #424242;
}

.pros h3 {
    color: #4caf50;
    font-size: 12px;
    margin-bottom: 15px;
    text-shadow: 2px 2px 0 #000;
}

.cons h3 {
    color: #f44336;
    font-size: 12px;
    margin-bottom: 15px;
    text-shadow: 2px 2px 0 #000;
}

.pros ul, .cons ul {
    list-style: none;
    font-size: 10px;
    line-height: 2.2;
}

.pros li {
    opacity: 0;
    transform: translateX(-20px);
    animation: slideInLeft 0.4s ease-out forwards;
}

.pros li:nth-child(1) { animation-delay: 0.1s; }
.pros li:nth-child(2) { animation-delay: 0.15s; }
.pros li:nth-child(3) { animation-delay: 0.2s; }
.pros li:nth-child(4) { animation-delay: 0.25s; }
.pros li:nth-child(5) { animation-delay: 0.3s; }
.pros li:nth-child(6) { animation-delay: 0.35s; }
.pros li:nth-child(7) { animation-delay: 0.4s; }

@keyframes slideInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.cons li {
    opacity: 0;
    transform: translateX(20px);
    animation: slideInRight 0.4s ease-out forwards;
}

.cons li:nth-child(1) { animation-delay: 0.1s; }
.cons li:nth-child(2) { animation-delay: 0.15s; }
.cons li:nth-child(3) { animation-delay: 0.2s; }
.cons li:nth-child(4) { animation-delay: 0.25s; }
.cons li:nth-child(5) { animation-delay: 0.3s; }

@keyframes slideInRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.pros li::before {
    content: '✓ ';
    color: #4caf50;
    font-weight: bold;
    margin-right: 8px;
    display: inline-block;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

.cons li::before {
    content: '✗ ';
    color: #f44336;
    font-weight: bold;
    margin-right: 8px;
    display: inline-block;
    animation: shake 3s ease-in-out infinite;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-2px); }
    75% { transform: translateX(2px); }
}

/* Download Button */
.download-btn {
    display: inline-block;
    background: linear-gradient(135deg, #4caf50 0%, #388e3c 100%);
    color: #fff;
    padding: 18px 40px;
    text-decoration: none;
    border: 5px solid #000;
    box-shadow: 
        inset 0 0 0 2px #66bb6a,
        0 6px 0 rgba(0, 0, 0, 0.8);
    font-size: 12px;
    margin-top: 20px;
    transition: all 0.2s ease-out;
    text-shadow: 2px 2px 0 #000;
    position: relative;
    overflow: hidden;
    font-family: 'Press Start 2P', cursive;
}

.download-btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.5s, height 0.5s;
}

.download-btn:hover::after {
    width: 300px;
    height: 300px;
}

.download-btn:hover {
    transform: translateY(3px) scale(1.05);
    box-shadow: 
        inset 0 0 0 2px #66bb6a,
        0 3px 0 rgba(0, 0, 0, 0.8);
    background: linear-gradient(135deg, #66bb6a 0%, #4caf50 100%);
}

.download-btn:active {
    transform: translateY(6px) scale(1);
    box-shadow: 
        inset 0 0 0 2px #66bb6a,
        0 0 0 rgba(0, 0, 0, 0.8);
}

.download-btn::before {
    content: '⬇ ';
    margin-right: 10px;
    font-size: 14px;
    display: inline-block;
    animation: bounceDown 2s ease-in-out infinite;
    position: relative;
    z-index: 1;
}

@keyframes bounceDown {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(5px); }
}

/* Footer */
footer {
    text-align: center;
    padding: 40px 20px;
    background: linear-gradient(135deg, #212121 0%, #000 100%);
    border: 6px solid #000;
    box-shadow: 
        inset 0 0 0 2px #424242,
        0 8px 0 rgba(0, 0, 0, 0.8);
    margin-top: 60px;
    font-size: 10px;
    text-shadow: 2px 2px 0 #000;
    color: #9e9e9e;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease-out 1.5s forwards;
}

/* Pixel art decorations */
.pixel-decoration {
    position: absolute;
    width: 40px;
    height: 40px;
    background: #8b4513;
    border: 3px solid #000;
    box-shadow: inset 0 0 0 2px #a0522d;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0) translateX(0); }
    50% { transform: translateY(-10px) translateX(5px); }
}

.decoration-1 {
    top: -20px;
    left: 20px;
    animation-delay: 0s;
}

.decoration-2 {
    top: -20px;
    right: 20px;
    animation-delay: 1s;
}

.decoration-3 {
    bottom: -20px;
    left: 50%;
    background: #4caf50;
    box-shadow: inset 0 0 0 2px #66bb6a;
    animation-delay: 2s;
}

.decoration-3 {
    animation: float 3s ease-in-out infinite, spin 10s linear infinite;
}

@keyframes spin {
    from { transform: translateX(-50%) rotate(0deg); }
    to { transform: translateX(-50%) rotate(360deg); }
}

/* Language Switcher */
.language-switcher {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    gap: 10px;
    z-index: 10;
}

.lang-btn {
    background: linear-gradient(135deg, #5c6bc0 0%, #3f51b5 100%);
    color: #fff;
    border: 4px solid #000;
    box-shadow: 
        inset 0 0 0 2px #7986cb,
        0 4px 0 rgba(0, 0, 0, 0.8);
    padding: 10px 15px;
    font-family: 'Press Start 2P', cursive;
    font-size: 10px;
    cursor: pointer;
    transition: all 0.2s ease-out;
    text-shadow: 2px 2px 0 #000;
    position: relative;
    overflow: hidden;
}

.lang-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: left 0.3s ease-out;
}

.lang-btn:hover::before {
    left: 100%;
}

.lang-btn:hover {
    transform: translateY(2px);
    box-shadow: 
        inset 0 0 0 2px #7986cb,
        0 2px 0 rgba(0, 0, 0, 0.8);
}

.lang-btn:active {
    transform: translateY(4px);
    box-shadow: 
        inset 0 0 0 2px #7986cb,
        0 0 0 rgba(0, 0, 0, 0.8);
}

.lang-btn.active {
    background: linear-gradient(135deg, #ffeb3b 0%, #fbc02d 100%);
    color: #000;
    box-shadow: 
        inset 0 0 0 2px #fff59d,
        0 4px 0 rgba(0, 0, 0, 0.8),
        0 0 15px rgba(255, 235, 59, 0.5);
    text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.5);
}

.lang-btn.active:hover {
    transform: translateY(2px);
    box-shadow: 
        inset 0 0 0 2px #fff59d,
        0 2px 0 rgba(0, 0, 0, 0.8),
        0 0 15px rgba(255, 235, 59, 0.5);
}

/* =============================================
   LAUNCHER CARDS GRID (Main Page)
   ============================================= */
.launchers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
    margin: 40px 0;
}

.launcher-card {
    background: linear-gradient(135deg, #616161 0%, #424242 100%);
    border: 6px solid #000;
    box-shadow: inset 0 0 0 2px #757575, 0 8px 0 rgba(0, 0, 0, 0.8);
    overflow: hidden;
    transition: transform 0.3s ease-out, box-shadow 0.3s ease-out;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease-out forwards;
    display: flex;
    flex-direction: column;
}

.launcher-card:hover {
    transform: translateY(-4px);
    box-shadow: inset 0 0 0 2px #ffeb3b, 0 12px 0 rgba(0, 0, 0, 0.8), 0 0 20px rgba(255, 235, 59, 0.2);
}

.launcher-card:nth-child(1) { animation-delay: 0.1s; }
.launcher-card:nth-child(2) { animation-delay: 0.15s; }
.launcher-card:nth-child(3) { animation-delay: 0.2s; }
.launcher-card:nth-child(4) { animation-delay: 0.25s; }
.launcher-card:nth-child(5) { animation-delay: 0.3s; }
.launcher-card:nth-child(6) { animation-delay: 0.35s; }
.launcher-card:nth-child(7) { animation-delay: 0.4s; }
.launcher-card:nth-child(8) { animation-delay: 0.45s; }
.launcher-card:nth-child(9) { animation-delay: 0.5s; }
.launcher-card:nth-child(10) { animation-delay: 0.55s; }
.launcher-card:nth-child(11) { animation-delay: 0.6s; }
.launcher-card:nth-child(12) { animation-delay: 0.65s; }

.card-img-wrap {
    width: 100%;
    height: 190px;
    background: #111;
    overflow: hidden;
    border-bottom: 4px solid #000;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease-out;
}

.launcher-card:hover .card-img-wrap img {
    transform: scale(1.06);
}

.card-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.card-body h3 {
    font-size: 11px;
    color: #ffeb3b;
    margin-bottom: 12px;
    text-shadow: 2px 2px 0 #000;
    border-bottom: 3px solid #ffeb3b;
    padding-bottom: 10px;
}

.card-desc {
    font-size: 9px;
    line-height: 1.9;
    color: #e0e0e0;
    text-shadow: 1px 1px 0 #000;
    margin-bottom: 18px;
    flex: 1;
}

.card-buttons {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: auto;
}

.detail-btn {
    display: inline-block;
    flex: 1;
    background: linear-gradient(135deg, #5c6bc0 0%, #3f51b5 100%);
    color: #fff;
    padding: 10px 12px;
    text-decoration: none;
    border: 4px solid #000;
    box-shadow: inset 0 0 0 2px #7986cb, 0 4px 0 rgba(0, 0, 0, 0.8);
    font-size: 9px;
    text-align: center;
    transition: all 0.2s ease-out;
    text-shadow: 2px 2px 0 #000;
    font-family: 'Press Start 2P', cursive;
    position: relative;
    overflow: hidden;
}

.detail-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: left 0.3s ease-out;
}

.detail-btn:hover::before {
    left: 100%;
}

.detail-btn:hover {
    transform: translateY(2px);
    box-shadow: inset 0 0 0 2px #7986cb, 0 2px 0 rgba(0, 0, 0, 0.8);
    background: linear-gradient(135deg, #7986cb 0%, #5c6bc0 100%);
}

.card-buttons .download-btn {
    flex: 1;
    text-align: center;
    padding: 10px 12px;
    font-size: 9px;
    margin-top: 0;
}

.card-buttons .download-btn::before {
    font-size: 11px;
}

/* =============================================
   DETAIL PAGES (Individual launcher pages)
   ============================================= */
.back-btn {
    display: inline-block;
    background: linear-gradient(135deg, #8b4513 0%, #654321 100%);
    color: #fff;
    padding: 12px 22px;
    text-decoration: none;
    border: 4px solid #000;
    box-shadow: inset 0 0 0 2px #a0522d, 0 4px 0 rgba(0, 0, 0, 0.8);
    font-size: 9px;
    transition: all 0.2s ease-out;
    text-shadow: 2px 2px 0 #000;
    margin-bottom: 20px;
    font-family: 'Press Start 2P', cursive;
    position: relative;
    overflow: hidden;
}

.back-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: left 0.3s ease-out;
}

.back-btn:hover::before {
    left: 100%;
}

.back-btn:hover {
    transform: translateY(2px);
    box-shadow: inset 0 0 0 2px #a0522d, 0 2px 0 rgba(0, 0, 0, 0.8);
}

.back-btn:active {
    transform: translateY(4px);
    box-shadow: inset 0 0 0 2px #a0522d, 0 0 0 rgba(0, 0, 0, 0.8);
}

/* Detail hero section */
.detail-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 35px;
}

.detail-screenshot {
    width: 100%;
    background: #111;
    border: 4px solid #000;
    box-shadow: inset 0 0 0 2px #333, 0 0 0 rgba(0,0,0,0);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 260px;
    transition: box-shadow 0.3s ease-out;
}

.detail-screenshot:hover {
    box-shadow: inset 0 0 0 2px #ffeb3b, 0 0 20px rgba(255, 235, 59, 0.3);
}

.detail-screenshot img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    max-height: 320px;
    transition: transform 0.3s ease-out;
}

.detail-screenshot:hover img {
    transform: scale(1.03);
}

.detail-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.detail-info h2 {
    font-size: 14px;
    color: #ffeb3b;
    margin-bottom: 20px;
    text-shadow: 2px 2px 0 #000;
    border-bottom: 3px solid #ffeb3b;
    padding-bottom: 12px;
}

.detail-info p {
    font-size: 10px;
    line-height: 2.2;
    color: #e0e0e0;
    text-shadow: 1px 1px 0 #000;
    margin-bottom: 20px;
}

.detail-description {
    margin: 30px 0;
    padding: 25px;
    background: rgba(0, 0, 0, 0.25);
    border: 4px solid #000;
    box-shadow: inset 0 0 0 2px #424242;
}

.detail-description h2 {
    font-size: 14px;
    color: #ffeb3b;
    margin-bottom: 20px;
    text-shadow: 2px 2px 0 #000;
}

.detail-description p {
    font-size: 10px;
    line-height: 2.2;
    color: #e0e0e0;
    text-shadow: 1px 1px 0 #000;
    margin-bottom: 18px;
}

.download-center {
    text-align: center;
    margin: 30px 0;
}

/* Breadcrumb */
.breadcrumb {
    font-size: 9px;
    color: #b0bec5;
    text-shadow: 1px 1px 0 #000;
    margin-bottom: 15px;
    opacity: 0.8;
}

.breadcrumb a {
    color: #ffeb3b;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    h1 {
        font-size: 16px;
    }

    .subtitle {
        font-size: 9px;
    }

    .launcher-content {
        grid-template-columns: 1fr;
    }

    .pros-cons {
        grid-template-columns: 1fr;
    }

    .nav-grid {
        grid-template-columns: 1fr;
    }

    body {
        font-size: 9px;
    }

    .telegram-section h2,
    .nav-menu h2 {
        font-size: 13px;
    }

    .launcher h2 {
        font-size: 14px;
    }

    .language-switcher {
        position: relative;
        top: 0;
        right: 0;
        justify-content: center;
        margin-bottom: 20px;
    }

    .lang-btn {
        padding: 8px 12px;
        font-size: 8px;
    }

    .launchers-grid {
        grid-template-columns: 1fr;
    }

    .detail-hero {
        grid-template-columns: 1fr;
    }

    .card-buttons {
        flex-direction: column;
    }

    .detail-btn,
    .card-buttons .download-btn {
        flex: none;
        width: 100%;
    }
}
