:root {
    --primary-orange: #FF6B35;
    --secondary-orange: #FF8C42;
    --accent-orange: #FFB88C;
    --dark-text: #1A202C;
    --medium-text: #2D3748;
    --light-text: #718096;
    --bg-white: #FFFFFF;
    --bg-light: #F7FAFC;
    --bg-lighter: #EDF2F7;
    --success-green: #48BB78;
    --info-blue: #4299E1;
    --border-color: #E2E8F0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Animation Utilities */
.gsap-reveal {
    opacity: 0;
    transform: translateY(50px);
}

.gsap-reveal-left {
    opacity: 0;
    transform: translateX(-50px);
}

.gsap-reveal-right {
    opacity: 0;
    transform: translateX(50px);
}

.gsap-reveal-scale {
    opacity: 0;
    transform: scale(0.9);
}

/* Update Flash Animation */
@keyframes updateFlash {
    0% {
        color: rgba(255, 184, 140, 0.3);
    }
    50% {
        color: rgba(255, 107, 53, 0.5);
    }
    100% {
        color: var(--dark-text);
    }
}

.update-flash {
    animation: updateFlash 0.6s ease-out;
    border-radius: 8px;
}

/* Smooth scroll behavior */
html {
    scroll-behavior: auto; /* Let GSAP handle smooth scrolling */
    -webkit-scroll-behavior: smooth;
    scroll-behavior: smooth;
}

/* Better mobile scrolling */
* {
    -webkit-overflow-scrolling: touch;
}

/* Animation performance optimizations */
.hero-animation,
.overview-animation,
.feature-icon,
.roadmap-dot {
    will-change: transform;
}

/* Custom cursor for interactive elements */
.btn-primary,
.btn-white,
.dashboard-btn,
.feature-item,
.faq-question {
    cursor: pointer;
    transition: transform 0.3s ease;
}

/* Enhanced hover states */
.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(255, 107, 53, 0.1);
}

/* Prevent body scroll when mobile menu is open */
body.menu-open {
    overflow: hidden;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--dark-text);
    background: var(--bg-white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--dark-text);
    text-decoration: none;
    flex-shrink: 0;
}

.logo img {
    height: 50px;
}

nav {
    display: flex;
    gap: 2.5rem;
    align-items: center;
    flex-wrap: wrap;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
    background: none;
    border: none;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--dark-text);
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

nav a {
    color: var(--medium-text);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s;
    position: relative;
    white-space: nowrap;
}

nav a:hover {
    color: var(--primary-orange);
}

nav a:not(.dashboard-btn)::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-orange);
    transition: width 0.3s;
}

nav a:not(.dashboard-btn):hover::after {
    width: 100%;
}

.dashboard-btn {
    background: var(--primary-orange);
    color: var(--bg-white);
    padding: 0.7rem 1.8rem;
    border-radius: 56px;
    font-weight: 600;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dashboard-btn svg {
    transition: all 0.3s ease;
}

.dashboard-btn::after {
    display: none;
}

.dashboard-btn:hover {
    background: var(--secondary-orange);
    transform: translateY(-2px);
    color: #fff;
}

.dashboard-btn:hover svg {
    transform: rotate(90deg);
}

/* Hero Section */
.hero {
    margin-top: 80px;
    padding: 5rem 5% 4rem;
    display: flex;
    justify-content: center;
    gap: 4%;
    background: linear-gradient(135deg, var(--bg-white) 0%, var(--bg-light) 100%);
    position: relative;
    overflow: hidden;
    will-change: background-position;
    transform: translateZ(0);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 107, 53, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 140, 66, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(255, 184, 140, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    max-width: 600px;
    padding-top: 0;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1.1;
    color: var(--dark-text);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.hero-content h1 span {
    color: var(--primary-orange);
    position: relative;
}

.hero-content .subtitle {
    font-size: 1.15rem;
    color: var(--light-text);
    margin-bottom: 2rem;
    line-height: 1.5;
    font-weight: 400;
}

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

.btn-primary {
    background: var(--primary-orange);
    color: var(--bg-white);
    padding: 1rem 2rem;
    border-radius: 57px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: var(--secondary-orange);
    transform: translateY(-2px);
}

/* Partner Logos */
.partner-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    margin-top: 0;
    padding: 0;
}

.partner-logos .logo-item-details {
    display: flex;
    flex-direction: column;
    line-height: 1.6;
    text-decoration: none;
    justify-content: center;
}

.partner-logos .logo-item-details .logo-title {
    font-weight: 600;
    font-size: 11px;
    color: var(--dark-text);
}

.partner-logos .logo-item-details span {
    text-decoration: none;
    font-size: 9px;
    color: var(--medium-text);
}

.logo-item {
    display: flex;
    opacity: 0.7;
    transition: opacity 0.3s ease;
    text-decoration: none;
    gap: 0.5rem;
}

.logo-item:hover {
    opacity: 1;
}

.logo-item img{
    height: 40px; 
    object-fit: contain;
    border-radius: 10px;
}

.btn-secondary {
    background: var(--bg-white);
    color: var(--primary-orange);
    padding: 1rem 2rem;
    border-radius: 48px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s;
    border: 2px solid var(--primary-orange);
}

.btn-secondary:hover {
    background: var(--primary-orange);
    color: var(--bg-white);
}

/* Statistics Grid */
.stats-container {
    background: var(--bg-white);
    border: 2px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
}

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

.stat-item {
    padding: 2rem 1.5rem;
    border-right: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    transition: all 0.3s;
    background: transparent;
}

.stat-item:nth-child(2n) {
    border-right: none;
}

.stat-item:nth-child(3),
.stat-item:nth-child(4) {
    border-bottom: none;
}

.stat-item:hover {
    background: var(--bg-light);
}

.stat-item h3 {
    font-size: 2.5rem;
    font-weight: 900;
    color: #4d4d4d;
    margin-bottom: 0.3rem;
    line-height: 1;
}

.stat-item p {
    color: var(--medium-text);
    font-size: 0.9rem;
    font-weight: 600;
}

/* Presale Box - Cleaner Design */
.presale-wrapper {
    position: relative;
    max-width: 600px;
    min-width: 500px;
    flex-grow: 1;
}

.presale-box {
    background: var(--bg-white);
    padding: 2rem;
    padding-top: 0;
    border-radius: 16px;
    border-left: 1px solid var(--bg-lighter);
    position: relative;
    will-change: transform, opacity;
    transform: translateZ(0);
}

.presale-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--dark-text);
    color: var(--bg-white);
    padding: 0.4rem 0.9rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.presale-header {
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.presale-header h2 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: var(--dark-text);
}

.presale-header p {
    color: var(--light-text);
    font-size: 0.95rem;
}

.presale-kpis {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 1.5rem 0;
}

.presale-kpi {
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 1rem;
}

.presale-kpi-label {
    font-size: 0.8rem;
    color: var(--light-text);
    margin-bottom: 0.3rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.presale-kpi-value {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--dark-text);
}

.presale-kpi-note {
    font-size: 0.75rem;
    color: var(--primary-orange);
    background: var(--bg-white);
    padding: 0.3rem 0.6rem;
    border-radius: 12px;
    margin-top: 0.5rem;
    display: inline-block;
    border: 1px solid var(--accent-orange);
}

.progress-section {
    margin: 1.5rem 0;
}

.progress-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--medium-text);
}

.progress-percentage {
    color: var(--primary-orange);
}

.progress-bar {
    height: 12px;
    background: var(--bg-lighter);
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.progress-fill {
    height: 100%;
    background: var(--primary-orange);
    width: 67%;
    border-radius: 10px;
    animation: progressLoad 2s ease-out;
}

@keyframes progressLoad {
    from { width: 0%; }
}

.progress-details {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: var(--light-text);
    margin-top: 0.5rem;
}

.amount-raised {
    color: var(--success-green);
    font-weight: 700;
}

.countdown-box {
    color: var(--dark-text);
    /* padding: 0.6rem 1rem; */
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.9rem;
    /* text-align: center; */
    margin: 1rem 0;
}

.presale-details {
    /* padding: 1.5rem 0; */
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    margin: 1.5rem 0;
    display: flex;
    gap: 1rem;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    padding: 0.7rem 0;
    transition: background 0.3s;
    gap: 0.5rem;
}

.detail-label {
    color: var(--light-text);
    font-size: 0.9rem;
    font-weight: 500;
}

.detail-value {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--dark-text);
}

.connect-wallet-btn {
    width: 100%;
    background: var(--primary-orange);
    color: var(--bg-white);
    padding: 1.1rem;
    border: none;
    border-radius: 53px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.connect-wallet-btn svg {
    transition: all 0.3s ease;
}

.connect-wallet-btn:hover {
    background: var(--secondary-orange);
    transform: translateY(-2px);
}

.connect-wallet-btn:hover svg {
    transform: scale(1.1);
}

/* Stili per Reown AppKit Button */
appkit-button {
    width: 100% !important;
    display: block !important;
    margin-bottom: 1rem !important;
}

/* Override degli stili interni del web component */
appkit-button::part(button) {
    width: 100% !important;
    background: var(--primary-orange) !important;
    color: var(--bg-white) !important;
    padding: 1.1rem !important;
    border: none !important;
    border-radius: 53px !important;
    font-size: 1rem !important;
    font-weight: 700 !important;
    cursor: pointer !important;
    transition: all 0.3s !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3) !important;
}

appkit-button::part(button):hover {
    background: var(--secondary-orange) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4) !important;
}

/* Fallback per web component senza shadow parts */
appkit-button > * {
    width: 100% !important;
    background: var(--primary-orange) !important;
    color: var(--bg-white) !important;
    padding: 1.1rem !important;
    border: none !important;
    border-radius: 53px !important;
    font-size: 1rem !important;
    font-weight: 700 !important;
    cursor: pointer !important;
    transition: all 0.3s !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3) !important;
}

appkit-button > *:hover {
    background: var(--secondary-orange) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4) !important;
}

/* CSS Custom Properties per Reown AppKit */
appkit-button {
    --w3m-z-index: 9999;
    --w3m-accent: var(--primary-orange);
    --w3m-color-mix: var(--primary-orange);
    --w3m-color-mix-strength: 40%;
    --w3m-font-family: 'Poppins', sans-serif;
    --w3m-border-radius-master: 53px;
    --w3m-border-radius-xs: 53px;
    --w3m-border-radius-s: 53px;
    --w3m-border-radius-m: 53px;
    --w3m-border-radius-l: 53px;
    --w3m-border-radius-xl: 53px;
}

/* Stili più specifici per forzare l'override */
appkit-button,
appkit-button *,
appkit-button button,
appkit-button [role="button"] {
    background-color: var(--primary-orange) !important;
    background: var(--primary-orange) !important;
    color: white !important;
    border-radius: 53px !important;
    padding: 1.1rem !important;
    font-weight: 700 !important;
    font-size: 1rem !important;
    font-family: 'Poppins', sans-serif !important;
    border: none !important;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3) !important;
    transition: all 0.3s ease !important;
    cursor: pointer !important;
    text-transform: none !important;
    letter-spacing: normal !important;
    line-height: 1.2 !important;
}

appkit-button:hover,
appkit-button:hover *,
appkit-button:hover button,
appkit-button:hover [role="button"] {
    background-color: var(--secondary-orange) !important;
    background: var(--secondary-orange) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4) !important;
}

/* Wallet Info Modal */
.wallet-info-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    backdrop-filter: blur(8px);
}

.wallet-info-content {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    max-width: 400px;
    width: 90%;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.wallet-info-content h3 {
    margin-bottom: 1rem;
    color: var(--dark-text);
    font-size: 1.5rem;
}

.wallet-info-content p {
    margin-bottom: 0.5rem;
    color: var(--medium-text);
    word-break: break-all;
    font-family: monospace;
    font-size: 0.9rem;
}

.wallet-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.btn-secondary, .btn-danger {
    padding: 10px 20px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-secondary {
    background: var(--bg-lighter);
    color: var(--dark-text);
}

.btn-secondary:hover {
    background: var(--border-color);
}

.btn-danger {
    background: #E53E3E;
    color: white;
}

.btn-danger:hover {
    background: #C53030;
}

.close-btn {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--light-text);
    line-height: 1;
}

.close-btn:hover {
    color: var(--dark-text);
}

.wallet-options {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 0.6rem;
    margin-bottom: 1rem;
}

.wallet-btn {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 53px;
    padding: 0.8rem 0.5rem;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}
.wallet-btn svg {
    margin-bottom: 7px;
}

.wallet-btn:hover {
    border-color: var(--primary-orange);
    background: var(--bg-light);
}

.presale-note {
    font-size: 0.8rem;
    color: var(--light-text);
    line-height: 1.6;
}

.wallet-balance-box {
    margin: 1rem 0;
    padding: 1rem;
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: 12px;
}

.wallet-balance-header {
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--primary-orange);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.wallet-balance-content {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.balance-item {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.85rem;
}

.balance-icon {
    width: 18px;
    height: 18px;
    border-radius: 50%;
}

.balance-label {
    font-weight: 600;
    color: var(--medium-text);
}

.balance-value {
    font-weight: 700;
    color: var(--dark-text);
}

.wallet-manage-icon {
    cursor: pointer;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-white);
    border-radius: 50%;
    transition: all 0.3s;
}

.wallet-manage-icon:hover {
    background: var(--primary-orange);
    color: white;
    transform: scale(1.1);
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.wallet-balance-skeleton .wallet-balance-content {
    min-height: 30px;
}

.wallet-balance-skeleton .skeleton-line {
    height: 16px;
    width: 80px;
    background: linear-gradient(90deg, var(--bg-lighter) 25%, var(--bg-light) 50%, var(--bg-lighter) 75%);
    background-size: 200% 100%;
    border-radius: 6px;
    animation: skeletonShimmer 1.5s infinite;
}

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

/* Buy Interface Styles */
.buy-interface {
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    padding: 0;
    background: transparent;
}

.buy-interface-content {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.75rem;
    padding: 1rem;
    background: var(--apkt-colors-semanticWarning020);
    border: 2px solid var(--accent-orange);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.buy-interface-content:hover {
    border-color: var(--accent-orange);
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.1);
}

/* Payment Selector Dropdown */
.payment-selector {
    position: relative;
    flex-shrink: 0;
}

.payment-dropdown-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    min-width: 90px;
}

.payment-dropdown-btn:hover {
    border-color: var(--primary-orange);
    box-shadow: 0 2px 8px rgba(255, 107, 53, 0.1);
}

.payment-option-display {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.payment-coin-icon {
    width: 20px;
    height: 20px;
}

.payment-coin-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--dark-text);
}

.dropdown-arrow {
    transition: transform 0.3s ease;
    stroke: var(--medium-text);
}

.payment-dropdown-btn.active .dropdown-arrow {
    transform: rotate(180deg);
}

.payment-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    z-index: 100;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    margin-top: 0.5rem;
}

.payment-dropdown.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.payment-option {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.payment-option:hover {
    background-color: var(--bg-light);
}

.payment-option:not(:last-child) {
    border-bottom: 1px solid var(--bg-lighter);
}

/* Amount Input Section */
.amount-input-section {
    flex: 1;
    min-width: 120px; /* Larghezza minima garantita */
}

.amount-input {
    width: 100%;
    min-width: 120px; /* Previene che diventi troppo piccolo */
    padding: 0.75rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 500;
    background: var(--bg-white);
    transition: all 0.3s ease;
    text-align: center;
}

.amount-input:focus {
    outline: none;
    border-color: var(--primary-orange);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.amount-input::placeholder {
    color: var(--light-text);
    font-weight: 400;
}

/* RNS Correspondence */
.rns-correspondence {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 0.45rem 1rem;
    min-width: 100px;
    justify-content: center;
    flex-shrink: 0;
}

.rns-label {
    font-size: 1.1rem;
    color: var(--light-text);
    font-weight: 400;
}

.rns-amount {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-orange);
}

.rns-symbol {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--medium-text);
}

/* Buy Button */
.buy-btn {
    background: var(--primary-orange);
    color: var(--bg-white);
    border: none;
    border-radius: 12px;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    flex-shrink: 0;
    min-width: 80px;
    flex-grow: 1;
}

.buy-btn:hover {
    background: var(--secondary-orange);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.3);
}

.buy-btn:active {
    transform: translateY(0);
}

.buy-btn:disabled {
    background: var(--light-text);
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* Section Styles */
.section {
    padding: 5rem 5%;
}

.section-alt {
    background: var(--bg-light);
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.section-header h2 {
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--dark-text);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.section-header p {
    font-size: 1.15rem;
    color: var(--light-text);
    line-height: 1.8;
}

.whitepaper-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-orange);
    text-decoration: none;
    font-weight: 600;
    margin-top: 1rem;
    transition: margin 0.3s;
}

.whitepaper-link:hover {
    margin-left: 0.8rem;
}

/* Partners Section */
.partners {
    padding: 3rem 2rem;
    text-align: center;
    background: var(--bg-lighter);
    overflow: hidden;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.partners h3 {
    text-align: center;
    color: var(--light-text);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 2rem;
    text-transform: uppercase;  
    letter-spacing: 2px;
}

/* Infinite scroll container */
.partner-logos-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    mask-image: linear-gradient(
        to right,
        transparent,
        black 10%,
        black 90%,
        transparent
    );
    -webkit-mask-image: linear-gradient(
        to right,
        transparent,
        black 10%,
        black 90%,
        transparent
    );
}

.partner-logos-track {
    display: flex;
    align-items: center;
    gap: 3rem;
    animation: scroll-logos 10s linear infinite;
    width: fit-content;
    will-change: transform;
}

/* Pause animation on hover */
.partner-logos-wrapper:hover .partner-logos-track {
    animation-play-state: paused;
}

@keyframes scroll-logos {
    0% {
        transform: translate3d(0, 0, 0);
    }
    100% {
        transform: translate3d(calc(-100% / 4), 0, 0);
    }
}

/* Logo link styles */
.partner-logo-link {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    transition: all 0.1s ease;
    text-decoration: none;
    min-width: 160px;
    height: 80px;
}

.partner-logo-link:hover {
    transform: translateY(-5px) scale(1.05);
}

/* Logo image styles */
.partner-logo-img {
    max-width: 200px;
    max-height: 70px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(0%);
    opacity: 0.85;
    transition: all 0.3s ease;
}

.partner-logo-link:hover .partner-logo-img {
    filter: grayscale(0%);
    opacity: 1;
}

/* SVG logo styles */
.partner-logo-svg {
    transition: all 0.3s ease;
    opacity: 0.85;
}

.partner-logo-link:hover .partner-logo-svg {
    opacity: 1;
}

.partner-logo-link:hover .partner-logo-svg text {
    fill: var(--primary-orange);
}

.partner-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.partner-logo {
    height: 40px;
    opacity: 0.4;
    filter: grayscale(100%);
    transition: all 0.3s;
}

.partner-logo:hover {
    opacity: 0.8;
    filter: grayscale(0%);
}

/* Mobile responsive */
@media (max-width: 768px) {
    .partner-logos-track {
        gap: 2rem;
        animation: scroll-logos 40s linear infinite;
    }
    
    .partner-logo-link {
        min-width: 120px;
        height: 60px;
        padding: 0.75rem 1rem;
    }
    
    .partner-logo-img {
        max-width: 100px;
        max-height: 35px;
    }
    
    .partners h3 {
        font-size: 1.2rem;
    }
}

/* Overview Section */
.overview-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    margin-bottom: 5rem;
    padding: 3rem 0;
    border-bottom: 1px solid var(--border-color);
}

.overview-row:last-child {
    margin-bottom: 0;
    border-bottom: none;
}

.overview-text h3 {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--dark-text);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.overview-text p {
    font-size: 1.1rem;
    color: var(--light-text);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.overview-list {
    list-style: none;
    padding: 0;
}

.overview-list li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--medium-text);
    font-size: 1.05rem;
}

.overview-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-green);
    font-weight: 700;
    font-size: 1.2rem;
}

.overview-animation {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 350px;
}

.animation-box {
    width: 100%;
    height: 100%;
    background: var(--bg-lighter);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    border: 2px solid var(--border-color);
}

.house-icon {
    width: 100%;
}

.coin-animation {
    width: 100%;
    max-height: 500px;
}

.chain-animation {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.chain-link {
    width: 70px;
    height: 70px;
    background: var(--primary-orange);
    border-radius: 12px;
    animation: chainMove 2s ease-in-out infinite;
}

.chain-link:nth-child(2) {
    animation-delay: 0.2s;
}

.chain-link:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes chainMove {
    0%, 100% { transform: scale(1); opacity: 0.7; }
    50% { transform: scale(1.15); opacity: 1; }
}

/* Features Section */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    background: var(--bg-white);
}

.feature-item {
    padding: 3rem 2.5rem;
    border-right: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
}

.feature-item:nth-child(3n) {
    border-right: none;
}

.feature-item:nth-child(4),
.feature-item:nth-child(5),
.feature-item:nth-child(6) {
    border-bottom: none;
}

.feature-item:hover {
    background: var(--bg-light);
    transform: translateY(-5px);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-orange), var(--primary-orange));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.feature-item h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 1rem;
}

.feature-item p {
    color: var(--light-text);
    line-height: 1.7;
    margin-bottom: 1rem;
    flex-grow: 1;
}

/* Tokenomics Section - Interactive Chart */
.tokenomics-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.tokenomics-chart-section {
    background: var(--bg-white);
    padding: 3rem;
    border-radius: 20px;
    border: 2px solid var(--border-color);
    height: 100%;
}

.chart-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--dark-text);
    margin-bottom: 2rem;
    text-align: center;
}

.chart-container {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
    position: relative;
}

#tokenomics-chart {
    max-width: 320px;
    cursor: pointer;
}

.chart-center-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    pointer-events: none;
}

.chart-center-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--dark-text);
    line-height: 1;
}

.chart-center-label {
    font-size: 0.9rem;
    color: var(--light-text);
    font-weight: 600;
}

.chart-legend {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem;
    border-radius: 8px;
    transition: all 0.3s;
    cursor: pointer;
}

.legend-item:hover {
    background: var(--bg-light);
}

.legend-item.active {
    background: var(--bg-light);
    border-left: 3px solid var(--primary-orange);
}

.legend-color {
    width: 20px;
    height: 20px;
    border-radius: 4px;
    flex-shrink: 0;
}

.legend-text {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.legend-label {
    font-weight: 600;
    color: var(--medium-text);
    font-size: 0.95rem;
}

.legend-percentage {
    font-weight: 700;
    color: var(--primary-orange);
    font-size: 1rem;
}

.tokenomics-details-section {
    background: var(--bg-white);
    padding: 3rem 1rem;
    border-radius: 20px;
    border: 2px solid var(--border-color);
}

.allocation-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.allocation-item {
    padding: 1.5rem 2rem;
    border-bottom: 1px solid var(--border-color);
    transition: box-shadow 0.3s;
}

.allocation-item:last-child {
    border-bottom: none;
}

.allocation-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.8rem;
}

.allocation-name {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--dark-text);
}

.allocation-amount {
    font-weight: 800;
    font-size: 1rem;
    color: var(--primary-orange);
}

.allocation-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.allocation-tokens {
    color: var(--light-text);
    font-size: 0.9rem;
}

.allocation-vesting {
    color: var(--medium-text);
    font-size: 0.85rem;
    background: var(--bg-light);
    padding: 0.3rem 0.8rem;
    border-radius: 12px;
}

.allocation-bar-container {
    height: 8px;
    background: var(--bg-lighter);
    border-radius: 10px;
    overflow: hidden;
}

.allocation-bar-fill {
    height: 100%;
    background: var(--primary-orange);
    border-radius: 10px;
    animation: barGrow 1.5s ease-out;
}

@keyframes barGrow {
    from { width: 0; }
}

.token-supply-info {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 12px;
    margin-top: 3rem;
    border: 2px solid var(--border-color);
}

.supply-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    margin-top: 1.5rem;
}

.supply-item {
    padding: 1.5rem;
    border-right: 1px solid var(--border-color);
    transition: background 0.3s;
}

.supply-item:nth-child(3n) {
    border-right: none;
}

.supply-item:hover {
    background: var(--bg-light);
}

.supply-item h4 {
    font-size: 0.85rem;
    color: var(--light-text);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.supply-item p {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-orange);
}

/* Roadmap Section */
.roadmap-container {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
}

.roadmap-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--border-color);
    transform: translateX(-50%);
}

.roadmap-progress {
    position: absolute;
    left: 50%;
    top: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--primary-orange), var(--secondary-orange));
    transform: translateX(-50%);
    height: 0%;
    transition: height 0.5s ease-out;
}

.roadmap-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
    position: relative;
}

.roadmap-content {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 16px;
    border: 2px solid var(--border-color);
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.roadmap-content.visible {
    opacity: 1;
    transform: translateY(0);
}

.roadmap-item:nth-child(odd) .roadmap-content {
    grid-column: 1;
}

.roadmap-item:nth-child(even) .roadmap-content {
    grid-column: 2;
}

.roadmap-dot {
    position: absolute;
    left: 50%;
    top: 2.5rem;
    width: 24px;
    height: 24px;
    background: var(--primary-orange);
    border: 4px solid var(--bg-white);
    border-radius: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 0 4px var(--border-color);
    z-index: 10;
}

.roadmap-quarter {
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--primary-orange);
    margin-bottom: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.roadmap-content h3 {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--dark-text);
    margin-bottom: 1.2rem;
}

.roadmap-content ul {
    list-style: none;
    padding-left: 0;
}

.roadmap-content li {
    padding: 0.3rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--light-text);
    line-height: 1.6;
}

.roadmap-content li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-green);
    font-weight: 700;
    font-size: 1.1rem;
}

/* Security Section */
.security-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    max-width: 1000px;
    margin: 0 auto;
    border: 2px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    background: var(--bg-white);
}

.security-item {
    padding: 3rem;
    border-right: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    transition: background 0.3s;
    display: flex;
    flex-direction: column;
}

.security-item > p {
    flex-grow: 1;
}

.security-item:nth-child(2n) {
    border-right: none;
}

.security-item:nth-child(3),
.security-item:nth-child(4) {
    border-bottom: none;
}

.security-item:hover {
    background: var(--bg-light);
}

.security-item h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.security-icon {
    width: 50px;
    height: 50px;
    background: var(--bg-lighter);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

/* FAQ Section */
.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-white);
    margin-bottom: 0;
    border-bottom: 1px solid var(--border-color);
    overflow: hidden;
    transition: all 0.3s;
}

.faq-item:first-child {
    border-top: 1px solid var(--border-color);
}

.faq-item:hover {
    background: var(--bg-light);
}

.faq-question {
    padding: 1.8rem 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: var(--dark-text);
    font-size: 1.1rem;
}

.faq-answer {
    padding: 0 2rem 1.8rem;
    color: var(--light-text);
    line-height: 1.8;
    display: block;
    height: 0;
    overflow: hidden;
    opacity: 0;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-toggle {
    width: 28px;
    height: 28px;
    background: var(--bg-lighter);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    font-size: 1.2rem;
    color: var(--medium-text);
}

.faq-item.active .faq-toggle {
    background: var(--primary-orange);
    color: var(--bg-white);
    transform: rotate(45deg);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-orange), var(--secondary-orange));
    padding: 5rem 5%;
    text-align: center;
    color: var(--bg-white);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="white" opacity="0.1"/></svg>');
    opacity: 0.3;
}

.cta-section h2 {
    font-size: 2.8rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    position: relative;
    z-index: 1;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.btn-white {
    background: var(--bg-white);
    color: var(--primary-orange);
    padding: 1.2rem 2.5rem;
    border-radius: 62px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s;
}

.btn-white:hover {
    transform: translateY(-3px);
}

.btn-outline-white {
    background: transparent;
    color: var(--bg-white);
    padding: 1.2rem 2.5rem;
    border-radius: 70px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    border: 2px solid var(--bg-white);
    transition: all 0.3s;
}

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

/* Footer */
footer {
    background: var(--bg-lighter);
    padding: 3rem 5% 2rem;
    border-top: 2px solid var(--border-color);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-about h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--dark-text);
    margin-bottom: 1rem;
}

.footer-about p {
    color: var(--light-text);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: var(--bg-white);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-orange);
    text-decoration: none;
    transition: all 0.3s;
    border: 1px solid var(--border-color);
    font-weight: 700;
}

.social-link:hover {
    background: var(--primary-orange);
    color: var(--bg-white);
    transform: translateY(-3px);
}

.footer-column h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-column a {
    display: block;
    color: var(--light-text);
    text-decoration: none;
    margin-bottom: 0.8rem;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: var(--primary-orange);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    color: var(--light-text);
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 968px) {
    /* Header Mobile */
    header {
        padding: 1rem 3%;
        flex-wrap: nowrap;
        gap: 1rem;
        justify-content: space-between;
    }
    
    .logo {
        font-size: 1.3rem;
        flex-shrink: 0;
    }
    
    .logo img {
        height: 40px;
    }
    
    /* Mobile Menu Toggle */
    .mobile-menu-toggle {
        display: flex;
    }
    
    /* Hide desktop navigation and show mobile overlay */
    nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 3rem;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        z-index: 999;
        order: unset;
        margin-top: 0;
        padding-top: 0;
        border-top: none;
    }
    
    nav.active {
        transform: translateX(0);
    }
    
    nav a {
        font-size: 1.5rem;
        font-weight: 600;
        text-align: center;
        padding: 1rem;
        color: var(--dark-text);
        white-space: nowrap;
    }
    
    .dashboard-btn {
        padding: 1rem 2rem;
        font-size: 1.2rem;
    }

    /* Hero Mobile */
    .hero {
        padding: 3rem 3% 2rem;
        flex-direction: column;
        gap: 3rem;
        margin-top: 80px; /* Standard header height */
    }
    
    .hero-content {
        max-width: 100%;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 2.5rem;
        line-height: 1.1;
        margin-bottom: 1rem;
    }
    
    .hero-content .subtitle {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-animation img {
        width: 100% !important;
        max-width: 500px;
        height: auto !important;
    }
    
    .partner-logos {
        gap: 2rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .logo-item svg {
        max-width: 120px;
    }

    /* Presale Box Mobile */
    .presale-wrapper {
        max-width: 100%;
        min-width: auto;
        margin-top: 2rem;
    }
    
    .presale-box {
        padding: 1.5rem;
    }
    
    .presale-kpis {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .presale-details {
        flex-direction: column;
        gap: 0;
    }
    
    .detail-row {
        padding: 0.5rem 0;
        border-bottom: 1px solid var(--border-color);
    }
    
    .detail-row:last-child {
        border-bottom: none;
    }
    
    /* Buy Interface Mobile */
    .buy-interface-content {
        flex-direction: column;
        gap: 1rem;
        padding: 1.25rem;
    }
    
    .payment-selector,
    .amount-input-section,
    .rns-correspondence,
    .buy-btn {
        width: 100%;
        min-width: 0; /* Reset min-width per mobile */
    }
    
    .payment-dropdown-btn,
    .amount-input,
    .rns-correspondence {
        padding: 1rem;
        font-size: 1.05rem;
        min-width: 0; /* Permette di usare 100% width */
    }
    
    .amount-input-section {
        min-width: 0; /* Reset per mobile - usa 100% del container */
    }
    
    .buy-btn {
        padding: 1rem 2rem;
        font-size: 1.1rem;
        min-width: unset;
    }

    /* Sections Mobile */
    .section {
        padding: 3rem 3%;
    }
    
    .section-header {
        margin-bottom: 3rem;
    }
    
    .section-header h2 {
        font-size: 2.2rem;
        line-height: 1.2;
    }
    
    .section-header p {
        font-size: 1.05rem;
    }

    /* Overview Mobile */
    .overview-row {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        margin-bottom: 3rem;
        padding: 2rem 0;
        text-align: center;
    }
    
    .overview-text h3 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }
    
    .overview-text p {
        font-size: 1rem;
        line-height: 1.7;
    }
    
    .overview-animation.hide-mobile{
        display: none;
    }
    
    .overview-animation img {
        width: 100% !important;
        max-height: 300px !important;
        height: auto !important;
    }

    /* Features Mobile */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .feature-item {
        border-right: none;
        border-bottom: 1px solid var(--border-color);
        padding: 2rem 1.5rem;
        text-align: center;
    }
    
    .feature-item:last-child {
        border-bottom: none;
    }
    
    .feature-item h3 {
        font-size: 1.2rem;
    }
    
    .feature-icon {
        margin: 0 auto 1rem;
    }

    /* Tokenomics Mobile */
    .tokenomics-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .tokenomics-chart-section {
        padding: 2rem 1.5rem;
    }
    
    .chart-container {
        max-width: 300px;
        margin: 0 auto;
    }
    
    #tokenomics-chart {
        width: 300px;
        height: 300px;
    }
    
    .allocation-item {
        padding: 1rem;
    }
    
    .allocation-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .allocation-details {
        margin: 0.5rem 0;
    }

    /* Supply Grid Mobile */
    .supply-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0;
    }

    .supply-item {
        border-right: 1px solid var(--border-color);
        border-bottom: 1px solid var(--border-color);
        padding: 1.5rem 1rem;
        text-align: center;
    }
    
    .supply-item:nth-child(2n) {
        border-right: none;
    }
    
    .supply-item:nth-child(5),
    .supply-item:nth-child(6) {
        border-bottom: none;
    }

    /* Roadmap Mobile */
    .roadmap-container {
        padding: 0 1rem;
    }
    
    .roadmap-item {
        grid-template-columns: 1fr;
        margin-bottom: 2rem;
    }

    .roadmap-item:nth-child(even) .roadmap-content {
        grid-column: 1;
        text-align: left;
    }

    .roadmap-line, .roadmap-progress {
        left: 20px;
        transform: none;
        width: 2px;
    }

    .roadmap-dot {
        left: 20px;
        transform: translateX(-50%);
        width: 12px;
        height: 12px;
    }
    
    .roadmap-content {
        margin-left: 3rem;
        padding: 1.5rem;
    }
    
    .roadmap-content h3 {
        font-size: 1.3rem;
    }
    
    .roadmap-quarter {
        font-size: 0.8rem;
    }

    /* Security Grid Mobile */
    .security-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .security-item {
        border-right: none;
        border-bottom: 1px solid var(--border-color);
        padding: 2rem 1.5rem;
        text-align: center;
    }
    
    .security-item:last-child {
        border-bottom: none;
    }
    
    .security-item h3 {
        font-size: 1.1rem;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .security-icon {
        margin-right: 0;
    }

    /* FAQ Mobile */
    .faq-container {
        gap: 0;
    }
    
    .faq-item {
        border-radius: 0;
        margin-bottom: 0;
        border-bottom: 1px solid var(--border-color);
    }
    
    .faq-item:first-child {
        border-radius: 12px 12px 0 0;
    }
    
    .faq-item:last-child {
        border-radius: 0 0 12px 12px;
        border-bottom: none;
    }
    
    .faq-question {
        padding: 1.5rem 1rem;
        font-size: 1rem;
    }
    
    .faq-answer {
        padding: 0 1rem 1.5rem;
        font-size: 0.95rem;
    }

    /* CTA Mobile */
    .cta-section {
        padding: 3rem 3%;
        text-align: center;
    }
    
    .cta-section h2 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .cta-section p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .btn-white, .btn-outline-white {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }

    /* Footer Mobile */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-about {
        margin-bottom: 1rem;
    }
    
    .social-links {
        justify-content: center;
        margin-top: 1rem;
    }
    
    .footer-bottom {
        text-align: center;
        padding: 1.5rem 0;
    }
    
    .footer-bottom p {
        font-size: 0.8rem;
    }

    /* Wallet Options Mobile */
    .wallet-options {
        grid-template-columns: 1fr;
    }
    
    .wallet-btn {
        justify-content: center;
        padding: 1rem;
        font-size: 0.9rem;
    }
}

/* Additional Animation Effects */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

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

/* Loading state for elements before GSAP animations */
.gsap-loading {
    opacity: 0;
    visibility: hidden;
}

/* Smooth transitions for all interactive elements */
button, .btn-primary, .btn-white, .btn-secondary, .dashboard-btn {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Enhanced shadows for depth */
.feature-item:hover,
.security-item:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}
.allocation-item:hover {
    box-shadow: 0 20px 20px -10px rgba(0, 0, 0, 0.1);
}

/* Subtle animations for background elements */
.section-alt::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 70% 30%, rgba(255, 107, 53, 0.02) 0%, transparent 50%);
    pointer-events: none;
}

.section-alt {
    position: relative;
}

/* Text reveal animations */
.text-reveal {
    overflow: hidden;
}

.text-reveal-inner {
    transform: translateY(100%);
}

/* Stagger animation delays */
.stagger-1 { animation-delay: 0.1s; }
.stagger-2 { animation-delay: 0.2s; }
.stagger-3 { animation-delay: 0.3s; }
.stagger-4 { animation-delay: 0.4s; }
.stagger-5 { animation-delay: 0.5s; }

/* Simple Modal Styles - Mutuum Style */
.simple-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.5);
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.modal-content {
    background: var(--bg-white);
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    max-width: 400px;
    width: 90%;
    position: relative;
    z-index: 1;
}

.modal-header {
    padding: 1.5rem 1.5rem 1rem;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark-text);
    margin: 0;
}

.close-btn {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--light-text);
    cursor: pointer;
    padding: 0;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s;
}

.close-btn:hover {
    background: var(--bg-light);
    color: var(--dark-text);
}

.modal-body {
    padding: 1.5rem;
}

.wallet-info {
    background: var(--bg-light);
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.wallet-info p {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--medium-text);
    margin: 0 0 0.5rem 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.address-box {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--bg-white);
    padding: 0.7rem;
    border-radius: 6px;
    border: 1px solid var(--border-color);
}

.address-box span {
    font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
    font-size: 0.8rem;
    color: var(--dark-text);
    flex: 1;
    word-break: break-all;
}

.copy-btn {
    background: var(--primary-orange);
    color: var(--bg-white);
    border: none;
    padding: 0.4rem 0.7rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.copy-btn:hover {
    background: var(--secondary-orange);
}

.disconnect-btn {
    width: 100%;
    background: #dc3545;
    color: var(--bg-white);
    border: none;
    padding: 0.8rem;
    border-radius: 6px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.disconnect-btn:hover {
    background: #c82333;
}

/* Simple Notification Styles */
.simple-notification {
    position: fixed;
    top: 2rem;
    right: 2rem;
    z-index: 10001;
    max-width: 350px;
    padding: 1rem 1.2rem;
    border-radius: 8px;
    color: var(--bg-white);
    font-weight: 500;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    animation: slideIn 0.3s ease-out;
}

.simple-notification.info {
    background: var(--info-blue);
}

.simple-notification.success {
    background: var(--success-green);
}

.simple-notification.warning {
    background: #ffa726;
}

.simple-notification.error {
    background: #ef5350;
}

.simple-notification button {
    background: none;
    border: none;
    color: inherit;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0;
    margin-left: 1rem;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.simple-notification button:hover {
    opacity: 1;
}

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

/* Wallet Modal Styles */
.wallet-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wallet-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
}

.wallet-modal-content {
    position: relative;
    background: white;
    border-radius: 20px;
    padding: 2rem;
    max-width: 450px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.wallet-modal-header {
    text-align: center;
    margin-bottom: 2rem;
}

.wallet-modal-header h3 {
    color: var(--dark-text);
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.wallet-modal-header p {
    color: var(--light-text);
    font-size: 0.9rem;
}

.wallet-options-modal {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.wallet-option {
    display: flex;
    align-items: center;
    padding: 1rem;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    background: white;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    color: var(--dark-text);
}

.wallet-option:hover {
    border-color: var(--primary-orange);
    background: rgba(255, 107, 53, 0.05);
    transform: translateY(-2px);
}

.wallet-option-icon {
    width: 40px;
    height: 40px;
    margin-right: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: var(--bg-lighter);
}

.wallet-option-content h4 {
    margin-bottom: 0.25rem;
    font-size: 1rem;
}

.wallet-option-content p {
    font-size: 0.85rem;
    color: var(--light-text);
}

.wallet-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.wallet-action {
    display: flex;
    align-items: center;
    padding: 1rem;
    border: none;
    border-radius: 12px;
    background: var(--bg-lighter);
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--dark-text);
    font-size: 1rem;
}

.wallet-action:hover {
    background: var(--bg-light);
    transform: translateY(-2px);
}

.wallet-action svg {
    margin-right: 0.75rem;
}

/* Enhanced Notification Styles */
.notification {
    position: fixed;
    top: 2rem;
    right: 2rem;
    z-index: 10001;
    min-width: 350px;
    max-width: 400px;
    border-radius: 16px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.notification-content {
    padding: 1.25rem 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.notification-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.notification-text {
    flex: 1;
    color: var(--dark-text);
    font-weight: 500;
    line-height: 1.5;
}

.notification-close {
    background: none;
    border: none;
    color: var(--light-text);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.notification-close:hover {
    background: var(--bg-lighter);
    color: var(--dark-text);
}

.notification-progress {
    height: 3px;
    background: var(--bg-lighter);
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}

.notification-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-orange), var(--secondary-orange));
}

.notification-success .notification-icon {
    background: rgba(72, 187, 120, 0.15);
    color: var(--success-green);
}

.notification-error .notification-icon {
    background: rgba(245, 101, 101, 0.15);
    color: #F56565;
}

.notification-warning .notification-icon {
    background: rgba(237, 137, 54, 0.15);
    color: #ED8936;
}

.notification-info .notification-icon {
    background: rgba(66, 153, 225, 0.15);
    color: var(--info-blue);
}

@media (max-width: 480px) {
    .notification {
        top: 1rem;
        right: 1rem;
        left: 1rem;
        min-width: unset;
        max-width: unset;
    }
}

/* Small Mobile Devices */
@media (max-width: 480px) {
    /* Header Mobile Small */
    header {
        padding: 0.8rem 4%;
        min-height: 80px;
    }
    
    .logo {
        font-size: 1.2rem;
    }
    
    .logo img {
        height: 35px;
    }
    
    /* Mobile menu adjustments for small screens */
    nav a {
        font-size: 1.3rem;
        padding: 0.8rem;
    }
    
    .dashboard-btn {
        padding: 0.8rem 1.5rem;
        font-size: 1.1rem;
    }
    
    .mobile-menu-toggle span {
        width: 22px;
        height: 2.5px;
    }

    /* Hero Mobile Small */
    .hero {
        padding: 2rem 4% 1.5rem;
        margin-top: 80px;
        gap: 2rem;
    }
    
    .hero-content h1 {
        font-size: 2rem;
        margin-bottom: 0.8rem;
    }
    
    .hero-content .subtitle {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .partner-logos {
        gap: 1.5rem;
    }
    
    .logo-item svg {
        max-width: 100px;
        height: 30px;
    }

    /* Presale Mobile Small */
    .presale-box {
        padding: 1rem;
    }
    
    .presale-header h2 {
        font-size: 1.5rem;
    }
    
    .presale-kpi {
        padding: 0.8rem;
    }
    
    .presale-kpi-value {
        font-size: 1.1rem;
    }
    
    .connect-wallet-btn {
        padding: 1rem;
        font-size: 0.9rem;
    }
    
    .wallet-btn {
        padding: 0.8rem;
        font-size: 0.85rem;
    }
    
    /* Buy Interface Small Mobile */
    .buy-interface-content {
        padding: 1rem;
        gap: 0.8rem;
    }
    
    .amount-input-section {
        min-width: 0;
    }
    
    .amount-input {
        padding: 0.9rem 0.8rem;
        font-size: 1rem;
        min-width: 0; /* Permette al campo di adattarsi al container */
    }
    
    .payment-dropdown-btn,
    .rns-correspondence {
        padding: 0.9rem 0.8rem;
        font-size: 1rem;
    }

    /* Sections Mobile Small */
    .section {
        padding: 2.5rem 4%;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .section-header p {
        font-size: 1rem;
    }

    /* Overview Mobile Small */
    .overview-text h3 {
        font-size: 1.5rem;
    }
    
    .overview-text p {
        font-size: 0.95rem;
    }
    
    .overview-animation {
        height: 200px;
    }

    /* Features Mobile Small */
    .feature-item {
        padding: 1.5rem 1rem;
    }
    
    .feature-item h3 {
        font-size: 1.1rem;
    }
    
    .feature-item p {
        font-size: 0.9rem;
    }
    
    .feature-icon {
        width: 50px;
        height: 50px;
    }

    /* Tokenomics Mobile Small */
    .tokenomics-chart-section {
        padding: 1.5rem 1rem;
    }
    
    .chart-container {
        max-width: 250px;
    }
    
    #tokenomics-chart {
        width: 250px;
        height: 250px;
    }
    
    .allocation-item {
        padding: 0.8rem;
    }
    
    .allocation-name {
        font-size: 0.9rem;
    }
    
    .allocation-amount {
        font-size: 1.1rem;
    }

    /* Supply Grid Mobile Small */
    .supply-item {
        padding: 1rem 0.8rem;
    }
    
    .supply-item h4 {
        font-size: 0.9rem;
    }
    
    .supply-item p {
        font-size: 0.9rem;
    }

    /* Roadmap Mobile Small */
    .roadmap-content {
        margin-left: 2.5rem;
        padding: 1rem;
    }
    
    .roadmap-content h3 {
        font-size: 1.1rem;
    }
    
    .roadmap-content li {
        font-size: 0.85rem;
    }
    
    .roadmap-quarter {
        font-size: 0.75rem;
    }

    /* Security Mobile Small */
    .security-item {
        padding: 1.5rem 1rem;
    }
    
    .security-item h3 {
        font-size: 1rem;
    }
    
    .security-item p {
        font-size: 0.9rem;
    }

    /* FAQ Mobile Small */
    .faq-question {
        padding: 1.2rem 0.8rem;
        font-size: 0.95rem;
    }
    
    .faq-answer {
        padding: 0 0.8rem 1.2rem;
        font-size: 0.9rem;
    }

    /* CTA Mobile Small */
    .cta-section {
        padding: 2.5rem 4%;
    }
    
    .cta-section h2 {
        font-size: 1.7rem;
    }
    
    .cta-section p {
        font-size: 0.95rem;
    }

    /* Footer Mobile Small */
    .footer-content {
        gap: 1.5rem;
    }
    
    .footer-about h3 {
        font-size: 1.3rem;
    }
    
    .footer-about p {
        font-size: 0.9rem;
    }
    
    .footer-column h4 {
        font-size: 1rem;
    }
    
    .footer-column a {
        font-size: 0.9rem;
    }
    
    .footer-bottom p {
        font-size: 0.75rem;
    }

    /* Modal Mobile Small */
    .modal-content {
        margin: 1rem;
        width: calc(100% - 2rem);
    }
    
    .wallet-modal-content {
        padding: 1.5rem;
        width: 95%;
    }
    
    .simple-notification,
    .notification {
        top: 1rem;
        right: 1rem;
        left: 1rem;
        max-width: none;
    }
}

/* Large Mobile/Small Tablet */
@media (max-width: 768px) and (min-width: 481px) {
    .supply-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .supply-item:nth-child(3n) {
        border-right: none;
    }
    
    .supply-item:nth-child(4),
    .supply-item:nth-child(5),
    .supply-item:nth-child(6) {
        border-bottom: none;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .feature-item:nth-child(2n) {
        border-right: none;
    }
    
    .security-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .security-item:nth-child(2n) {
        border-right: none;
    }
}

/* Landscape Mobile */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        padding: 2rem 3%;
        margin-top: 80px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-animation {
        height: 200px;
    }
    
    .section {
        padding: 2rem 3%;
    }
    
    .overview-animation {
        height: 180px;
    }
}

/* Accessibility improvements for mobile */
@media (max-width: 768px) {
    /* Larger touch targets */
    .btn-primary,
    .btn-white,
    .btn-outline-white,
    .connect-wallet-btn,
    .wallet-btn {
        min-height: 44px;
        min-width: 44px;
    }
    
    /* Better spacing for touch */
    .faq-question {
        min-height: 50px;
    }
    
    nav a {
        padding: 0.5rem;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    /* Improved readability */
    body {
        -webkit-text-size-adjust: 100%;
        text-size-adjust: 100%;
    }
    
    /* Better scroll behavior on mobile */
    html {
        scroll-padding-top: 120px;
    }

    .hero {
        padding: 2rem 2% 1.5rem;
    }

    .presale-box {
        padding: 1rem 0.5rem;
    }

    .presale-badge {
        display: none;
    }

    .partner-logos {
        gap: 1rem;
        justify-content: space-evenly;
    }

    .logo-item img {
        height: 28px;
        border-radius: 5px;
    }

    .partner-logos .logo-item-details {
        justify-content: start;
        align-items: flex-start;
    }
    .partner-logos .logo-item-details .logo-title {
        font-size: 9px;
    }
    .partner-logos .logo-item-details span {
        font-size: 8px;
    }

    .partners{
        padding: 3rem 0.5rem;
    }
    .partners h3 {
        font-size: 0.8rem;
    }
}

/* High DPI displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .logo img {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
    
    .overview-animation img,
    .hero-animation img {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* Bottom Banner Styles */
.bottom-banner {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    width: 90%;
    max-width: 800px;
    background: linear-gradient(135deg, var(--dark-text) 0%, #2D3748 100%);
    border-radius: 16px 16px 0 0;
    box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.5s ease-out forwards;
    backdrop-filter: blur(10px);
}

.banner-content {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem 1.5rem;
    position: relative;
}

.banner-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: var(--primary-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.banner-text {
    flex: 1;
    color: white;
    font-size: 0.95rem;
    line-height: 1.5;
}

.banner-text strong {
    color: var(--primary-orange);
    font-weight: 700;
}

.banner-close {
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: white;
    padding: 0;
}

.banner-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

@keyframes slideUp {
    from {
        transform: translateX(-50%) translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
    }
}

@keyframes slideDown {
    from {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
    }
    to {
        transform: translateX(-50%) translateY(100%);
        opacity: 0;
    }
}

/* Mobile responsive for banner */
@media (max-width: 768px) {
    .bottom-banner {
        width: 95%;
        border-radius: 12px 12px 0 0;
    }
    
    .banner-content {
        padding: 1rem;
        gap: 0.75rem;
    }
    
    .banner-icon {
        width: 32px;
        height: 32px;
    }
    
    .banner-icon svg {
        width: 18px;
        height: 18px;
    }
    
    .banner-text {
        font-size: 0.85rem;
    }
    
    .banner-close {
        width: 32px;
        height: 32px;
    }
    
    .banner-close svg {
        width: 16px;
        height: 16px;
    }
}

@media (max-width: 480px) {
    .bottom-banner {
        width: 100%;
        border-radius: 0;
    }
    
    .banner-content {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
        padding: 1rem 0.75rem;
    }
    
    .banner-close {
        position: absolute;
        top: 0.5rem;
        right: 0.5rem;
    }
}
/* Support Button Styles */
.support-button {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-orange), var(--secondary-orange));
    border: none;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.4);
    transition: all 0.3s ease;
    z-index: 9999;
    animation: pulse 2s infinite;
}

.support-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(255, 107, 53, 0.6);
}

.support-button:active {
    transform: scale(0.95);
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(255, 107, 53, 0.4);
    }
    50% {
        box-shadow: 0 4px 30px rgba(255, 107, 53, 0.6);
    }
}

/* Support Modal Styles */
.support-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.support-modal-content {
    background: var(--bg-white);
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    animation: slideUpSupport 0.3s ease;
}

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

.support-description {
    color: var(--light-text);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.support-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.support-option {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    background: var(--bg-light);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.support-option:hover {
    border-color: var(--primary-orange);
    background: var(--bg-white);
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.15);
}

.support-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.telegram-icon {
    background: linear-gradient(135deg, #0088cc, #00a0dc);
    color: white;
}

.email-icon {
    background: linear-gradient(135deg, var(--primary-orange), var(--secondary-orange));
    color: white;
}

.support-option:hover .support-icon {
    transform: scale(1.1);
}

.support-option-content {
    flex: 1;
}

.support-option-content h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark-text);
    margin: 0 0 0.25rem 0;
}

.support-option-content p {
    font-size: 0.9rem;
    color: var(--light-text);
    margin: 0;
}

.support-option .arrow-icon {
    color: var(--light-text);
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.support-option:hover .arrow-icon {
    color: var(--primary-orange);
    transform: translateX(5px);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .support-button {
        width: 56px;
        height: 56px;
        bottom: 1.5rem;
        right: 1.5rem;
    }

    .support-button svg {
        width: 22px;
        height: 22px;
    }

    .support-modal-content {
        width: 95%;
        border-radius: 12px;
    }

    .support-option {
        padding: 1rem;
    }

    .support-icon {
        width: 44px;
        height: 44px;
    }

    .support-option-content h4 {
        font-size: 1rem;
    }

    .support-option-content p {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .support-button {
        width: 52px;
        height: 52px;
        bottom: 1rem;
        right: 1rem;
    }

    .support-button svg {
        width: 20px;
        height: 20px;
    }

    .support-modal-content {
        width: 100%;
        margin: 0 0.5rem;
    }

    .support-option {
        gap: 0.75rem;
        padding: 0.875rem;
    }

    .support-icon {
        width: 40px;
        height: 40px;
    }

    .support-icon svg {
        width: 20px;
        height: 20px;
    }
}
