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

:root {
    --primary-bg: #0a0a0a;
    --secondary-bg: #111111;
    --accent-bg: #1a1a1a;
    --primary-text: #ffffff;
    --secondary-text: #cccccc;
    --accent-text: #888888;
    --neon-blue: #00d4ff;
    --neon-purple: #8b5cf6;
    --neon-green: #00ff88;
    --neon-orange: #ff6b35;
    --gradient-primary: linear-gradient(135deg, #00d4ff, #8b5cf6);
    --gradient-secondary: linear-gradient(135deg, #ff6b35, #00ff88);
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
}

body {
    font-family: 'Rajdhani', sans-serif;
    background: var(--primary-bg);
    color: var(--primary-text);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    z-index: 1000;
    transition: all 0.3s ease;
}

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

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-symbol {
    position: relative;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.token-icon {
    font-size: 24px;
    color: var(--neon-blue);
    z-index: 2;
    position: relative;
    animation: pulse 2s infinite;
    font-weight: 900;
    font-family: 'Orbitron', monospace;
}

.rotating-rings {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.ring {
    position: absolute;
    border: 2px solid transparent;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.ring-1 {
    width: 40px;
    height: 40px;
    border-top: 2px solid var(--neon-blue);
    border-right: 2px solid var(--neon-blue);
    animation: rotate 3s linear infinite;
}

.ring-2 {
    width: 50px;
    height: 50px;
    border-bottom: 2px solid var(--neon-purple);
    border-left: 2px solid var(--neon-purple);
    animation: rotate 4s linear infinite reverse;
}

.ring-3 {
    width: 60px;
    height: 60px;
    border-top: 1px solid var(--neon-green);
    border-right: 1px solid var(--neon-green);
    animation: rotate 5s linear infinite;
}

.logo-text {
    font-family: 'Orbitron', monospace;
    font-size: 24px;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.nav-link {
    color: var(--secondary-text);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-link:hover,
.nav-link.active {
    color: var(--neon-blue);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

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

.services-highlight {
    position: relative;
    background: linear-gradient(135deg, #ff6b35, #00ff88, #00d4ff, #8b5cf6);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease-in-out infinite;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.services-highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: shimmer 2s infinite;
    z-index: -1;
}

.services-highlight:hover {
    transform: scale(1.05);
    filter: brightness(1.3);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--neon-blue);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 120px 20px 60px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(0, 212, 255, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 212, 255, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
}

.particles {
    position: absolute;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="%2300d4ff" opacity="0.3"/></svg>');
    background-size: 100px 100px;
    animation: particleFloat 15s linear infinite;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    z-index: 1;
}

.hero-title .title-main {
    display: block;
    font-family: 'Orbitron', monospace;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
    animation: titleGlow 3s ease-in-out infinite alternate;
}

.hero-title .title-sub {
    display: block;
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    color: var(--neon-green);
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.hero-description {
    font-size: 1.3rem;
    color: var(--secondary-text);
    margin: 30px 0 40px;
    line-height: 1.8;
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-primary,
.cta-secondary {
    position: relative;
    padding: 15px 35px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
}

.cta-primary {
    background: var(--gradient-primary);
    color: white;
}

.cta-secondary {
    background: transparent;
    color: var(--neon-blue);
    border: 2px solid var(--neon-blue);
}

.button-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.cta-primary:hover .button-glow {
    left: 100%;
}

.cta-primary:hover,
.cta-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
}

/* Token Carousel */
.token-carousel {
    margin-top: 80px;
    width: 100%;
    max-width: 1000px;
}

.carousel-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    color: var(--neon-blue);
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.carousel-container {
    overflow: hidden;
    position: relative;
}

.carousel-track {
    display: flex;
    gap: 20px;
    animation: scroll 20s linear infinite;
}

.token-card {
    min-width: 250px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.token-card:hover {
    transform: translateY(-5px);
    border-color: var(--neon-blue);
    box-shadow: 0 15px 40px rgba(0, 212, 255, 0.2);
}

.token-card .token-icon {
    font-size: 2rem;
    color: var(--neon-blue);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 212, 255, 0.1);
    border-radius: 50%;
}

.token-info h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-text);
}

.token-info p {
    color: var(--secondary-text);
    font-size: 0.9rem;
}

.token-price {
    color: var(--neon-green);
    font-weight: 700;
    font-size: 1.1rem;
}

.token-status {
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
}

.token-status.live {
    background: var(--neon-green);
    color: var(--primary-bg);
    animation: pulse 2s infinite;
}

/* Products Section */
.products {
    padding: 120px 0;
    background: var(--secondary-bg);
    position: relative;
}

.section-title {
    font-family: 'Orbitron', monospace;
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 900;
    text-align: center;
    margin-bottom: 20px;
}

.title-accent {
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    text-align: center;
    font-size: 1.3rem;
    color: var(--secondary-text);
    margin-bottom: 60px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.product-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 25px;
    padding: 35px;
    text-align: center;
    position: relative;
    backdrop-filter: blur(15px);
    transition: all 0.4s ease;
    overflow: hidden;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.1), transparent);
    transition: left 0.6s ease;
}

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

.product-card:hover {
    transform: translateY(-10px);
    border-color: var(--neon-blue);
    box-shadow: 0 25px 60px rgba(0, 212, 255, 0.3);
}

.product-card.popular {
    border-color: var(--neon-purple);
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), var(--glass-bg));
}

.product-card.premium {
    border-color: var(--neon-orange);
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), var(--glass-bg));
}

.popular-badge,
.premium-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
}

.popular-badge {
    background: var(--neon-purple);
    color: white;
}

.premium-badge {
    background: var(--neon-orange);
    color: white;
}

.product-header {
    margin-bottom: 30px;
}

.product-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.product-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-text);
    margin-bottom: 8px;
}

.product-desc {
    color: var(--secondary-text);
    font-size: 1rem;
}

.product-details {
    margin: 30px 0;
}

.product-amount {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--neon-blue);
    margin-bottom: 10px;
}

.product-price {
    font-size: 2.2rem;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
}

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

.product-features li {
    padding: 8px 0;
    color: var(--secondary-text);
    font-size: 1rem;
}

.product-btn {
    width: 100%;
    padding: 15px;
    background: var(--gradient-primary);
    border: none;
    border-radius: 50px;
    color: white;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.btn-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.product-btn:hover .btn-glow {
    left: 100%;
}

.product-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(0, 212, 255, 0.4);
}

/* Networks Section */
.networks {
    padding: 120px 0;
    background: var(--primary-bg);
}

.networks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.network-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 30px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.network-card:hover {
    transform: translateY(-5px);
    border-color: var(--neon-blue);
    box-shadow: 0 20px 50px rgba(0, 212, 255, 0.2);
}

.network-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.network-icon {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 8px;
}

.network-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.network-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-text);
}

.available-tokens h4 {
    color: var(--neon-blue);
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.token-list {
    margin-bottom: 20px;
}

.token-tag {
    display: inline-block;
    background: var(--neon-green);
    color: var(--primary-bg);
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: 600;
    margin: 5px 5px 5px 0;
}

.wallet-support p {
    color: var(--secondary-text);
    margin: 5px 0;
}

.wallet-support strong {
    color: var(--primary-text);
}

/* Live Statistics Section */
.live-stats {
    padding: 80px 0;
    background: var(--primary-bg);
    border-top: 1px solid var(--glass-border);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.stat-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: var(--neon-blue);
    box-shadow: 0 15px 40px rgba(0, 212, 255, 0.2);
}

.stat-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--neon-blue);
    margin-bottom: 10px;
    font-family: 'Orbitron', monospace;
}

.stat-label {
    color: var(--secondary-text);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Testimonials Section */
.testimonials {
    padding: 120px 0;
    background: var(--secondary-bg);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 30px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: var(--neon-green);
    box-shadow: 0 20px 50px rgba(0, 255, 136, 0.2);
}

.testimonial-content {
    margin-bottom: 25px;
}

.testimonial-content p {
    color: var(--secondary-text);
    font-size: 1.1rem;
    line-height: 1.6;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
}

.author-info h4 {
    color: var(--primary-text);
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.author-info p {
    color: var(--accent-text);
    font-size: 0.9rem;
}

/* Security Features Section */
.security-features {
    padding: 120px 0;
    background: var(--primary-bg);
}

.security-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.security-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.security-card:hover {
    transform: translateY(-5px);
    border-color: var(--neon-purple);
    box-shadow: 0 20px 50px rgba(139, 92, 246, 0.2);
}

.security-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.security-card h3 {
    color: var(--neon-purple);
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.security-card p {
    color: var(--secondary-text);
    line-height: 1.6;
}

/* Services Modal Styles */
.services-main {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.15), rgba(0, 212, 255, 0.1));
    border: 2px solid var(--neon-orange);
    border-radius: 15px;
    padding: 35px;
    margin-bottom: 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.services-main::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.2), transparent);
    animation: serviceShimmer 3s infinite;
}

.service-highlight {
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
}

.service-highlight h3 {
    background: linear-gradient(135deg, #ff6b35, #00d4ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 2.2rem;
    font-weight: 900;
    margin-bottom: 15px;
    font-family: 'Orbitron', monospace;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.service-highlight p {
    color: var(--secondary-text);
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 20px;
    font-weight: 500;
}

.service-networks {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--neon-blue);
    border-radius: 12px;
    padding: 20px;
    margin: 25px 0;
    text-align: center;
}

.service-networks h4 {
    color: var(--neon-blue);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.network-badges {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.network-badge {
    background: linear-gradient(135deg, var(--neon-blue), var(--neon-purple));
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(0, 212, 255, 0.3);
    transition: all 0.3s ease;
}

.network-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.5);
}

.service-features h4 {
    color: var(--neon-orange);
    font-size: 1.5rem;
    margin-bottom: 15px;
    text-align: center;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-features ul {
    list-style: none;
    text-align: left;
    max-width: 500px;
    margin: 0 auto;
    background: rgba(0, 0, 0, 0.2);
    padding: 20px;
    border-radius: 10px;
    border: 1px solid var(--glass-border);
}

.service-features li {
    color: var(--primary-text);
    margin: 12px 0;
    padding-left: 10px;
    font-size: 1.1rem;
    font-weight: 500;
    position: relative;
}

.service-features li::before {
    content: '🔹';
    position: absolute;
    left: -15px;
    color: var(--neon-blue);
}

.service-item {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.service-item:hover {
    border-color: var(--neon-orange);
    transform: translateX(5px);
}

.service-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.service-icon {
    font-size: 2rem;
    width: 60px;
    text-align: center;
}

.service-header h3 {
    color: var(--neon-orange);
    font-size: 1.4rem;
    font-weight: 700;
}

.service-description p {
    color: var(--secondary-text);
    margin-bottom: 15px;
    line-height: 1.6;
}

.service-description ul {
    list-style: none;
    margin-left: 20px;
}

.service-description li {
    color: var(--secondary-text);
    margin: 8px 0;
    position: relative;
}

.services-contact {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.2), rgba(139, 92, 246, 0.1));
    border: 2px solid var(--neon-orange);
    border-radius: 15px;
    padding: 30px;
    margin-top: 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.services-contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.3), transparent);
    animation: contactShimmer 4s infinite;
}

.services-contact h4 {
    background: linear-gradient(135deg, #ff6b35, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.6rem;
    margin-bottom: 15px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    z-index: 2;
}

.services-contact p {
    color: var(--secondary-text);
    margin-bottom: 20px;
    font-size: 1.1rem;
    font-weight: 500;
    position: relative;
    z-index: 2;
}

.contact-methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    position: relative;
    z-index: 2;
}

.service-contact-btn {
    background: linear-gradient(135deg, #ff6b35, #00ff88, #00d4ff);
    background-size: 200% 200%;
    color: white;
    padding: 15px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: buttonGradient 3s ease-in-out infinite;
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.3);
}

.service-contact-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 35px rgba(255, 107, 53, 0.5);
    filter: brightness(1.2);
}

/* Trust Section */
.trust-section {
    padding: 80px 0;
    background: var(--secondary-bg);
}

.partnership-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 25px;
    padding: 40px;
    text-align: center;
    backdrop-filter: blur(15px);
    max-width: 600px;
    margin: 0 auto;
}

.partnership-content h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--neon-blue);
    margin-bottom: 15px;
}

.partnership-content p {
    color: var(--secondary-text);
    font-size: 1.1rem;
    margin-bottom: 25px;
    line-height: 1.6;
}

.partnership-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--neon-green);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.partnership-link:hover {
    color: var(--primary-text);
    transform: translateX(5px);
}

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

.partnership-link:hover .link-arrow {
    transform: translateX(5px);
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.trust-badge {
    background: var(--neon-blue);
    color: var(--primary-bg);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

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

.modal-content {
    background: var(--secondary-bg);
    border: 1px solid var(--glass-border);
    border-radius: 25px;
    margin: 5% auto;
    padding: 0;
    width: 90%;
    max-width: 600px;
    max-height: 80vh;
    overflow-y: auto;
    animation: modalSlideIn 0.3s ease;
}

.modal-header {
    background: var(--glass-bg);
    padding: 25px 30px;
    border-bottom: 1px solid var(--glass-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 25px 25px 0 0;
}

.modal-header h2 {
    color: var(--neon-blue);
    font-size: 1.8rem;
    font-weight: 700;
}

.close {
    color: var(--secondary-text);
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close:hover {
    color: var(--neon-blue);
}

.modal-body {
    padding: 30px;
}

.selected-product-info {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 30px;
    text-align: center;
}

.selected-product-info h3 {
    color: var(--neon-blue);
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.contact-options h4 {
    color: var(--primary-text);
    font-size: 1.3rem;
    margin-bottom: 25px;
    text-align: center;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 20px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.contact-method:hover {
    border-color: var(--neon-blue);
    transform: translateX(5px);
}

.contact-icon {
    font-size: 2rem;
    width: 60px;
    text-align: center;
}

.contact-details {
    flex: 1;
}

.contact-details h5 {
    color: var(--neon-blue);
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.contact-details p {
    color: var(--secondary-text);
    margin-bottom: 10px;
}

.contact-btn {
    background: var(--gradient-primary);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 212, 255, 0.3);
}

.additional-offers {
    background: var(--glass-bg);
    border: 1px solid var(--neon-green);
    border-radius: 15px;
    padding: 25px;
    margin-top: 30px;
}

.additional-offers h4 {
    color: var(--neon-green);
    font-size: 1.3rem;
    margin-bottom: 15px;
    text-align: center;
}

.additional-offers ul {
    list-style: none;
}

.additional-offers li {
    color: var(--secondary-text);
    margin: 10px 0;
    padding-left: 20px;
    position: relative;
}

.additional-offers li strong {
    color: var(--primary-text);
}

/* Footer */
.footer {
    background: var(--primary-bg);
    border-top: 1px solid var(--glass-border);
    padding: 60px 0 30px;
}

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

.footer-section h4 {
    color: var(--neon-blue);
    font-size: 1.3rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.footer-section p {
    color: var(--secondary-text);
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin: 10px 0;
}

.footer-section ul li a {
    color: var(--secondary-text);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--neon-blue);
}

.footer-logo {
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    border-color: var(--neon-blue);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 212, 255, 0.2);
}

.social-link svg {
    transition: all 0.3s ease;
}

.social-link:hover svg {
    color: var(--neon-blue);
}

.footer-divider {
    height: 1px;
    background: var(--glass-border);
    margin: 40px 0 30px;
}

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

.footer-bottom-content p {
    color: var(--accent-text);
    font-size: 0.9rem;
}

.footer-badges {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.badge {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: var(--neon-green);
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* FAQ and Modal Content Styles */
.faq-item {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 20px;
}

.faq-item h4 {
    color: var(--neon-blue);
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.faq-item p {
    color: var(--secondary-text);
    line-height: 1.6;
}

.terms-content h4,
.privacy-content h4,
.about-content h4 {
    color: var(--neon-blue);
    font-size: 1.3rem;
    margin: 25px 0 15px 0;
}

.terms-content h4:first-child,
.privacy-content h4:first-child,
.about-content h4:first-child {
    margin-top: 0;
}

.terms-content p,
.privacy-content p,
.about-content p {
    color: var(--secondary-text);
    line-height: 1.6;
    margin-bottom: 15px;
}

.about-content ul {
    list-style: none;
    margin: 15px 0;
}

.about-content ul li {
    color: var(--secondary-text);
    margin: 8px 0;
    padding-left: 10px;
}

/* Animations */
@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

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

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

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

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

@keyframes buttonGradient {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes rotate {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

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

@keyframes titleGlow {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.2); }
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

@keyframes particleFloat {
    0% { transform: translateY(0); }
    100% { transform: translateY(-100px); }
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero {
        padding: 100px 20px 40px;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-primary,
    .cta-secondary {
        width: 100%;
        max-width: 300px;
    }
    
    .carousel-track {
        animation-duration: 15s;
    }
    
    .token-card {
        min-width: 200px;
    }
    
    .products-grid,
    .networks-grid {
        grid-template-columns: 1fr;
    }
    
    .modal-content {
        width: 95%;
        margin: 10% auto;
    }
    
    .modal-body {
        padding: 20px;
    }
    
    .contact-method {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title .title-main {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .product-card,
    .network-card {
        padding: 25px;
    }
    
    .token-card {
        min-width: 180px;
        padding: 20px;
    }
}

/* Performance optimizations */
* {
    will-change: auto;
}

.rotating-rings,
.carousel-track,
.particles,
.grid-overlay {
    will-change: transform;
}

.product-card:hover,
.network-card:hover,
.cta-primary:hover {
    will-change: transform, box-shadow;
}
