/*
Theme Name: HaxWallet
Theme URI: https://haxwallet.com
Author: HaxSolutions
Author URI: https://haxwallet.com
Description: Official WordPress theme for HaxWallet - Secure cryptocurrency wallet for managing your digital assets.
Version: 1.0.0
Requires at least: 5.9
Tested up to: 6.4
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: haxwallet
*/

/* Variables */
:root {
    /* Colors */
    --dark-bg: #ffffff;
    --dark-card: #f8f9fa;
    --brand-blue: #000000;
    --brand-dark: #000000;
    --text-primary: #000000;
    --text-secondary: rgba(0, 0, 0, 0.7);
    --border-color: rgba(0, 0, 0, 0.2);
    /* Legacy color variables for compatibility */
    --neon-green: #000000;
    --electric-blue: #000000;
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-primary);
    line-height: 1.6;
}

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

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
}

p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

img {
    max-width: 100%;
    height: auto;
}

a {
    color: var(--electric-blue);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

a:hover {
    opacity: 0.8;
}

/* Header & Navigation */
header {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    height: 80px;
    contain: layout style paint;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 40px; /* Fixed height for nav */
}

.nav-links {
    display: flex;
    gap: 30px;
    height: 40px; /* Fixed height */
    align-items: center;
}

.nav-buttons {
    display: flex;
    align-items: center;
    gap: 16px;
    height: 40px; /* Fixed height */
    min-width: 200px; /* Minimum width to prevent shifts */
}

/* Logo Styles */
.logo {
    display: flex;
    align-items: center;
    height: 50px; /* Increased height for better visibility */
    min-width: 50px; /* Equal to height for perfect square */
    margin-right: 20px;
}

.logo img {
    height: 100%;
    width: auto;
    max-width: 180px; /* Increased max-width */
    object-fit: contain;
}

.nav-links a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--brand-blue);
}

.download-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
    min-height: 60px;
    width: 100%;
    contain: layout style paint;
}

.download-button {
    height: 60px; /* Fixed height */
    width: 200px; /* Fixed width */
    display: flex;
    align-items: center;
    justify-content: center;
}

.download-button img {
    height: 40px;
    width: auto;
    aspect-ratio: 3/1;
}

/* Section Styles */
.section {
    padding: 80px 0;
    background: var(--dark-bg);
}

.section h2 {
    font-size: 48px;
    margin-bottom: 48px;
    text-align: center;
    color: #000000;
    font-weight: 600;
    letter-spacing: -0.02em;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: flex-start; /* Changed to prevent vertical centering shifts */
    text-align: center;
    position: relative;
    background: linear-gradient(180deg, var(--dark-bg) 0%, #f8f9fa 100%);
    overflow: hidden;
    contain: layout style paint;
    padding-top: 80px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.02) 50%, transparent 100%);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    padding: 80px 20px;
    min-height: 600px; /* Fixed minimum height */
    display: flex;
    flex-direction: column;
    align-items: center;
    contain: layout style paint;
}

.hero h1 {
    font-size: clamp(40px, 8vw, 72px);
    margin-bottom: 30px;
    line-height: 1.1;
    background: linear-gradient(135deg, var(--neon-green) 0%, var(--electric-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientFlow 8s ease infinite;
    min-height: 80px;
    width: 100%;
    contain: layout style paint;
}

.hero p {
    font-size: clamp(18px, 4vw, 24px);
    margin-bottom: 40px;
    color: var(--text-secondary);
    min-height: 72px;
    max-width: 600px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    contain: layout style paint;
}

.hero-image {
    width: 100%;
    max-width: 300px;
    min-height: 300px; /* Fixed minimum height */
    margin: 40px auto 0;
    display: flex;
    align-items: center;
    justify-content: center;
    contain: layout style paint;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    aspect-ratio: 1/1;
}

/* Add font display swap for better loading behavior */
@font-face {
    font-family: 'Inter';
    font-display: swap;
    src: local('Inter'), url('/wp-content/themes/hax-wallet/assets/fonts/inter.woff2') format('woff2');
}

/* Download Section */
.download-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
    min-height: 60px;
}

.download-button {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 500;
    transition: all 0.3s ease;
    background: var(--dark-card);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

.download-button:hover {
    transform: translateY(-2px);
    border-color: var(--neon-green);
}

.download-button img {
    height: 24px;
    width: auto;
    aspect-ratio: 3/1;
}

/* Features Section */
.features {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--dark-bg) 0%, var(--dark-card) 100%);
}

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

.feature-card {
    background: var(--dark-card);
    padding: 40px;
    border-radius: 20px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--neon-green), var(--electric-blue));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    font-size: 40px;
    margin-bottom: 20px;
    color: var(--neon-green);
}

.feature-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--text-primary);
}

/* Comparison Table */
.comparison-section {
    padding: 100px 0;
    background: var(--dark-bg);
}

.table-container {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 40px auto;
    border-radius: 24px;
}

.comparison-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: rgba(20, 24, 32, 0.95);
    border-radius: 24px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.comparison-table thead {
    background: rgba(13, 16, 21, 0.95);
}

.comparison-table th,
.comparison-table td {
    padding: 20px 24px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.comparison-table th {
    color: var(--neon-green);
    font-weight: 500;
}

.comparison-table td:first-child {
    color: var(--text-secondary);
    font-weight: 500;
}

.check {
    color: var(--neon-green);
}

.cross {
    color: #FF4444;
}

/* Earn Section */
.earn-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--dark-bg) 0%, var(--dark-card) 100%);
}

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

/* Swap Section */
.swap-section {
    padding: 100px 0;
    background: var(--dark-bg);
}

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

/* NFT Section */
.nft-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--dark-bg) 0%, var(--dark-card) 100%);
}

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

/* Security Section */
.security-section {
    padding: 100px 0;
    background: var(--dark-bg);
}

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

/* Learn Section */
.learn-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--dark-bg) 0%, var(--dark-card) 100%);
}

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

.learn-card {
    background: var(--dark-card);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.learn-card:hover {
    transform: translateY(-5px);
}

.learn-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.learn-content {
    padding: 30px;
}

/* Testimonials */
.testimonials {
    padding: 100px 0;
    background: var(--dark-bg);
}

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

.testimonial-card {
    background: var(--dark-card);
    padding: 40px;
    border-radius: 20px;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 60px;
    color: var(--neon-green);
    opacity: 0.2;
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--dark-bg) 0%, var(--dark-card) 100%);
}

.faq-grid {
    display: grid;
    gap: 20px;
    max-width: 800px;
    margin: 60px auto 0;
}

.faq-item {
    background: var(--dark-card);
    border-radius: 12px;
    padding: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-2px);
}

/* Footer */
footer {
    background: var(--dark-card);
    padding: 80px 0 40px;
}

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

.footer-links h4 {
    color: var(--text-primary);
    margin-bottom: 20px;
    font-size: 18px;
}

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

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--neon-green);
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 40px;
    text-align: center;
}

/* Coming Soon Badge */
.coming-soon {
    display: inline-block;
    padding: 6px 12px;
    background: rgba(0, 255, 161, 0.1);
    color: var(--neon-green);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 15px;
}

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

/* WordPress Specific Styles */
.wp-block-image img {
    max-width: 100%;
    height: auto;
}

.alignwide {
    margin-left: -80px;
    margin-right: -80px;
}

.alignfull {
    margin-left: calc(-100vw / 2 + 100% / 2);
    margin-right: calc(-100vw / 2 + 100% / 2);
    max-width: 100vw;
}

.wp-block-button__link {
    background-color: var(--neon-green);
    color: var(--dark-bg);
    border-radius: 8px;
}

.wp-block-button__link:hover {
    background-color: #00e691;
}

/* Responsive Styles */
@media (max-width: 768px) {
    header {
        height: 70px;
    }

    .hero {
        padding-top: 70px;
    }

    .hero-content {
        min-height: calc(100vh - 70px);
        padding: 40px 20px;
        justify-content: flex-start;
    }
    
    .hero h1 {
        margin-top: 20px;
        min-height: 60px;
    }

    .hero-image {
        min-height: 200px;
        max-width: 200px;
        margin: 30px auto 0;
    }

    .download-buttons {
        flex-direction: column;
        align-items: center;
        min-height: 180px;
        gap: 10px;
    }

    .download-button {
        width: 180px;
        height: 50px;
    }

    .nav-buttons {
        min-width: 150px;
    }

    .nav-links {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .nav-links.show {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        width: 80%;
        max-width: 300px;
        background: var(--dark-card);
        padding: 80px 20px;
        z-index: 99;
    }

    .features-grid,
    .earn-grid,
    .swap-grid,
    .nft-grid,
    .security-grid,
    .learn-grid,
    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    .comparison-table {
        display: block;
        overflow-x: auto;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .section h2 {
        font-size: 32px;
    }

    .logo {
        height: 40px;
        min-width: 40px;
    }
    
    .logo img {
        max-width: 120px;
    }
}

/* Accessibility */
.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    word-wrap: normal !important;
}

.screen-reader-text:focus {
    background-color: var(--dark-card);
    border-radius: 3px;
    box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
    clip: auto !important;
    clip-path: none;
    color: var(--text-primary);
    display: block;
    font-size: 14px;
    font-weight: bold;
    height: auto;
    left: 5px;
    line-height: normal;
    padding: 15px 23px 14px;
    text-decoration: none;
    top: 5px;
    width: auto;
    z-index: 100000;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    padding: 10px;
    cursor: pointer;
    position: relative;
    z-index: 100;
}

.menu-icon {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--text-primary);
    position: relative;
    transition: background-color 0.3s;
}

.menu-icon:before,
.menu-icon:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: var(--text-primary);
    transition: transform 0.3s;
}

.menu-icon:before {
    top: -8px;
}

.menu-icon:after {
    bottom: -8px;
}

.menu-toggle.active .menu-icon {
    background-color: transparent;
}

.menu-toggle.active .menu-icon:before {
    transform: rotate(45deg);
    top: 0;
}

.menu-toggle.active .menu-icon:after {
    transform: rotate(-45deg);
    bottom: 0;
}

/* Fixed Header */
header.fixed {
    background-color: rgba(10, 12, 16, 0.95);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

/* Form Styles */
input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="range"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"],
textarea,
select {
    background-color: var(--dark-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 12px 16px;
    color: var(--text-primary);
    width: 100%;
    transition: border-color 0.3s;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
input[type="range"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="week"]:focus,
input[type="time"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="color"]:focus,
textarea:focus,
select:focus {
    border-color: var(--neon-green);
    outline: none;
}

/* Additional Utility Classes */
.text-gradient {
    background: linear-gradient(to right, var(--neon-green), var(--electric-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.bg-gradient {
    background: linear-gradient(135deg, var(--dark-bg), var(--dark-card));
}

.card {
    background: var(--dark-card);
    border-radius: 16px;
    padding: 30px;
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
}

/* Entry Content Styles */
.entry-content {
    margin-top: 30px;
}

.entry-content h1,
.entry-content h2,
.entry-content h3,
.entry-content h4,
.entry-content h5,
.entry-content h6 {
    margin: 2em 0 1em;
    color: var(--text-primary);
}

.entry-content p {
    margin-bottom: 1.5em;
    line-height: 1.8;
}

.entry-content ul,
.entry-content ol {
    margin: 0 0 1.5em 2em;
    color: var(--text-secondary);
}

.entry-content blockquote {
    border-left: 4px solid var(--neon-green);
    padding-left: 20px;
    margin: 0 0 1.5em;
    font-style: italic;
    color: var(--text-secondary);
}

/* Search Form */
.search-form {
    display: flex;
    gap: 10px;
    margin: 20px 0;
}

.search-form label {
    flex: 1;
}

.search-form .search-field {
    width: 100%;
}

.search-form .search-submit {
    padding: 12px 24px;
}

/* Features Comparison Table */
.comparison-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin: 40px 0;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.comparison-table th {
    background: rgba(0, 255, 161, 0.1);
    padding: 20px;
    text-align: left;
    font-weight: 600;
    color: var(--neon-green);
}

.comparison-table td {
    padding: 20px;
    border-bottom: 1px solid var(--border-color);
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

/* Feature Cards */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.feature-card {
    background: var(--dark-card);
    padding: 40px;
    border-radius: 20px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--neon-green), var(--electric-blue));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    font-size: 40px;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--neon-green), var(--electric-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.feature-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--text-primary);
}

/* Testimonials */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.testimonial-card {
    background: var(--dark-card);
    padding: 40px;
    border-radius: 20px;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 60px;
    color: var(--neon-green);
    opacity: 0.2;
}

.testimonial-text {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: var(--text-secondary);
}

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

.author-name {
    font-weight: 600;
    color: var(--text-primary);
}

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

/* FAQ Section */
.faq-grid {
    display: grid;
    gap: 20px;
    max-width: 800px;
    margin: 60px auto 0;
}

.faq-item {
    background: var(--dark-card);
    border-radius: 12px;
    padding: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-2px);
}

.faq-question {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 15px;
}

.faq-answer {
    color: var(--text-secondary);
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

/* Learn Section */
.learn-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.learn-card {
    background: var(--dark-card);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.learn-card:hover {
    transform: translateY(-5px);
}

.learn-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.learn-content {
    padding: 30px;
}

.learn-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.learn-description {
    color: var(--text-secondary);
    margin-bottom: 20px;
}

/* Enhanced Mobile Styles */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 40px;
    }

    .hero p {
        font-size: 18px;
    }

    .download-buttons {
        flex-direction: column;
        align-items: center;
    }

    .comparison-table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .feature-card,
    .testimonial-card,
    .learn-card {
        padding: 30px;
    }

    .faq-question {
        font-size: 18px;
    }
}

/* Floating Crypto Icons Animation */
.floating-crypto-icons {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.crypto-icon {
    position: absolute;
    opacity: 0.5;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.2));
    animation: float 20s infinite linear;
}

.crypto-icon img {
    width: 40px;
    height: 40px;
    transition: transform 0.3s ease;
}

/* Position each icon */
.crypto-icon.btc {
    top: 15%;
    left: 10%;
    animation-delay: -2s;
}

.crypto-icon.eth {
    top: 25%;
    right: 15%;
    animation-delay: -5s;
}

.crypto-icon.sol {
    bottom: 20%;
    left: 20%;
    animation-delay: -8s;
}

.crypto-icon.usdt {
    bottom: 30%;
    right: 10%;
    animation-delay: -12s;
}

.crypto-icon.hax {
    top: 50%;
    left: 50%;
    animation-delay: -15s;
}

/* Floating animation */
@keyframes float {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(100px, 50px) rotate(90deg);
    }
    50% {
        transform: translate(50px, 100px) rotate(180deg);
    }
    75% {
        transform: translate(-50px, 50px) rotate(270deg);
    }
    100% {
        transform: translate(0, 0) rotate(360deg);
    }
}

/* Hover effect */
.crypto-icon:hover img {
    transform: scale(1.2);
    opacity: 0.8;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .crypto-icon img {
        width: 30px;
        height: 30px;
    }
    
    @keyframes float {
        0% {
            transform: translate(0, 0) rotate(0deg);
        }
        25% {
            transform: translate(50px, 25px) rotate(90deg);
        }
        50% {
            transform: translate(25px, 50px) rotate(180deg);
        }
        75% {
            transform: translate(-25px, 25px) rotate(270deg);
        }
        100% {
            transform: translate(0, 0) rotate(360deg);
        }
    }
} 