/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Space Grotesk', sans-serif;
    line-height: 1.6;
    color: #e8f4fd;
    background: #0a0a0f;
    min-height: 100vh;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

/* Cosmic Background */
.cosmic-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.stars {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(2px 2px at 20px 30px, #eee, transparent),
                radial-gradient(2px 2px at 40px 70px, rgba(255,255,255,0.8), transparent),
                radial-gradient(1px 1px at 90px 40px, #fff, transparent),
                radial-gradient(1px 1px at 130px 80px, rgba(255,255,255,0.6), transparent),
                radial-gradient(2px 2px at 160px 30px, #fff, transparent);
    background-repeat: repeat;
    background-size: 200px 100px;
    animation: twinkle 4s ease-in-out infinite alternate;
}

.nebula {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, 
        rgba(138, 43, 226, 0.1) 0%, 
        rgba(30, 144, 255, 0.1) 25%, 
        rgba(255, 20, 147, 0.1) 50%, 
        rgba(0, 191, 255, 0.1) 75%, 
        rgba(138, 43, 226, 0.1) 100%);
    animation: nebulaFlow 20s ease-in-out infinite;
}

.planets {
    position: absolute;
    top: 20%;
    right: 10%;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle at 30% 30%, #ff6b6b, #4ecdc4, #45b7d1);
    border-radius: 50%;
    animation: planetFloat 15s ease-in-out infinite;
    box-shadow: 0 0 50px rgba(255, 107, 107, 0.3);
}

@keyframes twinkle {
    0% { opacity: 0.3; }
    100% { opacity: 1; }
}

@keyframes nebulaFlow {
    0%, 100% { transform: translateX(0) rotate(0deg); }
    50% { transform: translateX(-20px) rotate(180deg); }
}

@keyframes planetFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

/* Header Styles */
.header {
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 2px solid #8a2be2;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 0 30px rgba(138, 43, 226, 0.3);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-icon {
    font-size: 2.5rem;
    animation: rocketPulse 2s ease-in-out infinite;
}

@keyframes rocketPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.logo-text h1 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(45deg, #8a2be2, #1e90ff, #ff1493);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(138, 43, 226, 0.5);
}

.tagline {
    color: #1e90ff;
    font-size: 0.9rem;
    margin-left: 5px;
    font-weight: 500;
}

/* Navigation */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-menu a {
    color: #e8f4fd;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 1rem;
    border-radius: 25px;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #8a2be2;
    background: rgba(138, 43, 226, 0.1);
    box-shadow: 0 0 20px rgba(138, 43, 226, 0.3);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(45deg, #8a2be2, #1e90ff);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 80%;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: linear-gradient(45deg, #8a2be2, #1e90ff);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Main Content */
.main {
    margin-top: 80px;
    position: relative;
    z-index: 2;
}

/* Hero Section */
.hero {
    padding: 6rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(138, 43, 226, 0.1) 0%, transparent 70%);
    z-index: -1;
}

.hero-badge {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: linear-gradient(45deg, #8a2be2, #1e90ff);
    color: #fff;
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 2rem;
    animation: badgeGlow 3s ease-in-out infinite;
}

@keyframes badgeGlow {
    0%, 100% { box-shadow: 0 0 20px rgba(138, 43, 226, 0.5); }
    50% { box-shadow: 0 0 40px rgba(30, 144, 255, 0.7); }
}

.hero-content h2 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, #8a2be2, #1e90ff, #ff1493, #00bfff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 50px rgba(138, 43, 226, 0.5);
    animation: titleGlow 4s ease-in-out infinite;
}

@keyframes titleGlow {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.2); }
}

.hero-subtitle {
    font-size: 1.4rem;
    color: #b8d4f0;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.cosmic-notices {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin: 3rem 0;
}

.cosmic-notice {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    background: rgba(138, 43, 226, 0.1);
    border: 2px solid rgba(138, 43, 226, 0.3);
    border-radius: 30px;
    font-weight: 600;
    color: #8a2be2;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.cosmic-notice:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(138, 43, 226, 0.3);
}

.notice-icon {
    font-size: 1.5rem;
}

.hero-cta {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-top: 3rem;
    flex-wrap: wrap;
}

/* Game Section */
.game-section {
    padding: 6rem 0;
    background: rgba(0, 0, 0, 0.3);
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h3 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #8a2be2, #1e90ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #b8d4f0;
    max-width: 600px;
    margin: 0 auto;
}

.game-container {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
}

.game-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 0 50px rgba(138, 43, 226, 0.4);
    border: 3px solid rgba(138, 43, 226, 0.3);
}

.game-frame {
    width: 100%;
    max-width: 900px;
    height: 600px;
    border: none;
    display: block;
}

/* Features Section */
.features {
    padding: 6rem 0;
    background: rgba(0, 0, 0, 0.2);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.feature-card {
    background: rgba(138, 43, 226, 0.05);
    padding: 3rem 2rem;
    border-radius: 20px;
    border: 2px solid rgba(138, 43, 226, 0.2);
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(138, 43, 226, 0.1), transparent);
    transition: left 0.5s ease;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(138, 43, 226, 0.3);
    border-color: rgba(138, 43, 226, 0.5);
}

.feature-icon {
    font-size: 4rem;
    margin-bottom: 2rem;
    animation: iconFloat 3s ease-in-out infinite;
}

@keyframes iconFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.feature-card h4 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #8a2be2;
}

.feature-card p {
    color: #b8d4f0;
    line-height: 1.8;
    font-size: 1.1rem;
}

/* Cosmic Info Section */
.cosmic-info {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.1) 0%, rgba(30, 144, 255, 0.1) 100%);
}

.info-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.info-content h3 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #8a2be2;
}

.info-content p {
    font-size: 1.2rem;
    color: #e8f4fd;
    line-height: 1.8;
    margin-bottom: 2rem;
}

/* Footer */
.footer {
    background: rgba(10, 10, 15, 0.95);
    border-top: 2px solid #8a2be2;
    padding: 4rem 0 2rem;
    backdrop-filter: blur(20px);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.footer-logo .logo-icon {
    font-size: 2rem;
}

.footer-section h4 {
    font-family: 'Rajdhani', sans-serif;
    color: #8a2be2;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section a {
    color: #b8d4f0;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 1.1rem;
}

.footer-section a:hover {
    color: #8a2be2;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(138, 43, 226, 0.3);
    color: #8a9ba8;
    font-size: 1rem;
}

/* Button Styles */
.btn-primary, .btn-secondary {
    padding: 1.2rem 2.5rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(45deg, #8a2be2, #1e90ff);
    color: #fff;
    box-shadow: 0 5px 20px rgba(138, 43, 226, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(138, 43, 226, 0.6);
}

.btn-secondary {
    background: transparent;
    color: #8a2be2;
    border: 2px solid #8a2be2;
}

.btn-secondary:hover {
    background: #8a2be2;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(138, 43, 226, 0.4);
}

/* Modal Styles */
.modal {
    display: flex;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
}

.modal-content {
    background: linear-gradient(135deg, #1a0a2e 0%, #16213e 100%);
    margin: auto;
    padding: 3rem;
    border: 3px solid #8a2be2;
    border-radius: 20px;
    width: 90%;
    max-width: 500px;
    text-align: center;
    box-shadow: 0 0 50px rgba(138, 43, 226, 0.5);
    position: relative;
    overflow: hidden;
}

.modal-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(138, 43, 226, 0.1), transparent);
    animation: modalShimmer 3s ease-in-out infinite;
}

@keyframes modalShimmer {
    0%, 100% { transform: translateX(-100%); }
    50% { transform: translateX(100%); }
}

.modal-header {
    margin-bottom: 1.5rem;
}

.cosmic-logo {
    font-size: 3rem;
    margin-bottom: 1rem;
    animation: cosmicSpin 4s linear infinite;
}

@keyframes cosmicSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.modal-content h2 {
    font-family: 'Rajdhani', sans-serif;
    color: #8a2be2;
    margin-bottom: 1rem;
    font-size: 2rem;
    font-weight: 700;
}

.modal-content p {
    color: #e8f4fd;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.modal-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-cosmic, .btn-void {
    padding: 1rem 2rem;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 150px;
}

.btn-cosmic {
    background: linear-gradient(45deg, #8a2be2, #1e90ff);
    color: #fff;
}

.btn-cosmic:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(138, 43, 226, 0.4);
}

.btn-void {
    background: transparent;
    color: #ff6b6b;
    border: 2px solid #ff6b6b;
}

.btn-void:hover {
    background: #ff6b6b;
    color: #fff;
    transform: translateY(-2px);
}

/* Play Page Styles */
.play-hero {
    padding: 8rem 0 6rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.play-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(138, 43, 226, 0.15) 0%, transparent 70%);
    z-index: -1;
}

.play-hero .hero-badge {
    background: linear-gradient(45deg, #8a2be2, #1e90ff, #ff1493);
    animation: badgeGlow 3s ease-in-out infinite;
}

.play-hero h2 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, #8a2be2, #1e90ff, #ff1493, #00bfff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 50px rgba(138, 43, 226, 0.5);
}

.play-subtitle {
    font-size: 1.3rem;
    color: #b8d4f0;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

.game-play-section {
    padding: 6rem 0;
    background: rgba(0, 0, 0, 0.3);
}

.game-instructions {
    margin-bottom: 4rem;
}

.game-instructions h3 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #8a2be2;
    font-weight: 700;
}

.instructions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
}

.instruction-item {
    text-align: center;
    padding: 2.5rem 2rem;
    background: rgba(138, 43, 226, 0.05);
    border-radius: 20px;
    border: 2px solid rgba(138, 43, 226, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.instruction-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(138, 43, 226, 0.1), transparent);
    transition: left 0.5s ease;
}

.instruction-item:hover::before {
    left: 100%;
}

.instruction-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(138, 43, 226, 0.3);
    border-color: rgba(138, 43, 226, 0.5);
}

.instruction-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    animation: iconFloat 3s ease-in-out infinite;
}

.instruction-item h4 {
    font-family: 'Rajdhani', sans-serif;
    color: #8a2be2;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 600;
}

.instruction-item p {
    color: #b8d4f0;
    font-size: 1.1rem;
    line-height: 1.7;
}

.game-info {
    margin-top: 4rem;
}

.game-info h3 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #8a2be2;
    font-weight: 700;
}

.info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

.info-card {
    background: rgba(138, 43, 226, 0.05);
    padding: 2.5rem;
    border-radius: 20px;
    border: 2px solid rgba(138, 43, 226, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(138, 43, 226, 0.2);
    border-color: rgba(138, 43, 226, 0.4);
}

.info-card h4 {
    font-family: 'Rajdhani', sans-serif;
    color: #8a2be2;
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
    font-weight: 600;
}

.info-card p {
    color: #b8d4f0;
    line-height: 1.8;
    font-size: 1.1rem;
}

.cosmic-safety {
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.1) 0%, rgba(138, 43, 226, 0.1) 100%);
    border-top: 3px solid #ff6b6b;
    border-bottom: 3px solid #ff6b6b;
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.cosmic-safety::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(255, 107, 107, 0.05) 0%, transparent 70%);
    z-index: -1;
}

.safety-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.safety-icon {
    font-size: 4rem;
    margin-bottom: 2rem;
    animation: safetyPulse 2s ease-in-out infinite;
}

@keyframes safetyPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.safety-content h3 {
    font-family: 'Rajdhani', sans-serif;
    color: #ff6b6b;
    margin-bottom: 2rem;
    font-size: 2rem;
    font-weight: 700;
}

.safety-content p {
    color: #e8f4fd;
    font-size: 1.2rem;
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto;
}

/* Legal Pages Styles */
.page-hero {
    padding: 8rem 0 6rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(138, 43, 226, 0.15) 0%, transparent 70%);
    z-index: -1;
}

.page-hero h2 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, #8a2be2, #1e90ff, #ff1493);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 50px rgba(138, 43, 226, 0.5);
}

.page-subtitle {
    font-size: 1.3rem;
    color: #b8d4f0;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

.content-section {
    padding: 6rem 0;
    background: rgba(0, 0, 0, 0.2);
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
}

.legal-content h3 {
    font-family: 'Rajdhani', sans-serif;
    color: #8a2be2;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 3rem 0 1.5rem;
    padding-bottom: 0.8rem;
    border-bottom: 3px solid rgba(138, 43, 226, 0.3);
    position: relative;
}

.legal-content h3::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(45deg, #8a2be2, #1e90ff);
}

.legal-content p {
    color: #e8f4fd;
    margin-bottom: 2rem;
    font-size: 1.2rem;
    line-height: 1.8;
}

.legal-content ul {
    margin: 1.5rem 0 2rem 2rem;
    color: #e8f4fd;
}

.legal-content li {
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
    line-height: 1.7;
}

.legal-content a {
    color: #8a2be2;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 600;
}

.legal-content a:hover {
    color: #1e90ff;
    text-shadow: 0 0 10px rgba(30, 144, 255, 0.5);
}

.warning-box {
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.1) 0%, rgba(138, 43, 226, 0.1) 100%);
    border: 3px solid #ff6b6b;
    border-radius: 20px;
    padding: 3rem;
    margin: 3rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.warning-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(255, 107, 107, 0.05), transparent);
    animation: warningShimmer 3s ease-in-out infinite;
}

@keyframes warningShimmer {
    0%, 100% { transform: translateX(-100%); }
    50% { transform: translateX(100%); }
}

.warning-box h3 {
    color: #ff6b6b;
    font-family: 'Rajdhani', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    border: none;
    padding: 0;
    position: relative;
    z-index: 2;
}

.warning-box p {
    color: #e8f4fd;
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0;
    position: relative;
    z-index: 2;
}

.privacy-highlights {
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.1) 0%, rgba(30, 144, 255, 0.1) 100%);
    border-radius: 25px;
    padding: 3rem;
    margin: 4rem 0;
    border: 2px solid rgba(138, 43, 226, 0.3);
    position: relative;
    overflow: hidden;
}

.privacy-highlights::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(138, 43, 226, 0.05) 0%, transparent 70%);
    z-index: -1;
}

.privacy-highlights h3 {
    text-align: center;
    color: #8a2be2;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    border: none;
    padding: 0;
    position: relative;
    z-index: 2;
}

.highlight-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
}

.highlight-item {
    text-align: center;
    padding: 2rem;
    background: rgba(138, 43, 226, 0.05);
    border-radius: 15px;
    border: 2px solid rgba(138, 43, 226, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.highlight-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(138, 43, 226, 0.1), transparent);
    transition: left 0.5s ease;
}

.highlight-item:hover::before {
    left: 100%;
}

.highlight-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(138, 43, 226, 0.3);
    border-color: rgba(138, 43, 226, 0.5);
}

.highlight-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    animation: iconFloat 3s ease-in-out infinite;
}

.highlight-item h4 {
    font-family: 'Rajdhani', sans-serif;
    color: #8a2be2;
    margin-bottom: 1rem;
    font-size: 1.4rem;
    font-weight: 600;
}

.highlight-item p {
    color: #b8d4f0;
    font-size: 1rem;
    margin: 0;
    line-height: 1.6;
}

.contact-section, .resources-section {
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.05) 0%, rgba(30, 144, 255, 0.05) 100%);
    padding: 3rem;
    border-radius: 20px;
    margin: 3rem 0;
    border: 2px solid rgba(138, 43, 226, 0.2);
    position: relative;
    overflow: hidden;
}

.contact-section::before, .resources-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(138, 43, 226, 0.03) 0%, transparent 70%);
    z-index: -1;
}

.contact-section h3, .resources-section h3 {
    color: #8a2be2;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    border: none;
    padding: 0;
    position: relative;
    z-index: 2;
}

.resources-section ul {
    margin: 1.5rem 0 0 2rem;
    position: relative;
    z-index: 2;
}

.resources-section li {
    margin-bottom: 0.8rem;
}

.last-updated {
    text-align: center;
    margin-top: 4rem;
    padding: 3rem;
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.1) 0%, rgba(30, 144, 255, 0.1) 100%);
    border-radius: 20px;
    border: 2px solid rgba(138, 43, 226, 0.3);
    position: relative;
    overflow: hidden;
}

.last-updated::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(138, 43, 226, 0.05) 0%, transparent 70%);
    z-index: -1;
}

.last-updated p {
    color: #b8d4f0;
    font-size: 1.1rem;
    margin: 0;
    position: relative;
    z-index: 2;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(10, 10, 15, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
        border-top: 2px solid #8a2be2;
        backdrop-filter: blur(20px);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 1rem 0;
    }
    
    .hero-content h2 {
        font-size: 2.5rem;
    }
    
    .cosmic-notices {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .game-frame {
        height: 400px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .modal-content {
        padding: 2rem;
        margin: 1rem;
    }
    
    .modal-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .hero-content h2 {
        font-size: 2rem;
    }
    
    .game-frame {
        height: 300px;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .logo-text h1 {
        font-size: 2rem;
    }
}