/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #F7931E;
    --primary-dark: #E6851F;
    --secondary-color: #1E1E2E;
    --accent-color: #00D4AA;
    --text-color: #2C3E50;
    --text-light: #6B7280;
    --background-color: #FFFFFF;
    --background-light: #F8FAFC;
    --border-color: #E5E7EB;
    --shadow-light: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-large: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --gradient-primary: linear-gradient(135deg, #F7931E 0%, #E6851F 100%);
    --gradient-secondary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-hero: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #F7931E 100%);
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --border-radius: 12px;
    --border-radius-lg: 16px;
    --container-max-width: 1200px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-color);
    overflow-x: hidden;
}

.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

/* Buttons */
.btn-primary, .btn-secondary, .btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1.1rem;
    gap: 8px;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-medium);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-large);
}

.btn-secondary {
    background: var(--gradient-secondary);
    color: white;
    box-shadow: var(--shadow-medium);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-large);
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 16px 0;
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition);
}

.navbar.scrolled {
    box-shadow: var(--shadow-medium);
}

.nav-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--text-color);
    text-decoration: none;
}

.nav-logo img {
    width: 40px;
    height: 40px;
}

.nav-menu {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-link {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--text-color);
    transition: var(--transition);
    border-radius: 2px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: var(--gradient-hero);
    color: white;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    opacity: 0.1;
}

.crypto-icons {
    position: absolute;
    width: 100%;
    height: 100%;
}

.crypto-icon {
    position: absolute;
    font-size: 3rem;
    font-weight: bold;
    opacity: 0.3;
    animation: float 6s ease-in-out infinite;
}

.crypto-icon.btc {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
    color: #F7931E;
}

.crypto-icon.eth {
    top: 60%;
    left: 20%;
    animation-delay: 1s;
    color: #627EEA;
}

.crypto-icon.bnb {
    top: 30%;
    right: 15%;
    animation-delay: 2s;
    color: #F3BA2F;
}

.crypto-icon.ada {
    bottom: 30%;
    right: 10%;
    animation-delay: 3s;
    color: #0033AD;
}

.crypto-icon.dot {
    bottom: 20%;
    left: 15%;
    animation-delay: 4s;
    color: #E6007A;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    33% {
        transform: translateY(-20px) rotate(5deg);
    }
    66% {
        transform: translateY(10px) rotate(-5deg);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    margin-bottom: 24px;
    line-height: 1.2;
}

.highlight {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

.discount {
    background: linear-gradient(135deg, #00FF88, #00D4AA);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    font-size: 1.2em;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.btn-text {
    display: flex;
    align-items: center;
    gap: 8px;
}

.invite-code-display {
    margin-top: 40px;
}

.code-box {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius);
    padding: 16px 24px;
    gap: 16px;
    font-size: 1.2rem;
}

.code-label {
    font-weight: 500;
    opacity: 0.8;
}

.code-value {
    font-weight: 700;
    font-family: 'Courier New', monospace;
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    border-radius: 8px;
    letter-spacing: 2px;
}

.code-copy {
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
}

.code-copy:hover {
    transform: scale(1.05);
}

/* Section Styles */
.section-title {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -16px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

/* Benefits Section */
.benefits {
    padding: 100px 0;
    background: var(--background-light);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.benefit-card {
    background: white;
    padding: 40px 32px;
    border-radius: var(--border-radius-lg);
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-large);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 24px;
    display: block;
}

.benefit-card h3 {
    color: var(--text-color);
    margin-bottom: 16px;
}

.benefit-card p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Binance Section */
.binance {
    padding: 100px 0;
    background: white;
}

.binance-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.binance-description {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: var(--text-light);
}

.steps {
    margin-bottom: 40px;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 32px;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.step-content h4 {
    color: var(--text-color);
    margin-bottom: 8px;
}

.step-content p {
    color: var(--text-light);
}

.binance-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.binance-visual {
    display: flex;
    justify-content: center;
}

.phone-mockup {
    width: 320px;
    height: 640px;
    background: #1a1a1a;
    border-radius: 40px;
    padding: 20px;
    position: relative;
    box-shadow: var(--shadow-large);
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 30px;
    padding: 40px 24px;
    color: white;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.app-header {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.5rem;
    font-weight: 700;
}

.app-logo {
    width: 32px;
    height: 32px;
    background: var(--gradient-primary);
    border-radius: 8px;
}

.discount-badge {
    text-align: center;
    padding: 24px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    backdrop-filter: blur(10px);
}

.discount-text {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: #00FF88;
}

.discount-desc {
    display: block;
    font-size: 1rem;
    opacity: 0.8;
}

.invite-code-field {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 20px;
    backdrop-filter: blur(10px);
}

.invite-code-field label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    opacity: 0.8;
}

.invite-code-field input {
    width: 100%;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    padding: 16px;
    border-radius: 8px;
    color: white;
    font-size: 1.1rem;
    font-weight: 700;
    text-align: center;
    letter-spacing: 2px;
}

/* Comparison Table */
.comparison {
    padding: 100px 0;
    background: var(--background-light);
}

.table-container {
    overflow-x: auto;
    background: white;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-light);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
}

.comparison-table th,
.comparison-table td {
    padding: 20px;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

.comparison-table th {
    background: var(--background-light);
    font-weight: 700;
    color: var(--text-color);
}

.comparison-table .highlight-col {
    background: linear-gradient(135deg, #F7931E20, #E6851F20);
    font-weight: 700;
    color: var(--primary-color);
}

.comparison-table tbody tr:hover {
    background: var(--background-light);
}

/* Articles Section */
.articles {
    padding: 100px 0;
    background: white;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.article-card {
    background: white;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.article-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-large);
}

.article-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.article-card:hover .article-image img {
    transform: scale(1.1);
}

.article-content {
    padding: 32px;
}

.article-meta {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
    flex-wrap: wrap;
    align-items: center;
}

.article-category {
    font-size: 0.8rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.article-category.trading-guide {
    background: #E0F2FE;
    color: #0369A1;
}

.article-category.exchange-review {
    background: #F3E8FF;
    color: #7C3AED;
}

.article-category.tips-tricks {
    background: #FEF3C7;
    color: #D97706;
}

.article-category.security {
    background: #DCFCE7;
    color: #16A34A;
}

.article-category.defi {
    background: #FEE2E2;
    color: #DC2626;
}

.article-category.market-analysis {
    background: #F1F5F9;
    color: #475569;
}

.article-date,
.article-read-time {
    font-size: 0.9rem;
    color: var(--text-light);
}

.article-title {
    color: var(--text-color);
    margin-bottom: 16px;
    line-height: 1.4;
}

.article-excerpt {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 20px;
}

.article-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.article-link:hover {
    color: var(--primary-dark);
}

/* FAQ Section */
.faq {
    padding: 100px 0;
    background: var(--background-light);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: var(--border-radius);
    margin-bottom: 16px;
    box-shadow: var(--shadow-light);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 24px 32px;
    background: none;
    border: none;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-color);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-question:hover {
    background: var(--background-light);
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    transition: var(--transition);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 32px 24px;
    color: var(--text-light);
    line-height: 1.7;
}

/* Newsletter Section */
.newsletter {
    padding: 100px 0;
    background: var(--gradient-secondary);
    color: white;
}

.newsletter-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.newsletter-info h2 {
    color: white;
    margin-bottom: 24px;
}

.newsletter-info p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 32px;
}

.newsletter-benefits {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.benefit {
    display: flex;
    align-items: center;
    gap: 12px;
}

.check {
    color: #00FF88;
    font-weight: bold;
    font-size: 1.2rem;
}

.newsletter-form {
    background: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: var(--border-radius-lg);
    backdrop-filter: blur(10px);
}

.form-group {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
}

.form-group input {
    flex: 1;
    padding: 16px;
    border: none;
    border-radius: var(--border-radius);
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.9);
}

.form-group input:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(247, 147, 30, 0.3);
}

.form-disclaimer {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 32px;
}

.telegram-invite {
    text-align: center;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.telegram-invite h4 {
    margin-bottom: 8px;
    color: white;
}

.telegram-invite p {
    margin-bottom: 20px;
    opacity: 0.8;
}

.telegram-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #0088cc;
    color: white;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.telegram-btn:hover {
    background: #006fa3;
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background: var(--secondary-color);
    color: white;
    padding: 80px 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 24px;
}

.footer-logo img {
    width: 40px;
    height: 40px;
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 32px;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.social-link:hover {
    color: var(--primary-color);
}

.footer-section h4 {
    color: white;
    margin-bottom: 24px;
    font-size: 1.2rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-color);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.contact-label {
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}

.contact-value {
    color: rgba(255, 255, 255, 0.8);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.copyright {
    color: rgba(255, 255, 255, 0.8);
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.legal-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.legal-link:hover {
    color: var(--primary-color);
}

.disclaimer {
    background: rgba(255, 255, 255, 0.05);
    padding: 24px;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.disclaimer p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin: 0;
    font-size: 0.9rem;
}

/* Floating Elements */
.floating-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    opacity: 0;
    transform: translateY(100px);
    transition: var(--transition);
}

.floating-cta.visible {
    opacity: 1;
    transform: translateY(0);
}

.floating-cta a {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: var(--gradient-primary);
    color: white;
    padding: 16px 24px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: var(--shadow-large);
    transition: var(--transition);
    animation: pulse 2s infinite;
}

.floating-cta a:hover {
    transform: scale(1.1);
}

.cta-text {
    font-weight: 700;
    font-size: 1rem;
}

.cta-discount {
    font-size: 0.8rem;
    opacity: 0.9;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: var(--shadow-large);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(247, 147, 30, 0.3);
    }
}

.scroll-to-top {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    font-weight: bold;
    opacity: 0;
    transform: translateY(100px);
    transition: var(--transition);
    z-index: 998;
}

.scroll-to-top.visible {
    opacity: 1;
    transform: translateY(0);
}

.scroll-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-5px);
}

/* Toast Notification */
.toast {
    position: fixed;
    bottom: 100px;
    right: 20px;
    background: var(--gradient-primary);
    color: white;
    padding: 16px 24px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-large);
    display: flex;
    align-items: center;
    gap: 16px;
    z-index: 1001;
    opacity: 0;
    transform: translateX(400px);
    transition: var(--transition);
}

.toast.visible {
    opacity: 1;
    transform: translateX(0);
}

.toast-close {
    background: none;
    border: none;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        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: 40px;
        transition: var(--transition);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .binance-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .newsletter-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .form-group {
        flex-direction: column;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-bottom-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer-legal {
        justify-content: center;
    }

    .floating-cta {
        bottom: 10px;
        right: 10px;
    }

    .scroll-to-top {
        bottom: 10px;
        left: 10px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .nav-container {
        padding: 0 16px;
    }

    .btn-primary, .btn-secondary, .btn-outline {
        padding: 14px 24px;
        font-size: 1rem;
    }

    .code-box {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .table-container {
        border-radius: 0;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 12px 8px;
        font-size: 0.9rem;
    }

    .toast {
        bottom: 80px;
        right: 10px;
        left: 10px;
        transform: translateY(100px);
    }

    .toast.visible {
        transform: translateY(0);
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .crypto-icon {
        animation: none;
    }
    
    .floating-cta a {
        animation: none;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .floating-cta,
    .scroll-to-top,
    .toast {
        display: none;
    }
    
    .hero {
        min-height: auto;
        padding: 60px 0;
    }
    
    * {
        background: white !important;
        color: black !important;
        box-shadow: none !important;
    }
} 