:root {
    /* Core Colors */
    --background: hsl(220, 26%, 5%);
    --foreground: hsl(210, 40%, 98%);
    --card: hsl(220, 23%, 8%);
    --card-foreground: hsl(210, 40%, 98%);
    --primary: hsl(195, 100%, 65%);
    --primary-foreground: hsl(220, 26%, 5%);
    --secondary: hsl(220, 14%, 16%);
    --secondary-foreground: hsl(210, 40%, 98%);
    --muted: hsl(220, 14%, 16%);
    --muted-foreground: hsl(215, 20.2%, 65.1%);
    --accent: hsl(195, 100%, 65%);
    --accent-foreground: hsl(220, 26%, 5%);
    --border: hsl(220, 14%, 16%);
    
    /* Electric Blue Colors */
    --electric-blue: hsl(195, 100%, 65%);
    --electric-cyan: hsl(180, 100%, 70%);
    --dark-navy: hsl(220, 26%, 5%);
    --medium-navy: hsl(220, 23%, 8%);
    --light-navy: hsl(220, 14%, 16%);
    
    /* Gradients */
    --gradient-electric: linear-gradient(135deg, var(--electric-blue), var(--electric-cyan));
    --gradient-power: linear-gradient(180deg, var(--dark-navy) 0%, var(--medium-navy) 100%);
    --gradient-mesh: 
        radial-gradient(circle at 20% 80%, hsla(195, 100%, 65%, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, hsla(180, 100%, 70%, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, hsla(195, 100%, 65%, 0.2) 0%, transparent 50%);
    
    /* Shadows & Effects */
    --shadow-electric: 0 0 40px hsla(195, 100%, 65%, 0.3);
    --shadow-soft: 0 10px 30px -10px hsla(0, 0%, 0%, 0.3);
    --shadow-grid: 0 0 20px hsla(195, 100%, 65%, 0.5);
    
    /* Animation */
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    
    /* Typography */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    background-color: var(--background);
    color: var(--foreground);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 2rem;
    }
}

/* Utility Classes */
.gradient-electric {
    background: var(--gradient-electric);
}

.gradient-power {
    background: var(--gradient-power);
}

.gradient-mesh {
    background: var(--gradient-mesh);
}

.shadow-electric {
    box-shadow: var(--shadow-electric);
}

.shadow-soft {
    box-shadow: var(--shadow-soft);
}

.transition-smooth {
    transition: var(--transition-smooth);
}

.transition-bounce {
    transition: var(--transition-bounce);
}

.title-gradient {
    background: var(--gradient-electric);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

/* Grid Pattern */
.grid-pattern {
    background-image: 
        linear-gradient(hsla(195, 100%, 65%, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, hsla(195, 100%, 65%, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
}

/* Animations */
@keyframes energyPulse {
    0%, 100% { 
        opacity: 0.6; 
        transform: scale(1); 
    }
    50% { 
        opacity: 1; 
        transform: scale(1.05); 
    }
}

@keyframes dataFlow {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100vw); }
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

@keyframes bounce {
    0%, 20%, 53%, 80%, 100% {
        animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        transform: translate3d(0,0,0);
    }
    40%, 43% {
        animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
        transform: translate3d(0, -30px, 0);
    }
    70% {
        animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
        transform: translate3d(0, -15px, 0);
    }
    90% {
        transform: translate3d(0,-4px,0);
    }
}

.energy-pulse {
    animation: energyPulse 3s ease-in-out infinite;
}

.data-flow {
    animation: dataFlow 20s linear infinite;
}

.float-animation {
    animation: float 6s ease-in-out infinite;
}

/* Button Styles */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    background: var(--gradient-electric);
    color: white;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: var(--transition-bounce);
    box-shadow: var(--shadow-electric);
    /* margin-left:100px; */
}

.btn-primary:hover {
    transform: scale(1.05);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    border-radius: 0.5rem;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--primary-foreground);
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background: hsla(220, 26%, 5%, 0.8);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 4rem;
}

@media (min-width: 1024px) {
    .header-content {
        height: 5rem;
    }
}

.logo {
    display: flex;
    align-items: center;
    height: 100%;
}

.logo-img {
    height: 2.5rem;
    width: auto;
    object-fit: contain;
    filter: invert();
}

@media (min-width: 1024px) {
    .logo-img {
        height: 3rem;
    }
}

.desktop-nav {
    display: none;
    align-items: center;
    gap: 0.25rem;
}

@media (min-width: 1024px) {
    .desktop-nav {
        display: flex;
    }
}

.nav-link {
    padding: 0.5rem 1rem;
    color: var(--muted-foreground);
    text-decoration: none;
    border-radius: 0.375rem;
    transition: var(--transition-smooth);
}

.nav-link:hover {
    color: var(--foreground);
    background-color: hsla(220, 14%, 16%, 0.5);
}

.mobile-menu-btn {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 2.5rem;
    height: 2.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    gap: 0.25rem;
}

@media (min-width: 1024px) {
    .mobile-menu-btn {
        display: none;
    }
}

.hamburger {
    width: 1.5rem;
    height: 2px;
    background: var(--foreground);
    transition: var(--transition-smooth);
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out;
}

@media (min-width: 1024px) {
    .mobile-nav {
        display: none;
    }
}

.mobile-nav.active {
    max-height: 500px;
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.mobile-nav-link {
    padding: 0.75rem 1rem;
    color: var(--muted-foreground);
    text-decoration: none;
    border-radius: 0.375rem;
    transition: var(--transition-smooth);
}

.mobile-nav-link:hover {
    color: var(--foreground);
    background-color: hsla(220, 14%, 16%, 0.5);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('image/bg.png');
    background-size: cover;
    background-position: center;
    opacity: 0.3;
}

.hero-mesh {
    position: absolute;
    inset: 0;
    background: var(--gradient-mesh);
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(hsla(195, 100%, 65%, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, hsla(195, 100%, 65%, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.2;
}

.energy-element {
    position: absolute;
    border-radius: 50%;
    background: var(--primary);
    box-shadow: var(--shadow-electric);
    animation: energyPulse 3s ease-in-out infinite;
}

.energy-1 {
    top: 5rem;
    left: 2.5rem;
    width: 1rem;
    height: 1rem;
}

.energy-2 {
    top: 33%;
    right: 5rem;
    width: 1.5rem;
    height: 1.5rem;
    animation-delay: 1s;
}

.energy-3 {
    bottom: 25%;
    left: 25%;
    width: 0.75rem;
    height: 0.75rem;
    animation-delay: 2s;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 64rem;
}

.hero-text {
    margin-bottom: 2rem;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .hero-title {
        font-size: 3rem;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 7.5rem;
    }
}

.title-line {
    color: var(--foreground);
}

.hero-description {
    font-size: 1.25rem;
    color: var(--muted-foreground);
    max-width: 43rem;
    line-height: 1.5;
    text-align: center;
}

@media (min-width: 1024px) {
    .hero-description {
        font-size: 1.5rem;
    }
}

.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.stat {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.stat-icon {
    width: 3rem;
    height: 3rem;
    background: var(--secondary);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--foreground);
}

.stat-label {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.hero-ctas {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (min-width: 640px) {
    .hero-ctas {
        flex-direction: row;
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    width: 1.5rem;
    height: 2.5rem;
    border: 2px solid var(--primary);
    border-radius: 1.25rem;
    display: flex;
    justify-content: center;
    padding-top: 0.5rem;
}

.scroll-line {
    width: 0.25rem;
    height: 0.75rem;
    background: var(--primary);
    border-radius: 0.125rem;
    animation: bounce 2s infinite;
}

/* About Section */
.about {
    position: relative;
    padding: 4rem 0;
}

@media (min-width: 1024px) {
    .about {
        padding: 6rem 0;
    }
}

.about-bg-elements {
    position: absolute;
    inset: 0;
    background: var(--gradient-mesh);
    opacity: 0.3;
}

.bg-circle {
    position: absolute;
    top: 2.5rem;
    right: 2.5rem;
    width: 8rem;
    height: 8rem;
    border: 1px solid hsla(195, 100%, 65%, 0.2);
    border-radius: 50%;
    animation: energyPulse 4s ease-in-out infinite;
}

.bg-square {
    position: absolute;
    bottom: 5rem;
    left: 2.5rem;
    width: 5rem;
    height: 5rem;
    border: 1px solid hsla(195, 100%, 65%, 0.3);
    border-radius: 0.5rem;
    transform: rotate(45deg);
    animation: energyPulse 4s ease-in-out infinite;
    animation-delay: 1s;
}

.about-grid {
    position: relative;
    z-index: 10;
    display: grid;
    gap: 4rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.section-title {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

@media (min-width: 1024px) {
    .section-title {
        font-size: 3rem;
    }
}

.about-description {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.info-card {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: hsla(220, 23%, 8%, 0.5);
    backdrop-filter: blur(8px);
    border: 1px solid hsla(195, 100%, 65%, 0.2);
    border-radius: 0.5rem;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-soft);
}

.info-card-icon {
    width: 3rem;
    height: 3rem;
    background: var(--primary);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-electric);
    flex-shrink: 0;
    color: var(--primary-foreground);
}

.info-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 0.5rem;
}

.info-card p {
    color: var(--muted-foreground);
    line-height: 1.5;
}

.features-grid {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.feature-card {
    padding: 1.5rem;
    background: var(--card);
    border-radius: 0.5rem;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
    animation: float 6s ease-in-out infinite;
}

.feature-card:hover {
    background: hsla(220, 14%, 16%, 0.5);
    box-shadow: var(--shadow-electric);
}

.feature-icon {
    width: 3rem;
    height: 3rem;
    background: hsla(195, 100%, 65%, 0.1);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 0.5rem;
}

.feature-card p {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    line-height: 1.5;
}

/* Stock Section */
.stock {
    padding: 4rem 0;
}

@media (min-width: 1024px) {
    .stock {
        padding: 6rem 0;
    }
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-description {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    max-width: 32rem;
    margin: 0 auto;
}

.stock-grid {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .stock-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .stock-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.stock-card {
    padding: 1.5rem;
    background: var(--card);
    border-radius: 0.5rem;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
}

.stock-card:hover {
    background: hsla(220, 14%, 16%, 0.5);
}

.stock-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
    color: var(--primary);
}

.stock-symbol {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.stock-price {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 0.5rem;
}

.stock-price.small {
    font-size: 1.125rem;
}

.stock-change {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
}

.stock-change.positive {
    color: #10b981;
}

.stock-label {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.company-icon {
    width: 2rem;
    height: 2rem;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-foreground);
    font-weight: 700;
    font-size: 0.875rem;
}

.chart-card {
    padding: 2rem;
    background: var(--card);
    border-radius: 0.5rem;
    box-shadow: var(--shadow-soft);
    text-align: center;
}

.chart-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 1rem;
}

.chart-placeholder {
    height: 16rem;
    background: hsla(220, 14%, 16%, 0.3);
    border-radius: 0.5rem;
    border: 2px dashed var(--border);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--primary);
}

.chart-placeholder p {
    color: var(--muted-foreground);
}

.chart-subtitle {
    font-size: 0.875rem !important;
}
.stock-card {
    padding: 1.5rem;
    background: var(--card);
    border-radius: 0.5rem;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
}

.stock-card:hover {
    background: hsla(220, 14%, 16%, 0.5);
}

.stock-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
    color: var(--primary);
}

.stock-symbol {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.stock-price {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 0.5rem;
}

.stock-price.small {
    font-size: 1.125rem;
}

.stock-change {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
}

.stock-change.positive {
    color: #10b981;
}

.stock-label {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.company-icon {
    width: 2rem;
    height: 2rem;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-foreground);
    font-weight: 700;
    font-size: 0.875rem;
}

.chart-card {
    padding: 2rem;
    background: var(--card);
    border-radius: 0.5rem;
    box-shadow: var(--shadow-soft);
    text-align: center;
}

.chart-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 1rem;
}

.chart-placeholder {
    height: 16rem;
    background: hsla(220, 14%, 16%, 0.3);
    border-radius: 0.5rem;
    border: 2px dashed var(--border);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--primary);
}

.chart-placeholder p {
    color: var(--muted-foreground);
}

.chart-subtitle {
    font-size: 0.875rem !important;
}
/* News Section */
.news {
    padding: 4rem 0;
    background: hsla(220, 14%, 16%, 0.3);
}

@media (min-width: 1024px) {
    .news {
        padding: 6rem 0;
    }
}

.news-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 3rem;
}

@media (min-width: 1024px) {
    .news-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

    .stock-section {
      background: white;
      padding: 40px 30px;
      border-radius: 12px;
      box-shadow: 0 4px 16px rgba(0,0,0,0.07);
      max-width: 1000px;
      margin: auto;
    }

    .stock-section h2 {
      font-size: 20px;
      margin-bottom: 20px;
      color: black;
    }

    canvas {
      max-width: 100%;
      height: 300px;
    }
    

.news-card {
    padding: 1.5rem;
    background: var(--card);
    border-radius: 0.5rem;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
    cursor: pointer;
    group: hover;
}

.news-card:hover {
    background: hsla(220, 23%, 8%, 0.8);
    box-shadow: var(--shadow-electric);
}

.news-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.news-badge {
    padding: 0.25rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 500;
    border-radius: 1rem;
    background: var(--secondary);
    color: var(--secondary-foreground);
}

.news-badge.latest {
    background: var(--gradient-electric);
    color: white;
}

.news-indicator {
    width: 0.5rem;
    height: 0.5rem;
    background: var(--primary);
    border-radius: 50%;
    animation: energyPulse 2s ease-in-out infinite;
}

.news-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 1rem;
    transition: var(--transition-smooth);
}

.news-card:hover .news-title {
    color: var(--primary);
}

.news-description {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    line-height: 1.5;
    margin-bottom: 1rem;
}

.news-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
}

.news-date {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.news-arrow {
    color: var(--primary);
    transition: var(--transition-smooth);
}

.news-card:hover .news-arrow {
    transform: translateX(0.25rem);
}

.news-ctas {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .news-ctas {
        flex-direction: row;
    }
}

.news-subscribe {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    text-align: center;
}

/* Footer */
.footer {
    background: var(--background);
    border-top: 1px solid var(--border);
    padding: 4rem 0;
}

.footer-main {
    display: grid;
    gap: 2rem;
    margin-bottom: 3rem;
}

@media (min-width: 1024px) {
    .footer-main {
        grid-template-columns: 2fr repeat(4, 1fr);
    }
}

.footer-company {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.footer-logo-img {
  max-width: 180px;
  height: auto;
  object-fit: contain;
  filter: invert();
}


.footer-description {
    color: var(--muted-foreground);
    line-height: 1.6;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.contact-item svg {
    color: var(--primary);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

@media (min-width: 1024px) {
    .footer-links {
        grid-template-columns: repeat(4, 1fr);
        grid-column: 2 / -1;
    }
}

.link-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.link-group h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--foreground);
}

.link-group a {
    color: var(--muted-foreground);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.link-group a:hover {
    color: var(--foreground);
}

.footer-separator {
    height: 1px;
    background: var(--border);
    margin-bottom: 2rem;
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

@media (min-width: 1024px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer-copyright {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.gateway-link {
    color: var(--primary);
    text-decoration: none;
    font-size: 0.875rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    color: var(--muted-foreground);
    border-radius: 0.375rem;
    transition: var(--transition-smooth);
    text-decoration: none;
}

.social-link:hover {
    background: hsla(195, 100%, 65%, 0.1);
    color: var(--primary);
}

/* Responsive Improvements */
@media (max-width: 640px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .about-grid {
        gap: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .stock-grid {
        grid-template-columns: 1fr;
    }
    
    .news-grid {
        grid-template-columns: 1fr;
    }
}