:root {
    --primary: #F7931A;
    --secondary: #1A1A1A;
    --accent: #4A90E2;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', sans-serif;
}

body {
    background: var(--secondary);
    color: white;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}



/* Fix particle positioning */
#particles-js {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1; /* Send behind content */
}



/* Bring content forward */
.hero {
    position: relative;
    z-index: 2; /* Higher than particles */
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 3rem;
}



/* Remove background from book container */
.book-cover {
    background: transparent !important;
    padding: 0 !important;
    border: none !important;
    box-shadow: none !important;
}



/* Ensure image has no background */
.book-cover img {
    background: transparent !important;
    border: none !important;
    filter: drop-shadow(0 25px 50px rgba(247, 147, 26, 0.3)); /* Replace box-shadow */
}

.book-cover img:hover {
    transform: rotateY(10deg) rotateX(5deg) translateZ(20px);
    box-shadow: 0 35px 70px rgba(247, 147, 26, 0.5); /* Enhance glow on hover */
}


.cta-box {
    flex: 1;
}

.glow {
    text-shadow: 0 0 10px var(--primary);
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--primary);
    color: #000;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: transform 0.3s;
    margin-top: 2rem;
}

.cta-button:hover {
    transform: translateY(-3px);
}

/* Blockchain Animation */
.blockchain-animation {
    height: 120px;
    position: relative;
    overflow: hidden;
    background: var(--secondary);
    margin: 3rem 0;
}

.blockchain-track {
    display: flex;
    position: absolute;
    animation: scroll 40s linear infinite;
    white-space: nowrap;
}

.block-node {
    display: flex;
    align-items: center;
    padding: 1rem 2rem;
    background: #1a1a1a;
    margin: 0 15px;
    border-radius: 8px;
    border: 2px solid var(--primary);
    position: relative;
}

.block-node::after {
    content: "➤";
    color: var(--primary);
    position: absolute;
    right: -25px;
}

.block-hash {
    font-family: monospace;
    color: var(--primary);
    font-size: 0.9rem;
    margin-right: 1rem;
}

@keyframes scroll {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

/* Features Section */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 4rem 0;
}

.feature-card {
    background: #252525;
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid #333;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(247, 147, 26, 0.3);
}

/* Purchase Section */
.purchase-section {
    padding: 4rem 0;
    text-align: center;
}

.pricing {
    margin: 3rem 0;
}

.price-tag {
    margin-bottom: 1.5rem;
}

.current-price {
    font-size: 2.5rem;
    color: var(--primary);
    margin-right: 1rem;
}

.original-price {
    text-decoration: line-through;
    opacity: 0.7;
}

.guarantee {
    margin-top: 1rem;
    opacity: 0.9;
}

/* Footer */
footer {
    background: #0F0F0F;
    padding: 2rem;
    text-align: center;
}

.support-link {
    color: var(--primary);
    text-decoration: none;
}

@media (max-width: 768px) {
    .hero-content {
        flex-direction: column;
    }
}

@media (prefers-reduced-motion: reduce) {
    .blockchain-track {
        animation: none;
    }
}

/* Bitcoin Ticker Styles */
.bitcoin-ticker {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.8);
    color: #F7931A;
    padding: 4.5px;
    text-align: center;
    font-size: 0.9rem;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.ticker-label {
    font-weight: bold;
    margin-right: 10px;
}

.ticker-price {
    color: #fff;
}

.ticker-change {
    margin-left: 10px;
    font-size: 0.9rem;
}

.ticker-change.positive {
    color: #4CAF50; /* Green for price increase */
}

.ticker-change.negative {
    color: #F44336; /* Red for price decrease */
}

/* Success Page Styles */
.success-message {
    text-align: center;
    padding: 2rem;
    margin: 2rem auto;
    max-width: 600px;
}

.success-message h1 {
    color: #F7931A;
    margin-bottom: 1rem;
}

.success-message p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}