﻿/*
Theme Name: Hyyer Hosting
Theme URI: https://hyyerhosting.com
Description: Custom theme for Hyyer Hosting - Game Server Hosting Service
Version: 1.0
Author: Hyyer Hosting
*/

:root {
    --primary-red: #ff0000;
    --neon-purple: #b026ff;
    --dark-bg: #0a0a0a;
    --card-bg: #1a1a1a;
    --text-light: #ffffff;
    --text-gray: #cccccc;
    --hover-glow: rgba(176, 38, 255, 0.5);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: linear-gradient(135deg, var(--dark-bg) 0%, #1a0a1f 100%);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--neon-purple) 0%, transparent 70%);
    opacity: 0.3;
    top: -250px;
    right: -250px;
    animation: pulse 4s ease-in-out infinite;
}

.hero-section::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--primary-red) 0%, transparent 70%);
    opacity: 0.2;
    bottom: -200px;
    left: -200px;
    animation: pulse 5s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.2); opacity: 0.5; }
}

.hero-content {
    position: relative;
    z-index: 10;
    padding: 2rem;
}

.hero-title {
    font-size: 6rem;
    font-weight: 900;
    background: linear-gradient(90deg, var(--primary-red) 0%, var(--neon-purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    animation: fadeInUp 1s ease-out;
    text-shadow: 0 0 30px var(--hover-glow);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.cta-button {
    display: inline-block;
    padding: 1rem 3rem;
    background: linear-gradient(90deg, var(--primary-red) 0%, var(--neon-purple) 100%);
    color: var(--text-light);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(176, 38, 255, 0.3);
    animation: fadeInUp 1s ease-out 0.4s both;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(176, 38, 255, 0.5);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-20px); }
    60% { transform: translateX(-50%) translateY(-10px); }
}

.scroll-indicator svg {
    width: 30px;
    height: 30px;
    fill: var(--neon-purple);
}

/* Game Servers Grid Section */
.games-section {
    padding: 5rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(90deg, var(--primary-red) 0%, var(--neon-purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    text-align: center;
    color: var(--text-gray);
    font-size: 1.2rem;
    margin-bottom: 4rem;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    padding: 1rem;
}

.game-card {
    background: var(--card-bg);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
    position: relative;
}

.game-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-red), var(--neon-purple));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.game-card:hover::before {
    opacity: 0.1;
}

.game-card:hover {
    transform: translateY(-10px);
    border-color: var(--neon-purple);
    box-shadow: 0 20px 40px rgba(176, 38, 255, 0.4);
}

.game-card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    position: relative;
    z-index: 2;
}

.game-card-content {
    padding: 1.5rem;
    position: relative;
    z-index: 2;
}

.game-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.game-card-description {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.game-card-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--neon-purple);
}

.learn-more {
    color: var(--primary-red);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.learn-more:hover {
    color: var(--neon-purple);
}

/* Header Styles */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 2rem;
    border-bottom: 1px solid rgba(176, 38, 255, 0.2);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-logo {
    font-size: 1.5rem;
    font-weight: 800;
    background: linear-gradient(90deg, var(--primary-red) 0%, var(--neon-purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
}

.main-nav ul {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.main-nav a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.main-nav a:hover {
    color: var(--neon-purple);
}

/* Footer Styles */
.site-footer {
    background: var(--card-bg);
    padding: 3rem 2rem 1rem;
    margin-top: 5rem;
    border-top: 2px solid var(--neon-purple);
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--neon-purple);
}

.copyright {
    color: var(--text-gray);
    font-size: 0.9rem;
}

/* Why Choose Us Section */
.why-choose-us-section {
    background: linear-gradient(135deg, #0f0f0f 0%, #1a0a1f 100%);
    padding: 5rem 2rem;
}

.why-container {
    max-width: 1400px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-box {
    background: var(--card-bg);
    padding: 2.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.feature-box:hover {
    transform: translateY(-10px);
    border-color: var(--neon-purple);
    box-shadow: 0 20px 40px rgba(176, 38, 255, 0.3);
}

.feature-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.feature-box h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-light);
}

.feature-box p {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Pricing Section */
.pricing-section {
    padding: 5rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.pricing-card {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    position: relative;
    border: 2px solid rgba(176, 38, 255, 0.2);
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: var(--neon-purple);
    box-shadow: 0 20px 50px rgba(176, 38, 255, 0.4);
}

.pricing-card.featured {
    border-color: var(--neon-purple);
    box-shadow: 0 10px 40px rgba(176, 38, 255, 0.3);
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.pricing-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(255, 0, 0, 0.2);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-red);
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.pricing-badge.popular {
    background: linear-gradient(90deg, var(--primary-red) 0%, var(--neon-purple) 100%);
    color: var(--text-light);
}

.pricing-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.pricing-price {
    margin: 2rem 0;
}

.price-amount {
    font-size: 3.5rem;
    font-weight: 900;
    background: linear-gradient(90deg, var(--primary-red) 0%, var(--neon-purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.price-period {
    font-size: 1.2rem;
    color: var(--text-gray);
}

.pricing-features {
    list-style: none;
    margin: 2rem 0;
    text-align: left;
}

.pricing-features li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-button {
    display: inline-block;
    width: 100%;
    padding: 1rem 2rem;
    background: linear-gradient(90deg, var(--primary-red) 0%, var(--neon-purple) 100%);
    color: var(--text-light);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.pricing-button:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(176, 38, 255, 0.5);
}

/* Server Locations Section */
.locations-section {
    background: linear-gradient(135deg, #0f0f0f 0%, #1a0a1f 100%);
    padding: 5rem 2rem;
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 3rem auto 0;
}

.location-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.location-card:hover {
    transform: translateY(-5px);
    border-color: var(--neon-purple);
    box-shadow: 0 15px 35px rgba(176, 38, 255, 0.3);
}

.location-flag {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.location-card h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.location-card p {
    color: var(--text-gray);
    font-size: 0.95rem;
}

/* Stats Section */
.stats-section {
    padding: 5rem 2rem;
    background: var(--dark-bg);
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
}

.stat-box {
    text-align: center;
    padding: 2rem;
}

.stat-number {
    font-size: 4rem;
    font-weight: 900;
    background: linear-gradient(90deg, var(--primary-red) 0%, var(--neon-purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-gray);
    font-size: 1.1rem;
    font-weight: 600;
}

/* Testimonials Section */
.testimonials-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #0f0f0f 0%, #1a0a1f 100%);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 3rem auto 0;
}

.testimonial-card {
    background: var(--card-bg);
    padding: 2.5rem;
    border-radius: 15px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    border-color: var(--neon-purple);
    box-shadow: 0 15px 35px rgba(176, 38, 255, 0.3);
}

.testimonial-stars {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    color: var(--text-gray);
    line-height: 1.8;
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.testimonial-author strong {
    color: var(--text-light);
    font-weight: 700;
}

.testimonial-author span {
    color: var(--text-gray);
    font-size: 0.9rem;
}

/* Final CTA Section */
.cta-final-section {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, var(--dark-bg) 0%, #1a0a1f 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-final-section::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--neon-purple) 0%, transparent 70%);
    opacity: 0.2;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.cta-final-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
    margin: 0 auto;
}

.cta-final-content h2 {
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(90deg, var(--primary-red) 0%, var(--neon-purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.cta-final-content p {
    font-size: 1.3rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
}

.cta-button-large {
    display: inline-block;
    padding: 1.5rem 4rem;
    background: linear-gradient(90deg, var(--primary-red) 0%, var(--neon-purple) 100%);
    color: var(--text-light);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.3rem;
    transition: all 0.3s ease;
    box-shadow: 0 15px 40px rgba(176, 38, 255, 0.4);
}

.cta-button-large:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 50px rgba(176, 38, 255, 0.6);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .games-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .main-nav ul {
        flex-direction: column;
        gap: 1rem;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.featured {
        transform: scale(1);
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .locations-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .stat-number {
        font-size: 3rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-final-content h2 {
        font-size: 2rem;
    }
    
    .cta-button-large {
        padding: 1.2rem 2.5rem;
        font-size: 1.1rem;
    }
}



/* Game Card Gradient Backgrounds - Added 2025-11-14 */
/* Game Card Styles with Gradient Backgrounds & Icons */

.game-card-gradient {
    min-height: 350px;
    display: flex;
    align-items: flex-end;
    position: relative;
    overflow: hidden;
}

.game-card-gradient::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 0, 0, 0.1), rgba(176, 38, 255, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.game-card-gradient:hover::before {
    opacity: 1;
}

.game-card-gradient .game-card-content {
    position: relative;
    z-index: 10;
    width: 100%;
    padding: 2rem 1.5rem 1.5rem;
}

.game-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.5));
}

.game-card-gradient .game-card-title {
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
    font-size: 1.8rem;
    margin-bottom: 0.75rem;
}

.game-card-gradient .game-card-description {
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.6);
    color: rgba(255, 255, 255, 0.95);
}

.game-card-gradient:hover {
    transform: translateY(-10px) scale(1.02);
}

.game-card-gradient .price {
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.9);
    font-size: 1.5rem;
}

.game-card-gradient .learn-more {
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.9);
}

/* Shimmer effect on hover */
.game-card-gradient::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255, 255, 255, 0.1) 50%,
        transparent 70%
    );
    opacity: 0;
    transition: opacity 0.5s ease;
    transform: rotate(45deg);
    pointer-events: none;
    z-index: 5;
}

.game-card-gradient:hover::after {
    opacity: 1;
    animation: shimmer 1.5s ease-in-out;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}




/* === Game Card Gradient Styles - Added Nov 13 2025 === */
/* Game Card Styles with Gradient Backgrounds & Icons */

.game-card-gradient {
    min-height: 350px;
    display: flex;
    align-items: flex-end;
    position: relative;
    overflow: hidden;
}

.game-card-gradient::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 0, 0, 0.1), rgba(176, 38, 255, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.game-card-gradient:hover::before {
    opacity: 1;
}

.game-card-gradient .game-card-content {
    position: relative;
    z-index: 10;
    width: 100%;
    padding: 2rem 1.5rem 1.5rem;
}

.game-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.5));
}

.game-card-gradient .game-card-title {
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
    font-size: 1.8rem;
    margin-bottom: 0.75rem;
}

.game-card-gradient .game-card-description {
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.6);
    color: rgba(255, 255, 255, 0.95);
}

.game-card-gradient:hover {
    transform: translateY(-10px) scale(1.02);
}

.game-card-gradient .price {
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.9);
    font-size: 1.5rem;
}

.game-card-gradient .learn-more {
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.9);
}

/* Shimmer effect on hover */
.game-card-gradient::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255, 255, 255, 0.1) 50%,
        transparent 70%
    );
    opacity: 0;
    transition: opacity 0.5s ease;
    transform: rotate(45deg);
    pointer-events: none;
    z-index: 5;
}

.game-card-gradient:hover::after {
    opacity: 1;
    animation: shimmer 1.5s ease-in-out;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}




/* === Header Spacing Fix - Nov 13 2025 === */
/* Fix header spacing - reduces black space below logo */

.site-header {
    padding: 0.75rem 2rem !important;
    margin-bottom: 0 !important;
}

.site-logo {
    margin: 0 !important;
    padding: 0 !important;
}

.header-container {
    padding: 0 !important;
}

/* Ensure hero starts right after header */
.hero-section {
    margin-top: 0 !important;
    padding-top: 4rem !important;
}



/* === Custom Frontend Styles - Added 2025-11-14 === */
@import url('dashboard-styles.css');
@import url('console-styles.css');

@import url('file-manager-styles.css');
