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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: #0a0a0b;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

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

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    z-index: 1000;
    border-bottom: 1px solid rgba(79, 172, 254, 0.2);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.header .container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 12px 20px;
    position: relative;
}

/* Logo styles */
.logo {
    position: absolute;
    left: 20px;
    display: flex;
    align-items: center;
    height: 40px;
}

.logo-img {
    height: 40px !important;
    width: auto !important;
    max-width: 200px !important;
    object-fit: contain !important;
    filter: drop-shadow(0 0 10px rgba(79, 172, 254, 0.3)) !important;
    transition: all 0.3s ease !important;
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    background: transparent !important;
    border: none !important;
    outline: none !important;
    z-index: 9999 !important;
}

.logo-img:hover {
    filter: drop-shadow(0 0 15px rgba(79, 172, 254, 0.5));
    transform: scale(1.05);
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav {
    display: flex;
    gap: 30px;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #4facfe;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Mobile menu toggle - hidden on desktop */
.mobile-menu-toggle {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
}

/* Force hide menu button on large screens */
@media (min-width: 769px) {
    .mobile-menu-toggle {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        pointer-events: none !important;
    }
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh; /* For newer browsers */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding-top: 100px; /* Account for fixed header */
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(79, 172, 254, 0.1) 0%, transparent 50%);
    z-index: -1;
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 0%, rgba(0, 242, 254, 0.05) 50%, transparent 100%);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.hero-content {
    z-index: 2;
    max-width: 800px;
}

.hero-title {
    font-size: clamp(48px, 8vw, 80px);
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.1;
}

.gradient-text {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 20px;
    color: #b0b0b0;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.status-badge {
    display: inline-block;
    padding: 12px 24px;
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    color: #ffffff;
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from { box-shadow: 0 0 20px rgba(79, 172, 254, 0.5); }
    to { box-shadow: 0 0 30px rgba(0, 242, 254, 0.8); }
}

/* Sections */
.section {
    padding: 100px 0;
    position: relative;
}

.dark-section {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

.section-title {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    background: linear-gradient(135deg, #ffffff 0%, #b0b0b0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* RWA Grid */
.rwa-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.rwa-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.rwa-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(79, 172, 254, 0.1), transparent);
    transition: left 0.5s ease;
}

.rwa-card:hover::before {
    left: 100%;
}

.rwa-card:hover {
    transform: translateY(-10px);
    border-color: rgba(79, 172, 254, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.card-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.rwa-card h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #4facfe;
}

.rwa-card p {
    color: #b0b0b0;
    line-height: 1.6;
}

/* Timeline */
.process-timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.timeline-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 60px;
    position: relative;
}

.timeline-number {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    color: #ffffff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 20px;
    margin-right: 30px;
    flex-shrink: 0;
}

.timeline-content h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #ffffff;
}

.timeline-content p {
    color: #b0b0b0;
    line-height: 1.6;
}

/* SUI Section */
.sui-section {
    text-align: center;
}

.sui-description {
    font-size: 18px;
    color: #b0b0b0;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-item {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    border-color: rgba(79, 172, 254, 0.3);
}

.feature-item h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #4facfe;
}

.feature-item p {
    color: #b0b0b0;
}

/* Coming Soon */
.coming-soon-section {
    background: linear-gradient(135deg, #0a0a0b 0%, #1a1a2e 100%);
    padding: 100px 0;
    text-align: center;
}

.coming-soon-content h2 {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 700;
    margin-bottom: 30px;
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.coming-soon-content p {
    font-size: 18px;
    color: #b0b0b0;
    margin-bottom: 40px;
}

.launch-status {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    font-weight: 500;
}

.status-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #00f2fe;
    animation: blink 2s ease-in-out infinite;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0.3; }
}

/* Footer */
.footer {
    background: #0a0a0b;
    padding: 50px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.footer-brand h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #4facfe;
}

.footer-brand p {
    color: #b0b0b0;
}

.footer-info p {
    color: #666;
}

/* Responsive Design */
/* Tablet and Large Mobile */
@media (max-width: 768px) {
    .header .container {
        flex-direction: row;
        gap: 15px;
        padding: 15px 20px;
    }
    
    .nav {
        gap: 15px;
    }
    
    .nav-link {
        font-size: 14px;
        padding: 8px 0;
    }
    
    .hero {
        padding-top: 70px;
        min-height: calc(100vh - 70px);
        min-height: calc(100dvh - 70px);
    }
    
    .hero-content {
        padding: 0 20px;
    }
    
    .hero-waitlist {
        margin-top: 35px;
        padding: 25px 20px;
        max-width: 90%;
    }
    
    .rwa-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .timeline-item {
        flex-direction: column;
        text-align: center;
        margin-bottom: 40px;
    }
    
    .timeline-number {
        margin-right: 0;
        margin-bottom: 20px;
    }
    
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
}

/* Regulatory Licenses Section */
.regulatory-section {
    background: linear-gradient(135deg, #0f1419 0%, #1a1a2e 100%);
}

.regulatory-intro {
    text-align: center;
    margin-bottom: 60px;
}

.regulatory-description {
    font-size: 18px;
    color: #b0b0b0;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

.licenses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-bottom: 80px;
}

.license-card {
    background: rgba(79, 172, 254, 0.05);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(79, 172, 254, 0.2);
    border-radius: 25px;
    padding: 40px 35px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.license-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(79, 172, 254, 0.1), transparent);
    transition: left 0.5s ease;
}

.license-card:hover::before {
    left: 100%;
}

.license-card:hover {
    transform: translateY(-10px);
    border-color: rgba(79, 172, 254, 0.4);
    box-shadow: 0 25px 50px rgba(79, 172, 254, 0.2);
}

.license-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.country-flag {
    font-size: 48px;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(79, 172, 254, 0.3);
}

.license-info h3 {
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
}

.license-status {
    display: inline-block;
    padding: 6px 16px;
    background: linear-gradient(135deg, #00f2fe 0%, #4facfe 100%);
    color: #ffffff;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    animation: glow-license 2s ease-in-out infinite alternate;
}

@keyframes glow-license {
    from { box-shadow: 0 0 15px rgba(0, 242, 254, 0.5); }
    to { box-shadow: 0 0 25px rgba(79, 172, 254, 0.8); }
}

.license-details h4 {
    font-size: 20px;
    font-weight: 600;
    color: #4facfe;
    margin-bottom: 15px;
}

.license-details p {
    color: #b0b0b0;
    line-height: 1.6;
    margin-bottom: 25px;
}

.license-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.benefit-badge {
    background: rgba(79, 172, 254, 0.2);
    color: #00f2fe;
    padding: 8px 16px;
    border-radius: 15px;
    font-size: 14px;
    font-weight: 500;
    border: 1px solid rgba(79, 172, 254, 0.3);
}

.regulatory-features {
    text-align: center;
    background: rgba(255, 255, 255, 0.03);
    padding: 60px 40px;
    border-radius: 30px;
    border: 1px solid rgba(79, 172, 254, 0.1);
}

.regulatory-features h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 40px;
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.regulatory-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.regulatory-feature {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.regulatory-feature:hover {
    transform: translateY(-5px);
    border-color: rgba(79, 172, 254, 0.3);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.feature-icon {
    font-size: 36px;
    margin-bottom: 20px;
    display: block;
}

.regulatory-feature h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #4facfe;
}

.regulatory-feature p {
    color: #b0b0b0;
    line-height: 1.6;
    font-size: 15px;
}

/* Waitlist Section */
.waitlist-container {
    margin-top: 60px;
    text-align: center;
    background: rgba(79, 172, 254, 0.05);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(79, 172, 254, 0.2);
    border-radius: 30px;
    padding: 50px 40px;
    position: relative;
    overflow: hidden;
}

.waitlist-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(79, 172, 254, 0.1), transparent);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.waitlist-container h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.waitlist-container > p {
    font-size: 18px;
    color: #b0b0b0;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.waitlist-form {
    max-width: 500px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.form-group {
    margin-bottom: 25px;
    text-align: left;
}

.form-group label {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: #4facfe;
    margin-bottom: 8px;
}

.form-group input {
    width: 100%;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(79, 172, 254, 0.4);
    border-radius: 15px;
    color: #ffffff;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-sizing: border-box;
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.form-group input::placeholder {
    color: #888;
}

.form-group input:focus {
    outline: none;
    border-color: #4facfe;
    box-shadow: 0 0 25px rgba(79, 172, 254, 0.4), inset 0 0 10px rgba(79, 172, 254, 0.1);
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.form-group input:valid {
    border-color: #00f2fe;
}

.waitlist-btn {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    border: none;
    padding: 18px 40px;
    border-radius: 50px;
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    min-width: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 30px auto 0;
    box-shadow: 0 8px 25px rgba(79, 172, 254, 0.3);
    text-transform: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    outline: none;
    z-index: 10;
    position: relative;
}

.waitlist-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(79, 172, 254, 0.5), 0 0 30px rgba(0, 242, 254, 0.3);
    background: linear-gradient(135deg, #5fbcff 0%, #10f3ff 100%);
}

.waitlist-btn:active {
    transform: translateY(-1px);
}

.waitlist-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.spinner {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top: 2px solid #ffffff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.success-message {
    background: rgba(0, 242, 254, 0.1);
    border: 2px solid rgba(0, 242, 254, 0.3);
    border-radius: 20px;
    padding: 40px 30px;
    margin-top: 30px;
    animation: fadeInUp 0.6s ease;
}

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

.success-icon {
    font-size: 48px;
    margin-bottom: 20px;
    animation: bounce 0.8s ease;
}

@keyframes bounce {
    0%, 20%, 53%, 80%, 100% {
        transform: translate3d(0,0,0);
    }
    40%, 43% {
        transform: translate3d(0, -20px, 0);
    }
    70% {
        transform: translate3d(0, -10px, 0);
    }
    90% {
        transform: translate3d(0, -4px, 0);
    }
}

.success-message h4 {
    font-size: 24px;
    font-weight: 700;
    color: #00f2fe;
    margin-bottom: 15px;
}

.success-message p {
    color: #b0b0b0;
    font-size: 16px;
    line-height: 1.6;
}

/* Hero Waitlist Specific Styles */
.hero-waitlist {
    margin-top: 50px;
    background: rgba(79, 172, 254, 0.12);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 2px solid rgba(79, 172, 254, 0.3);
    border-radius: 25px;
    max-width: 600px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding: 40px 35px;
    box-shadow: 0 15px 45px rgba(79, 172, 254, 0.15);
    position: relative;
    z-index: 5;
}

.hero-waitlist::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(79, 172, 254, 0.1), transparent);
    animation: shimmer 3s ease-in-out infinite;
    border-radius: 25px;
}

.hero-waitlist h3 {
    font-size: 28px;
    margin-bottom: 12px;
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 10;
}

.hero-waitlist > p {
    font-size: 16px;
    margin-bottom: 30px;
    color: #e0e0e0;
    position: relative;
    z-index: 10;
}

/* NFT System Section */
.nft-explanation {
    text-align: center;
    margin-bottom: 60px;
}

.nft-intro {
    font-size: 18px;
    color: #b0b0b0;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

.nft-examples {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-bottom: 80px;
}

.nft-example-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px 30px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.nft-example-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(79, 172, 254, 0.1), transparent);
    transition: left 0.5s ease;
}

.nft-example-card:hover::before {
    left: 100%;
}

.nft-example-card:hover {
    transform: translateY(-10px);
    border-color: rgba(79, 172, 254, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.example-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.example-icon {
    font-size: 40px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    border-radius: 15px;
}

.example-header h3 {
    font-size: 24px;
    font-weight: 600;
    color: #ffffff;
}

.nft-split {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
    padding: 20px;
    background: rgba(79, 172, 254, 0.1);
    border-radius: 15px;
    flex-wrap: wrap;
}

.asset-value {
    font-size: 18px;
    font-weight: 600;
    color: #4facfe;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.arrow {
    font-size: 24px;
    color: #00f2fe;
    font-weight: bold;
}

.nft-count {
    font-size: 18px;
    font-weight: 600;
    color: #00f2fe;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.example-details p {
    color: #b0b0b0;
    margin-bottom: 25px;
    line-height: 1.6;
}

.benefits-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 15px;
}

.benefit-item {
    font-size: 14px;
    color: #ffffff;
    background: rgba(79, 172, 254, 0.2);
    padding: 10px 15px;
    border-radius: 20px;
    text-align: center;
    font-weight: 500;
}

.kiosk-info {
    text-align: center;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 60px 40px;
    border-radius: 30px;
    border: 1px solid rgba(79, 172, 254, 0.2);
}

.kiosk-info h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 40px;
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.kiosk-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.kiosk-feature {
    text-align: left;
    padding: 25px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.kiosk-feature:hover {
    transform: translateY(-5px);
    border-color: rgba(79, 172, 254, 0.3);
}

.kiosk-feature h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #4facfe;
}

.kiosk-feature p {
    color: #b0b0b0;
    line-height: 1.6;
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .rwa-card,
    .feature-item {
        padding: 30px 20px;
    }
    
    .nft-examples {
        grid-template-columns: 1fr;
    }
    
    .nft-split {
        flex-direction: column;
        gap: 10px;
    }
    
    .benefits-list {
        grid-template-columns: 1fr;
    }
    
    .kiosk-info {
        padding: 40px 20px;
    }
    
    .kiosk-features {
        grid-template-columns: 1fr;
    }
    
    .licenses-grid {
        grid-template-columns: 1fr;
    }
    
    .license-header {
        flex-direction: column;
        text-align: center;
    }
    
    .license-benefits {
        justify-content: center;
    }
    
    .regulatory-features {
        padding: 40px 20px;
    }
    
    .regulatory-grid {
        grid-template-columns: 1fr;
    }
    
    .waitlist-form {
        max-width: 100%;
    }
    
    .waitlist-form .form-group {
        margin-bottom: 20px;
    }
    
    .hero-waitlist {
        margin-top: 40px;
        padding: 30px 20px;
        max-width: 95%;
        margin-left: 2.5%;
        margin-right: 2.5%;
    }
    
    .hero-waitlist h3 {
        font-size: 22px;
    }
    
    .hero-waitlist > p {
        font-size: 14px;
        line-height: 1.5;
    }
    
    .form-group {
        margin-bottom: 20px;
    }
    
    .form-group input {
        padding: 14px 16px;
        font-size: 16px;
        /* Prevent zoom on iOS */
        -webkit-text-size-adjust: 100%;
    }
    
    .waitlist-btn {
        padding: 16px 32px;
        font-size: 16px;
        min-width: 160px;
    }
    
    .header .container {
        padding: 12px 20px;
    }
    
    .nav {
        gap: 20px;
    }
    
    .nav-link {
        font-size: 14px;
    }
    
    .logo h1 {
        font-size: 20px;
    }
}

/* Extra Small Mobile (< 375px) */
@media (max-width: 374px) {
    .hero-waitlist {
        margin-top: 30px;
        padding: 20px 15px;
        max-width: 95%;
        margin-left: 2.5%;
        margin-right: 2.5%;
    }
    
    .hero-waitlist h3 {
        font-size: 20px;
    }
    
    .form-group input {
        padding: 12px 14px;
        font-size: 16px;
    }
    
    .waitlist-btn {
        padding: 14px 28px;
        font-size: 15px;
        min-width: 140px;
    }
    
    .header .container {
        padding: 10px 20px;
    }
    
    .nav {
        gap: 12px;
    }
    
    .nav-link {
        font-size: 13px;
    }
    
    .logo h1 {
        font-size: 18px;
    }
}

/* iOS Safari specific fixes */
@supports (-webkit-appearance: none) {
    .form-group input {
        -webkit-appearance: none;
        border-radius: 15px;
    }
    
    .waitlist-btn {
        -webkit-appearance: none;
        border-radius: 50px;
    }
}

/* Android Chrome specific fixes */
@media screen and (-webkit-min-device-pixel-ratio: 0) {
    .form-group input:focus {
        outline: none !important;
        -webkit-tap-highlight-color: transparent;
    }
    
    .waitlist-btn:focus {
        outline: none !important;
        -webkit-tap-highlight-color: transparent;
    }
}

/* High DPI screens */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .hero-waitlist {
        border-width: 1px;
    }
    
    .form-group input {
        border-width: 1px;
    }
}

/* Hero Social Section */
.hero-social-section {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(79, 172, 254, 0.2);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: rgba(79, 172, 254, 0.1);
    border: 2px solid rgba(79, 172, 254, 0.3);
    border-radius: 12px;
    color: #4facfe;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.social-link:hover {
    background: rgba(79, 172, 254, 0.2);
    border-color: #4facfe;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(79, 172, 254, 0.3);
}

.social-link svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.social-link:hover svg {
    transform: scale(1.1);
}

.twitter-link:hover {
    color: #1da1f2;
    border-color: #1da1f2;
    box-shadow: 0 8px 25px rgba(29, 161, 242, 0.3);
}

.dex-link:hover {
    color: #00d4aa;
    border-color: #00d4aa;
    box-shadow: 0 8px 25px rgba(0, 212, 170, 0.3);
}

.contract-info {
    text-align: center;
    background: rgba(0, 242, 254, 0.05);
    border: 1px solid rgba(0, 242, 254, 0.2);
    border-radius: 15px;
    padding: 20px;
    max-width: 600px;
    margin: 0 auto;
}

.contract-label {
    font-size: 14px;
    color: #00f2fe;
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contract-address {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    padding: 12px;
    border: 1px solid rgba(0, 242, 254, 0.3);
}

.contract-text {
    font-family: "Courier New", monospace;
    font-size: 12px;
    color: #e0e0e0;
    word-break: break-all;
    line-height: 1.4;
}

.copy-btn {
    background: transparent;
    border: none;
    color: #00f2fe;
    cursor: pointer;
    padding: 4px;
    border-radius: 4px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 24px;
}

.copy-btn:hover {
    background: rgba(0, 242, 254, 0.2);
    transform: scale(1.1);
}

.copy-btn svg {
    width: 16px;
    height: 16px;
}
