:root {
    --bg-dark: #0a0b10;
    --card-dark: #16181f;
    --accent-pink: #f093fb;
    --accent-orange: #f5576c;
    --accent-blue: #00c6ff;
    --text-gray: #a0a0a0;
}

:root {
    --md-sys-color-primary: #FF6B35;
    --md-sys-color-on-primary: #FFFFFF;
    --md-sys-color-primary-container: #FF8F65;
    --md-sys-color-secondary: #00D4FF;
    --md-sys-color-on-secondary: #001A23;
    --md-sys-color-secondary-container: #33E0FF;
    --md-sys-color-tertiary: #7C4DFF;
    --md-sys-color-surface: #0D1117;
    --md-sys-color-surface-variant: #1C2128;
    --md-sys-color-on-surface: #F0F6FC;
    --md-sys-color-outline: #30363D;
    --md-sys-color-error: #F85149;
    --ff-orange: #FF6B35;
    --ff-blue: #00D4FF;
    --ff-purple: #6f01fd;
    --gaming-green: #39FF14;
    --warning-yellow: #FFD700;
    --elevation-1: 0 1px 3px rgba(255, 107, 53, 0.12);
    --elevation-2: 0 2px 6px rgba(255, 107, 53, 0.16);
    --elevation-3: 0 4px 12px rgba(255, 107, 53, 0.2);
    --elevation-4: 0 8px 24px rgba(255, 107, 53, 0.24);
}

body {
    background-color: var(--bg-dark);
    color: #ffffff;
    font-family: 'Orbitron', monospace;
    overflow-x: hidden;
}

a{
    text-decoration: none;
}

.hero-section {
    position: relative;
    overflow: hidden;
    padding-bottom: 100px;
    padding-top: 30px;
    background: radial-gradient(circle at 10% 20%, rgba(121, 40, 202, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(0, 198, 255, 0.1) 0%, transparent 40%);
}

.navbar {
    border-bottom: 1px solid #3c3c3c;
}

.navbar-brand span {
    font-family: "Orbitron", sans-serif;
    font-size: 1.5rem;
    color: #FF6B35;
    padding-left: 5px;
}
.counter {
    display: inline-block;
    min-width: 40px;
    font-variant-numeric: tabular-nums;
}
.navbar-brand img {
    height: 50px;
    border-radius: 10px;
}
.nav-link {
	color: white !important;
	font-weight: 700;
	font-size: 20px;
}
.hero-section .container {
    position: relative;
    z-index: 9;
}

.hero-title {
    font-family: "Orbitron", sans-serif;
    font-size: 5rem;
    font-weight: 800;
    background: linear-gradient(to right, #fff, #888);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;

    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 900;
    background: linear-gradient(45deg, #fff, #00D4FF, var(--ff-purple));
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 4s ease-in-out infinite;
    text-shadow: 0 0 30px rgba(248, 204, 188, 0.5);
    margin-bottom: 1rem;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23FF6B35" stroke-width="0.5" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.06;
    animation: gridMove 20s linear infinite;
}

.hero-section h2 {
	font-size: 45px;
	color: #6f01fd;
}
.hero-section .btn {
    font-size: 25px;
}

.hero-section p {
    font-size: 20px;
    max-width: 600px;
    margin: 0 auto;
    color: #fff;
}


.btn-grad {
    background: linear-gradient(45deg, var(--accent-pink) 0%, var(--accent-orange) 100%);
    border: none;
    color: white;
    padding: 12px 50px;
    border-radius: 50px;
    font-weight: 600;
    transition: 0.3s;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 0 15px rgba(255, 107, 53, 0.4);
    overflow: hidden;
    position: relative;
}

.btn-grad:hover {
    color: white;
    opacity: 0.9;
}



.btn-grad::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(45deg, var(--ff-blue), var(--ff-purple));
	transition: left 0.4s ease;
}
.btn-grad:hover::before {
    left: 0;
}

.btn-grad:hover {
    box-shadow: var(--elevation-4), 0 0 30px rgba(255, 107, 53, 0.6);
}

.btn-grad span, .btn-grad i {
    position: relative;
    z-index: 1;
}






.btn-outline-custom:hover {
    color: #fff;
}

.btn-outline-custom {
    border: 1px solid var(--accent-blue);
    color: var(--accent-blue);
    padding: 12px 50px;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
}

#counter {
    background: linear-gradient(135deg, var(--md-sys-color-surface-variant) 0%, rgba(124, 77, 255, 0.1) 100%);
    padding: 4rem 0;
}


.stat-box {
	text-align: center;
	padding: 2rem;
	background: rgba(255, 255, 255, 0.05);
	border-radius: 16px;
	border: 1px solid var(--md-sys-color-outline);
	backdrop-filter: blur(10px);
	transition: all 0.3s ease;
	min-height: 240px;
	align-content: center;
}

.stat-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--elevation-3);
}

.stat-number {
    font-family: "Orbitron", sans-serif;
    background: linear-gradient(45deg, var(--ff-purple), var(--ff-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 3rem;
    font-weight: 700;
}

.stat-label {
    color: var(--text-gray);
    font-size: 1.1rem;
}


#all-features {
    padding-top: 50px;
    padding-bottom: 50px;
}

#all-features h2 {
    font-size: 3rem;
    color: var(--ff-purple);
    margin-bottom: 1rem;
   font-weight: bold;
}

.sub-title {
    font-size: 1.25rem;
    font-weight: 300;
    color: #fff;
    opacity: 0.8;
}

#all-features {}

#all-features {}

.text-white-80 {
    opacity: 0.8;
}

.text-white-90 {
    opacity: 0.9;
}

#all-features .feature-card {
    background: linear-gradient(145deg, var(--md-sys-color-surface-variant), rgba(111, 1, 253, 0.05));
    border: 1px solid var(--md-sys-color-outline);
    border-radius: 24px;
    padding: 2rem;
    margin-bottom: 2rem;
    backdrop-filter: blur(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: var(--elevation-2);
    text-align: center;
}

#all-features .feature-card:hover {
    box-shadow: var(--elevation-4);
    border-color: var(--ff-purple);
}

#all-features .feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(111, 1, 253, 0.2), transparent);
    transition: left 0.6s;
}

#all-features .feature-card:hover::before {
    left: 100%;
}



#all-features i {
    font-size: 3rem;
    color: var(--ff-purple);
    margin-bottom: 1rem;
    display: block;
    animation: iconPulse 3s ease-in-out infinite;
}

#all-features h4 {
    color: var(--ff-purple);
    font-weight: 600;
    margin-bottom: 1rem;
}

#all-features .feature-icon {
    font-size: 3rem;
    color: var(--ff-purple);
    margin-bottom: 1rem;
    display: block;
    animation: iconPulse 3s ease-in-out infinite;
}






.download-banner {
    background: linear-gradient(90deg, #30cfd0 0%, #330867 100%);
    padding: 60px;
    text-align: center;
    margin: 50px 0;
}

.download-banner h2 {
    font-size: 3rem;
}

.support-card {
    max-width: 650px;
    margin: 0 auto;
    background: #111319;
    border-radius: 25px;
    padding: 40px;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.2);
    border: 1px solid #22c55e33;
}

.btn-whatsapp {
    background: #25d366;
    color: white;
    border-radius: 50px;
    padding: 12px 40px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
}

footer {
    border-top: 1px solid #1e2129;
    padding: 40px 0;
    background: #08090d;
}

.video-container {
	margin: 0 auto;
	border: 8px solid #1e2129;
	border-radius: 40px;
	overflow: hidden;
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
	width: 100%;
	max-width: 300px;
	border-radius: 12px;
	border: 2px solid #6906ee;
	box-shadow: 0 0 15px rgba(105, 6, 238, 0.5);
	background: #000;
	margin-bottom: 100px;
	cursor: pointer;
}

.logo {
    width: 120px;
    animation: floatRotate 3s ease-in-out infinite;
    border-radius: 25px;
}

.navbar-toggler i {
	color: #6f01fd;
	font-size: 24px;
	border: 2px solid #6f01fd;
	padding: 9px 11px;
	border-radius: 7px;
}
.navbar-toggler:focus {
	text-decoration: none;
	outline: 0;
	box-shadow: 0 0 0 0;
}






#contact h2 {
    color: #6f01fd;
    font-size: 45px;
}

#contact .item h3 {
  font-size: 18px;
  font-weight: 600;
}

#contact .support-card {
    transition: all linear .3s;
    padding-top: 50px;
}

#contact .support-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(255, 107, 53, 0.24);
    border-color: #6f01fd;
}

#contact .col-12:last-child .item {
    border-bottom: 0;
}

#contact .col-12 .item p {
    margin-bottom: 0;
}
#contact .item {
    border-bottom: 1px solid #4a4a4a;
    padding-bottom: 20px;
}

#contact .item i {
    color: #6f01fd;
    width: 40px;
    font-size: 25px;
}

.btn-whatsapp {
    background: linear-gradient(45deg, #25D366, #128C7E);
    border: none;
    color: white;
    font-weight: 600;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--elevation-2), 0 0 20px rgba(37, 211, 102, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-whatsapp::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #128C7E, #075E54);
    transition: left 0.4s ease;
}

.btn-whatsapp:hover::before {
    left: 0;
}

.btn-whatsapp:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: var(--elevation-4), 0 0 30px rgba(37, 211, 102, 0.5);
    color: #fff;
}

.btn-whatsapp span,
.btn-whatsapp i {
    position: relative;
    z-index: 1;
}






.footer-logo {
    align-items: center;
    margin-bottom: 15px;
}
.footer-logo img {
    max-width: 40px;
    border-radius: 8px;
    width: 100%;
    margin-right: 15px;
}







@keyframes floatRotate {
    0% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-25px) rotate(5deg);
    }

    100% {
        transform: translateY(0px) rotate(0deg);
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .download-banner {
        padding: 30px;
    }
}