
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: Arial;
}

body {
background: #f5f5f5;
}

/* HEADER */
header {
position: fixed;
top: 0;
width: 100%;

padding: 18px 60px;

background: rgba(10,20,40,0.75);
backdrop-filter: blur(10px);

z-index: 1000;

color: white;

display: flex;
justify-content: space-between;
align-items: center;
}

.logo-section {
display: flex;
align-items: center;
gap: 15px;
}

.logo-section img {
height: 60px;
}

.logo-section p {
font-size: 12px;
letter-spacing: 2px;
color: #FFD700;
}

nav a {
color: white;
text-decoration: none;
margin: 0 15px;
font-weight: bold;
transition: 0.3s;
}

nav a:hover {
color: #ff7a00;
}

.header-buttons {
display: flex;
gap: 15px;
}

.login-btn,
.join-btn {
padding: 10px 20px;
border-radius: 8px;
text-decoration: none;
font-weight: bold;
}

.login-btn {
border: 1px solid white;
color: white;
}

.join-btn {
background: #ff7a00;
color: white;
}

/* HERO */
.hero {
height: 100vh;

background:
linear-gradient(rgba(7,18,40,0.85),
rgba(7,18,40,0.85)),
url('bg.jpg');

background-size: cover;
background-position: center;

color: white;

padding: 120px 80px;

position: relative;

 display: flex;
justify-content: space-between;
align-items: center;
}

.hero-left {
max-width: 650px;
z-index: 2;
}

.hero-badge {
display: inline-block;
padding: 10px 18px;
border-radius: 30px;
background: rgba(255,255,255,0.1);
border: 1px solid rgba(255,255,255,0.2);
font-size: 13px;
margin-bottom: 25px;
}

.hero h1 {
font-size: 78px;
line-height: 1.1;
margin-bottom: 25px;
}

.hero p {
font-size: 22px;
line-height: 1.8;
color: #d7d7d7;
margin-bottom: 30px;
}

.hero-buttons button {
padding: 16px 28px;
margin-right: 15px;
border-radius: 10px;
border: none;
font-size: 16px;
font-weight: bold;
cursor: pointer;
transition: 0.3s;
}

.primary-btn {
background: white;
color: #071228;
}

.secondary-btn {
background: transparent;
color: white;
border: 1px solid rgba(255,255,255,0.3) !important;
}

.primary-btn:hover,
.secondary-btn:hover {
transform: translateY(-3px);
}

.hero-stats {
display: flex;
gap: 30px;
margin-top: 40px;
}

.stat-box h2 {
font-size: 38px;
}

.stat-box p {
font-size: 14px;
}

/* RIGHT GLASS CARD */
.glass-card {
width: 380px;
padding: 30px;

background: rgba(255,255,255,0.08);
backdrop-filter: blur(12px);

border: 1px solid rgba(255,255,255,0.15);

border-radius: 25px;

box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}

.glass-card h3 {
margin-bottom: 25px;
letter-spacing: 1px;
}

.track-card {
background: rgba(255,255,255,0.08);

padding: 18px;

border-radius: 14px;

margin-bottom: 18px;

cursor: pointer;

transition: 0.3s;

 display: flex;
justify-content: space-between;
align-items: center;
}

.track-card:hover {
background: #ff7a00;
transform: translateX(5px);
}

.track-card p {
font-size: 13px;
margin-top: 5px;
}

/* FEATURES */
.features {
padding: 90px 40px;
text-align: center;
}

.features h2 {
font-size: 40px;
margin-bottom: 50px;
color: #071228;
}

.feature-grid {
display: grid;
grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
gap: 30px;
}

.feature-card {
background: white;
padding: 35px;
border-radius: 20px;
box-shadow: 0 5px 20px rgba(0,0,0,0.1);
transition: 0.3s;
}

.feature-card:hover {
transform: translateY(-8px);
}

.feature-card i {
font-size: 45px;
color: #ff7a00;
margin-bottom: 20px;
}

.feature-card h3 {
margin-bottom: 15px;
}

/* CONTACT */
.contact-section {
padding: 90px 20px;
background: #ff7a00;
text-align: center;
}

.contact-section h2 {
color: white;
margin-bottom: 30px;
font-size: 38px;
}

.contact-box {
background: white;
max-width: 450px;
margin: auto;
padding: 35px;
border-radius: 20px;
}

.contact-item {
display: flex;
align-items: center;
gap: 15px;
margin: 18px 0;
font-size: 18px;
font-weight: bold;
color: #071228;
}

.contact-item a {
color: #071228;
text-decoration: none;
}

/* FOOTER */
.footer {
background: #071228;
color: white;
padding: 50px 20px;
}

.footer-container {
display: flex;
justify-content: space-between;
flex-wrap: wrap;
gap: 40px;
max-width: 1200px;
margin: auto;
}

.footer-col {
flex: 1;
min-width: 220px;
}

.footer-col h3 {
margin-bottom: 20px;
}

.footer-col a {
display: block;
color: white;
text-decoration: none;
margin: 10px 0;
}

.footer hr {
margin: 30px 0;
border: 1px solid rgba(255,255,255,0.15);
}

.copyright {
text-align: center;
}

/* FLOAT BUTTON */
.whatsapp-float {
position: fixed;
right: 20px;
bottom: 20px;

background: #25D366;
color: white;

padding: 16px;

border-radius: 50%;

font-size: 24px;

z-index: 1000;
}

/* MOBILE */
@media (max-width: 900px) {

header {
padding: 20px;
flex-direction: column;
gap: 15px;
}

.hero {
height: auto;
flex-direction: column;
padding: 160px 20px 60px;
text-align: center;
}

.hero h1 {
font-size: 50px;
}

.hero-stats {
justify-content: center;
flex-wrap: wrap;
}

.glass-card {
margin-top: 40px;
width: 100%;
}

.footer-container {
flex-direction: column;
text-align: center;
}

.contact-item {
justify-content: center;
}

}
/* DASHBOARD SECTION */

.dashboard-section {

padding: 150px 50px;

min-height: 100vh;

background: #f5f5f5;

text-align: center;

}

.dashboard-section h1 {

font-size: 50px;

color: #071228;

margin-bottom: 20px;

}

.dashboard-section p {

font-size: 20px;

color: #555;

margin-bottom: 50px;

}

/* GRID */

.dashboard-grid {

display: grid;

grid-template-columns: repeat(auto-fit,minmax(250px,1fr));

gap: 30px;

}

/* CARDS */

.dashboard-card {

background: white;

padding: 40px 20px;

border-radius: 20px;

box-shadow: 0 8px 20px rgba(0,0,0,0.1);

transition: 0.3s;

}

.dashboard-card:hover {

transform: translateY(-8px);

}

/* ICONS */

.dashboard-card i {

font-size: 50px;

color: #ff7a00;

margin-bottom: 20px;

}

.dashboard-card h3 {

font-size: 24px;

margin-bottom: 10px;

}
/* LOGIN PAGE */

.login-box {

width: 380px;

background: white;

padding: 40px;

border-radius: 20px;

box-shadow: 0 10px 30px rgba(0,0,0,0.15);

position: absolute;

top: 55%;

left: 50%;

transform: translate(-50%, -50%);

text-align: center;

z-index: 10;

}

.login-box h2 {

font-size: 38px;

margin-bottom: 25px;

color: #071228;

}

/* INPUTS */

.login-box input {

width: 100%;

padding: 15px;

margin: 12px 0;

border-radius: 10px;

border: 1px solid #ccc;

font-size: 16px;

}

/* BUTTON */

.login-box button {

width: 100%;

padding: 15px;

background: #ff7a00;

color: white;

border: none;

border-radius: 10px;

font-size: 18px;

font-weight: bold;

cursor: pointer;

transition: 0.3s;

}

.login-box button:hover {

background: #e66d00;

}

