:root {
    --bg-color: #0a0a0a;
    --text-color: #ffffff;
    --accent-color: #c41e3a;
    --accent-dark: #8b1538;
    --accent-black: #1a1a1a;
    --glass-bg: rgba(20, 20, 20, 0.6);
    --glass-border: rgba(196, 30, 58, 0.3);
    --shadow-color: rgba(0, 0, 0, 0.5);
}

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

html, body {
    overflow-x: hidden;
}

body {
    font-family: 'Inter', sans-serif;
    background: #0a0a0a;
    background-attachment: fixed;
    color: var(--text-color);
    line-height: 1.6;
    min-height: 100vh;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(196, 30, 58, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(139, 21, 56, 0.06) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

nav {
    padding: 0.7rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(196, 30, 58, 0.3);
    display: flex;
    justify-content: center;
    margin: 0;
    border-left: none;
    border-right: none;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

nav.nav-visible {
    transform: translateY(0);
    opacity: 1;
}

nav.nav-hidden {
    transform: translateY(-100%);
    opacity: 0;
}

.nav-content.nav-centered {
    width: 100%;
    max-width: 580px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav-menu {
    display: flex;
    gap: 1.8rem;
    background: rgba(20, 20, 20, 0.6);
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
    border-radius: 1.5rem;
    padding: .4rem .9rem;
    box-shadow: 0 4px 20px rgba(255, 68, 68, 0.3), 0 1px 3px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border: 1.5px solid rgba(255, 68, 68, 0.4);
    list-style: none;
    align-items: center;
    justify-content: center;
}

.nav-menu a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    padding: 0.3rem 0.6rem;
    border-radius: 0.8rem;
    transition: background 0.2s, color 0.2s;
}

.nav-menu a:hover {
    background: rgba(255, 68, 68, 0.2);
    color: var(--accent-color);
}

.portfolio-link {
    color: var(--accent-fire) !important;
    font-weight: 600;
}

.portfolio-link:hover {
    background: var(--accent-color) !important;
    color: white !important;
    box-shadow: 0 0 15px rgba(255, 68, 68, 0.6);
}

.nav-item-desktop {
    display: block;
}

.nav-item-portfolio {
    display: block;
}

.nav-item-page {
    display: block;
}

.page-nav-btn {
    color: var(--text-color);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 0.4rem 0.8rem;
    border-radius: 0.8rem;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.page-nav-btn.dev-nav-btn {
    color: var(--accent-color);
}

.page-nav-btn.dev-nav-btn:hover {
    background: rgba(255, 107, 53, 0.2);
    color: #fff;
}

.page-nav-btn.store-nav-btn {
    color: #4caf50;
}

.page-nav-btn.store-nav-btn:hover {
    background: rgba(76, 175, 80, 0.2);
    color: #fff;
}

/* Floating Navigation Buttons - Bottom Right */
.floating-nav-buttons {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    align-items: center;
}

.floating-nav-btn {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.3rem;
    color: #fff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5), 0 2px 8px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    border: 2px solid;
    position: relative;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.floating-nav-btn:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.5), 0 4px 12px rgba(0, 0, 0, 0.4);
}

.floating-nav-btn.store-nav-btn {
    background: rgba(76, 175, 80, 0.9);
    border-color: #4caf50;
}

.floating-nav-btn.store-nav-btn:hover {
    background: rgba(76, 175, 80, 1);
    box-shadow: 0 6px 30px rgba(76, 175, 80, 0.6);
}

.floating-nav-btn.cheat-nav-btn {
    background: rgba(255, 107, 53, 0.9);
    border-color: #ff6b35;
}

.floating-nav-btn.cheat-nav-btn:hover {
    background: rgba(196, 30, 58, 1);
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.5);
}

.floating-nav-btn.dev-nav-btn {
    background: rgba(196, 30, 58, 0.9);
    border-color: var(--accent-color);
}

.floating-nav-btn.dev-nav-btn:hover {
    background: rgba(196, 30, 58, 1);
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.5);
}

.floating-nav-btn.portfolio-nav-btn {
    background: rgba(196, 30, 58, 0.9);
    border-color: var(--accent-color);
}

.floating-nav-btn.portfolio-nav-btn:hover {
    background: rgba(196, 30, 58, 1);
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.5);
}

@media (max-width: 768px) {
    .floating-nav-buttons {
        bottom: 1.5rem;
        right: 1.5rem;
        gap: 0.6rem;
    }
    
    .floating-nav-btn {
        width: 3rem;
        height: 3rem;
        font-size: 1.1rem;
    }
    
    .nav-item-desktop {
        display: none;
    }
    .nav-menu {
        padding: .5rem 1rem;
        gap: 0;
        justify-content: center;
    }
}

main {
    padding-top: 70px;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 2rem;
    padding-right: 2rem;
}

@media (max-width: 768px) {
    main {
        padding-top: 60px;
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

.cheat-hero {
    text-align: center;
    padding: 4rem 0;
    position: relative;
    background: rgba(20, 20, 20, 0.4);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-radius: 2rem;
    border: 2px solid rgba(255, 68, 68, 0.3);
    box-shadow: 0 8px 32px rgba(255, 68, 68, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    margin-bottom: 3rem;
}

.cheat-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.cheat-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
}

.services-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin: 3.5rem 0 2.2rem 0;
    letter-spacing: 1px;
    color: var(--accent-color);
}

.cheat-services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.cheat-service-card {
    background: rgba(20, 20, 20, 0.6);
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
    border-radius: 1.5rem;
    border: 2px solid rgba(196, 30, 58, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), 0 2px 8px rgba(0, 0, 0, 0.5);
    padding: 3rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.6s ease-out;
    animation-fill-mode: both;
}

.cheat-service-card:nth-child(1) { animation-delay: 0.1s; }
.cheat-service-card:nth-child(2) { animation-delay: 0.2s; }
.cheat-service-card:nth-child(3) { animation-delay: 0.3s; }
.cheat-service-card:nth-child(4) { animation-delay: 0.4s; }

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

.cheat-service-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cheat-service-card:hover::before {
    opacity: 1;
}

.cheat-service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px rgba(255, 68, 68, 0.4), 0 4px 12px rgba(255, 107, 53, 0.3);
    border-color: var(--accent-fire);
}

.service-icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-fire) 0%, var(--accent-color) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: #fff;
    margin: 0 auto 1.5rem auto;
    box-shadow: 0 0 30px rgba(255, 107, 53, 0.6);
    transition: all 0.3s ease;
    position: relative;
}

.service-icon::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    animation: fire-pulse 2s ease-in-out infinite;
}

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

.cheat-service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 0 40px rgba(255, 107, 53, 0.8);
}

.cheat-service-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(255, 107, 53, 0.5);
}

.cheat-service-card p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.contact-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin: 3.5rem 0 2.2rem 0;
    letter-spacing: 1px;
    color: var(--accent-color);
}

.cheat-contact {
    text-align: center;
    padding: 3rem 2rem;
    margin-bottom: 3rem;
    background: rgba(20, 20, 20, 0.6);
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
    border-radius: 2rem;
    border: 2px solid rgba(196, 30, 58, 0.3);
    box-shadow: 0 8px 32px rgba(255, 68, 68, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.contact-desc {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.cheat-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cheat-btn {
    padding: 1.2rem 2.5rem;
    border-radius: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.3s ease;
    border: 2px solid;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.cheat-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.cheat-btn:hover::before {
    left: 100%;
}

.cheat-btn.facebook-btn {
    background: #1877f2;
    border-color: #1877f2;
    color: #fff;
}

.cheat-btn.facebook-btn:hover {
    background: #166fe5;
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(24, 119, 242, 0.5);
}

.cheat-btn.email-btn {
    background: var(--accent-color);
    border-color: var(--accent-color);
    color: #fff;
    box-shadow: 0 4px 15px rgba(255, 68, 68, 0.4);
}

.cheat-btn.email-btn:hover {
    background: var(--accent-fire);
    border-color: var(--accent-fire);
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(255, 107, 53, 0.6);
}

.cheat-btn.store-btn {
    background: #4caf50;
    border-color: #4caf50;
    color: #fff;
}

.cheat-btn.store-btn:hover {
    background: #388e3c;
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(76, 175, 80, 0.5);
}

/* Footer */
.site-footer {
    width: 100%;
    background: rgba(0, 0, 0, 0.9);
    margin: 0;
    margin-top: 3rem;
    padding: 3rem 0 1.5rem 0;
    color: #fff;
    font-size: 1rem;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    border-top: 1px solid rgba(196, 30, 58, 0.3);
    border-left: none;
    border-right: none;
    box-sizing: border-box;
    left: 0;
    right: 0;
}

.footer-main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
    color: var(--accent-color);
}

.footer-desc {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.2rem;
    line-height: 1.5;
}

.footer-location {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-contact {
    font-size: 1.05rem;
    color: #fff;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-contact div {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-contact i {
    color: rgba(255, 107, 53, 0.8);
    width: 20px;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-contact a:hover {
    color: var(--accent-color);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.2s, padding-left 0.2s;
}

.footer-links a:hover {
    color: var(--accent-color);
    padding-left: 0.5rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 68, 68, 0.2);
    padding-top: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin: 0;
}

.footer-social-row {
    display: flex;
    gap: 1.1rem;
    margin-top: 0.5rem;
}

.footer-social-row a {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.25rem;
    transition: color 0.2s, transform 0.2s;
}

.footer-social-row a:hover {
    color: var(--accent-color);
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .cheat-title {
        font-size: 2.5rem;
    }
    
    .cheat-subtitle {
        font-size: 1.1rem;
    }
    
    .cheat-services {
        grid-template-columns: 1fr;
    }
    
    .cheat-buttons {
        flex-direction: column;
    }
    
    .cheat-btn {
        width: 100%;
        justify-content: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

