:root {
    --primary-red: #e63946;
    --dark-red: #c1121f;
    --light-red: #ff6b6b;
    --dark-bg: #0a0a0f;
    --darker-bg: #050507;
    --medium-bg: #161623;
    --card-bg: #1e1e2e;
    --light-text: #f8f9fa;
    --medium-text: #adb5bd;
    --accent: #4cc9f0;
    --neon-glow: 0 0 15px rgba(230, 57, 70, 0.7);
}

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

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--light-text);
    background-color: var(--dark-bg);
    overflow-x: hidden;
    background-image:
        radial-gradient(circle at 10% 20%, rgba(230, 57, 70, 0.05) 0%, transparent 20%),
        radial-gradient(circle at 90% 80%, rgba(230, 57, 70, 0.05) 0%, transparent 20%);
}

h1,
h2,
h3,
h4,
.logo {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    letter-spacing: 1px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background-color: rgba(10, 10, 15, 0.95);
    padding: 20px 0;
    position: fixed;
    width: 100%;
    z-index: 1000;
    border-bottom: 2px solid var(--primary-red);
    backdrop-filter: blur(10px);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 28px;
    color: var(--light-text);
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: text-shadow 0.3s;
}

.logo:hover {
    text-shadow: var(--neon-glow);
}

.logo span {
    color: var(--primary-red);
    font-weight: 800;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background-color: var(--primary-red);
    border-radius: 8px;
    margin-right: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 22px;
    box-shadow: 0 0 10px rgba(230, 57, 70, 0.5);
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    color: var(--light-text);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    font-size: 16px;
    position: relative;
    padding: 5px 0;
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-red);
    transition: width 0.3s;
}

nav ul li a:hover {
    color: var(--primary-red);
}

nav ul li a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    padding: 180px 0 120px;
    background: linear-gradient(to bottom, var(--darker-bg), var(--dark-bg));
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(230, 57, 70, 0.2) 0%, rgba(230, 57, 70, 0) 70%);
    top: 10%;
    left: 10%;
    filter: blur(40px);
}

.hero::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(230, 57, 70, 0.15) 0%, rgba(230, 57, 70, 0) 70%);
    bottom: 10%;
    right: 10%;
    filter: blur(40px);
}

.hero h1 {
    font-size: 3.8rem;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
    line-height: 1.2;
}

.hero h1 span {
    color: var(--primary-red);
    text-shadow: 0 0 20px rgba(230, 57, 70, 0.8);
    position: relative;
}

.hero h1 span::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--primary-red), transparent);
    bottom: -10px;
    left: 0;
}

.hero p {
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto 40px;
    color: var(--medium-text);
    position: relative;
    z-index: 1;
    line-height: 1.8;
}

/* About Section */
.about {
    padding: 120px 0;
    background-color: var(--medium-bg);
    position: relative;
}

.section-title {
    text-align: center;
    margin-bottom: 70px;
    position: relative;
}

.section-title h2 {
    font-size: 2.8rem;
    display: inline-block;
    position: relative;
}

.section-title h2::after {
    content: '';
    display: block;
    width: 100px;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-red), var(--light-red));
    margin: 15px auto 0;
    border-radius: 3px;
}

.about-content {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 60px;
}

.about-text {
    flex: 1;
    min-width: 300px;
}

.about-text h3 {
    font-size: 2rem;
    margin-bottom: 25px;
    color: var(--primary-red);
}

.about-text p {
    margin-bottom: 25px;
    color: var(--medium-text);
    font-size: 1.15rem;
    line-height: 1.8;
}

.highlight {
    background-color: rgba(230, 57, 70, 0.1);
    border-left: 4px solid var(--primary-red);
    padding: 20px;
    border-radius: 0 8px 8px 0;
    margin: 30px 0;
}

.about-image {
    flex: 1;
    min-width: 300px;
    text-align: center;
    position: relative;
}

.dev-placeholder {
    width: 320px;
    height: 320px;
    background: linear-gradient(135deg, var(--dark-bg) 30%, var(--primary-red) 100%);
    border-radius: 20px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 140px;
    color: var(--light-text);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5), 0 0 30px rgba(230, 57, 70, 0.3);
    transform: perspective(1000px) rotateY(-10deg);
    transition: transform 0.5s, box-shadow 0.5s;
}

.dev-placeholder:hover {
    transform: perspective(1000px) rotateY(0deg);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), 0 0 40px rgba(230, 57, 70, 0.5);
}

/* Games Section */
.games {
    padding: 120px 0;
    background-color: var(--dark-bg);
    position: relative;
}

.coming-soon {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.coming-soon-icon {
    font-size: 5rem;
    color: var(--primary-red);
    margin-bottom: 30px;
    text-shadow: 0 0 20px rgba(230, 57, 70, 0.7);
    display: inline-block;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

.coming-soon h3 {
    font-size: 2.5rem;
    margin-bottom: 25px;
}

.coming-soon p {
    color: var(--medium-text);
    font-size: 1.2rem;
    margin-bottom: 40px;
    line-height: 1.8;
}

.progress-container {
    background-color: var(--card-bg);
    border-radius: 15px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    margin-top: 40px;
}

.progress-label {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.progress-bar {
    height: 25px;
    background-color: var(--darker-bg);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 15px;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-red), var(--light-red));
    width: 45%;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 15px rgba(230, 57, 70, 0.5);
}

.progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-image: linear-gradient(-45deg,
            transparent 33%,
            rgba(255, 255, 255, 0.1) 33%,
            rgba(255, 255, 255, 0.1) 66%,
            transparent 66%);
    background-size: 40px 40px;
    animation: progress-animation 2s linear infinite;
}

@keyframes progress-animation {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: 40px 0;
    }
}

.progress-details {
    display: flex;
    justify-content: space-between;
    color: var(--medium-text);
    font-size: 0.95rem;
    margin-top: 25px;
}

/* Social Media Section */
.social {
    padding: 100px 0;
    background-color: var(--medium-bg);
    text-align: center;
    position: relative;
}

.social h3 {
    font-size: 2.5rem;
    margin-bottom: 25px;
}

.social p {
    color: var(--medium-text);
    max-width: 700px;
    margin: 0 auto 50px;
    font-size: 1.2rem;
    line-height: 1.8;
}

.social-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
}

.social-card {
    background-color: var(--card-bg);
    border-radius: 15px;
    padding: 40px 30px;
    width: 280px;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.social-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-red), var(--light-red));
}

.social-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(230, 57, 70, 0.3);
}

.social-icon {
    font-size: 3.5rem;
    margin-bottom: 25px;
    color: var(--primary-red);
}

.social-card h4 {
    font-size: 1.7rem;
    margin-bottom: 15px;
}

.social-card p {
    color: var(--medium-text);
    margin-bottom: 25px;
    font-size: 1.05rem;
}

.social-link {
    display: inline-block;
    background: linear-gradient(90deg, var(--primary-red), var(--light-red));
    color: white;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    font-size: 1rem;
    letter-spacing: 0.5px;
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(230, 57, 70, 0.3);
}

/* Footer */
footer {
    background-color: var(--darker-bg);
    padding: 50px 0;
    text-align: center;
    border-top: 2px solid var(--primary-red);
    position: relative;
}

.footer-logo {
    font-size: 28px;
    margin-bottom: 20px;
    font-weight: 800;
}

.footer-logo span {
    color: var(--primary-red);
}

.copyright {
    color: var(--medium-text);
    font-size: 0.95rem;
    margin-top: 10px;
}

/* Responsive */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 3rem;
    }

    .section-title h2 {
        font-size: 2.3rem;
    }
}

@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
    }

    .logo {
        margin-bottom: 15px;
    }

    nav ul li {
        margin: 0 10px;
    }

    .hero {
        padding: 160px 0 80px;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.1rem;
        padding: 0 15px;
    }

    .section-title h2 {
        font-size: 2rem;
    }

    .about-content,
    .social-links {
        flex-direction: column;
        align-items: center;
    }

    .dev-placeholder {
        transform: none;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .section-title h2 {
        font-size: 1.8rem;
    }

    .progress-container {
        padding: 25px;
    }

    .social-card {
        width: 100%;
        max-width: 300px;
    }
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeInUp 0.8s ease-out;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--darker-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-red);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--light-red);
}
.logo img{
 height: 60px;
 width: 190px;
}