/* Global Styles */
:root {
    --primary-color: #6366f1;
    --primary-dark: #4f46e5;
    --primary-light: #818cf8;
    --secondary-color: #10b981;
    --accent-color: #f59e0b;
    --bg-dark: #0f172a;
    --bg-darker: #020617;
    --bg-card: #1e293b;
    --bg-card-hover: #334155;
    --text-primary: #f8fafc;
    --text-secondary: #cbd5e1;
    --text-muted: #94a3b8;
    --border-color: #334155;
    --success: #10b981;
    --warning: #f59e0b;
    --gradient: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #d946ef 100%);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: var(--bg-darker);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(15, 23, 42, 0.98);
    box-shadow: var(--shadow-lg);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    text-decoration: none;
}

.logo img {
    width: 40px;
    height: 40px;
    border-radius: 8px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    font-size: 14px;
}

.nav-links a:hover {
    color: var(--primary-light);
}

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

.mobile-menu-btn span {
    width: 25px;
    height: 2px;
    background: var(--text-primary);
    transition: all 0.3s ease;
}

/* Buttons */
.btn-primary,
.btn-secondary,
.btn-outline {
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    font-size: 14px;
    border: none;
    cursor: pointer;
}

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

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(99, 102, 241, 0.3);
}

.btn-secondary {
    background: var(--bg-card);
    color: var(--text-primary);
}

.btn-secondary:hover {
    background: var(--bg-card-hover);
}

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

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

.btn-large {    display: inline-flex;    align-items: center;    justify-content: center;    padding: 16px 32px;    font-size: 16px;    font-weight: 600;    border-radius: 12px;    text-decoration: none;    transition: all 0.3s ease;    cursor: pointer;    border: 2px solid transparent;    white-space: nowrap;}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(99, 102, 241, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(139, 92, 246, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 20% 80%, rgba(217, 70, 239, 0.1) 0%, transparent 50%);
    animation: pulse 10s ease-in-out infinite;
}

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

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 60px 0;
}

.hero-title {
    font-size: 64px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
}

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

.hero-subtitle {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 48px;
    font-weight: 500;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-bottom: 48px;
}

.stat {
    text-align: center;
}

.stat-value {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-light);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: var(--text-muted);
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.network-info {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 20px;
    max-width: 600px;
    margin: 0 auto;
}

.network-info p {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.network-details {
    display: flex;
    justify-content: center;
    gap: 12px;
    align-items: center;
    font-size: 14px;
    color: var(--text-secondary);
}

.network-details strong {
    color: var(--primary-light);
    font-family: 'Courier New', monospace;
}

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

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 16px;
}

.section-header p {
    font-size: 18px;
    color: var(--text-secondary);
}

/* Features Section */
.features {
    background: var(--bg-dark);
}

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

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 32px;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 40px rgba(99, 102, 241, 0.2);
}

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

.feature-card h3 {
    font-size: 24px;
    margin-bottom: 12px;
}

.feature-card p {
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.feature-list {
    list-style: none;
}

.feature-list li {
    color: var(--text-muted);
    padding: 6px 0;
    padding-left: 20px;
    position: relative;
    font-size: 14px;
}

.feature-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: bold;
}

/* Technology Section */
.technology {
    background: var(--bg-darker);
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 60px;
}

.tech-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 32px;
}

.tech-item h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: var(--primary-light);
}

.tech-item p {
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.tech-specs {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.tech-specs span {
    background: var(--bg-darker);
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    color: var(--text-muted);
}

.comparison-table {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 32px;
}

.comparison-table h3 {
    font-size: 24px;
    margin-bottom: 24px;
}

table {
    width: 100%;
    border-collapse: collapse;
}

thead th {
    text-align: left;
    padding: 16px;
    border-bottom: 2px solid var(--border-color);
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 600;
}

tbody td {
    padding: 16px;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-secondary);
}

tr.highlight {
    background: rgba(99, 102, 241, 0.1);
}

tr.highlight td {
    color: var(--text-primary);
    font-weight: 600;
}

/* Tokenomics Section */
.tokenomics {
    background: var(--bg-dark);
}

.token-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-bottom: 48px;
}

.token-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 32px;
}

.token-card h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--primary-light);
}

.timelock-status {
    background: rgba(16, 185, 129, 0.1);
    color: var(--success);
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-weight: 600;
}

.token-specs {
    list-style: none;
}

.token-specs li {
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
}

.token-specs li:last-child {
    border-bottom: none;
}

.token-specs span {
    color: var(--text-muted);
}

.token-specs strong {
    color: var(--text-primary);
    font-family: 'Courier New', monospace;
}

.distribution-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.distribution-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 24px;
    transition: all 0.3s ease;
}

.distribution-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-3px);
}

.distribution-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.distribution-header h4 {
    font-size: 16px;
    color: var(--text-primary);
}

.percentage {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-light);
}

.distribution-amount {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.distribution-details p {
    font-size: 14px;
    color: var(--text-muted);
}

.fee-structure {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 32px;
}

.fee-structure h3 {
    font-size: 24px;
    margin-bottom: 24px;
    text-align: center;
}

.fee-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

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

.fee-percentage {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-light);
    margin-bottom: 8px;
}

.fee-label {
    color: var(--text-secondary);
    font-size: 14px;
}

/* Use Cases Section */
.use-cases {
    background: var(--bg-darker);
}

.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.use-case {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    transition: all 0.3s ease;
}

.use-case:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.use-case-icon {
    font-size: 64px;
    margin-bottom: 20px;
}

.use-case h3 {
    font-size: 24px;
    margin-bottom: 12px;
}

.use-case p {
    color: var(--text-secondary);
    font-size: 14px;
}

/* Roadmap Section */
.roadmap {
    background: var(--bg-dark);
}

.roadmap-timeline {
    max-width: 900px;
    margin: 0 auto;
}

.roadmap-phase {
    position: relative;
    padding-left: 60px;
    padding-bottom: 60px;
}

.roadmap-phase:before {
    content: "";
    position: absolute;
    left: 20px;
    top: 30px;
    bottom: -30px;
    width: 2px;
    background: var(--border-color);
}

.roadmap-phase:last-child:before {
    display: none;
}

.phase-marker {
    position: absolute;
    left: 10px;
    top: 20px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 3px solid var(--border-color);
}

.roadmap-phase.completed .phase-marker {
    background: var(--success);
    border-color: var(--success);
}

.roadmap-phase.active .phase-marker {
    background: var(--primary-color);
    border-color: var(--primary-color);
    animation: pulse-marker 2s infinite;
}

@keyframes pulse-marker {
    0%, 100% { box-shadow: 0 0 0 0 rgba(99, 102, 241, 0.7); }
    50% { box-shadow: 0 0 0 10px rgba(99, 102, 241, 0); }
}

.phase-content {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 32px;
}

.phase-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.phase-header h3 {
    font-size: 24px;
}

.phase-status {
    font-size: 14px;
    padding: 6px 12px;
    border-radius: 6px;
    font-weight: 600;
}

.roadmap-phase.completed .phase-status {
    background: rgba(16, 185, 129, 0.1);
    color: var(--success);
}

.roadmap-phase.active .phase-status {
    background: rgba(99, 102, 241, 0.1);
    color: var(--primary-color);
}

.phase-period {
    color: var(--text-muted);
    margin-bottom: 20px;
    font-size: 14px;
}

.phase-milestones {
    list-style: none;
}

.phase-milestones li {
    padding: 8px 0;
    color: var(--text-secondary);
    font-size: 14px;
}

/* Community Section */
.community {
    background: var(--bg-darker);
}

.community-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 60px;
}

.community-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.community-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.2);
}

.community-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.community-card h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.community-card p {
    font-size: 14px;
    color: var(--text-muted);
}

.community-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 40px;
}

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

.stat-number {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-light);
    margin-bottom: 8px;
}

.stat-text {
    font-size: 14px;
    color: var(--text-muted);
}

/* Whitepaper Section */
.whitepaper {
    background: var(--bg-dark);
}

.whitepaper-content {
    max-width: 900px;
    margin: 0 auto;
}

.whitepaper-header {
    text-align: center;
    margin-bottom: 32px;
}

.whitepaper-header h2 {
    font-size: 48px;
    margin-bottom: 12px;
}

.whitepaper-header p {
    font-size: 20px;
    color: var(--text-secondary);
}

.whitepaper-version {
    font-size: 14px !important;
    color: var(--text-muted) !important;
    margin-top: 8px;
}

.whitepaper-abstract {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 32px;
    margin-bottom: 32px;
}

.whitepaper-abstract h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: var(--primary-light);
}

.whitepaper-abstract p {
    color: var(--text-secondary);
    line-height: 1.8;
}

.whitepaper-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 48px;
}

.whitepaper-highlights {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 32px;
}

.whitepaper-highlights h3 {
    font-size: 24px;
    margin-bottom: 24px;
    text-align: center;
}

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

.highlight-item {
    padding: 20px;
    background: var(--bg-darker);
    border-radius: 12px;
}

.highlight-item h4 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--primary-light);
}

.highlight-item p {
    font-size: 14px;
    color: var(--text-muted);
}

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

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    font-size: 16px;
    margin-bottom: 16px;
    color: var(--text-primary);
}

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

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 20px;
    font-weight: 700;
}

.footer-logo img {
    width: 32px;
    height: 32px;
    border-radius: 6px;
}

.footer-description {
    color: var(--text-muted);
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 1.6;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
    border-radius: 8px;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 20px;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--primary-color);
    color: white;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-muted);
    font-size: 14px;
}

.footer-links {
    display: flex;
    gap: 12px;
    align-items: center;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-light);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .features-grid,
    .tech-grid,
    .use-cases-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .distribution-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content {
        grid-template-columns: 1fr 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .hero-title {
        font-size: 40px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

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

    .hero-actions {
        flex-direction: column;
    }

    .section-header h2 {
        font-size: 36px;
    }

    .features-grid,
    .tech-grid,
    .use-cases-grid,
    .distribution-grid,
    .community-grid {
        grid-template-columns: 1fr;
    }

    .token-info,
    .fee-grid,
    .community-stats,
    .highlights-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero-title {
        font-size: 32px;
    }

    .section {
        padding: 60px 0;
    }

    .btn-large {
        padding: 14px 24px;
        font-size: 14px;
        width: 100%;
    }
}

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

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Smooth Scrolling */
@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
    }
}

/* Quick Access Section */
.quick-access {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    position: relative;
    overflow: hidden;
}

.quick-access::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(245, 147, 50, 0.03) 0%, transparent 70%);
    animation: pulse 15s ease-in-out infinite;
}

.quick-access-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 1;
}

.quick-card {
    background: linear-gradient(135deg, rgba(245, 147, 50, 0.1) 0%, rgba(245, 147, 50, 0.05) 100%);
    border: 2px solid rgba(245, 147, 50, 0.3);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.quick-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(245, 147, 50, 0.2), transparent);
    transition: left 0.5s ease;
}

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

.quick-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: #f59332;
    box-shadow: 0 20px 40px rgba(245, 147, 50, 0.3);
    background: linear-gradient(135deg, rgba(245, 147, 50, 0.15) 0%, rgba(245, 147, 50, 0.08) 100%);
}

.quick-icon {
    font-size: 60px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 20px rgba(245, 147, 50, 0.5));
}

.quick-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
    color: white;
}

.quick-card p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
}

.quick-arrow {
    display: inline-block;
    font-size: 24px;
    color: #f59332;
    transition: transform 0.3s ease;
}

.quick-card:hover .quick-arrow {
    transform: translateX(10px);
}

@media (max-width: 768px) {
    .quick-access {
        padding: 60px 0;
    }
    
    .quick-access-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .quick-card {
        padding: 30px 20px;
    }
    
    .quick-icon {
        font-size: 48px;
    }
    
    .quick-card h3 {
        font-size: 20px;
    }
}

@keyframes pulse {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(-5%, -5%) scale(1.1);
    }
}

    .hero-actions {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ========================================
   HERO BUTTON STYLES - ENHANCED
   ======================================== */

/* Special Buttons with Icons and Subtitles */
.btn-large.btn-special {
    display: inline-flex !important;
    align-items: center;
    gap: 15px;
    background: linear-gradient(135deg, rgba(245, 147, 50, 0.2) 0%, rgba(245, 147, 50, 0.1) 100%);
    border: 2px solid rgba(245, 147, 50, 0.5) !important;
    padding: 18px 24px !important;
    min-width: 220px;
    border-radius: 15px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

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

.btn-large.btn-special:hover::before {
    left: 100%;
}

.btn-large.btn-special:hover {
    background: linear-gradient(135deg, rgba(245, 147, 50, 0.35) 0%, rgba(245, 147, 50, 0.2) 100%);
    border-color: #f59332 !important;
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 35px rgba(245, 147, 50, 0.4), 0 0 20px rgba(245, 147, 50, 0.2);
}

.btn-large.btn-special:active {
    transform: translateY(-2px) scale(0.98);
}

.btn-icon {
    font-size: 36px;
    line-height: 1;
    flex-shrink: 0;
    filter: drop-shadow(0 0 15px rgba(245, 147, 50, 0.6));
    animation: iconPulse 2s ease-in-out infinite;
}

@keyframes iconPulse {
    0%, 100% {
        transform: scale(1);
        filter: drop-shadow(0 0 15px rgba(245, 147, 50, 0.6));
    }
    50% {
        transform: scale(1.1);
        filter: drop-shadow(0 0 25px rgba(245, 147, 50, 0.8));
    }
}

.btn-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 4px;
}

.btn-title {
    font-size: 17px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
    letter-spacing: 0.3px;
}

.btn-subtitle {
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.2;
}

/* Primary Button */
.btn-primary {
    background: linear-gradient(135deg, #f59332 0%, #e67e22 100%);
    color: white;
    border-color: #f59332;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #ff9d42 0%, #f59332 100%);
    box-shadow: 0 10px 30px rgba(245, 147, 50, 0.4);
    transform: translateY(-3px);
}

/* Secondary Button */
.btn-secondary {
    background: linear-gradient(135deg, rgba(100, 100, 255, 0.2) 0%, rgba(80, 80, 200, 0.2) 100%);
    color: white;
    border-color: rgba(100, 100, 255, 0.5);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, rgba(120, 120, 255, 0.3) 0%, rgba(100, 100, 200, 0.3) 100%);
    border-color: rgba(120, 120, 255, 0.8);
    box-shadow: 0 10px 30px rgba(100, 100, 255, 0.3);
    transform: translateY(-3px);
}

/* Outline Button */
.btn-outline {
    background: transparent;
    color: white;
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.6);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

/* Hero Actions Grid */
.hero-actions {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
    width: 100%;
    max-width: 1200px;
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
    .hero-actions {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-actions {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .btn-large {
        width: 100%;
        justify-content: center;
    }
    
    .btn-large.btn-special {
        min-width: auto;
        width: 100%;
        padding: 16px 20px !important;
    }
    
    .btn-icon {
        font-size: 32px;
    }
    
    .btn-title {
        font-size: 16px;
    }
    
    .btn-subtitle {
        font-size: 12px;
    }
}
