/* Jyntoro - Consolidated Styles */

/* Root Variables */
:root {
    --aurora-cyan: #00fff7;
    --frozen-violet: #6e44ff;
    --shadow-black: #0b0e1c;
    --mystic-gray: #1a1f2e;
    --runic-gold: #f9cc00;
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --text-primary: #ffffff;
    --text-secondary: #b0b8cc;
    
    /* Fonts */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Georgia', serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    background: var(--shadow-black);
    color: var(--text-primary);
    overflow-x: hidden;
    cursor: none;
    line-height: 1.6;
}

/* Custom Cursor */
.custom-cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    background: radial-gradient(circle, var(--aurora-cyan) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: screen;
    transition: transform 0.1s ease;
}

.cursor-trail {
    position: fixed;
    top: 0;
    left: 0;
    width: 8px;
    height: 8px;
    background: var(--aurora-cyan);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    opacity: 0.6;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}

/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--shadow-black);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

.vault-container {
    text-align: center;
}

.runic-vault {
    width: 80px;
    height: 80px;
    border: 3px solid var(--runic-gold);
    border-radius: 50%;
    margin: 0 auto 20px;
    position: relative;
    animation: vaultRotate 2s linear infinite;
}

.runic-vault::before {
    content: '⚡';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 30px;
    color: var(--aurora-cyan);
    animation: runicPulse 1.5s ease-in-out infinite;
}

.loading-text {
    color: var(--text-secondary);
    font-size: 16px;
    animation: textGlow 2s ease-in-out infinite;
}

/* Aurora Background */
.aurora-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.aurora-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 200%;
    height: 100%;
    opacity: 0.3;
}

.aurora-1 {
    background: linear-gradient(45deg, var(--aurora-cyan), var(--frozen-violet), var(--aurora-cyan));
    animation: auroraFlow1 20s ease-in-out infinite;
}

.aurora-2 {
    background: linear-gradient(-45deg, var(--frozen-violet), var(--runic-gold), var(--frozen-violet));
    animation: auroraFlow2 25s ease-in-out infinite reverse;
}

.aurora-3 {
    background: linear-gradient(90deg, transparent, var(--aurora-cyan), transparent);
    animation: auroraFlow3 30s linear infinite;
}

/* Floating Runes */
.floating-runes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.rune-particle {
    position: absolute;
    font-size: 20px;
    color: var(--runic-gold);
    pointer-events: none;
    animation: runeFloat 6s ease-in-out infinite;
    opacity: 0.3;
}

/* Scroll Progress Bar */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background: linear-gradient(90deg, var(--aurora-cyan), var(--runic-gold));
    z-index: 1000;
    transition: width 0.1s ease;
    box-shadow: 0 0 10px var(--aurora-cyan);
}

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

/* Header */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(11, 14, 28, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass-border);
    z-index: 1000;
    transition: all 0.3s ease;
}

.header-content {
    padding: 15px 20px;
}

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

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--aurora-cyan);
    text-shadow: 0 0 10px var(--aurora-cyan);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--aurora-cyan);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--aurora-cyan);
    text-shadow: 0 0 10px var(--aurora-cyan);
}

/* Frosted Glass Effect */
.frosted-glass {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

.hero-content {
    z-index: 1;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 8vw, 6rem);
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.1;
}

.glowing-text {
    color: var(--text-primary);
    text-shadow: 0 0 20px var(--aurora-cyan);
}

.aurora-gradient {
    background: linear-gradient(45deg, var(--aurora-cyan), var(--frozen-violet), var(--runic-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease-in-out infinite;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    opacity: 0;
    animation: fadeInUp 1s ease 0.5s forwards;
}

/* CTA Button */
.cta-button {
    position: relative;
    background: var(--glass-bg);
    border: 2px solid var(--aurora-cyan);
    color: var(--text-primary);
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: none;
    overflow: hidden;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 255, 247, 0.3);
    border-color: var(--runic-gold);
}

.frost-crack {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, var(--aurora-cyan), transparent);
    transition: left 0.5s ease;
    opacity: 0.3;
}

.cta-button:hover .frost-crack {
    left: 100%;
}

/* Section Titles */
.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3rem);
    text-align: center;
    margin-bottom: 60px;
    color: var(--text-primary);
    text-shadow: 0 0 20px var(--aurora-cyan);
}

.runic-icon {
    color: var(--runic-gold);
    margin: 0 15px;
    animation: runicPulse 2s ease-in-out infinite;
}

/* Games Section */
.games-section {
    padding: 100px 0;
    position: relative;
}

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

.game-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    cursor: none;
}

.game-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--runic-gold), var(--aurora-cyan), var(--runic-gold));
    border-radius: 20px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.game-card:hover::before {
    opacity: 1;
    animation: borderScan 2s linear infinite;
}

.game-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 255, 247, 0.2);
}

.game-image {
    width: 100%;
    height: 200px;
    object-fit: contain;
    border-radius: 10px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.game-card:hover .game-image {
    animation: floatGame 2s ease-in-out infinite;
}

.game-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--aurora-cyan);
    margin-bottom: 10px;
    text-shadow: 0 0 10px var(--aurora-cyan);
}

.game-description {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Features Section */
.features-section {
    padding: 100px 0;
    background: rgba(26, 31, 46, 0.5);
}

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

.feature-card {
    text-align: center;
    padding: 40px 20px;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 255, 247, 0.1);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
    animation: rotateRune 4s linear infinite;
}

.feature-card h3 {
    font-size: 1.2rem;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.feature-card p {
    color: var(--text-secondary);
}

/* About Section */
.about-section {
    padding: 100px 0;
    position: relative;
}

.starfield-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, #eee, transparent),
        radial-gradient(2px 2px at 40px 70px, var(--aurora-cyan), transparent),
        radial-gradient(1px 1px at 90px 40px, #fff, transparent),
        radial-gradient(1px 1px at 130px 80px, var(--runic-gold), transparent);
    background-repeat: repeat;
    background-size: 200px 100px;
    animation: starMove 50s linear infinite;
    opacity: 0.3;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

.highlight {
    color: var(--aurora-cyan);
    font-weight: 600;
    text-shadow: 0 0 10px var(--aurora-cyan);
}

/* Disclaimer Section */
.disclaimer-section {
    padding: 80px 0;
}

.disclaimer-scroll {
    max-width: 600px;
    margin: 0 auto;
    padding: 40px;
    background: rgba(249, 204, 0, 0.1);
    border: 2px solid var(--runic-gold);
    border-radius: 20px;
    text-align: center;
    animation: scrollFloat 3s ease-in-out infinite;
    position: relative;
}

.disclaimer-scroll::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(45deg, var(--runic-gold), transparent, var(--runic-gold));
    border-radius: 20px;
    z-index: -1;
    animation: goldenGlow 2s ease-in-out infinite;
}

.disclaimer-scroll h3 {
    color: var(--runic-gold);
    font-size: 1.3rem;
    margin-bottom: 20px;
    text-shadow: 0 0 10px var(--runic-gold);
}

.disclaimer-scroll p {
    margin-bottom: 10px;
    color: var(--text-secondary);
}

/* Footer */
.site-footer {
    background: var(--shadow-black);
    border-top: 2px solid var(--aurora-cyan);
    padding: 40px 0 20px;
    position: relative;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--aurora-cyan), var(--runic-gold), var(--aurora-cyan));
    animation: waveFlow 3s linear infinite;
}

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

.footer-links {
    display: flex;
    justify-content: center;
    list-style: none;
    gap: 30px;
    margin-bottom: 20px;
    padding: 0;
}

.footer-link {
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-link:hover {
    color: var(--aurora-cyan);
    text-shadow: 0 0 10px var(--aurora-cyan);
}

.footer-info {
    border-top: 1px solid var(--glass-border);
    padding-top: 20px;
}

.copyright {
    color: var(--text-secondary);
    margin-bottom: 10px;
}

.crown-icon {
    color: var(--runic-gold);
    animation: runicPulse 2s ease-in-out infinite;
    margin: 0 10px;
}

.footer-tagline {
    color: var(--aurora-cyan);
    font-style: italic;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Game Pages */
.game-page {
    padding-top: 100px;
    min-height: 100vh;
}

.game-header {
    text-align: center;
    padding: 60px 0;
}

.game-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    color: var(--text-primary);
    text-shadow: 0 0 30px var(--aurora-cyan);
    margin-bottom: 20px;
}

.game-subtitle {
    font-size: 1.3rem;
    color: var(--text-secondary);
    margin-bottom: 30px;
}

.game-image-section {
    text-align: center;
    padding: 40px 0;
}

.game-main-image {
    max-width: 400px;
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 255, 247, 0.2);
    transition: all 0.3s ease;
    animation: floatGame 3s ease-in-out infinite;
}

.game-main-image:hover {
    transform: scale(1.05);
    box-shadow: 0 30px 80px rgba(0, 255, 247, 0.4);
}

.game-embed-section {
    padding: 60px 0;
}

.game-iframe-container {
    position: relative;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.3);
}

.game-iframe {
    width: 100%;
    height: 600px;
    border: none;
    display: block;
}

.game-description-section {
    padding: 80px 0;
}

.game-description {
    max-width: 800px;
    margin: 0 auto;
    padding: 50px;
    text-align: center;
}

.game-description h2 {
    font-size: 2rem;
    color: var(--aurora-cyan);
    margin-bottom: 30px;
    text-shadow: 0 0 20px var(--aurora-cyan);
}

.game-description p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.game-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid var(--glass-border);
    transition: all 0.3s ease;
}

.feature:hover {
    background: rgba(0, 255, 247, 0.1);
    border-color: var(--aurora-cyan);
    transform: translateY(-3px);
}

.feature-icon {
    font-size: 1.5rem;
    color: var(--runic-gold);
}

.feature span:last-child {
    color: var(--text-primary);
    font-weight: 500;
}

.game-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 60px 0;
    gap: 20px;
}

.nav-button {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: var(--glass-bg);
    border: 2px solid var(--aurora-cyan);
    color: var(--text-primary);
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: none;
    text-decoration: none;
    transition: all 0.3s ease;
}

.nav-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 255, 247, 0.3);
    border-color: var(--runic-gold);
}

.back-button {
    border-color: var(--runic-gold);
}

.back-button:hover {
    border-color: var(--aurora-cyan);
}

.button-icon {
    font-size: 1.2rem;
}

/* Contact Page */
.contact-page {
    padding-top: 100px;
    min-height: 100vh;
}

.page-header {
    text-align: center;
    padding: 60px 0;
}

.page-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    color: var(--text-primary);
    text-shadow: 0 0 30px var(--aurora-cyan);
    margin-bottom: 20px;
}

.page-subtitle {
    font-size: 1.3rem;
    color: var(--text-secondary);
    margin-bottom: 30px;
}

.contact-form-section {
    padding: 40px 0 80px;
}

.contact-form-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 50px;
    position: relative;
    border: 2px solid transparent;
    background: linear-gradient(var(--glass-bg), var(--glass-bg)) padding-box,
                linear-gradient(45deg, var(--aurora-cyan), var(--runic-gold)) border-box;
    animation: borderGlow 3s ease-in-out infinite;
}

.form-group {
    margin-bottom: 30px;
    position: relative;
}

.form-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.label-icon {
    font-size: 1.2rem;
    color: var(--runic-gold);
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid var(--glass-border);
    border-radius: 15px;
    color: var(--text-primary);
    font-size: 1rem;
    font-family: var(--font-primary);
    transition: all 0.3s ease;
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: var(--text-secondary);
    opacity: 0.7;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--aurora-cyan);
    background: rgba(0, 255, 247, 0.1);
    box-shadow: 0 0 20px rgba(0, 255, 247, 0.3);
    transform: translateY(-2px);
}

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

.submit-button {
    width: 100%;
    padding: 18px;
    background: linear-gradient(45deg, var(--aurora-cyan), var(--frozen-violet));
    border: none;
    border-radius: 25px;
    color: white;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: none;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.submit-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 255, 247, 0.4);
}

.button-text {
    position: relative;
    z-index: 2;
}

.button-icon {
    font-size: 1.3rem;
    transition: transform 0.3s ease;
}

.submit-button:hover .button-icon {
    transform: scale(1.2) rotate(15deg);
}

.contact-info-section {
    padding: 40px 0 80px;
}

.contact-info {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px;
    text-align: center;
}

.contact-info h2 {
    font-size: 2rem;
    color: var(--aurora-cyan);
    margin-bottom: 40px;
    text-shadow: 0 0 20px var(--aurora-cyan);
}

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

.contact-method {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.contact-method:hover {
    background: rgba(0, 255, 247, 0.1);
    border-color: var(--aurora-cyan);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 255, 247, 0.2);
}

.method-icon {
    font-size: 2rem;
    color: var(--runic-gold);
    animation: runicPulse 3s ease-in-out infinite;
}

.method-content {
    text-align: left;
}

.method-content h3 {
    color: var(--text-primary);
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.method-content p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Animation Keyframes */
@keyframes vaultRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

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

@keyframes textGlow {
    0%, 100% { 
        text-shadow: 0 0 5px var(--text-secondary);
    }
    50% { 
        text-shadow: 0 0 20px var(--aurora-cyan), 0 0 30px var(--aurora-cyan);
    }
}

@keyframes auroraFlow1 {
    0%, 100% { 
        transform: translateX(-50%) translateY(0px) rotate(0deg);
    }
    25% { 
        transform: translateX(-45%) translateY(-10px) rotate(1deg);
    }
    50% { 
        transform: translateX(-40%) translateY(0px) rotate(0deg);
    }
    75% { 
        transform: translateX(-45%) translateY(10px) rotate(-1deg);
    }
}

@keyframes auroraFlow2 {
    0%, 100% { 
        transform: translateX(-30%) translateY(0px) rotate(0deg);
    }
    33% { 
        transform: translateX(-25%) translateY(15px) rotate(-2deg);
    }
    66% { 
        transform: translateX(-35%) translateY(-15px) rotate(2deg);
    }
}

@keyframes auroraFlow3 {
    0% { 
        transform: translateX(-100%);
    }
    100% { 
        transform: translateX(100%);
    }
}

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

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes borderScan {
    0% { 
        background-position: -200% 0;
    }
    100% { 
        background-position: 200% 0;
    }
}

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

@keyframes rotateRune {
    0% { 
        transform: rotate(0deg);
    }
    100% { 
        transform: rotate(360deg);
    }
}

@keyframes starMove {
    0% { 
        transform: translateX(0px);
    }
    100% { 
        transform: translateX(-200px);
    }
}

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

@keyframes goldenGlow {
    0%, 100% { 
        opacity: 0.3;
    }
    50% { 
        opacity: 0.6;
    }
}

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

@keyframes runeFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.3;
    }
    25% {
        transform: translateY(-20px) rotate(90deg);
        opacity: 0.6;
    }
    50% {
        transform: translateY(-40px) rotate(180deg);
        opacity: 0.9;
    }
    75% {
        transform: translateY(-20px) rotate(270deg);
        opacity: 0.6;
    }
}

@keyframes borderGlow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(0, 255, 247, 0.3);
    }
    50% {
        box-shadow: 0 0 40px rgba(249, 204, 0, 0.5);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .nav-links {
        display: none;
    }
    
    .games-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .about-content {
        padding: 40px 30px;
    }
    
    .disclaimer-scroll {
        padding: 30px 20px;
    }
    
    .game-page {
        padding-top: 80px;
    }
    
    .game-title {
        font-size: 2.5rem;
    }
    
    .game-main-image {
        max-width: 300px;
    }
    
    .game-iframe {
        height: 400px;
    }
    
    .game-description {
        padding: 30px 20px;
    }
    
    .game-features {
        grid-template-columns: 1fr;
    }
    
    .game-navigation {
        flex-direction: column;
        gap: 15px;
    }
    
    .nav-button {
        width: 100%;
        justify-content: center;
    }
    
    .contact-form-container {
        padding: 30px 20px;
        margin: 0 15px;
    }
    
    .contact-info {
        padding: 30px 20px;
        margin: 0 15px;
    }
    
    .contact-methods {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contact-method {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .method-content {
        text-align: center;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .game-card {
        padding: 20px;
    }
    
    .about-content {
        padding: 30px 20px;
    }
    
    .game-title {
        font-size: 2rem;
    }
    
    .game-iframe {
        height: 300px;
    }
    
    .game-description h2 {
        font-size: 1.5rem;
    }
    
    .nav-button {
        padding: 12px 25px;
        font-size: 1rem;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .form-input,
    .form-textarea {
        padding: 12px 15px;
    }
    
    .submit-button {
        padding: 15px;
        font-size: 1.1rem;
    }
}

/* Hide default cursor on all interactive elements */
a, button, input, textarea, select {
    cursor: none !important;
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.001s !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001s !important;
    }
    
    .aurora-layer {
        animation: none;
    }
    
    .floating-runes {
        display: none;
    }
}