:root {
--bg-light: #f2f2f2;
--bg-dark: #0a0a0a;
--text-light: #1a1a1a;
--text-dark: #f5f5f5;
--primary: #14f195;
--secondary: #9945ff;
--accent: #ffffff0d;
}

html[data-theme='dark'] {
--bg: var(--bg-dark);
--text: var(--text-dark);
--roadmap-bg: var(--bg-dark);
--roadmap-text: var(--text-dark);
}

html[data-theme='light'] {
--bg: var(--bg-light);
--text: var(--text-light);
--roadmap-bg: var(--bg-light);
--roadmap-text: var(--text-light);
}

* {
box-sizing: border-box;
margin: 0;
padding: 0;
}

body {
background: var(--bg);
color: var(--text);
font-family: 'Inter', sans-serif;
transition: background 0.5s, color 0.5s;
}

header {
text-align: center;
padding: 5rem 2rem 2rem;
position: relative;
}

header h1 {
font-size: 3rem;
font-family: 'Orbitron', sans-serif;
background: linear-gradient(90deg, var(--secondary), var(--primary));
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
animation: pulse 3s infinite;
}

header p {
font-size: 1.2rem;
color: var(--primary);
margin-top: 1rem;
max-width: 600px;
margin-left: auto;
margin-right: auto;
}

.cta-button {
margin-top: 2rem;
background: linear-gradient(135deg, var(--primary), var(--secondary));
color: black;
padding: 1rem 2rem;
border-radius: 12px;
font-weight: bold;
font-size: 1.1rem;
text-decoration: none;
transition: transform 0.3s;
display: inline-block;
animation: bounce 2.5s infinite;
}

.cta-button:hover {
transform: scale(1.05) rotate(-1deg);
}

.theme-toggle {
position: absolute;
top: 1rem;
right: 1rem;
background: var(--secondary);
border: none;
color: white;
font-weight: bold;
border-radius: 20px;
padding: 0.5rem 1rem;
cursor: pointer;
transition: background 0.3s ease;
}

/* Cards section */
.cards {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 2rem;
padding: 4rem 2rem;
max-width: 1000px;
margin: auto;
}

.card {
background: var(--accent);
padding: 2rem;
border-radius: 20px;
backdrop-filter: blur(10px);
border: 1px solid #333;
text-align: center;
transition: transform 0.6s ease, box-shadow 0.6s ease;
box-shadow: 0 0 0 transparent;
will-change: transform, box-shadow;
}

.card:hover {
transform: translateY(-8px) scale(1.03);
box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
}

.card h3 {
font-size: 1.3rem;
margin-bottom: 1rem;
color: var(--primary);
}

.card p {
font-size: 0.95rem;
line-height: 1.5;
}

.phase-1 {
padding: 4rem 2rem;
text-align: center;
background: var(--bg-light);
/* Default light mode background */
color: var(--text-light);
/* Default text color for light mode */
transition: background 0.5s, color 0.5s;
/* Smooth transition for theme switch */
}

html[data-theme='dark'] .phase-1 {
background: var(--bg-dark);
/* Dark mode background */
color: var(--text-dark);
/* Dark mode text color */
}

.phase-1 h2 {
font-size: 2.5rem;
margin-bottom: 2rem;
color: var(--primary);
}

.phase-list {
list-style: none;
padding: 0;
margin: 0;
}

.phase-list li {

padding: 1rem;
border-radius: 10px;
font-size: 1.1rem;
text-align: center;
transition: transform 0.3s ease;
cursor: pointer;
margin-bottom: 1rem;
}

.phase-list li:hover {
transform: scale(1.05);
}

@media (max-width: 767px) {
.phase-list li {
    margin-bottom: 1.5rem;
    /* Adding extra space between items on smaller screens */
}
}

/* Footer section */
footer {
text-align: center;
font-size: 0.9rem;
padding: 2rem;
border-top: 1px solid #333;
}

/* Responsive logo */
.logo-container {
text-align: center;
margin-top: 2rem;
}

.logo {
max-width: 150px;
height: auto;
width: 100%;
}

.cta-section {
padding: 4rem 2rem;
background: var(--bg-light);
color: var(--text-light);
transition: background 0.5s, color 0.5s;
}

html[data-theme='dark'] .cta-section {
background: var(--bg-dark);
color: var(--text-dark);
}

.cta-section h2 {
font-size: 2.5rem;
color: var(--primary);
margin-bottom: 1rem;
}

.cta-section p {
font-size: 1.1rem;
margin-bottom: 2rem;
}

.cta-button {
background: linear-gradient(135deg, var(--primary), var(--secondary));
color: black;
padding: 1rem 2rem;
border-radius: 12px;
font-weight: bold;
font-size: 1.1rem;
text-decoration: none;
transition: transform 0.3s;
display: inline-block;
}

.cta-button:hover {
transform: scale(1.05) rotate(-1deg);
}

.investor-list {
max-width: 700px;
margin: 3rem auto;
background: var(--accent);
padding: 2rem;
border-radius: 12px;
color: var(--text);
font-size: 1rem;
}

.investor-item {
display: flex;
justify-content: space-between;
padding: 0.5rem 0;
border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.progress {
background: rgba(255, 255, 255, 0.1);
height: 20px;
border-radius: 10px;
overflow: hidden;
}

.progress-bar {
height: 100%;
background: linear-gradient(90deg, var(--primary), var(--secondary));
width: 0;
transition: width 1.2s ease-in-out;
}

html, body {
  overflow-x: hidden !important;
}