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

body {
    font-family: 'Roboto', sans-serif;
    background-color: #0a0a0a;
    color: #e0e0e0;
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Ad Container Styles */
.ad-container {
    width: 100%;
    max-width: 1200px;
    margin: 20px auto;
    padding: 10px;
    text-align: center;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 8px;
    border: 1px solid #333;
}

.ad-container.socialbar-ad {
    margin: 30px auto;
    padding: 15px;
}

.ad-container.native-banner-2 {
    margin: 40px auto 20px;
}
/* Navigation */
.navbar {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    padding: 1rem 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    backdrop-filter: blur(10px);
    border-bottom: 2px solid #00ff88;
    box-shadow: 0 4px 20px rgba(0, 255, 136, 0.3);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo .logo-img {
    height: 50px;
    width: auto;
    filter: drop-shadow(0 0 10px #00ff88);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: #e0e0e0;
    text-decoration: none;
    font-weight: 400;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #00ff88;
    text-shadow: 0 0 5px #00ff88;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #00ff88;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.steam-link {
    background: linear-gradient(135deg, #ff4444 0%, #cc0000 100%);
    padding: 8px 16px;
    border-radius: 25px;
    border: 2px solid #ff4444;
    transition: all 0.3s ease;
}

.steam-link:hover {
    background: linear-gradient(135deg, #cc0000 0%, #ff4444 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 68, 68, 0.4);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: #00ff88;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    margin-top: 80px;
    min-height: 90vh;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #000000 100%);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 80%, rgba(0, 255, 136, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 68, 68, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-family: 'Creepster', cursive;
    font-size: 3.5rem;
    color: #00ff88;
    text-shadow:
        0 0 10px #00ff88,
        0 0 20px #00ff88,
        0 0 30px #00ff88;
    margin-bottom: 1rem;
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from { text-shadow: 0 0 10px #00ff88, 0 0 20px #00ff88, 0 0 30px #00ff88; }
    to { text-shadow: 0 0 20px #00ff88, 0 0 30px #00ff88, 0 0 40px #00ff88; }
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #cccccc;
    margin-bottom: 2rem;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    padding: 12px 24px;
    border: none;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary {
    background: linear-gradient(135deg, #ff4444 0%, #cc0000 100%);
    color: white;
    border: 2px solid #ff4444;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #cc0000 0%, #ff4444 100%);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 68, 68, 0.4);
}

.btn-secondary {
    background: linear-gradient(135deg, #00ff88 0%, #00cc66 100%);
    color: #000;
    border: 2px solid #00ff88;
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #00cc66 0%, #00ff88 100%);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 255, 136, 0.4);
}

.hero-image {
    display: flex;
    justify-content: center;
}

.hero-screenshot {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8);
    border: 3px solid #00ff88;
    transition: transform 0.3s ease;
}

.hero-screenshot:hover {
    transform: scale(1.05);
}

.version-info {
    position: absolute;
    bottom: 20px;
    right: 20px;
    z-index: 3;
}

.version-tag {
    background: rgba(0, 255, 136, 0.2);
    color: #00ff88;
    padding: 8px 16px;
    border-radius: 20px;
    border: 1px solid #00ff88;
    font-size: 0.9rem;
    backdrop-filter: blur(10px);
}

/* Section Titles */
.section-title {
    font-family: 'Creepster', cursive;
    font-size: 2.5rem;
    text-align: center;
    color: #00ff88;
    margin-bottom: 3rem;
    text-shadow: 0 0 10px #00ff88;
}

/* About Section */
.about {
    padding: 6rem 0;
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
}

.gameplay-mechanics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.mechanic-item {
    background: rgba(0, 255, 136, 0.05);
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px solid #00ff88;
    transition: transform 0.3s ease;
}

.mechanic-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 255, 136, 0.2);
}

.mechanic-item h4 {
    color: #00ff88;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.mechanic-item p {
    line-height: 1.6;
    font-size: 0.95rem;
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.about-text h3 {
    color: #ff4444;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.about-text h3:first-child {
    margin-top: 0;
}

.features-list {
    list-style: none;
    margin-top: 1rem;
}

.features-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #333;
}

.about-screenshot {
    width: 100%;
    border-radius: 15px;
    border: 2px solid #00ff88;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}

.system-requirements {
    background: rgba(0, 255, 136, 0.05);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid #00ff88;
}

.requirements-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 1rem;
}

.req-column h4 {
    color: #ff4444;
    margin-bottom: 1rem;
}

.req-column ul {
    list-style: none;
}

.req-column li {
    padding: 0.3rem 0;
}

/* Guide Section */
.guide {
    padding: 6rem 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
}

.guide-section {
    margin-bottom: 4rem;
}

.guide-section h3 {
    color: #ff4444;
    font-size: 1.8rem;
    margin-bottom: 2rem;
    text-align: center;
}

.guide-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.guide-card {
    background: rgba(0, 255, 136, 0.05);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid #00ff88;
}

.guide-card h4 {
    color: #00ff88;
    margin-bottom: 1rem;
}

.guide-tips {
    background: rgba(255, 68, 68, 0.05);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid #ff4444;
    margin-top: 1rem;
}

.endings-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 1rem;
}

.ending-card {
    background: rgba(0, 255, 136, 0.05);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid #00ff88;
}

.ending-card h4 {
    color: #00ff88;
    margin-bottom: 1rem;
}

.strategy-tips {
    background: rgba(255, 68, 68, 0.05);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid #ff4444;
    margin-top: 1rem;
}

.strategy-tips p {
    margin-bottom: 1rem;
}

/* Characters Section */
.characters {
    padding: 6rem 0;
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
}

.characters-intro {
    text-align: center;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.characters-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.character-card {
    background: rgba(0, 0, 0, 0.8);
    border-radius: 15px;
    overflow: hidden;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
}

.character-card.visitor {
    border-color: #ff4444;
    background: rgba(255, 68, 68, 0.05);
}

.character-card.human {
    border-color: #00ff88;
    background: rgba(0, 255, 136, 0.05);
}

.character-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
}

.character-image {
    height: 200px;
    overflow: hidden;
}

.character-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.character-card:hover .character-img {
    transform: scale(1.1);
}

.character-info {
    padding: 1.5rem;
}

.character-name {
    color: #fff;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.character-type {
    color: #cccccc;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.character-description {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.threat-level {
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
}

.threat-level.high {
    background: #ff4444;
    color: #fff;
}

.threat-level.medium {
    background: #ffaa00;
    color: #000;
}

.threat-level.safe {
    background: #00ff88;
    color: #000;
}

.identification-tips {
    margin-top: 4rem;
}

.identification-tips h3 {
    color: #ff4444;
    font-size: 1.8rem;
    margin-bottom: 2rem;
    text-align: center;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.tip-card {
    background: rgba(0, 255, 136, 0.05);
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid #00ff88;
    text-align: center;
}

.tip-card h4 {
    color: #00ff88;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

/* Community Section */
.community {
    padding: 6rem 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
}

.community-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.community-section h3 {
    color: #ff4444;
    margin-bottom: 1.5rem;
}

.community-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.btn-discord {
    background: #5865f2;
    color: white;
}

.btn-discord:hover {
    background: #4752c4;
    transform: translateY(-2px);
}

.btn-forum {
    background: #00ff88;
    color: #000;
}

.btn-forum:hover {
    background: #00cc66;
    transform: translateY(-2px);
}

.support-info h4 {
    color: #00ff88;
    margin-bottom: 1rem;
}

.support-info ul {
    list-style: none;
}

.support-info li {
    margin-bottom: 1rem;
    padding-left: 1rem;
    border-left: 2px solid #00ff88;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

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

.form-group label {
    color: #00ff88;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid #333;
    border-radius: 5px;
    padding: 0.75rem;
    color: #fff;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #00ff88;
    box-shadow: 0 0 5px rgba(0, 255, 136, 0.3);
}

/* Footer */
.footer {
    background: #000;
    padding: 3rem 0 1rem;
    border-top: 2px solid #00ff88;
}

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

.footer-section h4 {
    color: #00ff88;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #00ff88;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    color: #999;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(0, 0, 0, 0.95);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        backdrop-filter: blur(10px);
        border-top: 1px solid #00ff88;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-item {
        margin: 1rem 0;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

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

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .requirements-grid {
        grid-template-columns: 1fr;
    }

    .guide-grid {
        grid-template-columns: 1fr;
    }

    .endings-grid {
        grid-template-columns: 1fr;
    }

    .characters-grid {
        grid-template-columns: 1fr;
    }

    .tips-grid {
        grid-template-columns: 1fr;
    }

    .community-content {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

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

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

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 250px;
    }
}

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

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

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

::-webkit-scrollbar-track {
    background: #0a0a0a;
}

::-webkit-scrollbar-thumb {
    background: #00ff88;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #00cc66;
}