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

:root {
    --primary-blue: #2A6E90;
    --accent-blue: #24B9E3;
    --dark-blue: #1E3A48;
    --white: #FFFFFF;
    --dark-gray: #212529;
    --light-gray: #F8F9FA;
    --muted-gray: #6C757D;
    --border-gray: #DEE2E6;
    --akkuria-bright-cyan: #24B9E3;
    --darker-gray: #e0e4ea;
}

body {
    font-family: 'Inter', 'Open Sans', sans-serif;
    line-height: 1.6;
    color: var(--dark-gray);
    background-color: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    line-height: 1.2;
    color: var(--primary-blue);
}

.hero-section h1,
.hero-section h2,
.hero-section h3,
.hero-section h4,
.hero-section h5,
.hero-section h6 {
    color: #212529;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Background Elements */
.background-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.background-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1;
    filter: brightness(80%);
    /* animation: parallax 20s ease-in-out infinite; */
}

/* Navigation */
.navbar {
    position: relative;
    z-index: 50;
    padding: 1.5rem 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    animation: slideDown 0.8s ease-out;
}

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

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo {
    height: 3rem;
    width: 3rem;
}

.brand-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-blue);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--dark-gray);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-blue);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-blue);
    transition: 0.3s;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 0.5rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue));
    color: var(--white);
    box-shadow: 0 0 20px rgba(36, 185, 227, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 25px rgba(36, 185, 227, 0.4);
}

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

.btn-outline:hover {
    background: var(--primary-blue);
    color: var(--white);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

/* Ripple effect for buttons */
.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    transform: scale(0);
    animation: ripple-animation 0.6s linear;
    pointer-events: none;
}

@keyframes ripple-animation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* Animate-in for scroll animations */
.animate-in {
    animation: fadeInUp 0.8s ease-out forwards;
}

/* Loaded state for hero */
.hero-content, .hero-visual {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1s cubic-bezier(.4,0,.2,1), transform 1s cubic-bezier(.4,0,.2,1);
}
body.loaded .hero-content,
body.loaded .hero-visual {
    opacity: 1;
    transform: none;
}

/* Hero Section */
.hero-section {
    min-height: 0;
    height: calc(100vh - 6rem);
    padding-top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 0;
    margin-bottom: 0;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.hero-section > .container {
    position: relative;
    z-index: 2;
}

.hero-section .container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    padding: 0;
    margin: 0;
    transform: translateY(-5vh);
}

.hero-section .hero-content {
    margin: 0;
    padding: 0;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-content {
    animation: slideInLeft 1s ease-out;
    opacity: 1;
}

.badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, var(--accent-blue), var(--primary-blue));
    color: var(--white);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    color: #0A1929;
    text-shadow: 0px 1px 3px rgba(255,255,255,0.4);
}

.hero-title .gradient-text {
    color: #24B9E3;
    font-weight: 900;
    text-shadow: 0 4px 24px #000, 0 1px 0 #000;
    background: none;
    -webkit-background-clip: initial;
    -webkit-text-fill-color: initial;
    background-clip: initial;
}

.hero-title .main-text {
    color: #fff;
    font-weight: 900;
    text-shadow: 0 4px 24px #000, 0 1px 0 #000;
}

.hero-description {
    font-size: 1.25rem;
    color: #fff;
    font-weight: 300;
    margin-bottom: 2rem;
    line-height: 1.6;
}

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

.hero-buttons .btn {
    width: 245px;
    min-width: 0;
    max-width: 100%;
    text-align: center;
    justify-content: center;
}

.hero-visual {
    position: relative;
    animation: slideInRight 1s ease-out 0.4s both;
    opacity: 1;
}

.logo-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-logo {
    width: auto;
    height: auto;
    max-width: 36rem;
    max-height: 36rem;
    filter: drop-shadow(0 0 40px rgba(36, 185, 227, 0.4));
}

.floating {
    animation: float 6s ease-in-out infinite;
}

.logo-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 38rem;
    height: 38rem;
    background: radial-gradient(circle, rgba(36, 185, 227, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
}

/* Stats Section */
.stats-section {
    padding: 120px 0 80px 0;
    background: var(--darker-gray);
    position: relative;
    overflow: hidden;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

@media (min-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.stat-item {
    text-align: center;
}

.stat-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-blue) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-icon i {
    font-size: 2rem;
    color: var(--white);
}

.stat-value {
    font-size: 3rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 8px;
}

.stat-label {
    color: var(--muted-gray);
    font-size: 1rem;
}

.scroll-reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.6s ease;
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Ribbon Divider */
.ribbon-divider {
    position: relative;
    z-index: 10;
    display: flex;
    justify-content: center;
    padding: 2rem 0;
}

.ribbon-image {
    width: 16rem;
    height: 4rem;
    /* animation: ribbonFlow 3s ease-in-out infinite; */
}

/* Features Section */
.features-section {
    padding: 80px 0;
    background: var(--akkuria-light-gray);
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

.section-header h2,
.section-header .gradient-text {
    font-size: 3rem;
    margin-bottom: 24px;
    font-weight: 700;
    letter-spacing: -1px;
    line-height: 1.1;
}

.section-description {
    font-size: 1.25rem;
    color: #6c757d;
    max-width: 768px;
    margin: 0 auto;
    line-height: 1.6;
}

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

.feature-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 0;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    opacity: 0;
    animation: fadeInUp 0.6s ease-out forwards;
}

.feature-card[data-delay="0"] { animation-delay: 0s; }
.feature-card[data-delay="200"] { animation-delay: 0.2s; }
.feature-card[data-delay="400"] { animation-delay: 0.4s; }

.feature-image {
    position: relative;
    height: 192px;
    overflow: hidden;
}

.feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.feature-card:hover .feature-image img {
    transform: scale(1.1);
}

.image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover .image-overlay {
    opacity: 1;
}

.feature-badge {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: linear-gradient(135deg, var(--akkuria-bright-blue, #24B9E3), var(--akkuria-deep-blue, #2A6E90));
    color: #fff;
    font-size: 0.85rem;
    font-weight: 700;
    padding: 0.3rem 0.8rem;
    border-radius: 1rem;
    box-shadow: 0 2px 8px rgba(36, 185, 227, 0.15);
    letter-spacing: 0.5px;
}

.feature-icon {
    display: flex;
    justify-content: center;
    margin: 24px 0 16px;
    font-size: 2rem;
    color: var(--akkuria-deep-blue);
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-title {
    font-size: 1.5rem;
    color: var(--akkuria-dark-blue);
    text-align: center;
    margin-bottom: 16px;
    transition: color 0.3s ease;
}

.feature-card:hover .feature-title {
    color: var(--akkuria-deep-blue);
}

.feature-description {
    color: #6c757d;
    text-align: center;
    padding: 0 24px 24px;
    font-size: 1.125rem;
}

.interactive-card {
    transition: all 0.3s ease;
    cursor: pointer;
}

.interactive-card:hover {
    transform: translateY(-10px) perspective(1000px) rotateY(5deg);
    box-shadow: 0 20px 40px rgba(42, 110, 144, 0.2);
}

/* Performance Section */
.performance-section {
    position: relative;
    z-index: 10;
    padding: 5rem 0;
    background: var(--darker-gray);
}

.performance-content {
    text-align: center;
}

.performance-card {
    background: linear-gradient(135deg, var(--accent-blue), var(--primary-blue));
    padding: 3rem;
    border-radius: 3rem;
    margin-top: 3rem;
    max-width: 64rem;
    margin-left: auto;
    margin-right: auto;
    color: var(--white);
    transition: transform 0.3s ease;
}

.performance-card:hover {
    transform: scale(1.02);
}

.performance-card h1,
.performance-card h2,
.performance-card h3,
.performance-card h4,
.performance-card h5,
.performance-card h6 {
    color: #212529;
}

.performance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.performance-subtitle {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.performance-list {
    list-style: none;
    text-align: left;
}

.performance-list li {
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.performance-section .section-description {
    margin-bottom: 2.5rem;
}

/* CTA Section */
.cta-section {
    position: relative;
    z-index: 10;
    padding: 5rem 0;
    text-align: center;
}

.cta-content {
    max-width: 64rem;
    margin: 0 auto;
    animation: fadeInUp 0.8s ease-out;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

/* Footer */
.footer {
    position: relative;
    z-index: 10;
    border-top: 1px solid var(--border-gray);
    padding: 3rem 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-logo {
    height: 2rem;
    width: 2rem;
}

.footer-brand-text {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-blue);
}

.footer-text {
    color: var(--muted-gray);
}

/* Animations */
@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slideInLeft {
    from {
        transform: translateX(-100px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideInRight {
    from {
        transform: translateX(100px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

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

@keyframes scaleIn {
    from {
        transform: scale(0);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

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

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

.stats-grid .stat-item {
    animation: waveFloat 3s ease-in-out infinite;
}
.stats-grid .stat-item:nth-child(2) {
    animation-delay: 0.5s;
}
.stats-grid .stat-item:nth-child(3) {
    animation-delay: 1s;
}
.stats-grid .stat-item:nth-child(4) {
    animation-delay: 1.5s;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-logo {
        max-width: 6rem;
        max-height: 6rem;
        margin-top: 1rem;
        margin-bottom: 1rem;
    }
    
    .logo-glow {
        width: 26rem;
        height: 26rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .performance-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-buttons,
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .nav-menu.active {
        display: flex;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 1rem;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }
    
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
}

@media (max-width: 400px) {
    .hero-logo {
        max-width: 3rem;
        max-height: 3rem;
        margin-top: 0.5rem;
        margin-bottom: 0.5rem;
    }
    .logo-glow {
        width: 14rem;
        height: 14rem;
    }
    .hero-title {
        font-size: 1.3rem;
    }
    .hero-description {
        font-size: 1rem;
    }
    .service-card {
        padding: 1rem 0.7rem 1rem 0.7rem;
    }
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    }
    .social-btn {
        width: 44px;
        height: 44px;
    }
    .social-btn i {
        font-size: 1.4rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .performance-card {
        padding: 1rem;
        border-radius: 1rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    .community-section {
        padding: 2rem 0 2rem 0;
    }
    .social-links {
        gap: 0.7rem;
    }
    .hero-logo {
        max-width: 6rem;
        max-height: 6rem;
        margin-top: 1rem;
        margin-bottom: 1rem;
    }
}

@media (max-width: 600px) {
    .hero-logo {
        max-width: 6rem;
        max-height: 6rem;
        margin-top: 1rem;
        margin-bottom: 1rem;
    }
    .hero-buttons .btn {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        max-width: 320px;
        min-width: 0;
        margin-left: auto;
        margin-right: auto;
        box-sizing: border-box;
        font-size: 1rem;
        padding: 0.75rem 1.5rem;
        text-align: center;
        white-space: normal;
        overflow-wrap: break-word;
        height: auto;
    }
    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1.2rem;
    }
    .stat-icon {
        width: 48px;
        height: 48px;
        margin-bottom: 0.7rem;
    }
}

.stars i {
    color: #FFD700;
    font-size: 2rem;
    margin: 0 0.15em;
    text-shadow: 0 2px 8px rgba(0,0,0,0.08);
    vertical-align: middle;
}

/* Стили для сервисных карточек из akkuria-v5 */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}
.service-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(36, 185, 227, 0.08), 0 1.5px 6px rgba(42, 110, 144, 0.04);
    padding: 2rem 2rem 1.5rem 2rem;
    transition: box-shadow 0.3s, transform 0.3s;
    position: relative;
    min-height: 220px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    overflow: hidden;
}
.card-3d {
    transform-style: preserve-3d;
    transition: none;
}
.card-3d:hover {
    transform: none;
    box-shadow: 0 8px 30px rgba(36, 185, 227, 0.18);
}
.ribbon-shape {
    position: relative;
    overflow: hidden;
}
.ribbon-shape::before {
    content: '';
    position: absolute;
    top: 0;
    left: -50%;
    width: 200%;
    height: 100%;
    background: linear-gradient(45deg, transparent 30%, var(--akkuria-bright-cyan) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
    opacity: 0.3;
    pointer-events: none;
}
.ribbon-shape:hover::before {
    transform: translateX(100%);
}
.service-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.service-header h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--akkuria-dark-blue);
    margin: 0;
    text-align: left;
    white-space: pre-line;
    margin-bottom: 0.5rem;
}
.service-badge {
    display: inline-block;
    padding: 0.25em 0.9em;
    border-radius: 1em;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #fff;
    margin-left: 0.5em;
}
.service-badge.core { background: #2A6E90; }
.service-badge.popular { background: #24B9E3; }
.service-badge.enterprise { background: #1E3A48; }
.service-badge.developer { background: #6C757D; }
.service-badge.security { background: #E74C3C; }
.service-badge.learning { background: #27AE60; }
.service-card p {
    color: #6c757d;
    font-size: 1.05rem;
    margin-bottom: 0;
    text-align: left;
}
.service-card h3 span {
    display: block;
}

.community-section {
    padding: 0.5rem 0 0 0;
}
.community-section .section-header {
    margin-bottom: 0;
    margin-top: 0;
}
.community-section .section-title.gradient-text {
    font-size: 2rem;
    font-weight: 500;
    color: #212529;
    background: none;
    -webkit-background-clip: initial;
    -webkit-text-fill-color: initial;
    background-clip: initial;
    text-align: center;
    margin-bottom: 1.5rem;
}
.community-section .section-description {
    text-align: center;
    color: var(--muted-gray);
    font-size: 1.15rem;
    margin-bottom: 2rem;
}
.community-section .social-links {
    margin-top: 2rem;
    margin-bottom: 0;
}
.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 0;
    margin-bottom: 0;
}
.social-btn {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue));
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    box-shadow: 0 4px 16px rgba(36,185,227,0.10);
    transition: transform 0.2s, box-shadow 0.2s;
    cursor: pointer;
    outline: none;
    text-decoration: none;
}
.social-btn i {
    color: #fff !important;
    font-size: 2.2rem;
    line-height: 1;
}
.social-btn:hover {
    transform: translateY(-4px) scale(1.12);
    box-shadow: 0 8px 32px rgba(36,185,227,0.18);
}

.cta-content h2 {
    margin-bottom: 4rem !important;
}

html {
    scroll-behavior: smooth;
}

/* Модальное окно стейкинга адаптивно */
#stakeWidgetModal > div {
    min-width: 0 !important;
    width: 95vw !important;
    max-width: 480px !important;
    padding: 0.5rem !important;
    border-radius: 1rem !important;
}
#stakeWidgetModal iframe {
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
    height: 340px !important;
}
#closeStakeWidgetModal {
    font-size: 2.2rem !important;
    top: 4px !important;
    right: 8px !important;
}
@media (max-width: 600px) {
    html, body {
        padding: 0 !important;
        margin: 0 !important;
        overflow-x: hidden !important;
    }
    #stakeWidgetModal {
        left: 0 !important;
        right: 0 !important;
        width: 100vw !important;
        min-width: 0 !important;
        max-width: 100vw !important;
        box-sizing: border-box !important;
        padding: 0 !important;
        margin: 0 !important;
    }
    #stakeWidgetModal > div {
        width: 100vw !important;
        max-width: 100vw !important;
        min-width: 0 !important;
        padding: 0 !important;
        margin: 0 !important;
        border-radius: 0.2rem !important;
    }
    #stakeWidgetModal iframe {
        width: 100vw !important;
        max-width: 100vw !important;
        min-width: 0 !important;
        display: block !important;
        height: 90vh !important;
        border-radius: 0.2rem !important;
    }
    #closeStakeWidgetModal {
        font-size: 2.5rem !important;
        top: 2px !important;
        right: 4px !important;
    }
}

.stats-header {
    margin-bottom: 5rem;
}

.hero-section .btn-outline {
    color: #fff;
    border-color: #fff;
}
.hero-section .btn-outline svg,
.hero-section .btn-outline .external-icon {
    stroke: #fff;
    color: #fff;
    fill: #fff;
}

@media (max-width: 1200px) {
    .hero-logo {
        max-width: 24rem;
        max-height: 24rem;
    }
}
@media (max-width: 900px) {
    .hero-logo {
        max-width: 16rem;
        max-height: 16rem;
    }
}
@media (max-width: 700px) {
    .hero-logo {
        max-width: 10rem;
        max-height: 10rem;
    }
}
@media (max-width: 500px) {
    .hero-logo {
        max-width: 6rem;
        max-height: 6rem;
    }
}
@media (max-width: 400px) {
    .hero-logo {
        max-width: 3rem;
        max-height: 3rem;
    }
}

