/* SINz Peaks Website Styles */
/* Fonts: Inter or fallback */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');

body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #000;
    color: #fff;
    line-height: 1.6;
}

header {
    background-color: #000;
    padding: 1rem;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    width: 50px;
    height: 50px;
    margin-right: 10px;
}

.logo span {
    font-weight: 700;
    font-size: 1.5rem;
}

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

.nav-links a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #00fff7;
}

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

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #fff;
    margin: 3px 0;
    transition: 0.3s;
}

main {
    min-height: calc(100vh - 200px);
}

.hero {
    background: linear-gradient(135deg, #000 0%, #00fff7 100%);
    padding: 5rem 2rem 6rem 2rem;
    text-align: center;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.cta-button {
    background-color: #ff4fa3;
    color: #fff;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background 0.3s;
}

.cta-button:hover {
    background-color: #e6458f;
}

section {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 2rem;
}

h1, h2, h3 {
    color: #00fff7;
}

.game-card, .game-item {
    background-color: #111;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    margin-bottom: 2rem;
}

.game-card img, .game-item img {
    width: 200px;
    height: 200px;
    background-color: #333;
    margin-bottom: 1rem;
    border-radius: 10px;
}

.button {
    background-color: #00fff7;
    color: #000;
    padding: 0.5rem 1rem;
    text-decoration: none;
    border-radius: 5px;
    display: inline-block;
    transition: background 0.3s;
}

.button:hover {
    background-color: #00e6e0;
}

.posts article {
    background-color: #111;
    padding: 1rem;
    margin-bottom: 1rem;
    border-radius: 5px;
}

.posts a {
    color: #00fff7;
    text-decoration: none;
}

.posts a:hover {
    text-decoration: underline;
}

form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
}

label {
    font-weight: 600;
}

input, textarea {
    padding: 0.5rem;
    border: 1px solid #333;
    border-radius: 5px;
    background-color: #111;
    color: #fff;
}

button {
    background-color: #ff4fa3;
    color: #fff;
    padding: 0.5rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
}

button:hover {
    background-color: #e6458f;
}

footer {
    background-color: #000;
    text-align: center;
    padding: 1rem;
    border-top: 1px solid #333;
}

.social-links a {
    color: #00fff7;
    margin: 0 1rem;
    text-decoration: none;
}

.social-links a:hover {
    text-decoration: underline;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #000;
        padding: 1rem;
        box-shadow: 0 2px 5px rgba(0,0,0,0.5);
    }

    .nav-links.active {
        display: flex;
    }

    .hamburger {
        display: flex;
    }

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

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

    .hero {
        padding: 3rem 1rem;
    }
}

/* Contact Page Styles */
.contact-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 4rem 2rem;
    text-align: center;
}

.contact-header h1 {
    color: #00fff7;
    font-size: 3rem;
    margin-bottom: 1rem;
}

.contact-header p {
    font-size: 1.2rem;
    color: #ccc;
    margin-bottom: 2rem;
}

.contact-info p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.contact-info a {
    color: #00fff7;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

.contact-divider {
    border: none;
    height: 1px;
    background: linear-gradient(to right, transparent, #00fff7, transparent);
    margin: 2rem 0;
}

.contact-form-wrapper {
    margin-top: 2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 500px;
    margin: 0 auto;
}

.contact-form input,
.contact-form textarea {
    padding: 1rem;
    border: 2px solid #333;
    border-radius: 10px;
    background-color: #111;
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #00fff7;
    box-shadow: 0 0 10px rgba(0, 255, 247, 0.5);
}

.contact-form textarea {
    resize: vertical;
    min-height: 150px;
}

.contact-submit {
    background-color: #ff4fa3;
    color: #fff;
    padding: 1rem 2rem;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
    width: 100%;
    max-width: 200px;
    margin: 0 auto;
}

.contact-submit:hover {
    background-color: #e6458f;
    transform: translateY(-2px);
}

/* Homepage Styles */
.hero {
    height: 70vh;
    background: linear-gradient(135deg, #000 0%, #00fff7 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 2rem;
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #fff;
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: #fff;
}

.cta-button {
    background-color: #ff4fa3;
    color: #fff;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 79, 163, 0.3);
}

.cta-button:hover {
    background-color: #e6458f;
    box-shadow: 0 6px 20px rgba(255, 79, 163, 0.5);
    transform: translateY(-3px);
}

.about {
    padding: 4rem 2rem;
    text-align: center;
}

.about-content h2 {
    color: #00fff7;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.about-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
    color: #ccc;
}

.featured {
    padding: 4rem 2rem;
    background-color: #111;
}

.featured-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.featured-content h2 {
    color: #00fff7;
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.game-card {
    background-color: #000;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 255, 247, 0.1);
    transition: all 0.3s ease;
    max-width: 400px;
    margin: 0 auto;
}

.game-card:hover {
    box-shadow: 0 15px 40px rgba(0, 255, 247, 0.3);
    transform: translateY(-5px);
}

.game-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 1.5rem;
}

.game-card h3 {
    color: #00fff7;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.game-card p {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.learn-more-button {
    background-color: #00fff7;
    color: #000;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(0, 255, 247, 0.3);
}

.learn-more-button:hover {
    background-color: #00e6e0;
    box-shadow: 0 6px 20px rgba(0, 255, 247, 0.5);
    transform: translateY(-3px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero {
        height: 60vh;
        padding: 0 1rem;
    }

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

    .hero-content p {
        font-size: 1.2rem;
    }

    .about {
        padding: 3rem 1rem;
    }

    .about-content h2 {
        font-size: 2rem;
    }

    .featured {
        padding: 3rem 1rem;
    }

    .featured-content h2 {
        font-size: 2rem;
    }

    .game-card {
        padding: 1.5rem;
    }
}

/* About Page Styles */
.about-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.about-title {
    text-align: center;
    margin-bottom: 4rem;
}

.about-title h1 {
    font-size: 3.5rem;
    color: #00fff7;
    margin-bottom: 1rem;
}

.about-title p {
    font-size: 1.3rem;
    color: #ccc;
    line-height: 1.6;
}

.about-section {
    background: linear-gradient(135deg, #0a0a0a 0%, #111 100%);
    border-radius: 15px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 5px 15px rgba(0, 255, 247, 0.1);
    border: 1px solid #00fff7;
    position: relative;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #00fff7, #ff4fa3);
    border-radius: 15px 15px 0 0;
}

.about-section h2 {
    color: #00fff7;
    font-size: 2rem;
    margin-bottom: 1rem;
    position: relative;
}

.about-section p {
    color: #fff;
    line-height: 1.8;
    font-size: 1.1rem;
}

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease-out forwards;
}

.fade-in:nth-child(1) { animation-delay: 0.1s; }
.fade-in:nth-child(2) { animation-delay: 0.3s; }
.fade-in:nth-child(3) { animation-delay: 0.5s; }
.fade-in:nth-child(4) { animation-delay: 0.7s; }

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

/* Responsive for About */
@media (max-width: 768px) {
    .about-container {
        padding: 2rem 1rem;
    }

    .about-title h1 {
        font-size: 2.5rem;
    }

    .about-section {
        padding: 1.5rem;
    }

    .about-section h2 {
        font-size: 1.5rem;
    }
}

/* 404 Page Styles */
.error-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 60vh;
}

.error-content {
    width: 100%;
    max-width: 600px;
    background: rgba(0,0,0,0.10);
    border-radius: 20px;
    padding: 2rem 1rem 1.5rem 1rem;
    margin-bottom: 0;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.error-content h1 {
    font-size: 5rem;
    margin-bottom: 1rem;
    color: #00fff7;
}

.error-content p {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.error-content .cta-button {
    margin-top: 1.5rem;
    font-size: 1.2rem;
    border-radius: 2rem;
    min-width: 160px;
}