/*
Theme Name: DAOLYTICA
Description: Next-generation platform transforming global technology through smart data intelligence and connectivity. Custom theme for DAOLYTICA featuring interactive animations, blockchain aesthetics, and modern design.
Author: Reza Mirfayzi @ DAOLYTICA
Version: 1.0.0
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: daolytica
Requires at least: 5.0
Tested up to: 6.4
Requires PHP: 7.4
Tags: custom-background, custom-colors, custom-header, custom-logo, custom-menu, featured-images, full-width-template, sticky-post, theme-options, threaded-comments, translation-ready
*/

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
}

body {
    font-family: 'Arial', sans-serif;
    background: #000000;
    color: #ffffff;
    overflow-x: hidden;
    overflow-y: auto;
    min-height: 100vh;
    width: 100vw;
    padding-bottom: 80px;
}

/* Full Screen Container */
body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    overflow-y: auto;
}

#page {
    margin: 0;
    padding: 0;
}

.site-main {
    margin: 0;
    padding: 0;
}

/* Hide header and footer */
.site-header,
.site-footer,
#masthead,
#colophon,
.site-branding,
.main-navigation,
.site-title,
.site-description,
#masthead,
#colophon,
header,
footer,
nav,
.menu,
.navigation {
    display: none !important;
}

.main-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 1;
}

/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 30%, #000000 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    transition: opacity 1s ease-out;
}

.loading-screen.hidden {
    opacity: 0;
    pointer-events: none;
    display: none;
}

.blockchain-loader {
    display: flex;
    gap: 8px;
    margin-bottom: 30px;
}

.block {
    width: 20px;
    height: 20px;
    background: linear-gradient(45deg, #64d6e2, #26c6da);
    border-radius: 3px;
    animation: blockPulse 0.6s ease-in-out infinite alternate;
}

.block:nth-child(2) { animation-delay: 0.1s; background: linear-gradient(45deg, #9b59b6, #8e44ad); }
.block:nth-child(3) { animation-delay: 0.2s; background: linear-gradient(45deg, #f39c12, #e67e22); }
.block:nth-child(4) { animation-delay: 0.3s; background: linear-gradient(45deg, #e74c3c, #c0392b); }
.block:nth-child(5) { animation-delay: 0.4s; background: linear-gradient(45deg, #3498db, #2980b9); }
.block:nth-child(6) { animation-delay: 0.5s; background: linear-gradient(45deg, #2ecc71, #27ae60); }
.block:nth-child(7) { animation-delay: 0.6s; background: linear-gradient(45deg, #f03252, #d02848); }
.block:nth-child(8) { animation-delay: 0.7s; background: linear-gradient(45deg, #16a085, #138d75); }
.block:nth-child(9) { animation-delay: 0.8s; background: linear-gradient(45deg, #d35400, #ba4a00); }
.block:nth-child(10) { animation-delay: 0.9s; background: linear-gradient(45deg, #c0392b, #a93226); }
.block:nth-child(11) { animation-delay: 1.0s; background: linear-gradient(45deg, #8e44ad, #7d3c98); }
.block:nth-child(12) { animation-delay: 1.1s; background: linear-gradient(45deg, #2c3e50, #1b2631); }
.block:nth-child(13) { animation-delay: 1.2s; background: linear-gradient(45deg, #27ae60, #1e8449); }
.block:nth-child(14) { animation-delay: 1.3s; background: linear-gradient(45deg, #e67e22, #d68910); }
.block:nth-child(15) { animation-delay: 1.4s; background: linear-gradient(45deg, #ecf0f1, #bdc3c7); }
.block:nth-child(16) { animation-delay: 1.5s; background: linear-gradient(45deg, #95a5a6, #7f8c8d); }
.block:nth-child(17) { animation-delay: 1.6s; background: linear-gradient(45deg, #34495e, #2c3e50); }
.block:nth-child(18) { animation-delay: 1.7s; background: linear-gradient(45deg, #1abc9c, #16a085); }
.block:nth-child(19) { animation-delay: 1.8s; background: linear-gradient(45deg, #e74c3c, #c0392b); }
.block:nth-child(20) { animation-delay: 1.9s; background: linear-gradient(45deg, #9b59b6, #8e44ad); }
.block:nth-child(21) { animation-delay: 2.0s; background: linear-gradient(45deg, #3498db, #2980b9); }
.block:nth-child(22) { animation-delay: 2.1s; background: linear-gradient(45deg, #f39c12, #e67e22); }

.loading-text {
    color: #64d6e2;
    font-size: 1.2rem;
    font-weight: 300;
    letter-spacing: 2px;
}

/* Hero Section */
.hero {
    position: relative;
    width: 100vw;
    min-height: 100vh;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 30%, #000000 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 10;
}

.text-sequence {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 20;
    width: 100%;
}

.text-line {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    margin-bottom: 20px;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%) translateY(30px);
    text-align: center;
    width: 100%;
}

.text-line.active {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.text-line p {
    font-size: 1.8rem;
    font-weight: 300;
    line-height: 1.4;
    color: #ffffff;
    white-space: nowrap;
}

.text-line span {
    display: inline-block;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
}

.text-line.active span {
    opacity: 1;
    transform: translateY(0);
}

/* Typing cursor effect */
.text-line.active span::after {
    content: '|';
    color: #64d6e2;
    animation: blink 1s infinite;
    margin-left: 2px;
}

.text-line.active span:last-child::after {
    content: '';
}

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

.intro-content {
    opacity: 0;
    transform: translate(-50%, -50%) translateY(30px);
    transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    text-align: center;
    z-index: 20;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    max-width: 600px;
}

.intro-content.active {
    opacity: 1;
    transform: translate(-50%, -50%) translateY(0);
}

.intro-content h1 {
    font-size: 6rem;
    font-weight: 300;
    color: #ffffff;
    margin-bottom: 40px;
    text-shadow: 0 0 60px rgba(255, 255, 255, 0.3);
    letter-spacing: 0.1em;
    line-height: 0.9;
    font-family: 'Arial', sans-serif;
    text-transform: uppercase;
    opacity: 0;
    transition: all 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
}

.intro-content.active h1 {
    opacity: 1;
}

.slogan {
    font-size: 1.4rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
    letter-spacing: 0.05em;
    font-family: 'Arial', sans-serif;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    text-align: center;
    line-height: 1.3;
}

/* Simple overlay - positioned lower to cover ENTER button */
.simple-overlay {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 60px;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 30%, #000000 100%);
    cursor: pointer;
    z-index: 40;
    transition: opacity 0.3s ease;
    border-radius: 0;
    opacity: 1;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.overlay-hint {
    color: #ffffff;
    font-size: 14px;
    font-weight: 300;
    font-family: 'Arial', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.8;
    animation: pulse 2s infinite;
    pointer-events: none;
}

/* Click hint text */
.click-hint {
    color: #ffffff;
    font-size: 16px;
    font-weight: 400;
    font-family: 'Arial', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.9;
    animation: pulse 2s infinite;
    pointer-events: none;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.click-overlay:hover .click-hint {
    animation: bounce 0.6s ease-in-out;
    transform: scale(1.1);
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.6);
}

.scratch-hint::after {
    content: ' ↓';
    font-size: 16px;
    margin-left: 5px;
    animation: bounce 1s infinite;
}

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

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-3px);
    }
    60% {
        transform: translateY(-2px);
    }
}

.scratch-overlay.scratched {
    opacity: 0;
    pointer-events: none;
}

/* Click Containers */
.click-container {
    position: relative;
    margin: 2rem auto;
    width: 200px;
    height: 60px;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: none;
    visibility: hidden;
    z-index: 100;
    cursor: pointer;
}

.click-container.containers-appear {
    opacity: 1;
    transform: translateY(0);
    display: block;
    visibility: visible;
}

.app-click-container {
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.bc-click-container {
    margin-top: 1rem;
    margin-bottom: 1rem;
}

/* Click Overlays */
.click-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 50%, #1a1a1a 100%) !important;
    cursor: pointer;
    z-index: 15;
    display: flex !important;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    border: 2px solid rgba(255, 255, 255, 0.2) !important;
    transition: all 0.3s ease;
    opacity: 1 !important;
    visibility: visible !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.click-overlay:hover {
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

/* App Click Overlay - Blue/Cyan like polygons */
.app-click-overlay {
    background: linear-gradient(135deg, rgba(100, 214, 226, 0.1) 0%, rgba(100, 214, 226, 0.2) 50%, rgba(100, 214, 226, 0.1) 100%) !important;
    border-color: rgba(100, 214, 226, 0.4) !important;
}

.app-click-overlay:hover {
    border-color: rgba(100, 214, 226, 0.8) !important;
    box-shadow: 0 6px 20px rgba(100, 214, 226, 0.3) !important;
    background: linear-gradient(135deg, rgba(100, 214, 226, 0.2) 0%, rgba(100, 214, 226, 0.3) 50%, rgba(100, 214, 226, 0.2) 100%) !important;
}

/* BC Click Overlay - Purple variant */
.bc-click-overlay {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.1) 0%, rgba(124, 58, 237, 0.2) 50%, rgba(124, 58, 237, 0.1) 100%) !important;
    border-color: rgba(124, 58, 237, 0.4) !important;
}

.bc-click-overlay:hover {
    border-color: rgba(124, 58, 237, 0.8) !important;
    box-shadow: 0 6px 20px rgba(124, 58, 237, 0.3) !important;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.2) 0%, rgba(124, 58, 237, 0.3) 50%, rgba(124, 58, 237, 0.2) 100%) !important;
}

/* Cross-hover effects - darken one when hovering over the other */
.app-click-container:hover ~ .bc-click-container .bc-click-overlay {
    opacity: 0.3 !important;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.05) 0%, rgba(124, 58, 237, 0.1) 50%, rgba(124, 58, 237, 0.05) 100%) !important;
    border-color: rgba(124, 58, 237, 0.2) !important;
    transition: all 0.3s ease !important;
}

.bc-click-container:hover ~ .app-click-container .app-click-overlay {
    opacity: 0.3 !important;
    background: linear-gradient(135deg, rgba(100, 214, 226, 0.05) 0%, rgba(100, 214, 226, 0.1) 50%, rgba(100, 214, 226, 0.05) 100%) !important;
    border-color: rgba(100, 214, 226, 0.2) !important;
    transition: all 0.3s ease !important;
}

.click-hint {
    color: #ffffff;
    font-size: 16px;
    font-weight: 400;
    font-family: 'Arial', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.9;
    animation: pulse 2s infinite;
    pointer-events: none;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.click-overlay:hover .click-hint {
    animation: bounce 0.6s ease-in-out;
    transform: scale(1.1);
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.6);
}

/* Enter Buttons - Force Override */
.enter-btn,
a.enter-btn,
#app-enter-btn,
#bc-enter-btn {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: transparent !important;
    border: 3px solid #ffffff !important;
    border-radius: 12px !important;
    text-decoration: none !important;
    color: #ffffff !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.05em !important;
    transition: all 0.3s ease !important;
    z-index: 5 !important;
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3) !important;
    min-height: 40px !important;
    font-family: Arial, sans-serif !important;
    cursor: pointer !important;
}

.enter-btn:hover {
    background: rgba(255, 255, 255, 0.1) !important;
    border-color: #ffffff !important;
    color: #ffffff !important;
    transform: translateY(-5px) scale(1.08);
    box-shadow: 0 12px 30px rgba(255, 255, 255, 0.4), 
                0 0 0 4px rgba(255, 255, 255, 0.3) !important;
    cursor: pointer !important;
}

.enter-btn:hover .btn-text {
    animation: letterBounce 0.8s ease-in-out;
    transform: translateY(-2px);
}

/* Letter Movement Animation */
@keyframes letterBounce {
    0%, 100% {
        transform: translateY(0);
    }
    25% {
        transform: translateY(-3px);
    }
    50% {
        transform: translateY(-1px);
    }
    75% {
        transform: translateY(-2px);
    }
}

/* Button Text */
.btn-text {
    font-size: 12px !important;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: inherit !important;
    transition: all 0.3s ease;
    text-decoration: none !important;
}

/* Bounce Animation */
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-5px);
    }
    60% {
        transform: translateY(-3px);
    }
}

.enter-button-hidden {
    opacity: 0 !important;
    pointer-events: none;
    transform: scale(0.8);
}

.enter-button-revealed {
    opacity: 1 !important;
    pointer-events: auto;
    transform: scale(1) !important;
    background: transparent !important;
    border: 3px solid #ffffff !important;
    color: #ffffff !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    text-decoration: none !important;
}

/* Force remove any link styling */
.enter-btn:link,
.enter-btn:visited,
.enter-btn:active {
    color: #ffffff !important;
    text-decoration: none !important;
}

.enter-btn:hover {
    color: #ffffff !important;
    text-decoration: none !important;
    cursor: pointer !important;
}

/* Footer */
.site-footer {
    position: fixed !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    background: #000000 !important;
    border-top: 1px solid #64d6e2 !important;
    padding: 8px 15px 2px 15px !important;
    z-index: 9999 !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    box-shadow: 0 -2px 10px rgba(100, 214, 226, 0.2) !important;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
    gap: 5px;
}

.footer-content p {
    margin: 0 !important;
    color: #ffffff !important;
    font-size: 11px !important;
    font-family: Arial, sans-serif !important;
    font-weight: 400 !important;
    line-height: 1.1 !important;
}

.copyright {
    font-weight: 500;
}

.contact a {
    color: #64d6e2;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact a:hover {
    color: #ffffff;
    text-decoration: underline;
}

.design-credit {
    font-style: italic;
    color: rgba(100, 214, 226, 0.8);
}

/* Founder Popup Modal */
.founder-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 10000;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.founder-popup.show {
    display: flex !important;
    opacity: 1 !important;
}

.popup-content {
    background: rgba(0, 0, 0, 0.95);
    border: 2px solid #64d6e2;
    border-radius: 15px;
    padding: 30px;
    max-width: 600px;
    width: 90%;
    position: relative;
    backdrop-filter: blur(15px);
    box-shadow: 0 20px 60px rgba(100, 214, 226, 0.3);
    transform: scale(0.8);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.founder-popup.show .popup-content {
    transform: scale(1);
}

.close-popup {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 30px;
    color: #64d6e2;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.close-popup:hover {
    color: #ffffff;
    transform: scale(1.1);
}

.founder-photo {
    width: 20%;
    aspect-ratio: 1 / 1;
    height: auto;
    min-width: 80px;
    max-width: 300px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px auto;
    border: 3px solid #64d6e2;
    background-size: cover;
    background-position: center;
}

.founder-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.founder-info h2 {
    color: #64d6e2;
    font-size: 24px;
    font-weight: 600;
    margin: 0 0 20px 0;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.founder-info h3 {
    color: #ffffff;
    font-size: 32px;
    font-weight: 700;
    margin: 0 0 10px 0;
    text-align: center;
    line-height: 1.2;
}

.founder-role {
    color: rgba(100, 214, 226, 0.8);
    font-size: 18px;
    margin: 0 0 20px 0;
    text-align: center;
    font-weight: 500;
}

.founder-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
    text-align: center;
    font-weight: 400;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    padding: 15px;
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid transparent;
}

.founder-description:hover {
    color: #ffffff;
    background: rgba(100, 214, 226, 0.1);
    border-color: rgba(100, 214, 226, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(100, 214, 226, 0.2);
}

.founder-description::before {
    content: '💡';
    position: absolute;
    top: -10px;
    right: -10px;
    font-size: 20px;
    opacity: 0;
    transition: all 0.3s ease;
    transform: scale(0);
}

.founder-description:hover::before {
    opacity: 1;
    transform: scale(1);
}

/* Interactive text highlighting */
.founder-description span.highlight {
    background: linear-gradient(120deg, rgba(100, 214, 226, 0.3) 0%, rgba(124, 58, 237, 0.3) 100%);
    padding: 2px 4px;
    border-radius: 3px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.founder-description span.highlight:hover {
    background: linear-gradient(120deg, rgba(100, 214, 226, 0.6) 0%, rgba(124, 58, 237, 0.6) 100%);
    transform: scale(1.05);
    box-shadow: 0 2px 8px rgba(100, 214, 226, 0.3);
}

/* Ripple animation for interactive highlights */
@keyframes ripple {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* Meet the Founder Button */
.meet-founder-btn {
    display: block !important;
    position: fixed;
    top: 30px;
    left: 30px;
    background: rgba(100, 214, 226, 0.2);
    border: 2px solid rgba(100, 214, 226, 0.5);
    color: #64d6e2;
    padding: 12px 24px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    z-index: 1000;
    transition: all 0.3s ease;
    opacity: 1 !important;
    transform: translateY(0) !important;
    backdrop-filter: blur(10px);
}

/* Token Badge - Top Right */
.token-badge-wrap {
    position: fixed !important;
    top: 10px !important;
    right: 10px !important;
    z-index: 9999 !important;
    display: flex !important;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    visibility: visible !important;
    opacity: 1 !important;
}

.token-badge-image {
    position: relative;
    width: 160px !important;
    height: 160px !important;
    object-fit: contain;
    opacity: 1 !important;
    filter: drop-shadow(0 6px 18px rgba(100, 214, 226, 0.5))
            contrast(1.3)
            brightness(1.2)
            saturate(1.4);
    background: transparent;
    transition: transform 0.25s ease, filter 0.25s ease, opacity 0.25s ease;
    cursor: pointer;
    z-index: 10000 !important;
    display: block !important;
    visibility: visible !important;
}

.token-badge-image:hover {
    transform: translateY(-2px) scale(1.04);
    filter: drop-shadow(0 10px 28px rgba(100, 214, 226, 0.45))
            contrast(1.35)
            brightness(1.25)
            saturate(1.45);
    opacity: 1;
    mix-blend-mode: screen !important;
}

.token-badge-caption {
    font-weight: 700;
    color: #64d6e2;
    letter-spacing: 0.08em;
    font-size: 14px;
    text-shadow: 0 0 12px rgba(100, 214, 226, 0.5);
}

.meet-founder-btn.btn-appear {
    opacity: 1;
    transform: translateY(0);
}

.meet-founder-btn:hover {
    background: rgba(100, 214, 226, 0.3);
    border-color: rgba(100, 214, 226, 0.8);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(100, 214, 226, 0.3);
}

/* Founder Modal */
.founder-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.founder-modal.modal-appear {
    opacity: 1;
}

.founder-modal-content {
    background: rgba(0, 0, 0, 0.9);
    border: 2px solid rgba(100, 214, 226, 0.3);
    border-radius: 20px;
    padding: 40px;
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    backdrop-filter: blur(15px);
    box-shadow: 0 20px 60px rgba(100, 214, 226, 0.2);
}

.close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 30px;
    color: #64d6e2;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.close-btn:hover {
    color: #ffffff;
    transform: scale(1.1);
}

/* Founder Page Section */
.founder-page {
    padding: 80px 20px;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.founder-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.founder-photo {
    flex-shrink: 0;
}

/* Geometric Founder Photo */
.founder-geometric {
    width: 120px;
    height: 120px;
    position: relative;
    border-radius: 50%;
    border: 3px solid rgba(100, 214, 226, 0.5);
    overflow: hidden;
    background: linear-gradient(135deg, rgba(100, 214, 226, 0.1) 0%, rgba(124, 58, 237, 0.1) 100%);
    transition: all 0.3s ease;
    margin: 0 auto;
}

.founder-page:hover .founder-geometric {
    border-color: rgba(100, 214, 226, 0.8);
    transform: scale(1.05);
}

.geo-shape {
    position: absolute;
    background: rgba(100, 214, 226, 0.6);
    animation: geoFloat 3s ease-in-out infinite;
}

.geo-1 {
    width: 40px;
    height: 40px;
    top: 20px;
    left: 40px;
    border-radius: 50%;
    animation-delay: 0s;
}

.geo-2 {
    width: 30px;
    height: 30px;
    top: 70px;
    left: 20px;
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    background: rgba(124, 58, 237, 0.6);
    animation-delay: 0.5s;
}

.geo-3 {
    width: 24px;
    height: 24px;
    top: 50px;
    right: 30px;
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    background: rgba(100, 214, 226, 0.8);
    animation-delay: 1s;
}

.geo-4 {
    width: 36px;
    height: 36px;
    bottom: 16px;
    right: 16px;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    background: rgba(124, 58, 237, 0.4);
    animation-delay: 1.5s;
}

@keyframes geoFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    25% { transform: translateY(-3px) rotate(90deg); }
    50% { transform: translateY(0px) rotate(180deg); }
    75% { transform: translateY(3px) rotate(270deg); }
}

.founder-info {
    flex: 1;
    text-align: left;
    max-width: 500px;
}

.founder-title {
    color: #64d6e2;
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 15px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.founder-name {
    color: #ffffff;
    font-size: 36px;
    font-weight: 700;
    margin: 0 0 10px 0;
    line-height: 1.2;
}

.founder-role {
    color: rgba(100, 214, 226, 0.8);
    font-size: 20px;
    margin: 0 0 20px 0;
    font-weight: 500;
}

.founder-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
    font-weight: 400;
}

/* About Section */
.about-section {
    padding: 80px 20px;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.about-container h2 {
    color: #64d6e2;
    font-size: 32px;
    font-weight: 700;
    margin: 0 0 30px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-container p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 18px;
    line-height: 1.6;
    margin: 0;
    max-width: 800px;
    margin: 0 auto;
}

/* Technology Section */
.technology-section {
    padding: 80px 20px;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.tech-container h2 {
    color: #64d6e2;
    font-size: 32px;
    font-weight: 700;
    margin: 0 0 50px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.tech-item {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(100, 214, 226, 0.2);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.tech-item:hover {
    background: rgba(0, 0, 0, 0.5);
    border-color: rgba(100, 214, 226, 0.4);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(100, 214, 226, 0.1);
}

.tech-item h3 {
    color: #64d6e2;
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 15px 0;
}

.tech-item p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
}

/* Vision Section */
.vision-section {
    padding: 80px 20px;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.vision-container h2 {
    color: #64d6e2;
    font-size: 32px;
    font-weight: 700;
    margin: 0 0 30px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.vision-container p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 20px;
    line-height: 1.6;
    margin: 0;
    max-width: 900px;
    margin: 0 auto;
    font-style: italic;
}

/* App Button Specific */
.app-enter-btn {
    border-color: rgba(0, 212, 255, 0.4);
}

.app-enter-btn:hover {
    border-color: #00d4ff;
    box-shadow: 0 5px 15px rgba(0, 212, 255, 0.4);
}

/* Blockchain Button Specific */
.bc-enter-btn {
    border-color: rgba(124, 58, 237, 0.4);
}

.bc-enter-btn:hover {
    border-color: #7c3aed;
    box-shadow: 0 5px 15px rgba(124, 58, 237, 0.4);
}

/* Responsive Design */
@media (max-width: 768px) {
    .scratch-container {
        width: 280px;
        height: 70px;
    }
    
    .scratch-hint {
        font-size: 12px;
    }
    
    .enter-btn {
        font-size: 14px;
    }
}



/* Scratch reveal area - positioned lower to cover ENTER button */
.scratch-reveal {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 60px;
    background: transparent;
    z-index: 35;
    pointer-events: none;
    border-radius: 0;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

/* ENTER button initially hidden underneath scratch overlay */
.enter-button-hidden {
    opacity: 0;
    transform: translateY(0);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 10;
}

.enter-button-revealed {
    opacity: 1;
    transform: translateY(0);
    z-index: 10;
}

/* Typing cursor for DAOLYTICA */
.intro-content.active h1::after {
    content: '|';
    color: #64d6e2;
    animation: blink 1s infinite;
    margin-left: 10px;
    font-size: 12rem;
    line-height: 0.9;
}

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

.explore-btn {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 300;
    border-radius: 0;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-family: 'Arial', sans-serif;
    opacity: 0;
    transform: translateY(20px);
}

.intro-content.active .explore-btn {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.65s 1.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.explore-btn:hover {
    background: #ffffff;
    color: #000000;
    transform: translateY(-2px);
}

/* Mathematical Shapes Container */
.math-shapes-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: auto;
    z-index: 5;
}

.math-shape {
    position: absolute;
    border: 2px solid rgba(100, 214, 226, 0.3);
    background: transparent;
    animation: float 6s ease-in-out infinite;
    cursor: pointer;
    transition: all 0.3s ease;
}

.math-shape:hover {
    border-color: rgba(100, 214, 226, 0.8);
    background: rgba(100, 214, 226, 0.1);
    transform: scale(1.2) rotate(45deg);
    box-shadow: 0 0 20px rgba(100, 214, 226, 0.5);
}

.math-shape:active {
    transform: scale(0.9) rotate(-45deg);
    background: rgba(100, 214, 226, 0.2);
    box-shadow: 0 0 30px rgba(100, 214, 226, 0.8);
}

.shape-1 {
    top: 10%;
    left: 15%;
    width: 60px;
    height: 60px;
    -webkit-clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    animation-delay: 0s;
}

.shape-2 {
    top: 20%;
    right: 20%;
    width: 80px;
    height: 80px;
    -webkit-clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    animation-delay: 1s;
}

.shape-3 {
    top: 60%;
    left: 10%;
    width: 70px;
    height: 70px;
    -webkit-clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    animation-delay: 2s;
}

.shape-4 {
    top: 30%;
    left: 70%;
    width: 50px;
    height: 50px;
    -webkit-clip-path: polygon(20% 0%, 80% 0%, 100% 20%, 100% 80%, 80% 100%, 20% 100%, 0% 80%, 0% 20%);
    clip-path: polygon(20% 0%, 80% 0%, 100% 20%, 100% 80%, 80% 100%, 20% 100%, 0% 80%, 0% 20%);
    animation-delay: 3s;
}

.shape-5 {
    top: 70%;
    right: 15%;
    width: 90px;
    height: 90px;
    -webkit-clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
    clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
    animation-delay: 4s;
}

.shape-6 {
    top: 15%;
    left: 50%;
    width: 40px;
    height: 40px;
    -webkit-clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    animation-delay: 5s;
}

.shape-7 {
    top: 80%;
    left: 30%;
    width: 55px;
    height: 55px;
    -webkit-clip-path: polygon(0% 0%, 100% 0%, 50% 100%);
    clip-path: polygon(0% 0%, 100% 0%, 50% 100%);
    animation-delay: 0.5s;
}

.shape-8 {
    top: 40%;
    right: 10%;
    width: 65px;
    height: 65px;
    -webkit-clip-path: polygon(25% 0%, 75% 0%, 100% 25%, 100% 75%, 75% 100%, 25% 100%, 0% 75%, 0% 25%);
    clip-path: polygon(25% 0%, 75% 0%, 100% 25%, 100% 75%, 75% 100%, 25% 100%, 0% 75%, 0% 25%);
    animation-delay: 1.5s;
}

.shape-9 {
    top: 50%;
    left: 5%;
    width: 45px;
    height: 45px;
    -webkit-clip-path: polygon(50% 0%, 100% 38%, 82% 100%, 18% 100%, 0% 38%);
    clip-path: polygon(50% 0%, 100% 38%, 82% 100%, 18% 100%, 0% 38%);
    animation-delay: 2.5s;
}

.shape-10 {
    top: 25%;
    left: 25%;
    width: 75px;
    height: 75px;
    -webkit-clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    animation-delay: 3.5s;
}

.shape-11 {
    top: 85%;
    right: 30%;
    width: 35px;
    height: 35px;
    -webkit-clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    animation-delay: 4.5s;
}

.shape-12 {
    top: 5%;
    right: 5%;
    width: 85px;
    height: 85px;
    -webkit-clip-path: polygon(20% 0%, 80% 0%, 100% 20%, 100% 80%, 80% 100%, 20% 100%, 0% 80%, 0% 20%);
    clip-path: polygon(20% 0%, 80% 0%, 100% 20%, 100% 80%, 80% 100%, 20% 100%, 0% 80%, 0% 20%);
    animation-delay: 0.8s;
}

.shape-13 {
    top: 45%;
    left: 40%;
    width: 50px;
    height: 50px;
    -webkit-clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    animation-delay: 1.8s;
}

.shape-14 {
    top: 65%;
    left: 60%;
    width: 60px;
    height: 60px;
    -webkit-clip-path: polygon(25% 0%, 75% 0%, 100% 25%, 100% 75%, 75% 100%, 25% 100%, 0% 75%, 0% 25%);
    clip-path: polygon(25% 0%, 75% 0%, 100% 25%, 100% 75%, 75% 100%, 25% 100%, 0% 75%, 0% 25%);
    animation-delay: 2.8s;
}

.shape-15 {
    top: 35%;
    right: 40%;
    width: 70px;
    height: 70px;
    -webkit-clip-path: polygon(50% 0%, 100% 38%, 82% 100%, 18% 100%, 0% 38%);
    clip-path: polygon(50% 0%, 100% 38%, 82% 100%, 18% 100%, 0% 38%);
    animation-delay: 3.8s;
}

/* Bridge Container */
.bridge-container {
    position: absolute;
    top: 15%;
    left: 50%;
    width: 600px;
    height: 200px;
    margin-top: -100px;
    margin-left: -300px;
    display: none;
    z-index: 25;
}

.bridge-line {
    position: absolute;
    background: #64d6e2;
    opacity: 0.8;
}

.bridge-main {
    top: 50%;
    left: 0;
    width: 100%;
    height: 4px;
    transform: translateY(-50%);
}

.bridge-cable-1 {
    top: 20%;
    left: 10%;
    width: 2px;
    height: 60%;
    transform: rotate(15deg);
}

.bridge-cable-2 {
    top: 20%;
    right: 10%;
    width: 2px;
    height: 60%;
    transform: rotate(-15deg);
}

.bridge-tower-1 {
    top: 30%;
    left: 20%;
    width: 3px;
    height: 40%;
}

.bridge-tower-2 {
    top: 30%;
    right: 20%;
    width: 3px;
    height: 40%;
}

/* Bridge Formation - Simple Lines */
.bridge-forming .bridge-main {
    animation: bridgeDraw 2s ease-in-out;
}

.bridge-forming .bridge-cable-1 {
    animation: bridgeDraw 2s ease-in-out 0.5s both;
}

.bridge-forming .bridge-cable-2 {
    animation: bridgeDraw 2s ease-in-out 0.5s both;
}

.bridge-forming .bridge-tower-1 {
    animation: bridgeDraw 2s ease-in-out 1s both;
}

.bridge-forming .bridge-tower-2 {
    animation: bridgeDraw 2s ease-in-out 1s both;
}

@keyframes bridgeDraw {
    0% { opacity: 0; transform: scaleX(0); }
    100% { opacity: 0.8; transform: scaleX(1); }
}

/* Animations */
@keyframes blockPulse {
    0% { transform: scale(1); opacity: 0.7; }
    100% { transform: scale(1.2); opacity: 1; }
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

@keyframes textFadeIn {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}

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

/* Interactive Particles */
.particles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 3;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #64d6e2;
    border-radius: 50%;
    pointer-events: none;
    animation: particleFloat 3s ease-out forwards;
}

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

/* Mouse Trail */
.mouse-trail {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
}

.trail-dot {
    position: absolute;
    width: 8px;
    height: 8px;
    background: radial-gradient(circle, rgba(100, 214, 226, 0.8) 0%, rgba(100, 214, 226, 0) 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: trailFade 1s ease-out forwards;
}

@keyframes trailFade {
    0% {
        opacity: 1;
        transform: scale(1);
    }
    100% {
        opacity: 0;
        transform: scale(0.3);
    }
}

/* Interactive Ripple Effect */
.ripple {
    position: absolute;
    border: 2px solid rgba(100, 214, 226, 0.6);
    border-radius: 50%;
    pointer-events: none;
    animation: rippleExpand 1s ease-out forwards;
}

@keyframes rippleExpand {
    0% {
        width: 0;
        height: 0;
        opacity: 1;
    }
    100% {
        width: 200px;
        height: 200px;
        opacity: 0;
    }
}

/* Sparkle animation */
@keyframes sparkle {
    0% {
        opacity: 0;
        transform: scale(0) rotate(0deg);
    }
    50% {
        opacity: 1;
        transform: scale(1) rotate(180deg);
    }
    100% {
        opacity: 0;
        transform: scale(0) rotate(360deg);
    }
}

/* Page Template Styles */
.app-hero, .blockchain-hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 30%, #000000 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    padding: 2rem 0;
}

.app-content, .blockchain-content {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.app-icon, .blockchain-icon {
    font-size: 4rem;
    margin-bottom: 2rem;
}

.app-content h1 {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.blockchain-content h1 {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.app-subtitle, .blockchain-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 3rem;
    line-height: 1.6;
}

.app-features, .blockchain-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.feature-item {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

.blockchain-features .feature-item {
    background: rgba(124, 58, 237, 0.1);
    border: 1px solid rgba(124, 58, 237, 0.3);
}

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

.blockchain-features .feature-item:hover {
    border-color: var(--accent-color);
    background: rgba(124, 58, 237, 0.2);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.feature-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.blockchain-features .feature-item h3 {
    color: var(--accent-color);
}

.feature-item p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}

.tech-stack {
    margin-bottom: 3rem;
}

.tech-stack h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--accent-color);
}

.tech-items {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.tech-item {
    padding: 0.8rem 1.5rem;
    background: rgba(124, 58, 237, 0.2);
    border: 1px solid rgba(124, 58, 237, 0.5);
    border-radius: 25px;
    color: #ffffff;
    font-weight: 500;
    transition: all 0.3s ease;
}

.tech-item:hover {
    background: var(--accent-color);
    color: #000;
    transform: translateY(-2px);
}

.app-actions, .blockchain-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: all 0.3s ease;
}

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

.blockchain-actions .btn-primary {
    background: var(--accent-color);
    border: 2px solid var(--accent-color);
}

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

.blockchain-actions .btn-primary:hover {
    color: var(--accent-color);
}

.btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

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

.blockchain-actions .btn-secondary:hover {
    border-color: var(--accent-color);
    color: var(--accent-color);
}

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

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #ffffff;
    margin: 3px 0;
    transition: all 0.3s ease;
}

.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.mobile-nav a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

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

/* Footer Styles */
.footer {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 30%, #000000 100%);
    color: #ffffff;
    padding: 3rem 0 1rem;
    margin-top: 3rem;
    position: relative;
    z-index: 100;
    min-height: 200px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.footer-section h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-section h4 {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
}

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

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

.social-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

.social-links a:hover {
    color: var(--primary-color);
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0.5rem;
}

.design-credit {
    color: rgba(255, 255, 255, 0.7) !important;
    font-size: 0.85rem;
    font-style: italic;
    margin-top: 1rem;
}

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

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

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

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .mobile-menu.active {
        display: block;
    }
    
    .app-content h1, .blockchain-content h1 {
        font-size: 2rem;
    }
    
    .app-subtitle, .blockchain-subtitle {
        font-size: 1.1rem;
    }
    
    .app-features, .blockchain-features {
        grid-template-columns: 1fr;
    }
    
    .tech-items {
        justify-content: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
}