

:root {
  --color-background: #0d0d0d;      
  --color-header-bg: linear-gradient(180deg, #0a0a0a, #1a1a1a);
  --color-main-bg: #1a1a1a;
  --color-panel-bg: #222;
  --color-footer-bg: #0a0a0a;

  --color-text: #c0c0c0;            
  --color-text-light: #999;         
  --color-text-muted: #aaa;         
  --color-border: #333;             
  
  --color-btn-bg: #c0c0c0;          
  --color-btn-bg-hover: #8a8a8a;    
  --color-btn-text: #0d0d0d;
  --color-btn-shadow: rgba(74, 73, 73, 0.5);
  --color-btn-shadow-hover: rgba(192, 192, 192, 0.7);
}





body {
  margin: 0;
  font-family: 'Arial', sans-serif;
  background-color: var(--color-background);
  color: var(--color-text);
  line-height: 1.6;
}


header {
  text-align: center;
  padding: 60px 20px;
  background: var(--color-header-bg);
  border-bottom: 2px solid var(--color-border);
}

.studio-name {
  font-size: 3em;
  letter-spacing: 3px;
  color: var(--color-text);
  text-transform: uppercase;
  margin: 0;
}

.tagline {
  font-size: 1.3rem;
  margin-top: 1rem;
  color: var(--color-text-light);
  opacity: 0;
  animation: fadeIn 2s ease-out forwards;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}


nav {
  text-align: center;
  background-color: var(--color-main-bg);
  padding: 15px;
  border-bottom: 1px solid var(--color-border);
}

nav a {
  color: var(--color-text);
  margin: 0 15px;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s;
}

nav a:hover {
  color: var(--color-text-light);
}


main {
  max-width: 1000px;
  margin: 40px auto;
  padding: 20px;
  background-color: var(--color-main-bg);
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0,0,0,0.6);
}

.section {
  margin-bottom: 40px;
}

h2 {
  color: var(--color-text);
  border-bottom: 1px solid var(--color-border);
  padding-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}


.projects {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.project-card {
  background-color: var(--color-panel-bg);
  border-radius: 8px;
  padding: 2px 20px 20px 20px; /* top right bottom left */
  width: 280px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.project-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 15px var(--color-btn-shadow);
}

.project-card h3 {
  color: var(--color-text);
  margin-bottom: 10px;
}

.project-card p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  gap: 2px;
  margin-top: 3px;
  margin-bottom: 10px;
}

.Clean-Line{
  border: none;
  border-bottom: 2px solid var(--color-border);
  width: 100%;        
  margin: 10px 0;    
  opacity: 0.7;     
}
.Invis-Clean-Line{
  border: none;
  border-bottom: 2px solid var(--color-border);
  width: 100%;        
  margin: 10px 0;    
  opacity: 0.0;     
}

/* Buttons */
.game-btn {
  display: inline-block;
  padding: 2px 4px;
  font-size: 0.7rem;
  font-weight: bold;
  color: var(--color-btn-text);
  background: var(--color-btn-bg);
  border: 2px solid var(--color-text);
  border-radius: 6px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  margin-top: 5px;
}

.join-btn {
  display: inline-block;
  padding: 2px 4px;
  font-size: 0.7rem;
  font-weight: bold;
  color: var(--color-btn-text);
  background: var(--color-btn-bg);
  border: 2px solid var(--color-text);
  border-radius: 6px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  margin-top: 5px;
}

.game-btn:hover {
  background: var(--color-btn-bg-hover);
}

.game-btn:active {
  box-shadow: 0 0 8px var(--color-btn-shadow);
}


footer {
  text-align: center;
  padding: 20px;
  border-top: 1px solid var(--color-border);
  background-color: var(--color-footer-bg);
  color: var(--color-text-light);
  font-size: 0.9rem;
}

footer span {
  color: var(--color-text);
  font-weight: bold;
}



.buttons {
  margin-top: auto;     
  display: flex;         
  gap: 5px;                
  justify-content: center; 
  flex-direction: column;
}

/*TIME LINE-----------------------------------------------------------------------  */


.status {
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  opacity: 0.9;
}

.roadmap-section {
  position: relative;
  padding: 4rem 2rem;
  background: #0a0a0a;
  color: #eaeaea;
  overflow: hidden;
}

.roadmap-section h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 0.5rem;
  letter-spacing: 1px;
}

.roadmap-section .intro {
  text-align: center;
  opacity: 0.7;
  margin-bottom: 3rem;
  font-style: italic;
}

.timeline {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}

.timeline-line {
  position: absolute;
  left: 50%;
  top: 0;
  width: 2px;
  height: 100%;
  background: linear-gradient(180deg, rgba(255,255,255,0.1), rgba(255,255,255,0.5), rgba(255,255,255,0.1));
  transform: translateX(-50%);
  box-shadow: 0 0 20px rgba(255,255,255,0.2);
  animation: pulseGlow 4s infinite ease-in-out;
}

@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 8px rgba(255,255,255,0.2); }
  50% { box-shadow: 0 0 20px rgba(255,255,255,0.4); }
}

.timeline-entry {
  position: relative;
  margin: 3rem 0;
  width: 50%;
  padding-left: 3rem;
}

.timeline-entry.right {
  left: 50%;
}

.timeline-entry::before {
  content: "";
  position: absolute;
  top: 1rem;
  left: -10px;
  width: 20px;
  height: 20px;
  background: radial-gradient(circle, #ffffff 20%, transparent 70%);
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(255,255,255,0.3);
  animation: flicker 3s infinite ease-in-out;
}

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

.timeline-entry .content {
  background: rgba(255,255,255,0.05);
  padding: 1.2rem 1.5rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(255,255,255,0.1);
  transition: transform 0.3s ease, background 0.3s ease;
}

.timeline-entry .content:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,0.08);
}

.timeline-entry h3 {
  margin-bottom: 0.4rem;
  font-size: 1.2rem;
  letter-spacing: 0.5px;
  color: #fff;
}

.timeline-entry p {
  margin-bottom: 0.3rem;
  opacity: 0.8;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .timeline-entry,
  .timeline-entry.right {
    width: 100%;
    left: 0;
    padding-left: 2rem;
  }

  .timeline-line {
    left: 1rem;
  }
}
