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

body {
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
}

nav {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #3a5a40;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #3a5a40;
}

.hero {
    background: linear-gradient(135deg, #3a5a40 0%, #8b4513 100%);
    color: #fff;
    padding: 8rem 2rem;
    text-align: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 0.5rem;
    font-weight: 800;
}

.hero-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-block;
    background: #fff;
    color: #3a5a40;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    transition: transform 0.3s, box-shadow 0.3s;
    margin-right: 1rem;
    border: 2px solid #3a5a40;
}

.secondary-button {
    display: inline-block;
    background: transparent;
    color: #fff;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 2px solid #fff;
}

.secondary-button:hover {
    transform: translateY(-3px);
    background: rgba(255,255,255,0.1);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.cta-button.large, .secondary-button.large {
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* Bitcoin Price Tracker */
.btc-tracker {
    background: linear-gradient(135deg, #f7931a 0%, #ffab40 100%);
    padding: 4rem 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 300px;
}

.btc-tracker-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    max-width: 1000px;
    width: 100%;
}

.btc-logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.btc-circle {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3), inset 0 2px 10px rgba(0,0,0,0.1);
    border: 10px solid #f7931a;
    position: relative;
}

.btc-circle::before {
    content: "";
    position: absolute;
    width: 135px;
    height: 135px;
    border-radius: 50%;
    border: 3px solid #e88a1a;
}

.btc-symbol {
    font-size: 5.5rem;
    font-weight: bold;
    color: #f7931a;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.15);
}

.btc-info {
    text-align: center;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.btc-info h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.btc-price {
    font-size: 3.5rem;
    font-weight: bold;
    margin: 0.5rem 0;
    background: linear-gradient(135deg, #C8102E 0%, #FF0000 50%, #FFFFFF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.btc-currency {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    opacity: 0.95;
}

.btc-price-usd {
    font-size: 3rem;
    font-weight: bold;
    margin: 0.5rem 0;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.btc-refresh {
    background: #ffffff;
    color: #f7931a;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 6px rgba(0,0,0,0.2);
}

.btc-refresh:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.3);
}

.btc-refresh:active {
    transform: translateY(0);
}

.section {
    padding: 5rem 2rem;
}

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

.section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
}

.alt-bg {
    background: #f8fafc;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.service-card h3, .btc-benefit h3 {
    color: #3a5a40;
    margin-bottom: 1rem;
}

/* Why Bitcoin Grid */
.why-btc-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.btc-benefit {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.btc-benefit:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.btc-benefit h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
}

.btc-benefit p {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
}

/* Steps Container */
.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.step {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
}

.step:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f7931a 0%, #ffab40 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: bold;
    margin: 0 auto 1.5rem;
}

.step h3 {
    color: #333;
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
}

.step p {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.cta-content {
    text-align: left;
}

.cta-content h3 {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cta-tips {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 10px;
}

.cta-tips h4 {
    color: #333;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.cta-tips ul {
    list-style: none;
    padding: 0;
}

.cta-tips li {
    padding: 0.8rem 0;
    color: #555;
    line-height: 1.6;
    border-bottom: 1px solid #e2e8f0;
}

.cta-tips li:last-child {
    border-bottom: none;
}

/* Shakepay Section */
#shakepay {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: #fff;
    padding: 5rem 2rem;
}

#shakepay h2 {
    color: #fff;
    text-align: center;
    margin-bottom: 3rem;
}

.shakepay-card {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    background: rgba(255,255,255,0.05);
    padding: 3rem;
    border-radius: 15px;
    border: 1px solid rgba(255,255,255,0.1);
}

@media (max-width: 768px) {
    .shakepay-card {
        grid-template-columns: 1fr;
    }
}

/* QR Code Container */
.qr-container {
    text-align: center;
    margin: 2rem 0;
}

.qr-container h4 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.qr-code {
    background: #fff;
    display: inline-block;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    margin-bottom: 1rem;
}

.qr-image {
    display: block;
    width: 180px;
    height: 180px;
    object-fit: contain;
}

.qr-caption {
    color: rgba(255,255,255,0.8);
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.shakepay-content {
    text-align: left;
}

.shakepay-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #fff;
}

.shakepay-content p {
    color: rgba(255,255,255,0.9);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.shakepay-content h4 {
    font-size: 1.3rem;
    color: #fff;
    margin-bottom: 1rem;
}

.shakepay-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.shakepay-features li {
    padding: 0.7rem 0;
    color: rgba(255,255,255,0.9);
    font-size: 1.05rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.shakepay-features li:last-child {
    border-bottom: none;
}

.shakepay-button {
    display: inline-block;
    background: linear-gradient(135deg, #f7931a 0%, #ffab40 100%);
    color: #fff;
    padding: 1.2rem 2.5rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 2px solid transparent;
}

.shakepay-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(247,147,26,0.4);
}

.step-cta {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.6rem 1.5rem;
    background: linear-gradient(135deg, #f7931a 0%, #ffab40 100%);
    color: #fff;
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    font-size: 0.9rem;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 2px solid transparent;
}

.step-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(247,147,26,0.3);
}

.shakepay-tips {
    background: rgba(255,255,255,0.05);
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.1);
}

.shakepay-tips h4 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.shakepay-tips ul {
    list-style: none;
    padding: 0;
}

.shakepay-tips li {
    padding: 0.6rem 0;
    color: rgba(255,255,255,0.9);
    line-height: 1.6;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.shakepay-tips li:last-child {
    border-bottom: none;
}

/* Referral Disclosure */
.referral-disclosure {
    background: rgba(255,255,255,0.1);
    border-left: 3px solid #f7931a;
    padding: 1rem;
    margin-bottom: 2rem;
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255,255,255,0.9);
    border-radius: 4px;
}

.referral-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
}

@media (min-width: 768px) {
    .referral-buttons {
        flex-direction: row;
        justify-content: flex-start;
    }
}

.contact-info {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.contact-details {
    margin-top: 2rem;
    padding: 2rem;
    background: #f8fafc;
    border-radius: 10px;
}

footer {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 2rem;
}

.footer-links {
    margin-top: 1rem;
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.3s;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: #fff;
}

/* Policy Pages */
.policy-content {
    max-width: 900px;
    margin: 0 auto;
}

.policy-content h1 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.last-updated {
    text-align: center;
    color: #666;
    font-style: italic;
    margin-bottom: 3rem;
}

.policy-section {
    margin-bottom: 3rem;
    padding: 2rem;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.policy-section h2 {
    font-size: 1.8rem;
    color: #3a5a40;
    margin-bottom: 1rem;
    border-bottom: 2px solid #f7931a;
    padding-bottom: 0.5rem;
}

.policy-section h3 {
    font-size: 1.3rem;
    color: #555;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
}

.policy-section p {
    line-height: 1.7;
    color: #555;
    margin-bottom: 1rem;
}

.policy-section ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.policy-section li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
    color: #555;
}

.policy-section a {
    color: #f7931a;
    text-decoration: none;
    transition: color 0.3s;
}

.policy-section a:hover {
    color: #e88a1a;
    text-decoration: underline;
}

/* X Follow Section */
.x-feed-section {
    background: #fff;
    padding: 5rem 2rem;
    border-top: 1px solid #e2e8f0;
}

.x-feed-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.x-feed-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2.5rem;
}

/* X Follow Card */
.x-follow-card {
    max-width: 600px;
    margin: 0 auto;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 20px;
    padding: 3rem 2rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    border: 2px solid #e2e8f0;
    transition: transform 0.3s, box-shadow 0.3s;
}

.x-follow-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0,0,0,0.12);
}

.x-follow-content {
    text-align: center;
}

.x-profile-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.x-profile-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1DA1F2 0%, #0d8bd9 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(29, 161, 242, 0.3);
}

.x-logo {
    width: 45px;
    height: 45px;
    color: #fff;
}

.x-profile-info {
    text-align: left;
}

.x-profile-info h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 0.3rem;
}

.x-profile-info > p {
    font-size: 0.95rem;
    color: #666;
    margin: 0.3rem 0;
}

.x-post-count {
    color: #1DA1F2 !important;
    font-weight: 600;
}

.x-follow-description {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.x-featured-tags {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.x-tag {
    background: #e8f5fe;
    color: #1DA1F2;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: transform 0.2s, background 0.2s;
}

.x-tag:hover {
    transform: translateY(-2px);
    background: #d1e9fd;
}

.x-button-large {
    background: linear-gradient(135deg, #1DA1F2 0%, #0d8bd9 100%);
    color: #fff;
    border-color: transparent;
    padding: 1.2rem 3rem;
    font-size: 1.15rem;
}

.x-button-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(29, 161, 242, 0.4);
}

.x-follow-cta {
    text-align: center;
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .nav-links {
        gap: 1rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .btc-tracker {
        padding: 3rem 2rem;
        min-height: auto;
    }
    
    .btc-tracker-content {
        flex-direction: column;
        gap: 2rem;
    }
    
    .btc-circle {
        width: 130px;
        height: 130px;
        border-width: 8px;
    }
    
    .btc-circle::before {
        width: 110px;
        height: 110px;
    }
    
    .btc-symbol {
        font-size: 4.5rem;
    }
    
    .btc-price {
        font-size: 2.5rem;
    }
    
    .x-feed-section {
        padding: 3rem 1rem;
    }
    
    .x-feed-section h2 {
        font-size: 2rem;
    }
    
    .x-feed-container {
        padding: 1rem;
    }
}
