- Neon Puzzle: Fixed angle normalization, visual feedback for aligned connections - Rhythm Beat: Complete 4-lane system with key indicators and timing-based scoring - Cosmic Arena: Added particle explosion effects - Crystal Tetris: Fixed duplicate shape, proper game over, drop speed scaling, 120 FPS with requestAnimationFrame - Aurora Jumper: Reachable platform placement based on jump physics, proper respawn system
1063 lines
20 KiB
CSS
1063 lines
20 KiB
CSS
:root {
|
|
--bg-dark: #050b14;
|
|
--trae-green: #00ff66;
|
|
--aurora-cyan: #00f2ff;
|
|
--aurora-purple: #7000ff;
|
|
--text-primary: #e0e0e0;
|
|
--text-dim: #a0a0a0;
|
|
--glass-bg: rgba(255, 255, 255, 0.05);
|
|
--glass-border: rgba(255, 255, 255, 0.1);
|
|
--font-main: 'Space Grotesk', sans-serif;
|
|
--font-accent: 'Orbitron', sans-serif;
|
|
}
|
|
|
|
* {
|
|
margin: 0;
|
|
padding: 0;
|
|
box-sizing: border-box;
|
|
scroll-behavior: smooth;
|
|
}
|
|
|
|
body {
|
|
background-color: var(--bg-dark);
|
|
color: var(--text-primary);
|
|
font-family: var(--font-main);
|
|
overflow-x: hidden;
|
|
}
|
|
|
|
#bgCanvas {
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
z-index: -1;
|
|
}
|
|
|
|
.app-container {
|
|
max-width: 1200px;
|
|
margin: 0 auto;
|
|
padding: 0 20px;
|
|
width: 100%;
|
|
}
|
|
|
|
@media (max-width: 768px) {
|
|
.app-container {
|
|
padding: 0 5px;
|
|
max-width: 100%;
|
|
min-height: 100vh;
|
|
}
|
|
|
|
.glass-nav {
|
|
padding: 10px 15px;
|
|
margin-top: 5px;
|
|
border-radius: 20px;
|
|
}
|
|
|
|
.logo {
|
|
font-size: 1.2rem;
|
|
}
|
|
|
|
.nav-links {
|
|
gap: 12px;
|
|
}
|
|
|
|
.nav-links a {
|
|
font-size: 0.85rem;
|
|
}
|
|
|
|
.game-container {
|
|
height: 60vh;
|
|
min-height: 400px;
|
|
margin-top: 20px;
|
|
border-radius: 15px;
|
|
}
|
|
|
|
.game-timer {
|
|
width: 60px;
|
|
height: 60px;
|
|
top: 10px;
|
|
right: 10px;
|
|
}
|
|
|
|
#timerDisplay {
|
|
font-size: 1.2rem;
|
|
}
|
|
|
|
.time-btn {
|
|
padding: 6px 15px;
|
|
font-size: 0.8rem;
|
|
}
|
|
|
|
.time-selector {
|
|
flex-wrap: wrap;
|
|
gap: 8px;
|
|
}
|
|
|
|
.selector-label {
|
|
width: 100%;
|
|
text-align: center;
|
|
margin-bottom: 8px;
|
|
}
|
|
|
|
.selector-label {
|
|
font-size: 0.8rem;
|
|
}
|
|
|
|
.leader-item {
|
|
font-size: 0.85rem;
|
|
padding: 8px 10px;
|
|
}
|
|
|
|
.leader-date, .leader-duration {
|
|
font-size: 0.7rem;
|
|
}
|
|
|
|
.section-card {
|
|
margin: 50px 0;
|
|
padding: 30px 15px;
|
|
}
|
|
|
|
.section-card h2 {
|
|
font-size: 1.8rem;
|
|
}
|
|
|
|
.forge-input-group {
|
|
flex-direction: column;
|
|
padding: 0 10px;
|
|
}
|
|
|
|
.forge-input-group input {
|
|
width: 100%;
|
|
}
|
|
|
|
.message-cloud {
|
|
max-height: 200px;
|
|
padding: 20px;
|
|
}
|
|
|
|
.cloud-msg {
|
|
font-size: 0.8rem;
|
|
padding: 6px 12px;
|
|
}
|
|
|
|
.game-container {
|
|
min-height: 400px;
|
|
}
|
|
|
|
.export-buttons {
|
|
flex-direction: column;
|
|
}
|
|
}
|
|
|
|
/* Glassmorphism Utility */
|
|
.glass {
|
|
background: var(--glass-bg);
|
|
backdrop-filter: blur(12px);
|
|
-webkit-backdrop-filter: blur(12px);
|
|
border: 1px solid var(--glass-border);
|
|
border-radius: 20px;
|
|
}
|
|
|
|
/* Navigation */
|
|
.glass-nav {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
padding: 20px 40px;
|
|
margin-top: 20px;
|
|
background: var(--glass-bg);
|
|
backdrop-filter: blur(10px);
|
|
border: 1px solid var(--glass-border);
|
|
border-radius: 50px;
|
|
position: sticky;
|
|
top: 20px;
|
|
z-index: 100;
|
|
}
|
|
|
|
.logo {
|
|
font-family: var(--font-accent);
|
|
font-weight: 700;
|
|
font-size: 1.5rem;
|
|
letter-spacing: 2px;
|
|
}
|
|
|
|
.logo span {
|
|
color: var(--trae-green);
|
|
text-shadow: 0 0 10px var(--trae-green);
|
|
}
|
|
|
|
.nav-links {
|
|
display: flex;
|
|
list-style: none;
|
|
gap: 30px;
|
|
}
|
|
|
|
.nav-links a {
|
|
color: var(--text-primary);
|
|
text-decoration: none;
|
|
font-weight: 500;
|
|
transition: color 0.3s;
|
|
}
|
|
|
|
.nav-links a:hover {
|
|
color: var(--trae-green);
|
|
}
|
|
|
|
/* Play Banner */
|
|
.play-banner {
|
|
display: block;
|
|
margin: 40px auto;
|
|
max-width: 800px;
|
|
text-decoration: none;
|
|
position: relative;
|
|
transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
|
|
z-index: 10;
|
|
}
|
|
|
|
.banner-inner {
|
|
background: rgba(0, 255, 102, 0.05);
|
|
backdrop-filter: blur(15px);
|
|
border: 2px solid rgba(0, 255, 102, 0.3);
|
|
border-radius: 24px;
|
|
padding: 40px 60px;
|
|
text-align: center;
|
|
position: relative;
|
|
overflow: hidden;
|
|
box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5),
|
|
inset 0 0 30px rgba(0, 255, 102, 0.1);
|
|
}
|
|
|
|
.play-banner:hover {
|
|
transform: scale(1.02) translateY(-5px);
|
|
}
|
|
|
|
.banner-tag {
|
|
background: var(--trae-green);
|
|
color: var(--bg-dark);
|
|
font-family: var(--font-accent);
|
|
font-weight: 700;
|
|
font-size: 0.8rem;
|
|
padding: 6px 16px;
|
|
border-radius: 50px;
|
|
display: inline-block;
|
|
margin-bottom: 20px;
|
|
letter-spacing: 2px;
|
|
box-shadow: 0 0 20px var(--trae-green);
|
|
}
|
|
|
|
.banner-title {
|
|
font-family: var(--font-accent);
|
|
font-size: 3rem;
|
|
color: white;
|
|
margin-bottom: 10px;
|
|
text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
|
|
}
|
|
|
|
.banner-subtitle {
|
|
color: var(--trae-green);
|
|
font-size: 1.2rem;
|
|
font-weight: 500;
|
|
opacity: 0.9;
|
|
}
|
|
|
|
.banner-glow {
|
|
position: absolute;
|
|
top: -50%;
|
|
left: -50%;
|
|
width: 200%;
|
|
height: 200%;
|
|
background: radial-gradient(circle, rgba(0, 255, 102, 0.1) 0%, transparent 70%);
|
|
pointer-events: none;
|
|
animation: rotateGlow 10s linear infinite;
|
|
}
|
|
|
|
@keyframes rotateGlow {
|
|
from { transform: rotate(0deg); }
|
|
to { transform: rotate(360deg); }
|
|
}
|
|
|
|
.play-banner:hover .banner-inner {
|
|
border-color: var(--trae-green);
|
|
background: rgba(0, 255, 102, 0.1);
|
|
box-shadow: 0 30px 60px rgba(0, 255, 102, 0.2),
|
|
inset 0 0 40px rgba(0, 255, 102, 0.2);
|
|
}
|
|
|
|
/* Hero Section */
|
|
.hero {
|
|
height: 100vh;
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
align-items: center;
|
|
text-align: center;
|
|
padding: 80px 20px 20px;
|
|
min-height: 600px;
|
|
}
|
|
|
|
.glitch-text {
|
|
font-family: var(--font-accent);
|
|
font-size: 5rem;
|
|
font-weight: 700;
|
|
position: relative;
|
|
color: white;
|
|
margin-bottom: 10px;
|
|
}
|
|
|
|
.glitch-text::before,
|
|
.glitch-text::after {
|
|
content: attr(data-text);
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
opacity: 0.8;
|
|
}
|
|
|
|
.glitch-text::before {
|
|
color: var(--trae-green);
|
|
z-index: -1;
|
|
animation: glitch 3s infinite;
|
|
}
|
|
|
|
.glitch-text::after {
|
|
color: var(--aurora-cyan);
|
|
z-index: -2;
|
|
animation: glitch 2s infinite reverse;
|
|
}
|
|
|
|
@keyframes glitch {
|
|
0% { transform: translate(0); }
|
|
20% { transform: translate(-2px, 2px); }
|
|
40% { transform: translate(-2px, -2px); }
|
|
60% { transform: translate(2px, 2px); }
|
|
80% { transform: translate(2px, -2px); }
|
|
100% { transform: translate(0); }
|
|
}
|
|
|
|
.subtitle {
|
|
font-size: 1.2rem;
|
|
color: var(--text-dim);
|
|
margin-bottom: 40px;
|
|
}
|
|
|
|
/* Countdown */
|
|
.countdown-container {
|
|
display: flex;
|
|
gap: 20px;
|
|
margin-bottom: 40px;
|
|
}
|
|
|
|
.time-block {
|
|
background: var(--glass-bg);
|
|
padding: 20px;
|
|
border-radius: 15px;
|
|
min-width: 100px;
|
|
border: 1px solid var(--glass-border);
|
|
}
|
|
|
|
.time-block span {
|
|
display: block;
|
|
font-size: 2.5rem;
|
|
font-family: var(--font-accent);
|
|
color: var(--trae-green);
|
|
}
|
|
|
|
.time-block label {
|
|
font-size: 0.8rem;
|
|
text-transform: uppercase;
|
|
letter-spacing: 1px;
|
|
color: var(--text-dim);
|
|
}
|
|
|
|
/* iPhone-style App Icons */
|
|
.app-icons {
|
|
display: flex;
|
|
gap: 25px;
|
|
margin: 40px 0;
|
|
flex-wrap: wrap;
|
|
justify-content: center;
|
|
}
|
|
|
|
.app-icon {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
cursor: pointer;
|
|
transition: transform 0.3s ease, opacity 0.3s ease;
|
|
}
|
|
|
|
.app-icon:hover {
|
|
transform: scale(1.1);
|
|
}
|
|
|
|
.app-icon:hover .app-icon-inner {
|
|
box-shadow: 0 20px 40px rgba(0, 242, 255, 0.3),
|
|
inset 0 0 30px rgba(0, 242, 255, 0.2);
|
|
}
|
|
|
|
.app-icon-inner {
|
|
width: 80px;
|
|
height: 80px;
|
|
border-radius: 18px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
font-size: 40px;
|
|
margin-bottom: 10px;
|
|
transition: all 0.3s ease;
|
|
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
|
|
}
|
|
|
|
.gift-icon {
|
|
background: linear-gradient(135deg, #00ff66, #00cc44);
|
|
}
|
|
|
|
.traoom-icon {
|
|
background: linear-gradient(135deg, #7000ff, #4a00e0);
|
|
}
|
|
|
|
.forge-icon {
|
|
background: linear-gradient(135deg, #00f2ff, #0099cc);
|
|
}
|
|
|
|
.app-icon-emoji {
|
|
filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
|
|
}
|
|
|
|
/* Neon Puzzle Game Styles */
|
|
.neonpuzzle-icon {
|
|
background: linear-gradient(135deg, #ff0066, #ff6600);
|
|
}
|
|
|
|
.neonpuzzle-container {
|
|
position: relative;
|
|
width: 100%;
|
|
height: 500px;
|
|
background: rgba(0, 0, 0, 0.5);
|
|
border-radius: 20px;
|
|
overflow: hidden;
|
|
margin-top: 40px;
|
|
max-width: 100%;
|
|
border: 2px solid #ff0066;
|
|
}
|
|
|
|
#neonpuzzleCanvas {
|
|
width: 100%;
|
|
height: 100%;
|
|
display: block;
|
|
touch-action: none;
|
|
}
|
|
|
|
.neonpuzzle-stats {
|
|
position: absolute;
|
|
top: 20px;
|
|
left: 20px;
|
|
display: flex;
|
|
gap: 20px;
|
|
z-index: 10;
|
|
}
|
|
|
|
.neonpuzzle-stat {
|
|
background: var(--glass-bg);
|
|
border: 1px solid var(--glass-border);
|
|
padding: 10px 20px;
|
|
border-radius: 20px;
|
|
font-family: var(--font-accent);
|
|
font-size: 1rem;
|
|
color: #ff6600;
|
|
}
|
|
|
|
.neonpuzzle-stat span {
|
|
color: #ff0066;
|
|
font-weight: bold;
|
|
}
|
|
|
|
/* Rhythm Beat Game Styles */
|
|
.rhythm-icon {
|
|
background: linear-gradient(135deg, #ffcc00, #ff9900);
|
|
}
|
|
|
|
.rhythm-container {
|
|
position: relative;
|
|
width: 100%;
|
|
height: 500px;
|
|
background: rgba(0, 0, 0, 0.5);
|
|
border-radius: 20px;
|
|
overflow: hidden;
|
|
margin-top: 40px;
|
|
max-width: 100%;
|
|
border: 2px solid #ffcc00;
|
|
}
|
|
|
|
#rhythmCanvas {
|
|
width: 100%;
|
|
height: 100%;
|
|
display: block;
|
|
touch-action: none;
|
|
}
|
|
|
|
.rhythm-stats {
|
|
position: absolute;
|
|
top: 20px;
|
|
left: 20px;
|
|
display: flex;
|
|
gap: 20px;
|
|
z-index: 10;
|
|
}
|
|
|
|
.rhythm-stat {
|
|
background: var(--glass-bg);
|
|
border: 1px solid var(--glass-border);
|
|
padding: 10px 20px;
|
|
border-radius: 20px;
|
|
font-family: var(--font-accent);
|
|
font-size: 1rem;
|
|
color: #ff9900;
|
|
}
|
|
|
|
.rhythm-stat span {
|
|
color: #ffcc00;
|
|
font-weight: bold;
|
|
}
|
|
|
|
/* Cosmic Arena Game Styles */
|
|
.arena-icon {
|
|
background: linear-gradient(135deg, #00ffcc, #0066ff);
|
|
}
|
|
|
|
.tetris-icon {
|
|
background: linear-gradient(135deg, #ff00ff, #ff0066);
|
|
}
|
|
|
|
.platformer-icon {
|
|
background: linear-gradient(135deg, #00ff00, #00cc00);
|
|
}
|
|
|
|
.arena-container {
|
|
position: relative;
|
|
width: 100%;
|
|
height: 500px;
|
|
background: rgba(0, 0, 0, 0.5);
|
|
border-radius: 20px;
|
|
overflow: hidden;
|
|
margin-top: 40px;
|
|
max-width: 100%;
|
|
border: 2px solid #00ffcc;
|
|
}
|
|
|
|
#arenaCanvas {
|
|
width: 100%;
|
|
height: 100%;
|
|
display: block;
|
|
touch-action: none;
|
|
}
|
|
|
|
.arena-stats {
|
|
position: absolute;
|
|
top: 20px;
|
|
left: 20px;
|
|
display: flex;
|
|
gap: 20px;
|
|
z-index: 10;
|
|
}
|
|
|
|
.arena-stat {
|
|
background: var(--glass-bg);
|
|
border: 1px solid var(--glass-border);
|
|
padding: 10px 20px;
|
|
border-radius: 20px;
|
|
font-family: var(--font-accent);
|
|
font-size: 1rem;
|
|
color: #0066ff;
|
|
}
|
|
|
|
.arena-stat span {
|
|
color: #00ffcc;
|
|
font-weight: bold;
|
|
}
|
|
|
|
/* Tetris Game Styles */
|
|
.tetris-container {
|
|
position: relative;
|
|
width: 100%;
|
|
height: 500px;
|
|
background: rgba(0, 0, 0, 0.5);
|
|
border-radius: 20px;
|
|
overflow: hidden;
|
|
margin-top: 40px;
|
|
max-width: 100%;
|
|
border: 2px solid #ff00ff;
|
|
}
|
|
|
|
#tetrisCanvas {
|
|
width: 100%;
|
|
height: 100%;
|
|
display: block;
|
|
touch-action: none;
|
|
}
|
|
|
|
/* Platformer Game Styles */
|
|
.platformer-container {
|
|
position: relative;
|
|
width: 100%;
|
|
height: 500px;
|
|
background: rgba(0, 0, 0, 0.5);
|
|
border-radius: 20px;
|
|
overflow: hidden;
|
|
margin-top: 40px;
|
|
max-width: 100%;
|
|
border: 2px solid #00ff00;
|
|
}
|
|
|
|
#platformerCanvas {
|
|
width: 100%;
|
|
height: 100%;
|
|
display: block;
|
|
touch-action: none;
|
|
}
|
|
|
|
.app-label {
|
|
font-size: 0.85rem;
|
|
color: var(--text-primary);
|
|
font-weight: 500;
|
|
letter-spacing: 0.5px;
|
|
}
|
|
|
|
/* Buttons */
|
|
.btn-primary, .btn-secondary {
|
|
padding: 15px 35px;
|
|
font-family: var(--font-accent);
|
|
font-size: 1rem;
|
|
border-radius: 30px;
|
|
cursor: pointer;
|
|
transition: all 0.3s;
|
|
border: none;
|
|
text-transform: uppercase;
|
|
font-weight: 600;
|
|
}
|
|
|
|
.btn-primary {
|
|
background: var(--trae-green);
|
|
color: var(--bg-dark);
|
|
box-shadow: 0 0 20px rgba(0, 255, 102, 0.4);
|
|
}
|
|
|
|
.btn-primary:hover {
|
|
transform: translateY(-3px);
|
|
box-shadow: 0 0 30px rgba(0, 255, 102, 0.6);
|
|
}
|
|
|
|
.btn-secondary {
|
|
background: transparent;
|
|
color: white;
|
|
border: 1px solid var(--glass-border);
|
|
margin-left: 15px;
|
|
}
|
|
|
|
.btn-secondary:hover {
|
|
background: var(--glass-bg);
|
|
}
|
|
|
|
/* Section Styling */
|
|
.section-card {
|
|
margin: 100px 0;
|
|
padding: 60px;
|
|
text-align: center;
|
|
}
|
|
|
|
.section-card h2 {
|
|
font-family: var(--font-accent);
|
|
font-size: 2.5rem;
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
/* Forge Section */
|
|
.forge-input-group {
|
|
display: flex;
|
|
gap: 10px;
|
|
max-width: 600px;
|
|
margin: 40px auto;
|
|
}
|
|
|
|
.forge-input-group input {
|
|
flex: 1;
|
|
background: rgba(255, 255, 255, 0.05);
|
|
border: 1px solid var(--glass-border);
|
|
padding: 15px 25px;
|
|
border-radius: 30px;
|
|
color: white;
|
|
font-family: var(--font-main);
|
|
}
|
|
|
|
.crystal-display {
|
|
margin-top: 40px;
|
|
min-height: 200px;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
}
|
|
|
|
#outputMessage {
|
|
font-size: 1.5rem;
|
|
color: var(--trae-green);
|
|
margin-bottom: 20px;
|
|
font-family: var(--font-accent);
|
|
}
|
|
|
|
/* Game Section */
|
|
.game-container {
|
|
position: relative;
|
|
width: 100%;
|
|
height: 400px;
|
|
background: rgba(0, 0, 0, 0.3);
|
|
border-radius: 20px;
|
|
overflow: hidden;
|
|
margin-top: 40px;
|
|
max-width: 100%;
|
|
}
|
|
|
|
#gameCanvas {
|
|
width: 100%;
|
|
height: 100%;
|
|
touch-action: none;
|
|
-webkit-touch-callout: none;
|
|
-webkit-user-select: none;
|
|
user-select: none;
|
|
display: block;
|
|
}
|
|
|
|
.game-timer {
|
|
position: absolute;
|
|
top: 20px;
|
|
right: 20px;
|
|
background: var(--glass-bg);
|
|
border: 1px solid var(--glass-border);
|
|
border-radius: 50%;
|
|
width: 80px;
|
|
height: 80px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
z-index: 10;
|
|
box-shadow: 0 0 30px rgba(0, 255, 102, 0.3);
|
|
animation: pulse 1s infinite;
|
|
}
|
|
|
|
#timerDisplay {
|
|
font-family: var(--font-accent);
|
|
font-size: 1.5rem;
|
|
font-weight: 700;
|
|
color: var(--trae-green);
|
|
}
|
|
|
|
#timerDisplay.warning {
|
|
color: #ff3366;
|
|
animation: pulse 0.5s infinite;
|
|
}
|
|
|
|
#gameUI {
|
|
position: absolute;
|
|
top: 50%;
|
|
left: 50%;
|
|
transform: translate(-50%, -50%);
|
|
z-index: 10;
|
|
text-align: center;
|
|
}
|
|
|
|
.score {
|
|
font-family: var(--font-accent);
|
|
font-size: 1.5rem;
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
/* Message Cloud */
|
|
.message-cloud {
|
|
margin-top: 40px;
|
|
padding: 30px;
|
|
max-height: 250px;
|
|
overflow-y: auto;
|
|
}
|
|
|
|
.message-cloud h3 {
|
|
font-family: var(--font-accent);
|
|
font-size: 1.2rem;
|
|
margin-bottom: 20px;
|
|
color: var(--trae-green);
|
|
}
|
|
|
|
#cloudContainer {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
gap: 10px;
|
|
justify-content: center;
|
|
}
|
|
|
|
.cloud-msg {
|
|
background: rgba(0, 255, 102, 0.1);
|
|
padding: 8px 16px;
|
|
border-radius: 20px;
|
|
font-size: 0.9rem;
|
|
animation: fadeIn 0.5s ease;
|
|
border: 1px solid rgba(0, 255, 102, 0.2);
|
|
}
|
|
|
|
/* Game Over Overlay */
|
|
.game-overlay {
|
|
position: absolute;
|
|
top: 50%;
|
|
left: 50%;
|
|
transform: translate(-50%, -50%);
|
|
background: rgba(5, 11, 20, 0.9);
|
|
padding: 40px;
|
|
border-radius: 20px;
|
|
border: 2px solid var(--trae-green);
|
|
z-index: 100;
|
|
text-align: center;
|
|
backdrop-filter: blur(10px);
|
|
}
|
|
|
|
.game-overlay.hidden {
|
|
display: none;
|
|
}
|
|
|
|
.game-overlay h3 {
|
|
font-family: var(--font-accent);
|
|
font-size: 2rem;
|
|
margin-bottom: 20px;
|
|
color: #ff3366;
|
|
}
|
|
|
|
.input-group {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 15px;
|
|
}
|
|
|
|
.input-group input {
|
|
background: rgba(255, 255, 255, 0.1);
|
|
border: 1px solid var(--glass-border);
|
|
padding: 12px 20px;
|
|
border-radius: 10px;
|
|
color: white;
|
|
text-align: center;
|
|
}
|
|
|
|
.time-selector {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
gap: 10px;
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
.selector-label {
|
|
font-family: var(--font-accent);
|
|
font-size: 0.9rem;
|
|
color: var(--trae-green);
|
|
}
|
|
|
|
.time-btn {
|
|
background: rgba(0, 255, 102, 0.1);
|
|
border: 1px solid var(--trae-green);
|
|
color: var(--trae-green);
|
|
padding: 8px 20px;
|
|
border-radius: 20px;
|
|
font-family: var(--font-accent);
|
|
font-size: 0.9rem;
|
|
cursor: pointer;
|
|
transition: all 0.3s ease;
|
|
}
|
|
|
|
.time-btn:hover {
|
|
background: rgba(0, 255, 102, 0.2);
|
|
box-shadow: 0 0 15px rgba(0, 255, 102, 0.3);
|
|
}
|
|
|
|
.time-btn.active {
|
|
background: var(--trae-green);
|
|
color: black;
|
|
box-shadow: 0 0 20px rgba(0, 255, 102, 0.5);
|
|
}
|
|
|
|
.export-buttons {
|
|
display: flex;
|
|
gap: 10px;
|
|
margin-top: 20px;
|
|
justify-content: center;
|
|
}
|
|
|
|
.export-btn {
|
|
background: rgba(0, 242, 255, 0.1);
|
|
border: 1px solid var(--aurora-cyan);
|
|
color: var(--aurora-cyan);
|
|
padding: 10px 20px;
|
|
border-radius: 10px;
|
|
font-family: var(--font-accent);
|
|
font-size: 0.85rem;
|
|
cursor: pointer;
|
|
transition: all 0.3s ease;
|
|
}
|
|
|
|
.export-btn:hover {
|
|
background: rgba(0, 242, 255, 0.2);
|
|
box-shadow: 0 0 15px rgba(0, 242, 255, 0.3);
|
|
}
|
|
|
|
/* Leaderboard */
|
|
.leaderboard {
|
|
margin-top: 40px;
|
|
padding: 30px;
|
|
text-align: left;
|
|
}
|
|
|
|
.leaderboard h3 {
|
|
font-family: var(--font-accent);
|
|
text-align: center;
|
|
margin-bottom: 20px;
|
|
color: var(--aurora-cyan);
|
|
}
|
|
|
|
.leader-item {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
padding: 10px 20px;
|
|
border-bottom: 1px solid var(--glass-border);
|
|
font-family: var(--font-accent);
|
|
}
|
|
|
|
.leader-item:last-child {
|
|
border: none;
|
|
}
|
|
|
|
.leader-rank { color: var(--trae-green); }
|
|
.leader-name { flex: 1; margin-left: 20px; }
|
|
.leader-score { color: var(--aurora-cyan); }
|
|
.leader-duration { color: #ff9900; font-size: 0.85rem; margin-left: 10px; }
|
|
.leader-date { color: #888; font-size: 0.8rem; margin-left: 10px; }
|
|
|
|
@keyframes fadeIn {
|
|
from { opacity: 0; transform: scale(0.9); }
|
|
to { opacity: 1; transform: scale(1); }
|
|
}
|
|
|
|
/* Footer Links */
|
|
footer {
|
|
text-align: center;
|
|
padding: 60px 40px;
|
|
margin-top: 100px;
|
|
border-top: 1px solid var(--glass-border);
|
|
background: rgba(0, 0, 0, 0.2);
|
|
}
|
|
|
|
footer p {
|
|
font-family: var(--font-accent);
|
|
letter-spacing: 1px;
|
|
margin-bottom: 10px;
|
|
}
|
|
|
|
footer span, .glm-link, .author-link, .gemini-link {
|
|
color: var(--trae-green);
|
|
text-shadow: 0 0 10px rgba(0, 255, 102, 0.5);
|
|
text-decoration: none;
|
|
transition: all 0.3s ease;
|
|
}
|
|
|
|
.glm-link:hover, .author-link:hover, .gemini-link:hover {
|
|
color: white;
|
|
text-shadow: 0 0 20px var(--trae-green);
|
|
}
|
|
|
|
.copyright {
|
|
font-size: 0.8rem;
|
|
color: var(--text-dim);
|
|
font-family: var(--font-main);
|
|
}
|
|
|
|
/* Traoom Game Styles */
|
|
.traoom-container {
|
|
position: relative;
|
|
width: 100%;
|
|
height: 500px;
|
|
background: rgba(0, 0, 0, 0.5);
|
|
border-radius: 20px;
|
|
overflow: hidden;
|
|
margin-top: 40px;
|
|
max-width: 100%;
|
|
border: 2px solid var(--aurora-purple);
|
|
}
|
|
|
|
#traoomCanvas {
|
|
width: 100%;
|
|
height: 100%;
|
|
display: block;
|
|
touch-action: none;
|
|
}
|
|
|
|
.traoom-stats {
|
|
position: absolute;
|
|
top: 20px;
|
|
left: 20px;
|
|
display: flex;
|
|
gap: 20px;
|
|
z-index: 10;
|
|
}
|
|
|
|
.traoom-stat {
|
|
background: var(--glass-bg);
|
|
border: 1px solid var(--glass-border);
|
|
padding: 10px 20px;
|
|
border-radius: 20px;
|
|
font-family: var(--font-accent);
|
|
font-size: 1rem;
|
|
color: var(--aurora-cyan);
|
|
}
|
|
|
|
.traoom-stat span {
|
|
color: var(--trae-green);
|
|
font-weight: bold;
|
|
}
|
|
|
|
.traoom-controls {
|
|
margin-top: 20px;
|
|
padding: 15px;
|
|
background: var(--glass-bg);
|
|
border-radius: 15px;
|
|
border: 1px solid var(--glass-border);
|
|
}
|
|
|
|
.traoom-controls p {
|
|
font-size: 0.9rem;
|
|
color: var(--text-dim);
|
|
}
|
|
|
|
@media (max-width: 768px) {
|
|
.glitch-text { font-size: 3rem; }
|
|
.countdown-container { flex-wrap: wrap; justify-content: center; }
|
|
.forge-input-group { flex-direction: column; }
|
|
.btn-secondary { margin-left: 0; margin-top: 15px; }
|
|
|
|
.traoom-container {
|
|
height: 60vh;
|
|
min-height: 400px;
|
|
}
|
|
|
|
.traoom-stats {
|
|
flex-direction: column;
|
|
gap: 8px;
|
|
left: 10px;
|
|
top: 10px;
|
|
}
|
|
|
|
.traoom-stat {
|
|
padding: 6px 12px;
|
|
font-size: 0.85rem;
|
|
}
|
|
|
|
.traoom-controls p {
|
|
font-size: 0.8rem;
|
|
}
|
|
}
|