/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --off-white: #F2F2F2;
    --deep-black: #0A0A0A;
    --accent-gray: #8E8E8E;
    --radius: 0.625rem;
}

body {
    font-family: 'Manrope', sans-serif;
    background-color: var(--off-white);
    color: var(--deep-black);
    line-height: 1.6;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

.font-orbitron {
    font-family: 'Orbitron', monospace;
}

/* Loading Screen */
.loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--deep-black);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s ease;
}

.loading-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.loading-screen .speed-line {
  position: absolute;
  left: -100%;
  width: 200px;
  height: 2px;
  background: var(--off-white);
  animation: speedLineMove 2s ease-in-out infinite;
}

@keyframes speedLineMove {
  0% {
    left: -100%;
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    left: 100%;
    opacity: 0;
  }
}

.loading-content {
  text-align: center;
  z-index: 10;
  position: relative;
}

.loading-logo {
  width: 96px;
  height: 96px;
  margin-bottom: 24px;
  animation: logoFloat 2s ease-in-out infinite;
  filter: invert(1);
}

@keyframes logoFloat {
  0%, 100% {
    transform: scale(1) rotate(0deg);
  }
  50% {
    transform: scale(1.1) rotate(5deg);
  }
}

.loading-title {
  font-family: 'Orbitron', monospace;
  font-size: 2.5rem;
  color: var(--off-white);
  margin-bottom: 16px;
  opacity: 0;
  animation: fadeInUp 0.8s ease 0.5s forwards;
}

.loading-text {
  color: rgba(242, 242, 242, 0.8);
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeInUp 0.8s ease 1s forwards;
}

.loading-bar {
  width: 256px;
  height: 4px;
  background: rgba(242, 242, 242, 0.2);
  border-radius: 2px;
  overflow: hidden;
  margin: 0 auto;
}

.loading-progress {
  height: 100%;
  background: linear-gradient(90deg, var(--off-white) 40%, #fff 50%, var(--off-white) 60%);
  background-size: 200% 100%;
  border-radius: 2px;
  width: 0;
  animation: 
    loadingProgress 3s ease-in-out forwards,
    shimmer 1.5s linear infinite;
}

@keyframes loadingProgress {
  to {
    width: 100%;
  }
}

@keyframes shimmer {
  from {
    background-position: 100% 0;
  }
  to {
    background-position: -100% 0;
  }
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
  from {
    opacity: 0;
    transform: translateY(20px);
  }
}

.main-content.hidden {
    display: none;
}

/* Speed Lines Utility Classes */
.speed-lines-small {
    width: 40px;
    height: 8px;
    background: linear-gradient(90deg, transparent 0%, var(--accent-gray) 20%, var(--accent-gray) 80%, transparent 100%);
    clip-path: polygon(0 0, 90% 0, 100% 50%, 90% 100%, 0 100%, 10% 50%);
    opacity: 0.6;
}

.speed-lines-large {
    width: 160px;
    height: 32px;
    background: linear-gradient(90deg, transparent 0%, var(--deep-black) 20%, var(--deep-black) 80%, transparent 100%);
    clip-path: polygon(0 0, 90% 0, 100% 50%, 90% 100%, 0 100%, 10% 50%);
    opacity: 0.7;
}

/* Navigation */
.navigation {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(242, 242, 242, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(10, 10, 10, 0.1);
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-img {
    width: 40px;
    height: 40px;
}

.logo-text {
    font-family: 'Orbitron', monospace;
    font-weight: 900;
    font-size: 1.5rem;
    letter-spacing: 0.1em;
    color: var(--deep-black);
}

.nav-links {
    display: flex;
    gap: 2rem;
}

/* Mobile menu button */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--deep-black);
    cursor: pointer;
    padding: 0.5rem;
}

.nav-link {
    font-family: 'Orbitron', monospace;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    color: var(--deep-black);
    text-decoration: none;
    padding: 0.5rem 1rem;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.nav-link:hover {
    border-color: var(--deep-black);
    transform: translateY(-2px);
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--deep-black);
    transition: left 0.3s ease;
    z-index: -1;
}

.nav-link:hover::before {
    left: 0;
}

.nav-link:hover {
    color: var(--off-white);
}

.nav-link.active {
    border-color: var(--deep-black);
    background: var(--deep-black);
    color: var(--off-white);
}

.stake-btn {
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    background: var(--deep-black);
    color: var(--off-white);
    border: none;
    padding: 0.75rem 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.stake-btn:hover {
    background: rgba(10, 10, 10, 0.9);
    transform: translateY(-2px);
}

/* Hero Logo */
.hero-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
}

/* Diagonal Pattern */
.hero-diagonal-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(45deg, rgba(10, 10, 10, 0.05) 1px, transparent 1px),
        linear-gradient(-45deg, rgba(10, 10, 10, 0.05) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
}



/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 2rem;
    border-radius: var(--radius);
    font-family: 'Orbitron', monospace;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background-color: var(--deep-black);
    color: var(--off-white);
}

.btn-primary:hover {
    background-color: rgba(10, 10, 10, 0.9);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--deep-black);
    border: 2px solid var(--deep-black);
}

.btn-secondary:hover {
    background-color: var(--deep-black);
    color: var(--off-white);
    transform: translateY(-2px);
}

.btn-primary.large,
.btn-secondary.large {
    padding: 1rem 1rem;
    font-size: 1.2rem;
}

.btn-outline {
    background-color: transparent;
    color: var(--deep-black);
    border: 2px solid var(--deep-black);
}

.btn-outline:hover {
    background-color: var(--deep-black);
    color: var(--off-white);
}

.btn-white {
    background-color: var(--off-white);
    color: var(--deep-black);
    position: relative;
    overflow: hidden;
}

.btn-white:hover {
    background-color: var(--deep-black);
    color: var(--off-white);
    transform: translateY(-2px);
}

.btn-white::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -100%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, currentColor, transparent);
    transition: all 0.3s ease;
    transform: translateY(-50%);
}

.btn-white:hover::after {
    right: 0;
    width: 100%;
}

.arrow {
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.btn:hover .arrow {
    transform: translateX(4px);
}

/* Speed Lines Animation */
@keyframes speedLines {
    0% {
        transform: translateX(-100%);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: translateX(100%);
        opacity: 0;
    }
}

.speed-lines-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
    z-index: 999;
}

.speed-line {
    position: absolute;
    left: -100%;
    width: 200%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--deep-black), transparent);
    animation: speedLines 3s ease-in-out infinite;
    opacity: 0.3;
    z-index: 1000;
}

/* Firefox specific fixes */
@-moz-document url-prefix() {
    .speed-lines-container {
        z-index: 999 !important;
    }
    
    .speed-line {
        z-index: 1000 !important;
    }
    
    .logo-badge {
        z-index: 1 !important;
    }
    
    .logo-badge .badge {
        z-index: 1 !important;
    }
}

/* Hover Speed Lines Effect */
.hover-speed-lines {
    position: relative;
    overflow: hidden;
}

.hover-speed-lines::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -100%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, currentColor, transparent);
    transition: all 0.3s ease;
    transform: translateY(-50%);
}

.hover-speed-lines:hover::after {
    right: 0;
    width: 100%;
}

/* Diagonal Grid */
.diagonal-grid {
    background-image: 
        linear-gradient(45deg, rgba(10, 10, 10, 0.1) 1px, transparent 1px),
        linear-gradient(-45deg, rgba(10, 10, 10, 0.1) 1px, transparent 1px);
    background-size: 40px 40px;
}

/* Parallax Background */
.parallax-bg {
    position: absolute;
    top: -30%;
    left: -20%;
    width: 160%;
    height: 160%;
    background-size: cover;
    background-position: center;
    opacity: 0.1;
    will-change: transform;
}

/* Motion Blur Effect */
@keyframes motionBlur {
    0% {
        transform: translateX(-50px);
        filter: blur(5px);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        filter: blur(0);
        opacity: 1;
    }
}

.motion-blur-enter {
    animation: motionBlur 0.8s ease-out forwards;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--off-white) 0%, #e8e8e8 100%);
    padding-top: 80px; /* Account for fixed navigation */
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    z-index: 10;
    position: relative;
}

.hero-content {
    space-y: 2rem;
}

.logo-badge {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    justify-content: flex-start;
    z-index: 1;
}

.hero-logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo {
    width: 4rem;
    height: 4rem;
    display: flex;
    align-items: center;
}

.logo-badge .badge {
    padding: 0.5rem 1rem;
    border: 1px solid var(--accent-gray);
    border-radius: 2rem;
    font-family: 'Orbitron', monospace;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent-gray);
    display: flex;
    align-items: center;
    margin-top: 1rem;
    z-index: 1;
}

.logo-badge .badge svg {
    margin-right: 0.5rem;
    vertical-align: middle;
}

.hero-text {
    margin-bottom: 2rem;
}

.hero-title {
    font-family: 'Orbitron', monospace;
    font-size: 4rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    line-height: 0.9;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    color: var(--accent-gray);
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--accent-gray);
    max-width: 32rem;
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.hero-metrics {
    display: flex;
    gap: 5rem;
    justify-content: flex-start;
    align-items: flex-start;
    padding-top: 2rem;
    border-top: 1px solid var(--accent-gray);
}

.hero-metric {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    text-align: center;
    min-width: 80px;
}



.hero-metric-value {
    font-family: 'Orbitron', monospace;
    font-size: 2rem;
    font-weight: 700;
    color: var(--deep-black);
    line-height: 1;
    text-align: center;
    width: 100%;
}

.hero-metric-label {
    font-family: 'Orbitron', monospace;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--accent-gray);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-align: center;
    width: 100%;
}

.hero-visual {
    position: relative;
}

.image-container {
    position: relative;
    transform: rotate(3deg);
    transition: transform 0.5s ease;
}

.image-container:hover {
    transform: rotate(1deg);
}

.hero-image,
.tech-image {
    width: 100%;
    height: auto;
    border-radius: var(--radius);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    max-width: 100%;
}

.image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, rgba(10, 10, 10, 0.2) 0%, transparent 100%);
    border-radius: var(--radius);
}

/* Statistics Section */
.stats-section {
    padding: 5rem 0;
    background-color: var(--deep-black);
    color: var(--off-white);
    position: relative;
    overflow: hidden;
}

.stats-background {
    position: absolute;
    inset: 0;
    background-image: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 25px,
            rgba(242, 242, 242, 0.05) 25px,
            rgba(242, 242, 242, 0.05) 50px
        );
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-family: 'Orbitron', monospace;
    font-size: 3.5rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    color: var(--off-white);
    margin-bottom: 2rem;
}

.section-description {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--accent-gray);
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.8;
}

/* Metrics Grid */
.metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 10;
}

.metric-item {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.metric-value {
    font-family: 'Orbitron', monospace;
    font-size: 4rem;
    font-weight: 900;
    color: var(--accent-gray);
    text-align: center;
}

.metric-label {
    font-size: 0.875rem;
    opacity: 0.8;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.metric-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.metric-title {
    font-family: 'Orbitron', monospace;
    font-size: 1.25rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.metric-description {
    opacity: 0.8;
}

/* Features Section */
.features-section {
    padding: 8rem 0;
    position: relative;
    background: var(--off-white);
}

.features-background {
    position: absolute;
    inset: 0;
    background-image: 
        repeating-linear-gradient(
            -45deg,
            transparent,
            transparent 30px,
            rgba(10, 10, 10, 0.02) 30px,
            rgba(10, 10, 10, 0.02) 60px
        );
}

.features-header {
    text-align: center;
    margin-bottom: 6rem;
}

.features-header .section-title {
    color: var(--deep-black);
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--accent-gray);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

/* Feature Card Styles */
.skewed-card {
    background: var(--off-white);
    border: 2px solid var(--accent-gray);
    padding: 3rem 2rem;
    position: relative;
    clip-path: polygon(0 0, calc(100% - 30px) 0, 100% 30px, 100% 100%, 30px 100%, 0 calc(100% - 30px));
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    margin: 1rem;
}

.skewed-card:hover,
.skewed-card.mobile-hover-effect {
    background: var(--deep-black);
    border-color: var(--deep-black);
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 40px rgba(10, 10, 10, 0.3);
}

.skewed-card-content {
    transition: all 0.3s ease;
}

.skewed-card:hover .skewed-card-content,
.skewed-card.mobile-hover-effect .skewed-card-content {
    transform: translateY(-5px);
}

.skewed-card:hover .feature-title,
.skewed-card.mobile-hover-effect .feature-title,
.skewed-card:hover .feature-description,
.skewed-card.mobile-hover-effect .feature-description {
    color: var(--off-white);
}

.skewed-card:hover .feature-icon,
.skewed-card.mobile-hover-effect .feature-icon {
    filter: brightness(0) invert(1);
}

.skewed-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(142, 142, 142, 0.1) 50%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.skewed-card:hover::before,
.skewed-card.mobile-hover-effect::before {
    opacity: 1;
    animation: shimmer 1.5s ease-in-out infinite;
}

/* Feature Icon Section */
.feature-icon-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 2rem;
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.feature-divider {
    width: 60px;
    height: 2px;
    background: var(--accent-gray);
    margin: 0 auto;
    transition: all 0.3s ease;
}

.skewed-card:hover .feature-divider,
.skewed-card.mobile-hover-effect .feature-divider {
    background: var(--off-white);
    width: 80px;
}

/* Feature Title and Description */
.feature-title {
    font-family: 'Orbitron', monospace;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--deep-black);
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
    text-align: center;
    transition: color 0.3s ease;
}

.feature-description {
    color: var(--accent-gray);
    line-height: 1.6;
    text-align: center;
    margin-bottom: 2rem;
    transition: color 0.3s ease;
}

/* Feature Stat Badge */
.feature-stat {
    display: flex;
    justify-content: center;
}

.stat-badge {
    background: var(--deep-black);
    color: var(--off-white);
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-family: 'Orbitron', monospace;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.skewed-card:hover .stat-badge,
.skewed-card.mobile-hover-effect .stat-badge {
    background: var(--off-white);
    color: var(--deep-black);
}

/* Floating Animation */
.floating {
    animation: floating 3s ease-in-out infinite;
}

@keyframes floating {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Pulse Glow Effect */
.pulse-glow {
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 0 5px rgba(10, 10, 10, 0.3);
    }
    50% {
        box-shadow: 0 0 20px rgba(10, 10, 10, 0.6);
    }
}

/* Loading Race Animation */
.loading-race {
    background: linear-gradient(90deg, transparent, var(--accent-gray), transparent);
    background-size: 200% 100%;
    animation: loading-race 2s ease-in-out infinite;
}

@keyframes loading-race {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

/* Card Hover Effect */
.card-hover-effect {
    cursor: pointer;
}

.card-hover-effect:hover {
    transform: translateY(-15px) scale(1.02);
}

/* Hover Speed Effect */
.hover-speed-effect {
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hover-speed-effect::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(242, 242, 242, 0.1), transparent);
    transition: left 0.5s ease;
    z-index: -1;
}

.hover-speed-effect:hover::before {
    left: 100%;
}

.hover-speed-effect:hover {
    transform: translateY(-2px);
}

/* Technology Section */
.technology-section {
    padding: 5rem 0;
    background-color: var(--deep-black);
    color: var(--off-white);
    position: relative;
    overflow: hidden;
}

.tech-background {
    position: absolute;
    inset: 0;
    background-image: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 25px,
            rgba(242, 242, 242, 0.05) 25px,
            rgba(242, 242, 242, 0.05) 50px
        );
}

/* Badge Styles */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(242, 242, 242, 0.1);
    color: var(--off-white);
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-family: 'Orbitron', monospace;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1rem;
    backdrop-filter: blur(10px);
}

.badge .icon {
    font-size: 1rem;
}

/* Highlight Text */
.highlight {
    color: var(--accent-gray);
}

/* Tech Grid */
.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.tech-card {
    background-color: rgba(242, 242, 242, 0.1);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: var(--radius);
    border: 1px solid rgba(142, 142, 142, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.tech-card:hover {
    background-color: rgba(242, 242, 242, 0.15);
    border-color: rgba(142, 142, 142, 0.4);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.tech-label {
    font-family: 'Orbitron', monospace;
    font-size: 0.875rem;
    color: var(--accent-gray);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.tech-value {
    font-family: 'Orbitron', monospace;
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--off-white);
    text-align: right;
}

/* Moving Line */
.moving-line {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--off-white), transparent);
    animation: move-line 3s linear infinite;
}

@keyframes move-line {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* CTA Section */
.cta {
    padding: 5rem 0;
    background: var(--deep-black);
    color: var(--off-white);
    position: relative;
    overflow: hidden;
}

.cta-background {
    position: absolute;
    inset: 0;
    background-image: url('assets/f1_background.webp');
    background-size: cover;
    background-position: center;
    opacity: 0.4;
}

.cta-container {
    position: relative;
    z-index: 10;
    max-width: 64rem;
    margin: 0 auto;
    padding: 0 1.5rem;
    text-align: center;
}

.cta-title {
    font-family: 'Orbitron', monospace;
    font-weight: 900;
    font-size: 4rem;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    margin-bottom: 2rem;
}

.cta-subtitle {
    font-size: 1.5rem;
    color: var(--accent-gray);
    max-width: 32rem;
    margin: 0 auto 2rem;
}

/* Contact Section */
.contact-section {
    padding: 6rem 0;
    background: var(--off-white);
    position: relative;
}

.contact-background {
    position: absolute;
    inset: 0;
    background-image: 
        repeating-linear-gradient(
            -45deg,
            transparent,
            transparent 40px,
            rgba(10, 10, 10, 0.02) 40px,
            rgba(10, 10, 10, 0.02) 80px
        );
}

.contact-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 10;
}

.contact-header {
    text-align: center;
    margin-bottom: 4rem;
}

.contact-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.contact-logo-img {
    width: 60px;
    height: 60px;
}

.contact-title {
    font-family: 'Orbitron', monospace;
    font-weight: 900;
    font-size: 4rem;
    letter-spacing: 0.1em;
    color: var(--deep-black);
    margin-bottom: 2rem;
}

.contact-description {
    font-size: 1.3rem;
    line-height: 1.8;
    color: var(--accent-gray);
    max-width: 800px;
    margin: 0 auto 3rem auto;
}

.contact-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-bottom: 4rem;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.contact-card {
    background: rgba(255, 255, 255, 0.8);
    border: 2px solid rgba(10, 10, 10, 0.1);
    border-radius: 12px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.contact-card:hover,
.contact-card.mobile-hover-effect {
    transform: translateY(-10px);
    border-color: var(--deep-black);
}

.contact-card:hover .contact-icon-img,
.contact-card.mobile-hover-effect .contact-icon-img {
    filter: brightness(0);
    transform: scale(1.1);
}

.contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.contact-icon-img {
    width: 48px;
    height: 48px;
    filter: brightness(0);
    transition: all 0.3s ease;
}

.contact-method-title {
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 0.1em;
    color: var(--deep-black);
    margin-bottom: 1rem;
}

.contact-method-description {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--accent-gray);
    margin-bottom: 1.5rem;
}

.contact-action {
    font-family: 'Orbitron', monospace;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    color: var(--deep-black);
}

.contact-hover-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--deep-black);
    transition: width 0.3s ease;
}

.contact-card:hover .contact-hover-line,
.contact-card.mobile-hover-effect .contact-hover-line {
    width: 100%;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.9) 0%, rgba(10, 10, 10, 0.95) 100%);
    color: var(--off-white);
    padding: 4rem 2rem 0;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    margin-bottom: 0;
    position: relative;
    z-index: 10;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
    align-items: start;
}

.footer-brand {
    display: flex;
    flex-direction: column;
}

.footer-brand-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.footer-logo {
    width: 50px;
    height: 50px;
    object-fit: contain;
    margin-bottom: 1rem;
    filter: brightness(0) invert(1) !important;
}

.footer-title {
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    color: var(--off-white);
}

.footer-description {
    color: rgba(242, 242, 242, 0.8);
    margin-bottom: 2rem;
    line-height: 1.6;
    max-width: 400px;
}

.validator-address {
    margin-bottom: 0rem;
}

.address-title {
    font-family: 'Orbitron', monospace;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    color: var(--off-white);
}

.address-value {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(242, 242, 242, 0.1);
    padding: 0.75rem;
    border-radius: 5px;
    font-family: monospace;
    font-size: 0.8rem;
    color: var(--off-white);
    word-break: break-all;
    overflow-wrap: break-word;
    max-width: 400px;
}

.copy-button {
    background: none;
    border: none;
    color: var(--off-white);
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 4px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.copy-icon {
    width: 16px;
    height: 16px;
    filter: brightness(0) invert(1);
    transition: all 0.3s ease;
}

.copy-button:hover {
    background-color: rgba(242, 242, 242, 0.15);
    transform: scale(1.1);
}

.copy-button:hover .copy-icon {
    filter: brightness(0) invert(1) drop-shadow(0 0 2px rgba(242, 242, 242, 0.5));
}

.footer-links {
    display: flex;
    gap: 4rem;
}

.column-title {
    font-family: 'Orbitron', monospace;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    margin-top: 1rem;
    color: var(--off-white);
}

.footer-link {
    display: block;
    color: rgba(242, 242, 242, 0.8);
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--off-white);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    border-top: 1px solid rgba(242, 242, 242, 0.2);
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}

.copyright {
    color: rgba(242, 242, 242, 0.6);
    font-size: 0.9rem;
}



/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: var(--off-white);
    margin: 2% auto;
    padding: 0;
    border-radius: 12px;
    width: 90%;
    max-width: 1200px;
    max-height: 90vh;
    overflow: visible;
    position: relative;
    animation: modalSlideIn 0.3s ease-out;
    box-sizing: border-box;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-header {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem 2rem 1rem 2rem;
    border-bottom: 1px solid rgba(10, 10, 10, 0.1);
    position: relative;
}

.modal-title {
    font-family: 'Orbitron', monospace;
    font-size: 2rem;
    font-weight: 900;
    color: var(--deep-black);
    margin: 0;
    text-align: center;
}

.modal-close {
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--accent-gray);
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 0.3s ease;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 2rem;
    right: 2rem;
    z-index: 10001;
}

.modal-close:hover {
    background-color: var(--deep-black);
    color: var(--off-white);
}

.modal-body {
    padding: 2rem;
    overflow: visible;
    position: relative;
    z-index: 1;
    min-height: 400px;
    box-sizing: border-box;
    width: 100%;
}

.modal-description {
    font-size: 1.2rem;
    color: var(--accent-gray);
    margin-bottom: 3rem;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.widget-description {
    font-size: 1rem;
    color: var(--accent-gray);
    text-align: center;
    max-width: 450px;
    line-height: 1.6;
    margin: 0;
}

/* Staking Content Styles */
.staking-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    position: relative;
    z-index: 1;
    overflow: visible;
    min-height: 350px;
    box-sizing: border-box;
}

.staking-widget-section {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
}

.staking-content iframe {
    justify-self: center;
    align-self: center;
    z-index: 1;
    position: relative;
    border: none;
    background: transparent;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    transform: none !important;
    width: 472px !important;
    height: 302px !important;
    box-sizing: border-box !important;
    max-width: 100% !important;
}

.staking-steps {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    width: 100%;
}

.steps-title {
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    letter-spacing: 1px;
    color: var(--deep-black);
    text-align: center;
}

.step-item {
    display: flex;
    justify-content: center;
    margin-bottom: 0;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.8);
    border: 2px solid rgba(10, 10, 10, 0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
    flex: 1;
    min-height: 0;
}

.step-item:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(10, 10, 10, 0.1);
    border-color: var(--deep-black);
}

.step-number {
    background: var(--deep-black);
    color: var(--off-white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    flex-shrink: 0;
}

.step-title {
    font-family: 'Orbitron', monospace;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
    color: var(--deep-black);
}

.step-description {
    color: var(--accent-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.step-features {
    list-style: none;
    padding: 0;
}

.step-features li {
    color: var(--accent-gray);
    font-size: 0.9rem;
    margin-bottom: 0.3rem;
    padding-left: 0;
}



.info-title {
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
    color: var(--deep-black);
    text-align: center;
}

.benefits-list {
    list-style: none;
    margin-bottom: 2rem;
    padding: 0;
}

.benefits-list li {
    color: var(--accent-gray);
    margin-bottom: 0.5rem;
    font-weight: 500;
    padding-left: 0;
}



.calculator-title {
    font-family: 'Orbitron', monospace;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
    color: var(--deep-black);
}

.reward-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding: 0.5rem 0;
}

.reward-item.highlight {
    border-top: 2px solid var(--deep-black);
    border-bottom: 2px solid var(--deep-black);
    padding: 1rem 0;
    margin: 1rem 0;
}

.reward-label {
    color: var(--accent-gray);
    font-weight: 500;
}

.reward-value {
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    color: var(--deep-black);
}

.reward-disclaimer {
    font-size: 0.8rem;
    color: var(--accent-gray);
    margin-bottom: 2rem;
    font-style: italic;
}

.start-staking-button {
    width: 100%;
    background: var(--deep-black);
    color: var(--off-white);
    border: none;
    padding: 1rem 2rem;
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.start-staking-button:hover {
    background: rgba(10, 10, 10, 0.9);
    transform: translateY(-2px);
}

.button-arrow {
    transition: transform 0.3s ease;
}

.start-staking-button:hover .button-arrow {
    transform: translateX(5px);
}

.staking-terms {
    font-size: 0.9rem;
    color: var(--accent-gray);
    text-align: center;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero-section {
        padding-bottom: 3rem;
    }
    
    .hero-title {
        font-size: 4rem;
    }
    
    .nav-links {
        gap: 1rem;
    }
    
    .nav-link {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
    
    .contact-title {
        font-size: 3rem;
    }
    
    /* Modal adaptations for tablets */
    .modal-content {
        width: 92%;
        margin: 3% auto;
        max-height: 92vh;
    }
    
    .staking-content {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
        min-height: auto;
    }
    
    .staking-content iframe {
        width: 100% !important;
        max-width: 450px !important;
        height: 350px !important;
        margin: 0 auto;
        display: block !important;
        box-sizing: border-box !important;
    }
}

@media (max-width: 768px) {
    /* Universal mobile padding */
    .container,
    .nav-container,
    .contact-container,
    .footer-container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .nav-container {
        padding-top: 0.75rem;
        padding-bottom: 0.75rem;
    }
    
    .nav-links {
        display: none; /* Hide navigation links on mobile */
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .stake-btn {
        font-size: 0.8rem;
        padding: 0.6rem 1rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
        line-height: 1.1;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        margin-bottom: 2rem;
    }
    
    .hero-metrics {
        gap: 3rem;
        justify-content: center;
        padding-top: 1.5rem;
    }
    
    .hero-metric {
        align-items: center;
        text-align: center;
        min-width: 60px;
    }
    
    .hero-metric::before {
        top: -1rem;
    }
    
    .hero-metric-value {
        font-size: 1.75rem;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
        padding: 1rem 2rem;
    }
    
    .btn-primary.large,
    .btn-secondary.large {
        padding: 1.2rem 2rem;
        font-size: 1rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .features-grid {
        gap: 1.5rem;
    }
    
    .skewed-card {
        margin: 0.5rem;
        padding: 2rem 1.5rem;
    }
    
    .contact-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .contact-methods {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-card {
        padding: 2rem 1.5rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .cta-title {
        font-size: 2.5rem;
    }
    
    .contact-title {
        font-size: 2.5rem;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer {
        padding-left: 0;
        padding-right: 0;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 2rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    /* Smaller screens - reduce padding */
    .container,
    .nav-container,
    .contact-container,
    .footer-container {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-description {
        font-size: 0.9rem;
    }
    
    .hero-metrics {
        gap: 2rem;
        padding-top: 1rem;
    }
    
    .hero-metric {
        min-width: 50px;
    }
    
    .hero-section {
        padding-bottom: 4rem;
    }
    
    .hero-metric-value {
        font-size: 1.5rem;
    }
    
    .hero-metric-label {
        font-size: 0.65rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .contact-title {
        font-size: 2rem;
    }
    
    .modal-title {
        font-size: 1.5rem;
    }
    
    .skewed-card {
        padding: 1.5rem 1rem;
        margin: 0.25rem;
    }
    
    .contact-card {
        padding: 1.5rem 1rem;
    }
    
    .btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .metric-value {
        font-size: 2.5rem;
    }
    
    .tech-card {
        padding: 1rem;
    }
    
    .tech-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .features-grid {
        gap: 1.5rem;
    }
    
    .tech-label {
        font-size: 0.75rem;
    }
    
    .tech-value {
        font-size: 0.875rem;
    }
    
    .address-value {
        font-size: 0.7rem;
        padding: 0.5rem;
    }
    
    .address-value span {
        font-size: 0.65rem;
    }
    
    .copy-button {
        font-size: 0.8rem;
        padding: 0.2rem;
    }
    
    .hero-image,
    .tech-image {
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    }
    
    .image-container {
        transform: rotate(1deg);
    }
    
    .image-container:hover {
        transform: rotate(0deg);
    }
    
    .metrics-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .metric-item {
        gap: 1rem;
    }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.fade-in.animate {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s ease;
}

.slide-in-left.animate {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s ease;
}

.slide-in-right.animate {
    opacity: 1;
    transform: translateX(0);
}

/* Modal Tablet Adaptations */
@media (max-width: 900px) {
    .modal-content {
        width: 94%;
        margin: 4% auto;
        max-height: 94vh;
        overflow-y: auto;
        box-sizing: border-box;
    }
    
    .staking-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        min-height: auto;
        box-sizing: border-box;
        width: 100%;
    }
    
    .staking-widget-section {
        order: 1;
    }
    
    .staking-steps {
        order: 2;
    }
    
    .staking-content iframe {
        width: 100% !important;
        max-width: 420px !important;
        height: 390px !important;
        margin: 0 auto;
        display: block !important;
        box-sizing: border-box !important;
    }
}

/* Modal Mobile Adaptations */
@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        margin: 5% auto;
        max-height: 95vh;
        overflow-y: auto;
        box-sizing: border-box;
    }
    
    .modal-header {
        padding: 1.5rem 1rem 1rem 1rem;
    }
    
    .modal-title {
        font-size: 1.5rem;
    }
    
    .modal-close {
        top: 1rem;
        right: 1rem;
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }
    
    .modal-body {
        padding: 1.5rem 1rem;
        min-height: auto;
    }
    
    .modal-description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .widget-description {
        font-size: 0.9rem;
        max-width: 400px;
    }
    
    .staking-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        min-height: auto;
        box-sizing: border-box;
        width: 100%;
    }
    
    .staking-widget-section {
        order: 1;
    }
    
    .staking-steps {
        order: 2;
    }
    
    .staking-content iframe {
        width: 100% !important;
        max-width: 400px !important;
        height: 380px !important;
        margin: 0 auto;
        display: block !important;
        box-sizing: border-box !important;
    }
    
    .step-item {
        padding: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .step-number {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .step-title {
        font-size: 1rem;
    }
    
    .step-description {
        font-size: 0.9rem;
    }
    
    .step-features li {
        font-size: 0.8rem;
    }
    
    .info-title {
        font-size: 1.25rem;
    }
    
    .benefits-list li {
        font-size: 0.9rem;
    }
    

}

@media (max-width: 480px) {
    .modal-content {
        width: 98%;
        margin: 2% auto;
        overflow-y: auto;
    }
    
    .modal-header {
        padding: 1rem 0.75rem 0.75rem 0.75rem;
    }
    
    .modal-title {
        font-size: 1.25rem;
    }
    
    .modal-close {
        top: 0.75rem;
        right: 0.75rem;
        width: 35px;
        height: 35px;
        font-size: 1.25rem;
    }
    
    .modal-body {
        padding: 1rem 0.75rem;
        min-height: auto;
    }
    
    .modal-description {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
    
    .step-item {
        padding: 0.75rem;
        margin-bottom: 1rem;
    }
    
    .step-number {
        width: 30px;
        height: 30px;
        font-size: 0.8rem;
    }
    
    .step-title {
        font-size: 0.9rem;
    }
    
    .step-description {
        font-size: 0.8rem;
    }
    
    .step-features li {
        font-size: 0.75rem;
    }
    
    .info-title {
        font-size: 1.1rem;
    }
    
    .benefits-list li {
        font-size: 0.8rem;
    }
    
    .staking-content iframe {
        width: 100% !important;
        max-width: 350px !important;
        height: 480px !important;
        margin: 0 auto;
        display: block !important;
        box-sizing: border-box !important;
        position: relative !important;
    }
    
    .staking-content {
        min-height: auto;
    }
}

