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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
    min-height: 100vh;
}

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

/* Hero Splash Screen Overlay */
.hero-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #0a0a0a;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: transform 0.8s cubic-bezier(0.4, 0.0, 0.2, 1),
        opacity 0.8s cubic-bezier(0.4, 0.0, 0.2, 1);
}

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

.hero-overlay.scrolling {
    transform: translateY(-5%);
}

.hero-content {
    text-align: center;
    animation: heroFadeIn 1.5s ease;
    transition: opacity 0.3s ease;
}

.hero-overlay.scrolling .hero-content {
    opacity: 0.7;
}

.hero-logo {
    max-width: 200px;
    width: 60%;
    height: auto;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 8px 20px rgba(204, 14, 31, 0.6));
    animation: logoGlow 3s ease-in-out infinite;
}

@keyframes logoGlow {

    0%,
    100% {
        filter: drop-shadow(0 8px 20px rgba(204, 14, 31, 0.6));
    }

    50% {
        filter: drop-shadow(0 8px 35px rgba(255, 111, 0, 0.9));
    }
}

.hero-title {
    font-size: 2.5rem;
    background: linear-gradient(135deg, #cc0e1f 0%, #ff6f00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    font-weight: 700;
    letter-spacing: 4px;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 300;
    letter-spacing: 2px;
}

@keyframes heroFadeIn {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

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

.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounceArrow 2s ease-in-out infinite;
    transition: opacity 0.3s ease;
}

.hero-overlay.scrolling .scroll-indicator {
    opacity: 0;
}

.scroll-indicator i {
    font-size: 2rem;
    color: rgba(204, 14, 31, 0.8);
    filter: drop-shadow(0 0 8px rgba(204, 14, 31, 0.4));
}

@keyframes bounceArrow {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(15px);
    }
}

/* Homepage Sections */
.welcome-section {
    padding: 4rem 0 2rem;
    text-align: center;
}

.welcome-content h2 {
    font-size: 2rem;
    color: #2a2a2a;
    font-weight: 400;
    margin-bottom: 1rem;
}

.maintenance-note {
    font-size: 1rem;
    color: #888;
    font-style: italic;
}

.featured-sections {
    padding: 2rem 0 3rem;
}

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

.feature-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 15px;
    text-align: center;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0.0, 0.2, 1);
    position: relative;
    border: 2px solid transparent;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, #cc0e1f 0%, #ff6f00 100%);
    transform: scaleX(0);
    transition: transform 0.4s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(204, 14, 31, 0.2);
    border-color: rgba(204, 14, 31, 0.3);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #cc0e1f;
    transition: all 0.4s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.15);
    filter: drop-shadow(0 5px 15px rgba(204, 14, 31, 0.4));
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: #2a2a2a;
    transition: color 0.3s ease;
}

.feature-card:hover h3 {
    background: linear-gradient(135deg, #cc0e1f 0%, #ff6f00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.feature-card p {
    color: #666;
    margin-bottom: 0;
}

.feature-arrow {
    display: none;
}

.mission-section {
    padding: 4rem 0;
    background: white;
    margin-top: 2rem;
}

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

.mission-content h3 {
    font-size: 2rem;
    color: #2a2a2a;
    margin-bottom: 1.5rem;
}

.mission-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #666;
}

/* Navigation */
.navbar {
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.logo img {
    height: 50px;
    width: auto;
}

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

.nav-links a {
    text-decoration: none;
    color: #e0e0e0;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    background: linear-gradient(135deg, #cc0e1f 0%, #ff6f00 100%);
    color: white;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    color: #cc0e1f;
    font-size: 1.3rem;
    transition: transform 0.3s ease, color 0.3s ease;
}

.social-icons a:hover {
    transform: translateY(-3px);
    color: #ff6f00;
}

/* Sections */
.section {
    display: none;
    padding: 3rem 0;
    animation: fadeIn 0.5s ease;
}

.section.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #2a2a2a;
    text-shadow: none;
}

/* News Section */
.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.post-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.post-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.post-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.post-content {
    padding: 1.5rem;
}

.post-date {
    color: #cc0e1f;
    font-size: 0.9rem;
    font-weight: 500;
}

.post-content h3 {
    margin: 0.5rem 0;
    color: #333;
    font-size: 1.3rem;
}

.post-content p {
    color: #666;
    margin-bottom: 1rem;
}

.read-more {
    color: #cc0e1f;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: #ff6f00;
}

/* Games Section */
.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.game-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.game-card:hover {
    transform: scale(1.03);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.game-image {
    position: relative;
    overflow: hidden;
}

.game-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.game-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.game-card:hover .game-overlay {
    opacity: 1;
}

.btn-play {
    padding: 0.8rem 2rem;
    background: linear-gradient(135deg, #cc0e1f 0%, #ff6f00 100%);
    color: white;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.btn-play:hover {
    transform: scale(1.1);
}

.game-info {
    padding: 1.5rem;
}

.game-info h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 0.5rem;
}

.game-genre {
    color: #cc0e1f;
    font-weight: 500;
    margin-bottom: 1rem;
}

.game-info p {
    color: #666;
    margin-bottom: 1rem;
}

.game-stats {
    display: flex;
    justify-content: space-between;
    padding-top: 1rem;
    border-top: 1px solid #eee;
    color: #999;
    font-size: 0.9rem;
}

.game-stats i {
    margin-right: 0.3rem;
    color: #cc0e1f;
}

/* Merchandise Section */
.coming-soon-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 400px;
}

.coming-soon-content {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    max-width: 500px;
}

.coming-soon-content i {
    font-size: 4rem;
    color: #cc0e1f;
    margin-bottom: 1rem;
}

.coming-soon-content h3 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 1rem;
}

.coming-soon-content p {
    color: #666;
    margin-bottom: 1rem;
}

.notify-form {
    display: flex;
    gap: 0.5rem;
    margin-top: 2rem;
}

.notify-form input {
    flex: 1;
    padding: 0.8rem;
    border: 2px solid #eee;
    border-radius: 5px;
    font-size: 1rem;
}

.notify-form input:focus {
    outline: none;
    border-color: #cc0e1f;
}

.btn-notify {
    padding: 0.8rem 1.5rem;
    background: linear-gradient(135deg, #cc0e1f 0%, #ff6f00 100%);
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.btn-notify:hover {
    transform: translateY(-2px);
}

/* About Section */
.about-intro {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    margin-bottom: 3rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.about-intro p {
    font-size: 1.1rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
}

.team-title {
    text-align: center;
    font-size: 2rem;
    color: #2a2a2a;
    margin-bottom: 2rem;
    text-shadow: none;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.team-member {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.member-photo {
    width: 150px;
    height: 150px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid #cc0e1f;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member h4 {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 0.5rem;
}

.member-role {
    color: #cc0e1f;
    font-weight: 600;
    margin-bottom: 1rem;
}

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

/* Footer */
.footer {
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    color: white;
    padding: 1.5rem 0 0.5rem;
    margin-top: 4rem;
}

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

.footer-section h4 {
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

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

.contact-info p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.4rem;
}

.contact-info i {
    color: #cc0e1f;
    font-size: 1rem;
}

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

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

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.9rem;
}

.footer-section ul li a:hover {
    color: white;
}

.footer-social {
    display: flex;
    gap: 0.8rem;
}

.footer-social a {
    color: white;
    font-size: 1.3rem;
    transition: transform 0.3s ease;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
}

/* Policy Pages */
.policy-page {
    background: #fafafa;
    padding: 2rem 0;
}

.policy-title {
    font-size: 2rem;
    color: #2a2a2a;
    margin-bottom: 0.5rem;
    text-align: center;
    font-weight: 600;
}

.policy-date {
    text-align: center;
    color: #666;
    margin-bottom: 0.25rem;
    font-size: 0.9rem;
}

.policy-content {
    max-width: 850px;
    margin: 2rem auto;
    padding: 3rem;
    background: white;
    border: 1px solid #e0e0e0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.policy-content h2 {
    color: #2a2a2a;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    font-size: 1.2rem;
    font-weight: 600;
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 0.5rem;
}

.policy-content h3 {
    color: #2a2a2a;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    font-size: 1.05rem;
    font-weight: 600;
}

.policy-content h4 {
    color: #2a2a2a;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    font-style: italic;
}

.policy-content p {
    margin-bottom: 1rem;
    line-height: 1.7;
    color: #333;
    font-size: 0.95rem;
    text-align: justify;
}

.policy-content ul {
    margin-left: 2.5rem;
    margin-bottom: 1rem;
}

.policy-content li {
    margin-bottom: 0.4rem;
    line-height: 1.6;
    font-size: 0.95rem;
    color: #333;
}

.policy-content a {
    color: #0066cc;
    text-decoration: underline;
}

.policy-content a:hover {
    color: #0052a3;
}

.policy-content strong {
    font-weight: 600;
    color: #2a2a2a;
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar .container {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }

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

    .posts-grid,
    .games-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }

    .notify-form {
        flex-direction: column;
    }
}