/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #667eea;
    --secondary-color: #764ba2;
    --accent-color: #f093fb;
    --dark-color: #1a1a2e;
    --light-color: #f8f9fa;
    --text-color: #333;
    --card-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background: 
        linear-gradient(135deg, rgba(102, 126, 234, 0.95) 0%, rgba(118, 75, 162, 0.95) 100%),
        url('data:image/svg+xml,%3Csvg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"%3E%3Cg fill="none" fill-rule="evenodd"%3E%3Cg fill="%23ffffff" fill-opacity="0.05"%3E%3Cpath d="M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z"/%3E%3C/g%3E%3C/g%3E%3C/svg%3E'),
        radial-gradient(circle at 30% 20%, rgba(240, 147, 251, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(79, 172, 254, 0.3) 0%, transparent 50%);
    background-attachment: fixed;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        url('data:image/svg+xml,%3Csvg width="100" height="100" xmlns="http://www.w3.org/2000/svg"%3E%3Ctext x="10" y="30" font-size="30" fill="white" opacity="0.03"%3E🎯%3C/text%3E%3Ctext x="60" y="70" font-size="25" fill="white" opacity="0.03"%3E🗺️%3C/text%3E%3Ctext x="20" y="80" font-size="20" fill="white" opacity="0.03"%3E🔍%3C/text%3E%3Ctext x="70" y="30" font-size="22" fill="white" opacity="0.03"%3E🎮%3C/text%3E%3C/svg%3E');
    background-size: 200px 200px;
    animation: slidePattern 60s linear infinite;
    pointer-events: none;
    z-index: 0;
}

@keyframes slidePattern {
    0% { background-position: 0 0; }
    100% { background-position: 200px 200px; }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

/* Floating Elements */
.floating-elements {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.float-element {
    position: absolute;
    font-size: 4rem;
    opacity: 0.08;
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.3));
    animation: float 20s infinite ease-in-out;
}

.float-element:nth-child(1) {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
    animation-duration: 25s;
}

.float-element:nth-child(2) {
    top: 60%;
    left: 80%;
    animation-delay: 3s;
    animation-duration: 22s;
}

.float-element:nth-child(3) {
    top: 30%;
    left: 70%;
    animation-delay: 1s;
    animation-duration: 28s;
}

.float-element:nth-child(4) {
    top: 70%;
    left: 20%;
    animation-delay: 4s;
    animation-duration: 24s;
}

.float-element:nth-child(5) {
    top: 20%;
    left: 40%;
    animation-delay: 2s;
    animation-duration: 26s;
}

.float-element:nth-child(6) {
    top: 80%;
    left: 60%;
    animation-delay: 5s;
    animation-duration: 23s;
}

.typing-indicator span:nth-child(3) {
    animation-delay: 0.3s;
}

/* Web Quest Interface */
.web-quest {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.web-header {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    color: white;
    padding: 20px 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    font-size: 1.05rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.web-header i {
    font-size: 1.5rem;
}

.web-content {
    flex: 1;
    padding: 20px 15px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.web-card {
    background: white;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    animation: messageSlideIn 0.5s ease;
}

.web-card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.95rem;
}

.web-card-header i {
    font-size: 1.3rem;
}

.web-card-text {
    color: #333;
    font-size: 0.9rem;
    line-height: 1.6;
}

.web-buttons {
    padding: 15px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.web-btn {
    background: white;
    border: none;
    padding: 14px 18px;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 10px;
    color: #333;
    animation: buttonPulse 2s ease-in-out infinite;
}

.web-btn i {
    font-size: 1.1rem;
    color: var(--primary-color);
}

.web-btn:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    animation: none;
}

.web-btn:active {
    transform: scale(0.98);
}

.web-btn.correct {
    background: #d4edda;
    color: #155724;
    border: 2px solid #c3e6cb;
}

.web-btn.wrong {
    background: #f8d7da;
    color: #721c24;
    border: 2px solid #f5c6cb;
}

.web-btn:disabled {
    cursor: not-allowed;
    opacity: 0.6;
    animation: none;
}

.web-progress {
    background: rgba(255, 255, 255, 0.2);
    padding: 10px 15px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: white;
    font-size: 0.85rem;
    font-weight: 600;
}

.web-progress-bar {
    flex: 1;
    height: 6px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    margin: 0 10px;
    overflow: hidden;
}

.web-progress-fill {
    height: 100%;
    background: white;
    border-radius: 10px;
    transition: width 0.5s ease;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(30px, -30px) rotate(5deg);
    }
    50% {
        transform: translate(-20px, 20px) rotate(-5deg);
    }
    75% {
        transform: translate(20px, 30px) rotate(3deg);
    }
}

/* Language Switcher */
.language-switcher {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    display: flex;
    gap: 8px;
    background: rgba(255, 255, 255, 0.95);
    padding: 8px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.lang-btn {
    padding: 8px 16px;
    border: 2px solid transparent;
    background: transparent;
    color: var(--text-color);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 8px;
    transition: var(--transition);
}

.lang-btn:hover {
    background: var(--light-color);
}

.lang-btn.active {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-color: transparent;
}

/* Hero Section - Split Screen */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: transparent;
    position: relative;
    overflow: hidden;
    padding: 100px 20px 60px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150%;
    height: 150%;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.4) 0%, transparent 70%);
    animation: pulse 8s ease-in-out infinite;
    z-index: 0;
}

@keyframes pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
    50% { transform: translate(-50%, -50%) scale(1.1); opacity: 0.8; }
}

.hero-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Left Side */
.hero-left {
    color: white;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.15) 0%, rgba(118, 75, 162, 0.15) 100%);
    padding: 50px 45px;
    border-radius: 30px;
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.3),
        inset 0 0 30px rgba(255, 255, 255, 0.05);
    animation: slideInLeft 0.8s ease;
    position: relative;
    overflow: hidden;
}

.hero-left::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(240, 147, 251, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatGlow 10s ease-in-out infinite;
}

@keyframes floatGlow {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-30px, 30px); }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(240, 147, 251, 0.9), rgba(102, 126, 234, 0.9));
    backdrop-filter: blur(10px);
    color: white;
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    box-shadow: 
        0 4px 15px rgba(240, 147, 251, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { box-shadow: 0 4px 15px rgba(240, 147, 251, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.3); }
    50% { box-shadow: 0 4px 25px rgba(240, 147, 251, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.3); }
}

.hero-title {
    font-size: clamp(2.2rem, 4.5vw, 3.8rem);
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 
        0 2px 10px rgba(0, 0, 0, 0.3),
        0 0 30px rgba(240, 147, 251, 0.5);
    position: relative;
}

.hero-subtitle {
    font-size: clamp(1rem, 1.8vw, 1.25rem);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 35px;
    line-height: 1.7;
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 35px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.2);
    padding: 14px 20px;
    border-radius: 15px;
    font-size: 0.95rem;
    font-weight: 600;
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 
        0 4px 15px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateX(5px) translateY(-2px);
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
}

.feature-item i {
    font-size: 1.5rem;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* Right Side - Phone Mockup */
.hero-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    justify-content: center;
    animation: slideInRight 0.8s ease;
}

/* Quest Type Switcher */
.quest-switcher {
    display: flex;
    gap: 10px;
    background: rgba(255, 255, 255, 0.95);
    padding: 8px;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
}

.switch-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border: none;
    background: transparent;
    color: #666;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.switch-btn i {
    font-size: 1.2rem;
}

.switch-btn:hover {
    background: rgba(102, 126, 234, 0.1);
    color: var(--primary-color);
}

.switch-btn.active {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.quest-interface {
    display: none;
    height: 100%;
}

.quest-interface.active {
    display: flex;
    flex-direction: column;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.phone-mockup {
    position: relative;
    filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.5));
}

.phone-mockup::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(79, 172, 254, 0.4) 0%, transparent 70%);
    border-radius: 50%;
    animation: phoneGlow 4s ease-in-out infinite;
    z-index: -1;
}

@keyframes phoneGlow {
    0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 1; transform: translate(-50%, -50%) scale(1.05); }
}

.phone-frame {
    width: 300px;
    height: 600px;
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    border-radius: 40px;
    padding: 12px;
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.6),
        inset 0 1px 2px rgba(255, 255, 255, 0.1),
        0 0 0 3px rgba(255, 255, 255, 0.05);
    position: relative;
    z-index: 2;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: white;
    border-radius: 32px;
    overflow: hidden;
    position: relative;
}

.phone-screen::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 25px;
    background: #1a1a1a;
    border-radius: 0 0 20px 20px;
    z-index: 10;
}

.telegram-chat {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.chat-header {
    background: linear-gradient(135deg, #0088cc, #00a8e8);
    color: white;
    padding: 20px 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    font-size: 1.05rem;
}

.chat-header i {
    font-size: 1.5rem;
}

.chat-messages {
    flex: 1;
    padding: 20px 15px;
    background: #e5ddd5;
    display: flex;
    flex-direction: column;
    gap: 12px;
    overflow: hidden;
}

.message {
    max-width: 80%;
    animation: messageSlideIn 0.5s ease;
}

@keyframes messageSlideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.bot-message {
    align-self: flex-start;
}

.user-message {
    align-self: flex-end;
}

.message-text {
    background: white;
    padding: 10px 14px;
    border-radius: 12px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    font-size: 0.9rem;
    line-height: 1.4;
}

.user-message .message-text {
    background: #dcf8c6;
}

.typing-indicator {
    display: flex;
    gap: 4px;
    padding: 12px 16px;
    background: white;
    border-radius: 12px;
    width: fit-content;
}

.quest-buttons {
    padding: 10px 15px;
    background: #e5ddd5;
    display: flex;
    flex-direction: column;
    gap: 8px;
    position: relative;
}

.qr-code-container {
    padding: 20px;
    background: white;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin: 10px 0;
    animation: messageSlideIn 0.5s ease;
}

.qr-code {
    width: 120px;
    height: 120px;
    background: white;
    border: 3px solid #0088cc;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    position: relative;
    overflow: hidden;
}

.qr-code::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 136, 204, 0.3), transparent);
    animation: qrScan 2s ease-in-out infinite;
}

@keyframes qrScan {
    0% { left: -100%; }
    100% { left: 100%; }
}

.qr-text {
    font-size: 0.85rem;
    color: #666;
    text-align: center;
}

.quest-btn {
    background: white;
    border: none;
    padding: 12px 16px;
    border-radius: 12px;
    font-size: 0.9rem;
    text-align: left;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 8px;
    animation: buttonPulse 2s ease-in-out infinite;
}

@keyframes buttonPulse {
    0%, 100% {
        box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    }
    50% {
        box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
        transform: scale(1.02);
    }
}

.quest-btn:hover {
    background: #f0f0f0;
    transform: translateX(3px) !important;
    animation: none;
}

.quest-btn:active {
    transform: scale(0.98);
}

.quest-btn.correct {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.quest-btn.wrong {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.quest-btn:disabled {
    cursor: not-allowed;
    opacity: 0.6;
    animation: none;
}

.quest-hint {
    position: absolute;
    right: -180px;
    top: 50%;
    transform: translateY(-50%);
    padding: 8px 15px;
    background: rgba(102, 126, 234, 0.1);
    border-left: 3px solid var(--primary-color);
    border-radius: 8px;
    font-size: 0.85rem;
    color: #667eea;
    display: flex;
    align-items: center;
    gap: 8px;
    animation: hintBounce 1.5s ease-in-out infinite;
    white-space: nowrap;
}

@keyframes hintBounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-3px);
    }
}

.typing-indicator span {
    width: 8px;
    height: 8px;
    background: #90949c;
    border-radius: 50%;
    animation: typing 1.4s ease-in-out infinite;
}

.typing-indicator span:nth-child(2) {
    animation-delay: 0.2s;
}

.typing-indicator span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes typing {
    0%, 60%, 100% {
        transform: translateY(0);
        opacity: 0.7;
    }
    30% {
        transform: translateY(-10px);
        opacity: 1;
    }
}

.phone-shadow {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 30px;
    background: radial-gradient(ellipse, rgba(0, 0, 0, 0.3), transparent);
    filter: blur(20px);
    z-index: 1;
}

.btn-primary {
    padding: 16px 40px;
    background: white;
    color: var(--primary-color);
    border: none;
    border-radius: 50px;
    font-size: 1.05rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.4);
}

.btn-secondary {
    padding: 16px 40px;
    background: transparent;
    color: white;
    border: 2px solid white;
    border-radius: 50px;
    font-size: 1.05rem;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    transition: var(--transition);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

/* Section Styles */
section {
    padding: 60px 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 15px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Platform Options Section */
.platform-options {
    padding: 100px 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.platform-options::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.platforms-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.platform-card {
    background: white;
    border-radius: 25px;
    padding: 45px 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    position: relative;
    border: 2px solid transparent;
}

.platform-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.telegram-platform:hover {
    border-color: #0088cc;
}

.web-platform:hover {
    border-color: var(--primary-color);
}

.platform-card.featured {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
    border: 2px solid var(--primary-color);
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.platform-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    color: white;
    font-size: 2.5rem;
}

.telegram-platform .platform-icon {
    background: linear-gradient(135deg, #0088cc, #00a8e8);
}

.platform-card h3 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.platform-desc {
    color: #666;
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 30px;
}

.platform-features,
.platform-limitations {
    margin-bottom: 30px;
}

.platform-features h4,
.platform-limitations h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.platform-features ul,
.platform-limitations ul {
    list-style: none;
    padding: 0;
}

.platform-features li,
.platform-limitations li {
    padding: 10px 0;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
}

.platform-features li i {
    color: #28a745;
    font-size: 1.1rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.platform-limitations li i {
    color: #dc3545;
    font-size: 1.1rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.platform-features li i.fa-star {
    color: #ffc107;
}

.platform-btn {
    width: 100%;
    padding: 16px 30px;
    border: 2px solid var(--primary-color);
    background: white;
    color: var(--primary-color);
    font-size: 1.05rem;
    font-weight: 700;
    border-radius: 12px;
    cursor: pointer;
    transition: var(--transition);
}

.platform-btn:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}

.platform-btn.primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
}

.platform-btn.primary:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
}

/* Services Section - Compact */
.services {
    background: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-bottom: 50px;
}

.service-card {
    background: white;
    padding: 30px 25px;
    border-radius: 20px;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
    border: 2px solid transparent;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 50px rgba(102, 126, 234, 0.15);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    color: white;
}

.service-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--dark-color);
}

.service-description {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Games Inline */
.games-inline {
    text-align: center;
    padding: 40px 30px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 20px;
}

.games-inline-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 25px;
}

.games-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.game-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: white;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    color: var(--dark-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    font-size: 0.95rem;
}

.game-tag:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.2);
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
}

.game-tag i {
    font-size: 1.2rem;
}

/* Contact Section */
.contact {
    background: white;
    text-align: center;
}

.contact-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 50px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
    max-width: 800px;
    margin: 0 auto;
}

.telegram-widget {
    background: white;
    border-radius: 20px;
    box-shadow: var(--card-shadow);
    overflow: hidden;
    border: 2px solid #f0f0f0;
    transition: var(--transition);
}

.telegram-widget:hover {
    box-shadow: 0 10px 40px rgba(102, 126, 234, 0.15);
    border-color: #0088cc;
}

.telegram-widget-header {
    background: linear-gradient(135deg, #0088cc, #229ED9);
    color: white;
    padding: 25px 30px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.telegram-widget-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.telegram-widget-info h3 {
    margin: 0 0 5px 0;
    font-size: 1.5rem;
    font-weight: 700;
}

.telegram-status {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    opacity: 0.95;
    margin: 0;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #4ade80;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.1);
    }
}

.telegram-widget-body {
    padding: 30px;
}

.telegram-description {
    color: #666;
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 25px;
}

.telegram-chat-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(135deg, #0088cc, #229ED9);
    color: white;
    text-decoration: none;
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0, 136, 204, 0.3);
}

.telegram-chat-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 136, 204, 0.4);
}

.telegram-chat-btn i {
    font-size: 1.5rem;
}

.telegram-features {
    display: flex;
    justify-content: space-around;
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid #e0e0e0;
    gap: 15px;
}

.telegram-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: #666;
    font-size: 0.9rem;
}

.telegram-feature i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.contact-placeholder {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px 30px;
    background: var(--light-color);
    border-radius: 15px;
    border: 2px dashed #ddd;
    transition: var(--transition);
}

.contact-placeholder:hover {
    border-color: var(--primary-color);
    background: white;
    box-shadow: var(--card-shadow);
}

.contact-placeholder i {
    font-size: 2rem;
    color: var(--primary-color);
}

.contact-placeholder p {
    font-size: 1.1rem;
    color: #666;
    margin: 0;
}

.contact-link {
    font-size: 1.1rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.contact-link:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.contact-link-telegram {
    background: linear-gradient(135deg, #0088cc, #229ED9);
    color: white !important;
    padding: 12px 24px;
    border-radius: 10px;
    text-decoration: none !important;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0, 136, 204, 0.2);
    display: inline-block;
}

.contact-link-telegram:hover {
    background: linear-gradient(135deg, #0099dd, #33afea);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 136, 204, 0.3);
}

/* Footer */
.footer {
    background: var(--dark-color);
    color: white;
    text-align: center;
    padding: 30px 20px;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

.footer p {
    margin: 0;
    opacity: 0.8;
}

.footer-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-links a {
    color: white;
    opacity: 0.7;
    text-decoration: none;
    font-size: 14px;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
    text-decoration: underline;
}

/* Modal & Form */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal.active {
    display: flex;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
}

.modal-content {
    position: relative;
    background: white;
    border-radius: 25px;
    padding: 50px 40px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.4s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border: none;
    background: var(--light-color);
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
    color: var(--text-color);
}

.modal-close:hover {
    background: var(--primary-color);
    color: white;
    transform: rotate(90deg);
}

.modal-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--dark-color);
    margin-bottom: 10px;
}

.modal-subtitle {
    color: #666;
    margin-bottom: 30px;
    font-size: 1.05rem;
}

.privacy-modal-content {
    max-height: 60vh;
    overflow-y: auto;
    padding-right: 10px;
}

.privacy-modal-content::-webkit-scrollbar {
    width: 8px;
}

.privacy-modal-content::-webkit-scrollbar-track {
    background: var(--light-color);
    border-radius: 10px;
}

.privacy-modal-content::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 10px;
}

.privacy-modal-content::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-color);
}

.request-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 600;
    color: var(--dark-color);
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 18px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9rem;
}

.form-checkbox input[type="checkbox"] {
    margin-top: 4px;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.form-checkbox a {
    color: var(--primary-color);
    text-decoration: underline;
}

.btn-submit {
    padding: 16px 40px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
    margin-top: 10px;
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4);
}

.form-success {
    text-align: center;
    padding: 40px 20px;
}

.form-success i {
    font-size: 4rem;
    color: #10b981;
    margin-bottom: 20px;
}

.form-success h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 10px;
}

.form-success p {
    color: #666;
    font-size: 1.1rem;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    padding: 25px;
    box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.1);
    z-index: 1500;
    display: none;
    animation: slideUp 0.5s ease;
}

.cookie-banner.active {
    display: block;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
}

.cookie-content i {
    font-size: 2.5rem;
    color: var(--primary-color);
}

.cookie-text {
    flex: 1;
    min-width: 250px;
}

.cookie-text h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 5px;
}

.cookie-text p {
    color: #666;
    font-size: 0.95rem;
    margin: 0;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.btn-accept,
.btn-decline {
    padding: 12px 30px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.95rem;
}

.btn-accept {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
}

.btn-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.3);
}

.btn-decline {
    background: var(--light-color);
    color: var(--text-color);
}

.btn-decline:hover {
    background: #e0e0e0;
}

/* Privacy Policy */
.privacy-policy {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 20px;
}

.privacy-content {
    max-width: 900px;
    margin: 0 auto;
}

.privacy-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
    text-align: center;
}

.privacy-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.privacy-intro {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin: 0;
}

.privacy-section {
    background: white;
    padding: 35px 40px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 25px;
    transition: var(--transition);
}

.privacy-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.privacy-section-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.privacy-number {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 700;
    flex-shrink: 0;
}

.privacy-section h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin: 0;
}

.privacy-section p {
    color: #666;
    line-height: 1.8;
    margin: 0;
    font-size: 1.05rem;
}

.privacy-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.privacy-list li {
    color: #666;
    padding: 12px 0;
    padding-left: 35px;
    position: relative;
    font-size: 1.05rem;
    line-height: 1.6;
}

.privacy-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 12px;
    color: white;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}

/* Responsive Design */

/* Tablets and smaller */
@media (max-width: 1024px) {
    .hero-split {
        gap: 50px;
    }
    
    .hero-left {
        padding: 40px 35px;
    }
    
    .phone-frame {
        width: 280px;
        height: 560px;
    }
}

/* Mobile devices */
@media (max-width: 768px) {
    body {
        font-size: 16px;
    }
    
    .language-switcher {
        top: 10px;
        right: 10px;
        padding: 6px;
        gap: 5px;
    }

    .lang-btn {
        padding: 8px 14px;
        font-size: 13px;
        font-weight: 700;
    }

    .hero {
        padding: 70px 15px 30px;
        min-height: auto;
    }

    .hero-split {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .hero-left {
        text-align: center;
        padding: 35px 25px;
        border-radius: 20px;
    }
    
    .hero-badge {
        font-size: 0.75rem;
        padding: 8px 18px;
        margin-bottom: 20px;
    }
    
    .hero-title {
        font-size: clamp(1.8rem, 7vw, 2.5rem);
        margin-bottom: 15px;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 25px;
    }

    .hero-features {
        grid-template-columns: 1fr;
        gap: 10px;
        margin-bottom: 25px;
    }
    
    .feature-item {
        padding: 12px 16px;
        font-size: 0.9rem;
        justify-content: center;
    }
    
    .feature-item:hover {
        transform: translateY(-2px);
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        gap: 10px;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        padding: 14px 25px;
        font-size: 1rem;
    }

    .phone-frame {
        width: 260px;
        height: 520px;
    }
    
    .quest-switcher {
        flex-direction: row;
        gap: 5px;
        padding: 6px;
    }
    
    .switch-btn {
        padding: 10px 16px;
        font-size: 0.85rem;
    }
    
    .switch-btn i {
        font-size: 1rem;
    }
    
    .phone-mockup::before {
        width: 140%;
        height: 140%;
    }
    
    .quest-hint {
        position: static;
        transform: none;
        width: 100%;
        margin-bottom: 8px;
    }

    section {
        padding: 50px 15px;
    }
    
    .section-title {
        font-size: 2rem;
        margin-bottom: 15px;
    }
    
    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 35px;
    }
    
    .platforms-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .platform-card {
        padding: 35px 25px;
    }
    
    .platform-icon {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }
    
    .platform-card h3 {
        font-size: 1.5rem;
    }
    
    .featured-badge {
        font-size: 0.75rem;
        padding: 6px 12px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-card {
        padding: 30px 20px;
    }
    
    .service-card .icon {
        font-size: 2.5rem;
    }
    
    .service-card h3 {
        font-size: 1.3rem;
    }

    .games-tags {
        flex-direction: column;
        gap: 12px;
    }

    .game-tag {
        width: 100%;
        justify-content: center;
        padding: 14px 20px;
        font-size: 0.95rem;
    }
    
    .telegram-widget {
        max-width: 100%;
    }
    
    .telegram-widget-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 20px;
        gap: 15px;
    }
    
    .telegram-widget-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .telegram-widget-info h3 {
        font-size: 1.3rem;
    }
    
    .telegram-widget-body {
        padding: 20px 15px;
    }
    
    .telegram-description {
        font-size: 0.95rem;
    }
    
    .telegram-chat-btn {
        font-size: 1rem;
        padding: 14px 24px;
    }
    
    .telegram-features {
        flex-direction: column;
        gap: 12px;
        align-items: stretch;
    }
    
    .telegram-feature {
        flex-direction: row;
        justify-content: flex-start;
        padding: 10px 15px;
        background: #f8f9fa;
        border-radius: 8px;
    }
    
    .contact-placeholder {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 15px;
    }

    .modal-content {
        padding: 35px 20px;
        border-radius: 20px;
        max-width: 95%;
    }
    
    .modal-header h2 {
        font-size: 1.5rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 16px;
        padding: 14px 16px;
    }
    
    .btn-submit {
        padding: 14px 30px;
        font-size: 1rem;
    }

    .cookie-banner {
        padding: 20px 15px;
        border-radius: 15px;
        margin: 10px;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .cookie-content i {
        font-size: 2rem;
    }
    
    .cookie-text h4 {
        font-size: 1.1rem;
    }

    .cookie-buttons {
        width: 100%;
        flex-direction: column;
        gap: 8px;
    }

    .btn-accept,
    .btn-decline {
        width: 100%;
        padding: 12px 25px;
    }
    
    .privacy-policy {
        padding: 50px 15px;
    }
    
    .privacy-content h3 {
        font-size: 1.3rem;
    }
}

/* Small mobile devices */
@media (max-width: 480px) {
    .hero-left {
        padding: 25px 20px;
    }
    
    .hero-title {
        font-size: clamp(1.5rem, 8vw, 2rem);
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
    }
    
    .phone-frame {
        width: 240px;
        height: 480px;
    }
    
    .chat-header {
        padding: 15px 12px;
        font-size: 0.95rem;
    }
    
    .message-text {
        font-size: 0.85rem;
        padding: 8px 12px;
    }
    
    .service-card {
        padding: 25px 15px;
    }
    
    .modal-content {
        padding: 25px 15px;
    }
    
    .lang-btn {
        padding: 6px 10px;
        font-size: 12px;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Selection */
::selection {
    background: var(--primary-color);
    color: white;
}

/* Touch device improvements */
@media (hover: none) and (pointer: coarse) {
    /* Increase touch targets */
    button, .btn, .lang-btn, .game-tag {
        min-height: 44px;
        min-width: 44px;
    }
    
    /* Remove hover effects on touch */
    .service-card:hover,
    .game-tag:hover,
    .feature-item:hover {
        transform: none;
    }
    
    /* Active states for touch feedback */
    .btn-primary:active,
    .btn-secondary:active {
        transform: scale(0.97);
    }
    
    .service-card:active {
        transform: scale(0.98);
    }
    
    .game-tag:active {
        transform: scale(0.97);
    }
}
