/* v2 Redesign Custom Styles */

:root {
    --bg-dark: #050505;
    --text-primary: #ffffff;
    --text-secondary: #a0a0a0;
    --accent-primary: #00baff;
    --accent-secondary: #7b2cbf;
    --gradient-main: linear-gradient(135deg, #00baff 0%, #7b2cbf 100%);
    --gradient-text: linear-gradient(90deg, #00d2ff 0%, #3a7bd5 50%, #00d2ff 100%);
}

body {
    background-color: var(--bg-dark);
    color: var(--text-primary);
    font-family: 'Inter', sans-serif; /* Ensure a clean font is used if available, otherwise falls back */
}

/* Hero Section Overrides */
.section.overflow-hidden {
    background-color: transparent !important; /* Override inline style */
    position: relative;
    overflow: hidden;
}

/* Background Effects */
.v2-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: radial-gradient(circle at 50% 50%, rgba(123, 44, 191, 0.15) 0%, rgba(5, 5, 5, 0) 70%);
}

.v2-hero-glow {
    position: absolute;
    top: -20%;
    left: 50%;
    transform: translateX(-50%);
    width: 80vw;
    height: 80vw;
    background: radial-gradient(circle, rgba(0, 186, 255, 0.1) 0%, rgba(0, 0, 0, 0) 70%);
    filter: blur(60px);
    pointer-events: none;
}

/* Typography */
.title-mega {
    font-size: 5rem;
    line-height: 1.1;
    font-weight: 900;
    letter-spacing: -0.04em;
    text-transform: uppercase;
    margin-bottom: 0.5em;
}

@media (max-width: 991px) {
    .title-mega {
        font-size: 3.5rem;
    }
}

@media (max-width: 479px) {
    .title-mega {
        font-size: 2.5rem;
    }
}

.text-gradient-animated {
    background: linear-gradient(to right, #4facfe 0%, #00f2fe 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% auto;
    animation: shine 3s linear infinite;
}

@keyframes shine {
    to {
        background-position: 200% center;
    }
}

.subtitle-v2 {
    font-size: 1.5rem;
    color: var(--text-secondary);
    font-weight: 400;
    max-width: 700px;
    margin: 0 auto 2rem;
    line-height: 1.6;
}

/* Buttons */
.button-v2 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.button-v2-primary {
    background: var(--gradient-main);
    color: white;
    box-shadow: 0 0 20px rgba(0, 186, 255, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.button-v2-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(0, 186, 255, 0.6);
}

.button-v2-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: white;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.button-v2-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

/* Cards & Sections */
.card-v2 {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 2rem;
    transition: transform 0.3s ease;
}

.card-v2:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
}

/* Navigation overrides */
.navigation {
    background-color: rgba(20, 28, 55, 0.8) !important;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-link {
    color: var(--text-secondary) !important;
}

.nav-link:hover {
    color: var(--text-primary) !important;
}

/* Feature Section v2 */
.section-v2-features {
    background: linear-gradient(180deg, #ffffff 0%, #050505 15%, #050505 100%);
    padding-top: 8rem;
    padding-bottom: 8rem;
    position: relative;
    color: var(--text-primary);
}

.title-mega-feature {
    font-size: 4rem;
    line-height: 1.1;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 3rem;
    text-align: center;
    background: linear-gradient(to right, #fff 20%, #a0a0a0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.feature-card-v2 {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 2.5rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    overflow: hidden;
}

.feature-card-v2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(0, 186, 255, 0.1), transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-card-v2:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(0, 186, 255, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.feature-card-v2:hover::before {
    opacity: 1;
}

.feature-title-v2 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(90deg, #00baff, #7b2cbf);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.feature-desc-v2 {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.circle-xl-v2 {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Shared Footer Styles */
.footer-grid-4-col {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 40px;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-link-list-new {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.copyright {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 991px) {
    .footer-grid-4-col {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 767px) {
    .footer-grid-4-col {
        grid-template-columns: 1fr;
    }
}

/* Animated Gradient Text */
.animated-gradient-text {
  background: linear-gradient(90deg, #00baff, #00d1ff, #3898ec, #00baff);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation: gradient-animation 4s ease infinite;
}

@keyframes gradient-animation {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* Color Utilities */
.indigo {
  color: #5e6ad2; /* Indigo color matching the brand */
}
