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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #fff;
    background: linear-gradient(135deg, #1a0033 0%, #2d1b69 25%, #0f3460 50%, #16213e 75%, #1a0033 100%);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
    min-height: 100vh;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

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

/* Navigation */
.navbar {
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
}

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

.nav-logo h2 {
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(45deg, #00ffff, #ff6b6b, #32cd32);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
    position: relative;
}

.nav-logo h2::after {
    content: '🎮';
    position: absolute;
    right: -30px;
    top: 0;
    font-size: 0.8em;
    animation: bounce 2s infinite;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 20px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    background: rgba(0, 255, 255, 0.2);
    color: #00ffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 255, 255, 0.3);
}

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

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

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 100vh;
    padding: 100px 20px 50px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.hero-content {
    flex: 1;
    max-width: 600px;
    color: #fff;
    z-index: 2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.hero-title {
    font-family: 'Orbitron', monospace;
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #00ffff, #ff6b6b, #feca57, #32cd32);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: glow 2s ease-in-out infinite alternate, rainbowShift 4s ease-in-out infinite;
    position: relative;
    filter: drop-shadow(3px 3px 6px rgba(0, 0, 0, 0.9));
}

.hero-title::before {
    content: '💼';
    position: absolute;
    left: -60px;
    top: 10px;
    font-size: 0.5em;
    animation: spin 3s linear infinite;
}

.hero-title::after {
    content: '📎';
    position: absolute;
    right: -60px;
    top: 10px;
    font-size: 0.6em;
    animation: wiggle 2s ease-in-out infinite;
}

@keyframes rainbowShift {
    0% { filter: hue-rotate(0deg); }
    50% { filter: hue-rotate(180deg); }
    100% { filter: hue-rotate(360deg); }
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes wiggle {
    0%, 100% { transform: rotate(-5deg); }
    50% { transform: rotate(5deg); }
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes glow {
    from {
        text-shadow: 0 0 20px rgba(0, 255, 255, 0.5), 0 0 30px rgba(255, 107, 107, 0.3), 3px 3px 6px rgba(0, 0, 0, 0.9);
    }
    to {
        text-shadow: 0 0 30px rgba(0, 255, 255, 0.8), 0 0 40px rgba(50, 205, 50, 0.5), 3px 3px 6px rgba(0, 0, 0, 0.9);
    }
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    font-weight: 500;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 30px;
    line-height: 1.8;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn {
    padding: 12px 30px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(45deg, #00ffff, #ff6b6b, #32cd32);
    background-size: 200% 200%;
    color: #000;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(0, 255, 255, 0.4);
    animation: gradientButton 3s ease infinite;
    position: relative;
    overflow: hidden;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.5);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 255, 255, 0.6);
}

@keyframes gradientButton {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #00ffff;
    position: relative;
    overflow: hidden;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
    font-weight: 600;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(45deg, #00ffff, #32cd32);
    transition: width 0.3s ease;
    z-index: -1;
}

.btn-secondary:hover::before {
    width: 100%;
}

.btn-secondary:hover {
    border-color: #32cd32;
    transform: translateY(-2px) rotate(1deg);
    box-shadow: 0 4px 15px rgba(0, 255, 255, 0.4);
    color: #000;
}

.hero-animation {
    flex: 1;
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-paperclip {
    position: absolute;
    font-size: 3rem;
    animation: float 3s ease-in-out infinite;
}

.floating-paperclip:nth-child(1) {
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.floating-paperclip:nth-child(2) {
    top: 60%;
    right: 30%;
    animation-delay: 1s;
}

.floating-paperclip:nth-child(3) {
    bottom: 30%;
    left: 50%;
    animation-delay: 2s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

/* Sections */
.features,
.game-info {
    padding: 80px 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.features::before,
.game-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 107, 107, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(78, 205, 196, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(254, 202, 87, 0.1) 0%, transparent 50%);
    animation: floatingOrbs 20s ease-in-out infinite;
    pointer-events: none;
}

@keyframes floatingOrbs {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-20px) rotate(120deg); }
    66% { transform: translateY(10px) rotate(240deg); }
}

.section-title {
    text-align: center;
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-card {
    background: linear-gradient(135deg, rgba(26, 0, 51, 0.9) 0%, rgba(45, 27, 105, 0.9) 100%);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid rgba(0, 255, 255, 0.3);
    background-clip: padding-box;
    position: relative;
    overflow: hidden;
    color: #fff;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4, #feca57, #96ceb4);
    border-radius: 20px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card:hover {
    transform: translateY(-10px) rotate(2deg);
    box-shadow: 0 20px 40px rgba(255, 107, 107, 0.2);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-family: 'Orbitron', monospace;
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #00ffff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
    font-weight: 700;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.info-card {
    background: rgba(26, 0, 51, 0.9);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(0, 255, 255, 0.3);
    color: #fff;
}

.info-card h3 {
    font-family: 'Orbitron', monospace;
    color: #00ffff;
    margin-bottom: 20px;
    position: relative;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.info-card h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 30px;
    height: 3px;
    background: linear-gradient(45deg, #00ffff, #32cd32);
    border-radius: 2px;
}

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

.info-card li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.info-card li::before {
    content: "🎯";
    position: absolute;
    left: 0;
    color: #00ffff;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag {
    background: linear-gradient(45deg, #00ffff, #ff6b6b, #32cd32);
    background-size: 200% 200%;
    color: #000;
    padding: 8px 18px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 700;
    animation: tagShimmer 3s ease infinite;
    transition: transform 0.2s ease;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.3);
}

.tag:hover {
    transform: scale(1.1) rotate(3deg);
}

@keyframes tagShimmer {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Game Page Styles */
.game-page {
    padding-top: 100px;
    min-height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
}

.game-header {
    text-align: center;
    margin-bottom: 40px;
    color: #fff;
}

.game-header h1 {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    margin-bottom: 15px;
    background: linear-gradient(45deg, #00ffff, #ff6b6b, #32cd32);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    animation: gameGlow 3s ease-in-out infinite alternate;
    filter: drop-shadow(3px 3px 6px rgba(0, 0, 0, 0.9));
}

.game-header h1::before {
    content: '🎮';
    position: absolute;
    left: -50px;
    top: 0;
    font-size: 0.8em;
    color: #00ffff;
    animation: gamepadBounce 2s ease-in-out infinite;
}

@keyframes gameGlow {
    from { filter: drop-shadow(0 0 5px rgba(0, 255, 255, 0.5)) drop-shadow(3px 3px 6px rgba(0, 0, 0, 0.9)); }
    to { filter: drop-shadow(0 0 15px rgba(50, 205, 50, 0.7)) drop-shadow(3px 3px 6px rgba(0, 0, 0, 0.9)); }
}

@keyframes gamepadBounce {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-5px) rotate(10deg); }
}

.game-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    margin-bottom: 50px;
}

.game-frame {
    position: relative;
    width: 100%;
    height: 600px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

/* Floating fullscreen button */
.floating-fullscreen-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 100;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: none;
    background: linear-gradient(45deg, #00ffff, #ff6b6b);
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.floating-fullscreen-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 255, 255, 0.5);
    background: linear-gradient(45deg, #32cd32, #ff6b6b);
}

.floating-fullscreen-btn:active {
    transform: scale(0.95);
}

.floating-fullscreen-btn .fullscreen-icon {
    transition: transform 0.3s ease;
}

.floating-fullscreen-btn:hover .fullscreen-icon {
    transform: rotate(90deg);
}

.game-frame iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.game-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.controls-card,
.tips-card,
.fullscreen-card {
    background: rgba(26, 0, 51, 0.9);
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(0, 255, 255, 0.3);
    color: #fff;
}

.controls-card h3,
.tips-card h3,
.fullscreen-card h3 {
    font-family: 'Orbitron', monospace;
    color: #00ffff;
    margin-bottom: 15px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.control-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
}

kbd {
    background: #333;
    color: #fff;
    padding: 5px 10px;
    border-radius: 5px;
    font-family: 'Orbitron', monospace;
    font-weight: 600;
    min-width: 30px;
    text-align: center;
}

.tips-card ul {
    list-style: none;
}

.tips-card li {
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.tips-card li::before {
    content: "💡";
    position: absolute;
    left: 0;
}

.tip-text {
    font-size: 0.9rem;
    color: #fff;
    background: rgba(0, 255, 255, 0.1);
    padding: 8px 12px;
    border-radius: 8px;
    border-left: 3px solid #00ffff;
    margin-top: 10px;
}

/* Fullscreen button styles */
.fullscreen-btn {
    width: 100%;
    margin: 15px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.fullscreen-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 255, 255, 0.6);
}

.fullscreen-btn:active {
    transform: translateY(0);
}

.fullscreen-icon {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

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

.fullscreen-note {
    font-size: 0.9rem;
    color: #666;
    margin-top: 10px;
}

.fullscreen-note a {
    color: #667eea;
    text-decoration: none;
}

.fullscreen-note a:hover {
    text-decoration: underline;
}

/* Fullscreen mode styles */
.game-frame.fullscreen-mode {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 9999;
    border-radius: 0;
    background: #000;
}

.game-frame.fullscreen-mode iframe {
    width: 100%;
    height: 100%;
}

.game-frame.fullscreen-mode .floating-fullscreen-btn {
    z-index: 10000;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    font-size: 1.4rem;
    background: linear-gradient(45deg, #feca57, #ff6b6b);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}



/* About Page Styles */
.about-page {
    padding-top: 100px;
    background: rgba(0, 0, 0, 0.7);
    min-height: 100vh;
    color: #fff;
}

.about-header {
    text-align: center;
    margin-bottom: 50px;
    color: #fff;
}

.about-header h1 {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #00ffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.about-subtitle {
    font-size: 1.2rem;
    color: #fff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.about-section {
    margin-bottom: 50px;
}

.about-section h2 {
    font-family: 'Orbitron', monospace;
    color: #00ffff;
    margin-bottom: 25px;
    font-size: 1.8rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.features-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.feature-item {
    background: rgba(26, 0, 51, 0.9);
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(0, 255, 255, 0.3);
    color: #fff;
}

.feature-item h3 {
    color: #00ffff;
    margin-bottom: 10px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.tech-item {
    background: rgba(26, 0, 51, 0.9);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(0, 255, 255, 0.3);
    color: #fff;
}

.tech-item h4 {
    color: #00ffff;
    margin-bottom: 10px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.developer-info {
    background: rgba(26, 0, 51, 0.9);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(0, 255, 255, 0.3);
    color: #fff;
}

.game-stats {
    display: flex;
    gap: 30px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.stat-label {
    font-weight: 600;
    color: #00ffff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.stat-value {
    font-weight: 500;
    color: #fff;
}

.tags-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.cta-section {
    text-align: center;
    background: linear-gradient(45deg, #00ffff, #ff6b6b, #32cd32);
    color: #000;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    font-weight: 700;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.3);
}

.cta-section h2 {
    font-family: 'Orbitron', monospace;
    margin-bottom: 15px;
}

/* Contact Page Styles */
.contact-page {
    padding-top: 100px;
    background: rgba(255, 255, 255, 0.95);
    min-height: 100vh;
}

.contact-header {
    text-align: center;
    margin-bottom: 50px;
    color: #333;
}

.contact-header h1 {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #667eea;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

.contact-info h2 {
    font-family: 'Orbitron', monospace;
    color: #667eea;
    margin-bottom: 20px;
}

.contact-methods {
    display: grid;
    gap: 25px;
    margin-top: 30px;
}

.contact-method {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-method h3 {
    color: #667eea;
    margin-bottom: 10px;
}

.contact-form-container {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-form-container h2 {
    font-family: 'Orbitron', monospace;
    color: #667eea;
    margin-bottom: 25px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
}

.form-status {
    margin-top: 15px;
    padding: 10px;
    border-radius: 5px;
    display: none;
}

.form-status.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-status.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.game-links {
    margin-bottom: 50px;
}

.game-links h2 {
    font-family: 'Orbitron', monospace;
    color: #667eea;
    margin-bottom: 25px;
}

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

.game-link {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    text-decoration: none;
    color: #333;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.game-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.link-icon {
    font-size: 2rem;
}

.link-content h3 {
    color: #667eea;
    margin-bottom: 5px;
}

.faq-section h2 {
    font-family: 'Orbitron', monospace;
    color: #667eea;
    margin-bottom: 25px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.faq-item {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.faq-item h3 {
    color: #667eea;
    margin-bottom: 10px;
    font-size: 1rem;
}

/* Footer */
.footer {
    background: rgba(26, 0, 51, 0.9);
    color: #fff;
    text-align: center;
    padding: 30px 0;
    margin-top: auto;
    border-top: 2px solid rgba(0, 255, 255, 0.3);
}

/* 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;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 20px 0;
    }

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

    .hero {
        flex-direction: column;
        text-align: center;
        padding: 120px 20px 50px;
    }

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

    .hero-buttons {
        justify-content: center;
    }

    .hero-animation {
        height: 200px;
        margin-top: 30px;
    }

    .game-container {
        grid-template-columns: 1fr;
    }

    .game-frame {
        height: 400px;
    }

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

    .floating-fullscreen-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        top: 10px;
        right: 10px;
    }

    .game-frame.fullscreen-mode .floating-fullscreen-btn {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
        top: 15px;
        right: 15px;
    }

    .game-stats {
        flex-direction: column;
        gap: 15px;
    }

    .features-grid,
    .info-grid {
        grid-template-columns: 1fr;
    }
}

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

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

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

    .btn {
        width: 200px;
    }
}

/* Animation for page load */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content,
.feature-card,
.info-card {
    animation: fadeInUp 0.6s ease forwards;
}

.feature-card:nth-child(2) {
    animation-delay: 0.1s;
}

.feature-card:nth-child(3) {
    animation-delay: 0.2s;
}

.feature-card:nth-child(4) {
    animation-delay: 0.3s;
}

.feature-card:nth-child(5) {
    animation-delay: 0.4s;
}

.feature-card:nth-child(6) {
    animation-delay: 0.5s;
} 
