/* Page Header Styles */
.page-header {
    padding: 150px 0 80px;
    text-align: center;
    background: linear-gradient(180deg, rgba(0, 245, 255, 0.1) 0%, transparent 100%);
    border-bottom: 2px solid var(--neon-cyan);
    position: relative;
}

.page-header::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--neon-cyan), var(--neon-pink), transparent);
    box-shadow: 0 0 20px var(--neon-cyan);
}

.page-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 5px;
    background: linear-gradient(90deg, var(--neon-cyan), var(--neon-pink));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 30px rgba(0, 245, 255, 0.8));
}

.page-subtitle {
    font-size: 1.5rem;
    color: var(--neon-yellow);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 700;
    text-shadow: 0 0 15px var(--neon-yellow);
}

.games-section,
.news-section,
.about-section,
.contact-section {
    padding: 5rem 0;
}

/* News Detail Styles */
.news-detail {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem 0;
}

.news-detail-header {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--neon-cyan);
}

.news-detail-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    color: var(--neon-cyan);
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 20px var(--neon-cyan);
}

.news-detail-meta {
    display: flex;
    gap: 2rem;
    font-size: 1rem;
    color: var(--neon-yellow);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.news-detail-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border: 3px solid var(--neon-pink);
    clip-path: polygon(30px 0, 100% 0, 100% calc(100% - 30px), calc(100% - 30px) 100%, 0 100%, 0 30px);
    margin-bottom: 3rem;
}

.news-detail-content {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    line-height: 1.8;
}

.news-detail-content p {
    margin-bottom: 1.5rem;
}

/* About Section Styles */
.about-content {
    max-width: 1000px;
    margin: 0 auto;
}

.about-intro {
    text-align: center;
    margin-bottom: 4rem;
    padding: 3rem;
    background: rgba(0, 245, 255, 0.05);
    border: 2px solid var(--neon-cyan);
    clip-path: polygon(30px 0, 100% 0, 100% calc(100% - 30px), calc(100% - 30px) 100%, 0 100%, 0 30px);
}

.about-intro h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    color: var(--neon-cyan);
    text-transform: uppercase;
    letter-spacing: 3px;
}

.about-intro p {
    font-size: 1.3rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
}

.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.feature-card {
    padding: 2rem;
    background: rgba(255, 0, 110, 0.05);
    border: 2px solid var(--neon-pink);
    clip-path: polygon(20px 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%, 0 20px);
    transition: all 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(255, 0, 110, 0.5);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 10px var(--neon-yellow));
}

.feature-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--neon-pink);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.feature-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* Contact Form Styles */
.contact-content {
    max-width: 800px;
    margin: 0 auto;
}

.contact-form {
    padding: 3rem;
    background: rgba(0, 245, 255, 0.05);
    border: 3px solid var(--neon-cyan);
    clip-path: polygon(30px 0, 100% 0, 100% calc(100% - 30px), calc(100% - 30px) 100%, 0 100%, 0 30px);
}

.contact-form .form-group {
    margin-bottom: 2rem;
}

.contact-form textarea {
    padding: 1rem;
    border: 2px solid var(--neon-cyan);
    background: rgba(0, 245, 255, 0.05);
    color: var(--text-main);
    font-size: 1rem;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 500;
    clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
    transition: all 0.3s;
    width: 100%;
    min-height: 150px;
    resize: vertical;
}

.contact-form textarea:focus {
    outline: none;
    border-color: var(--neon-pink);
    background: rgba(255, 0, 110, 0.1);
    box-shadow: 0 0 20px rgba(0, 245, 255, 0.5);
}

.contact-info {
    margin-top: 3rem;
    text-align: center;
    padding: 2rem;
    background: rgba(255, 0, 110, 0.05);
    border: 2px solid var(--neon-pink);
    clip-path: polygon(20px 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%, 0 20px);
}

.contact-info h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--neon-pink);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.contact-info p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
}

.contact-info a {
    color: var(--neon-cyan);
    text-decoration: none;
    font-weight: 700;
    text-shadow: 0 0 10px var(--neon-cyan);
}

.contact-info a:hover {
    color: var(--neon-pink);
    text-shadow: 0 0 10px var(--neon-pink);
}