.wallet-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 20px;
    margin: 20px 0;
    position: relative;
    z-index: 1000;
}

.btc-connect {
    background: linear-gradient(45deg, #ff9500, #ff5e3a);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(255, 94, 58, 0.2);
    position: relative;
    z-index: 1000;
}

.btc-connect:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 94, 58, 0.4);
    background: linear-gradient(45deg, #ff5e3a, #ff9500);
}

/* Base Styles */
:root {
    --primary-bg: #1877f2;    /* Facebook Blue */
    --secondary-bg: #166fe5;  /* Slightly darker FB blue */
    --accent-color: #0d6efd;  /* Complementary blue */
    --accent-hover: #0b5ed7;  /* Darker blue for hover */
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.9);
    --success-color: #0dcf38;
    --error-color: #ff4444;
    --card-bg: rgba(255, 255, 255, 0.15);
    --border-color: rgba(255, 255, 255, 0.2);
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: linear-gradient(135deg, #1877f2, #166fe5);
    color: var(--text-primary);
    line-height: 1.6;
    min-height: 100vh;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    box-sizing: border-box;
}

@media (max-width: 768px) {
    .container {
        padding: 0 0.5rem;
    }

    .section {
        padding: 2rem 0;
    }
}

/* Header */
header {
    background: rgba(24, 119, 242, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    padding: 1rem 2rem;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 10px 20px;
    border-radius: 50px;
    background: rgba(13, 207, 56, 0.15);
    transition: all 0.3s ease;
    border: 1px solid rgba(13, 207, 56, 0.2);
}

.logo:hover {
    background: rgba(13, 207, 56, 0.2);
    transform: translateY(-1px);
    border-color: rgba(13, 207, 56, 0.3);
}

.logo-img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #fff;
    padding: 3px;
    box-shadow: 0 0 20px rgba(13, 207, 56, 0.4);
    transition: transform 0.3s ease;
}

.logo:hover .logo-img {
    transform: rotate(5deg);
    box-shadow: 0 0 25px rgba(13, 207, 56, 0.5);
}

.logo-text {
    font-weight: 600;
    font-size: 1.3em;
    font-weight: 900;
    white-space: nowrap;
    letter-spacing: 0.8px;
    padding: 0 5px;
}

.logo-text span:first-child {
    color: #0dcf38;
    text-shadow: 0 0 15px rgba(13, 207, 56, 0.6);
}

.logo-text span:last-child {
    color: #ffffff;
}

.nav-menu {
    display: flex;
    gap: 1.5rem;
    margin-left: auto;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    padding: 6px 12px;
    position: relative;
    transition: all 0.3s ease;
    border-radius: 20px;
    background: rgba(13, 207, 56, 0.15);
    border: 1px solid rgba(13, 207, 56, 0.2);
    font-size: 0.95rem;
}

.nav-link:hover {
    background: rgba(13, 207, 56, 0.2);
    transform: translateY(-1px);
    border-color: rgba(13, 207, 56, 0.3);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: #0dcf38;
    box-shadow: 0 0 10px rgba(13, 207, 56, 0.6);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 80%;
}

.nav-link.active {
    background: rgba(13, 207, 56, 0.25);
    color: #0dcf38;
    text-shadow: 0 0 10px rgba(13, 207, 56, 0.6);
}

.nav-link.active::after {
    width: 80%;
}

@media (max-width: 768px) {
    header {
        padding: 1rem;
    }

    .logo-text {
        font-size: 1.1em;
    }

    .nav-menu {
        gap: 1rem;
    }

    .nav-link {
        padding: 5px 10px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .logo {
        padding: 8px 15px;
    }

    .logo-img {
        width: 35px;
        height: 35px;
    }

    .logo-text {
        font-size: 1em;
    }

    .nav-menu {
        gap: 0.75rem;
    }

    .nav-link {
        padding: 4px 10px;
        font-size: 0.9rem;
    }
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.mobile-menu-btn .bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: #ffffff;
    transition: all 0.3s ease;
}

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

.mobile-menu-btn.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.mobile-menu-btn.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

@media (max-width: 480px) {
    .mobile-menu-btn {
        display: block;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        gap: 0;
        flex-direction: column;
        background: rgba(24, 119, 242, 0.95);
        backdrop-filter: blur(10px);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 1rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-link {
        margin: 0.5rem 1rem;
        padding: 6px 12px;
        font-size: 0.9rem;
    }
}

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

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(13, 207, 56, 0.2), transparent);
    pointer-events: none;
}

.hero-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

@media (max-width: 768px) {
    .hero-container {
        padding: 1rem;
        margin: 0;
        width: 100%;
        box-sizing: border-box;
    }

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

    .button-container {
        width: 100%;
        padding: 0;
        margin: 1rem 0;
    }

    .action-btn {
        width: 100%;
        margin: 0.5rem 0;
    }
}

/* Ensure all content is properly centered on mobile */
@media (max-width: 480px) {
    .hero-container {
        padding: 1rem 0.5rem;
    }

    .hero-content {
        width: 100%;
        padding: 0 0.5rem;
        box-sizing: border-box;
    }

    .hero-image {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .button-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
        width: 100%;
        padding: 0 1rem;
    }

    .action-btn {
        width: 100%;
        max-width: 300px;
        margin: 0;
    }
}

.hero-content {
    text-align: center;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, #0dcf38, #f7931a, #2e8dfa, #00ff9d);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px rgba(13, 207, 56, 0.3);
    animation: gradient-shift 8s ease infinite;
}

@keyframes gradient-shift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.hero-description {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.hero-image {
    margin-bottom: 2rem;
}

.floating-image {
    max-width: 300px;
    height: auto;
    animation: float 6s ease-in-out infinite;
    filter: drop-shadow(0 0 20px rgba(13, 207, 56, 0.3));
}

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

/* Buttons */
.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 3rem;
}

.button {
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 1.2rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #6366f1, #818cf8);
    border: none;
    color: white;
    box-shadow: 0 10px 20px rgba(99, 102, 241, 0.3);
}

.button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(99, 102, 241, 0.4);
}

.button-container {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin: 2rem 0;
}

.action-btn {
    padding: 12px 25px;
    border-radius: 8px;
    font-weight: 700;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 140px;
    text-align: center;
    text-decoration: none;
}

.buy-pup-btn {
    background: #0dcf38;
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(13, 207, 56, 0.3);
}

.buy-pup-btn:hover {
    background: #0bb732;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(13, 207, 56, 0.4);
}

.join-btn {
    background: #1877f2;
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(24, 119, 242, 0.3);
}

.join-btn:hover {
    background: #166fe5;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(24, 119, 242, 0.4);
}

@media (max-width: 768px) {
    .button-container {
        flex-direction: column;
        gap: 0.75rem;
        padding: 0 1rem;
    }

    .action-btn {
        width: 100%;
        padding: 10px 20px;
        font-size: 0.9em;
    }
}

/* Stats */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
}

.stat-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    padding: 1.5rem;
    border-radius: 15px;
    min-width: 200px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    background: rgba(13, 207, 56, 0.1);
}

.stat-item h3 {
    color: #0dcf38;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

/* Sections */
.section {
    padding: 8rem 0;
}

.section-title {
    color: #ffffff;
    font-size: 2.5em;
    font-weight: 800;
    text-align: center;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #0dcf38, transparent);
}

.section-description {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Features */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    text-align: center;
    color: #ffffff;
}

.about-content h2 {
    font-size: 2rem;
}

@media (max-width: 768px) {
    .about-content h2 {
        font-size: 1.5rem;
    }
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
}

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

.feature {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.feature:hover {
    transform: translateY(-5px);
    background: rgba(13, 207, 56, 0.1);
}

.feature i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #6366f1, #818cf8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Tokenomics Section */
.tokenomics-container {
    display: flex;
    align-items: center;
    gap: 4rem;
    margin-top: 2rem;
}

.tokenomics-grid {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.tokenomics-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.tokenomics-chart {
    max-width: 600px;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(46, 141, 250, 0.3));
    transition: transform 0.3s ease;
}

.tokenomics-chart:hover {
    transform: scale(1.02);
}

@media (max-width: 1024px) {
    .tokenomics-container {
        flex-direction: column;
        gap: 3rem;
    }
    
    .tokenomics-grid {
        width: 100%;
    }
    
    .tokenomics-chart {
        max-width: 100%;
    }
}

/* Image Section */
.image-section {
    padding: 4rem 0;
}

.centered-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Roadmap and FAQ Container */
.roadmap-faq-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    padding: 0 2rem;
}

/* FAQ Section */
.faq-content {
    margin-bottom: 3rem;
}

.faq-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-5px);
    background: rgba(13, 207, 56, 0.1);
}

.faq-item h3 {
    color: #0dcf38;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.faq-item p {
    color: var(--text-primary);
    line-height: 1.6;
}

.faq-image {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 2rem;
}

.faq-illustration {
    max-width: 300px;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(13, 207, 56, 0.3));
    transition: transform 0.3s ease;
}

.faq-illustration:hover {
    transform: scale(1.05);
}

@media (max-width: 1024px) {
    .roadmap-faq-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .faq-illustration {
        max-width: 250px;
    }
}

/* Price Section */
.price-section {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    padding: 20px;
    margin: 20px 0;
}

.price-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.price-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    padding: 15px;
    background: rgba(13, 207, 56, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(13, 207, 56, 0.1);
}

.token-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.token-logo {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #fff;
    padding: 2px;
}

.token-header h2 {
    margin: 0;
    font-size: 1.2em;
    color: rgba(255, 255, 255, 0.9);
}

.main-price {
    padding: 15px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
}

#pups-price {
    font-size: 2em;
    font-weight: bold;
    margin-bottom: 5px;
    color: #fff;
}

#btc-price {
    font-size: 1.2em;
    color: rgba(255, 255, 255, 0.8);
}

.price-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.stat-item {
    background: rgba(0, 0, 0, 0.2);
    padding: 12px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.stat-label {
    font-size: 0.9em;
    color: rgba(255, 255, 255, 0.7);
}

.stat-item span:last-child {
    font-size: 1.1em;
    font-weight: 500;
    color: #fff;
}

.chart-container {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    padding: 20px;
    height: 300px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.change {
    font-size: 0.5em;
    padding: 4px 8px;
    border-radius: 4px;
    margin-left: 8px;
    vertical-align: middle;
}

.change.positive {
    background: rgba(13, 207, 56, 0.2);
    color: #0dcf38;
}

.change.negative {
    background: rgba(255, 59, 59, 0.2);
    color: #ff3b3b;
}

@media (max-width: 768px) {
    .price-stats {
        grid-template-columns: 1fr;
    }
    
    .price-details {
        grid-template-columns: 1fr 1fr;
    }
    
    .chart-container {
        height: 250px;
    }
}

.price-display {
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: center;
    margin: 1rem 0;
}

#currentPrice {
    font-size: 2em;
    font-weight: 700;
    color: #ffffff;
}

.price-change {
    font-size: 1.2em;
    font-weight: 600;
    padding: 0.3rem 0.8rem;
    border-radius: 6px;
}

.positive-change {
    color: #0dcf38;
    background: rgba(13, 207, 56, 0.1);
}

.negative-change {
    color: #ff4d4d;
    background: rgba(255, 77, 77, 0.1);
}

@media (max-width: 768px) {
    .price-display {
        flex-direction: column;
        gap: 0.5rem;
    }

    #currentPrice {
        font-size: 1.5em;
    }

    .price-change {
        font-size: 1em;
    }
}

/* Converter Section */
.converter-section {
    padding: 40px 0;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    margin: 20px 0;
}

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

.converter-container h2 {
    text-align: center;
    color: #fff;
    margin-bottom: 30px;
    font-size: 2em;
}

.converter-box {
    background: rgba(13, 207, 56, 0.05);
    border: 1px solid rgba(13, 207, 56, 0.1);
    border-radius: 12px;
    padding: 25px;
}

.input-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 20px;
}

.input-group {
    position: relative;
    display: flex;
    align-items: center;
}

.converter-input {
    width: 100%;
    padding: 12px 70px 12px 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.2);
    color: #fff;
    font-size: 1.1em;
}

.converter-input:focus {
    outline: none;
    border-color: #0dcf38;
}

.currency-label {
    position: absolute;
    right: 15px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9em;
}

.result-container {
    text-align: center;
    padding: 15px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    margin-bottom: 20px;
}

.result-container p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1em;
    margin: 0;
}

.highlight {
    color: #0dcf38;
    font-weight: bold;
}

.action-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 20px;
}

.buy-btn {
    background: #0dcf38;
    color: #ffffff;
    padding: 12px 25px;
    border-radius: 8px;
    font-weight: 700;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(13, 207, 56, 0.3);
    min-width: 140px;
}

.buy-btn:hover {
    background: #0bb732;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(13, 207, 56, 0.4);
}

.connect-btn {
    background: #1877f2;
    color: #ffffff;
    padding: 12px 25px;
    border-radius: 8px;
    font-weight: 700;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(24, 119, 242, 0.3);
    min-width: 140px;
}

.connect-btn:hover {
    background: #166fe5;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(24, 119, 242, 0.4);
}

@media (max-width: 768px) {
    .action-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .buy-btn,
    .connect-btn {
        width: 100%;
        padding: 10px 20px;
    }
}

.button {
    padding: 12px 25px;
    border-radius: 8px;
    font-size: 1em;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    background: linear-gradient(135deg, #6366f1, #818cf8);
    color: white;
    box-shadow: 0 10px 20px rgba(99, 102, 241, 0.3);
}

.button:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(99, 102, 241, 0.4);
}

@media (max-width: 768px) {
    .converter-container {
        padding: 15px;
    }
    
    .action-buttons {
        flex-direction: column;
    }
    
    .button {
        width: 100%;
    }
}

/* Override CoinGecko widget styles */
coingecko-coin-ticker-widget {
    width: 100% !important;
}

coingecko-coin-price-chart-widget {
    width: 100% !important;
}

/* Footer Styles */
.footer {
    background: rgba(0, 0, 0, 0.3);
    padding: 40px 0;
    margin-top: 60px;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-align: center;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #0dcf38;
    padding: 10px;
    border-radius: 10px;
}

.footer-logo img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.footer-logo h3 {
    color: #fff;
    margin: 0;
    font-size: 1.2em;
    font-weight: 600;
}

.footer-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9em;
}

@media (max-width: 768px) {
    .footer {
        padding: 30px 0;
    }
    
    .footer-logo {
        flex-direction: column;
        gap: 10px;
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        padding: 0 1.5rem;
    }
    
    h1 {
        font-size: 3.5rem;
    }
    
    .hero-stats {
        flex-wrap: wrap;
    }
}

@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        gap: 1rem;
    }
    
    nav ul {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    .button {
        padding: 1rem 2rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .stat-item {
        min-width: 100%;
    }
    
    .section {
        padding: 4rem 0;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
}

/* Mobile Menu Styles */
@media (max-width: 1024px) {
    .header-container {
        padding: 1rem;
    }

    .logo {
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

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

    .logo-text {
        font-size: 1.1em;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 2px;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(10px);
        padding: 2rem;
        transition: 0.3s ease;
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
        z-index: 1000;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-link {
        font-size: 1.2em;
        padding: 0.5rem 0;
        width: 100%;
        text-align: center;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

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

    .button-container {
        flex-direction: column;
        gap: 0.75rem;
        padding: 0 1rem;
    }

    .action-btn {
        width: 100%;
        padding: 12px 20px;
        font-size: 0.9em;
    }

    h1 {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }

    .hero-description {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }

    .stat-item {
        width: 100%;
        padding: 1rem;
    }
}

/* Small Mobile Devices */
@media (max-width: 480px) {
    .logo-text {
        font-size: 0.9em;
    }

    .logo-img {
        width: 32px;
        height: 32px;
    }

    h1 {
        font-size: 2rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .action-btn {
        padding: 10px 16px;
        font-size: 0.85em;
    }

    .nav-menu {
        padding: 1.5rem;
    }

    .nav-link {
        font-size: 1.1em;
    }
}

/* Tablet Devices */
@media (min-width: 768px) and (max-width: 1024px) {
    .logo-text {
        font-size: 1.2em;
    }

    h1 {
        font-size: 3rem;
    }

    .button-container {
        flex-direction: row;
        padding: 0 2rem;
    }

    .action-btn {
        width: auto;
        min-width: 160px;
    }

    .hero-stats {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .stat-item {
        width: calc(50% - 1rem);
    }
}

/* Blog Section */
.blog-section {
    padding: 4rem 0;
    background: rgba(13, 207, 56, 0.05);
}

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

.blog-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(13, 207, 56, 0.2);
    border-radius: 16px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    text-decoration: none;
    color: #ffffff;
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
}

.blog-content {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.blog-content h3 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    line-height: 1.4;
    color: #0dcf38;
    font-weight: 600;
    flex-grow: 1;
}

.read-more {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.source-logo {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    background: #fff;
    padding: 4px;
    object-fit: contain;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.blog-source {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.blog-source span {
    font-size: 1rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 768px) {
    .source-logo {
        width: 28px;
        height: 28px;
        padding: 3px;
    }

    .blog-source span {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .source-logo {
        width: 24px;
        height: 24px;
        padding: 2px;
    }

    .blog-source {
        margin-bottom: 1rem;
        padding-bottom: 0.75rem;
    }

    .blog-source span {
        font-size: 0.9rem;
    }
}

/* Background Animation */
.bg-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.bg-circle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle at center, rgba(13, 207, 56, 0.2), transparent);
    animation: float 20s infinite ease-in-out;
}

.bg-circle:nth-child(1) {
    width: 400px;
    height: 400px;
    top: 10%;
    left: 10%;
}

.bg-circle:nth-child(2) {
    width: 300px;
    height: 300px;
    top: 50%;
    right: 15%;
    animation-delay: -5s;
}

.bg-circle:nth-child(3) {
    width: 200px;
    height: 200px;
    bottom: 20%;
    left: 20%;
    animation-delay: -10s;
}

@keyframes float {
    0% {
        transform: translate(0, 0);
    }
    25% {
        transform: translate(50px, 50px);
    }
    50% {
        transform: translate(0, 100px);
    }
    75% {
        transform: translate(-50px, 50px);
    }
}

/* Community Section Styles */
.community-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.community-content p {
    font-size: 1.2em;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
}

.social-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.social-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 25px 40px;
    border-radius: 15px;
    text-decoration: none;
    color: #fff;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    min-width: 200px;
}

.social-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transition: 0.5s;
}

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

.social-btn i {
    font-size: 2em;
    margin-bottom: 10px;
}

.social-btn span {
    font-size: 1.1em;
    font-weight: 600;
    margin-bottom: 5px;
}

.social-btn .members-count {
    font-size: 0.9em;
    opacity: 0.8;
}

.telegram-btn {
    background: linear-gradient(135deg, #0088cc, #005580);
    box-shadow: 0 4px 15px rgba(0, 136, 204, 0.3);
}

.telegram-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 136, 204, 0.4);
}

.twitter-btn {
    background: linear-gradient(135deg, #1DA1F2, #0C85D0);
    box-shadow: 0 4px 15px rgba(29, 161, 242, 0.3);
}

.twitter-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(29, 161, 242, 0.4);
}

@media (max-width: 768px) {
    .social-btn {
        width: 100%;
    }
    
    .social-buttons {
        gap: 15px;
    }
}

/* About Section with Expandable Content */
.about-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.about-content p {
    font-size: 1.1em;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 25px;
}

.read-more-btn {
    background: #0dcf38;
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(13, 207, 56, 0.3);
    position: relative;
    overflow: hidden;
}

.read-more-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: 0.5s;
}

.read-more-btn:hover {
    background: #09a82d;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(13, 207, 56, 0.5);
}

.read-more-btn:hover::before {
    left: 100%;
}

.read-more-btn:active {
    transform: translateY(1px);
    box-shadow: 0 2px 10px rgba(13, 207, 56, 0.3);
}

.historical-btn {
    background: #1877f2;
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(24, 119, 242, 0.3);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease, color 0.2s ease;
}

.historical-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: 0.5s;
    z-index: 1;
}

.historical-btn span {
    position: relative;
    z-index: 2;
}

.historical-btn:hover {
    background: #1365d3;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(24, 119, 242, 0.5);
    color: #f7931a; /* Bitcoin yellow */
}

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

.historical-btn:active {
    transform: translateY(1px);
    box-shadow: 0 2px 10px rgba(24, 119, 242, 0.3);
}

@media (max-width: 768px) {
    .read-more-btn, .historical-btn {
        padding: 10px 20px;
        font-size: 0.9em;
    }
}

.expanded-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    margin-top: 20px;
}

.expanded-content.show {
    max-height: 2000px; /* Adjust this value based on your content */
}

.read-more-btn {
    background: linear-gradient(45deg, #0dcf38, #166fe5);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.read-more-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(13, 207, 56, 0.3);
}

.faq-section {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.faq-item {
    background: rgba(13, 207, 56, 0.05);
    border: 1px solid rgba(13, 207, 56, 0.1);
    border-radius: 12px;
    padding: 20px;
}

.faq-item h3 {
    color: #0dcf38;
    margin: 0 0 15px 0;
    font-size: 1.2em;
}

.faq-item p {
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
}

@media (max-width: 768px) {
    .faq-item {
        padding: 15px;
    }
    
    .faq-item h3 {
        font-size: 1.1em;
    }
}

/* Logo Styles */
.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 10px 20px;
    border-radius: 50px;
    background: rgba(13, 207, 56, 0.15);
    transition: all 0.3s ease;
    border: 1px solid rgba(13, 207, 56, 0.2);
}

.logo:hover {
    background: rgba(13, 207, 56, 0.2);
    transform: translateY(-1px);
    border-color: rgba(13, 207, 56, 0.3);
}

.logo-img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #fff;
    padding: 3px;
    box-shadow: 0 0 20px rgba(13, 207, 56, 0.4);
    transition: transform 0.3s ease;
}

.logo:hover .logo-img {
    transform: rotate(5deg);
    box-shadow: 0 0 25px rgba(13, 207, 56, 0.5);
}

.logo-text {
    font-size: 1.3em;
    font-weight: 900;
    white-space: nowrap;
    letter-spacing: 0.8px;
    padding: 0 5px;
}

.logo-text span:first-child {
    color: #0dcf38;
    text-shadow: 0 0 15px rgba(13, 207, 56, 0.6);
}

.logo-text span:last-child {
    color: #ffffff;
}

@media (max-width: 768px) {
    .logo-text {
        font-size: 1.1em;
    }
}

.logo-text::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #0dcf38, transparent);
    opacity: 0.7;
}

@media (max-width: 768px) {
    .logo {
        padding: 8px 15px;
    }

    .logo-text {
        font-size: 1.1em;
        letter-spacing: 0.5px;
        font-weight: 900;
    }
    
    .logo-img {
        width: 35px;
        height: 35px;
    }
}

/* About Logo Styles */
.about-logo {
    width: 120px;
    height: auto;
    margin: 20px auto;
    display: block;
}

@media (max-width: 768px) {
    .logo-text {
        font-size: 1em;
    }
    
    .logo-img {
        width: 32px;
        height: 32px;
    }
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--primary-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--accent-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-hover);
}

/* Input Styling */
input {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    color: var(--text-primary);
    padding: 0.75rem 1rem;
    font-size: 1rem;
    transition: all 0.3s ease;
}

input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 2px rgba(99, 102, 241, 0.2);
}

/* Link Styling */
a {
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--accent-hover);
}

/* Section Headers */
.section-header {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 2rem 0 1rem;
    text-align: center;
    background: linear-gradient(135deg, var(--accent-color), var(--accent-hover));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* Enhanced Header Styles */
header {
    background: rgba(24, 119, 242, 0.95); /* Facebook blue with opacity */
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    padding: 1rem 2rem;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

/* Logo and Navigation */
.logo-container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-text {
    background: linear-gradient(135deg, #1877f2, #166fe5);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 700;
    font-size: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.logo-text:hover {
    transform: scale(1.05);
}

/* Card Styles */
.card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 1rem;
    padding: 1.5rem;
    margin: 1rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

/* Button Styles */
.button {
    background: #1877f2; /* Solid Facebook blue */
    border: none;
    border-radius: 0.5rem;
    color: white;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(24, 119, 242, 0.3);
}

.button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 8px -1px rgba(24, 119, 242, 0.4);
    background: #166fe5; /* Slightly darker on hover */
}

/* Chart Container */
.chart-container {
    background: var(--card-bg);
    border-radius: 1rem;
    padding: 1.5rem;
    margin: 1rem;
    height: 400px;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    padding: 1rem;
}

.stat-card {
    background: var(--card-bg);
    border-radius: 0.75rem;
    padding: 1rem;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease;
}

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

/* Section Headers */
.section-header {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 2rem 0 1rem;
    text-align: center;
    background: linear-gradient(135deg, #1877f2, #166fe5);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--primary-bg);
}

::-webkit-scrollbar-thumb {
    background: #1877f2;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #166fe5;
}

/* Links */
a {
    color: #1877f2;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #166fe5;
}

/* Mobile Menu */
.mobile-menu {
    background: var(--primary-bg);
}

/* Price Change Indicators */
.positive {
    color: var(--success-color);
    text-shadow: 0 0 10px rgba(13, 207, 56, 0.3);
}

.negative {
    color: var(--error-color);
    text-shadow: 0 0 10px rgba(255, 68, 68, 0.3);
}

/* Inputs */
input {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    color: var(--text-primary);
}

input:focus {
    outline: none;
    border-color: #1877f2;
    box-shadow: 0 0 0 2px rgba(24, 119, 242, 0.2);
}

/* Navigation Links */
nav a {
    color: var(--text-primary);
    opacity: 0.9;
}

nav a:hover {
    color: #ffffff;
    opacity: 1;
}

/* Feature Cards */
.feature-card {
    background: linear-gradient(135deg, rgba(24, 119, 242, 0.1), rgba(22, 111, 229, 0.1));
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(24, 119, 242, 0.15);
}

/* Additional Styles */
.gradient-text {
    background: linear-gradient(135deg, #1877f2, #166fe5);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.glass-effect {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Animations */
@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0px);
    }
}

.float-animation {
    animation: float 3s ease-in-out infinite;
}

.about-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin: 1.5rem 0;
}

.read-more-btn, .historical-btn {
    padding: 12px 25px;
    border-radius: 8px;
    font-weight: 700;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    font-size: 0.9em;
    min-width: 140px;
    text-align: center;
}

.read-more-btn {
    background: #0dcf38;
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(13, 207, 56, 0.3);
    position: relative;
    overflow: hidden;
}

.read-more-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: 0.5s;
}

.read-more-btn:hover {
    background: #09a82d;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(13, 207, 56, 0.5);
}

.read-more-btn:hover::before {
    left: 100%;
}

.read-more-btn:active {
    transform: translateY(1px);
    box-shadow: 0 2px 10px rgba(13, 207, 56, 0.3);
}

.historical-btn {
    background: #1877f2;
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(24, 119, 242, 0.3);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease, color 0.2s ease;
}

.historical-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: 0.5s;
    z-index: 1;
}

.historical-btn span {
    position: relative;
    z-index: 2;
}

.historical-btn:hover {
    background: #1365d3;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(24, 119, 242, 0.5);
    color: #f7931a; /* Bitcoin yellow */
}

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

.historical-btn:active {
    transform: translateY(1px);
    box-shadow: 0 2px 10px rgba(24, 119, 242, 0.3);
}

@media (max-width: 768px) {
    .about-buttons {
        flex-direction: column;
        gap: 0.75rem;
        padding: 0 1rem;
    }

    .read-more-btn, .historical-btn {
        width: 100%;
        padding: 10px 20px;
        font-size: 0.85em;
    }
}

/* Price update animation */
@keyframes priceUpdate {
    0% {
        color: inherit;
    }
    50% {
        color: #0dcf38;
    }
    100% {
        color: inherit;
    }
}

.price-update {
    animation: priceUpdate 1s ease;
}

.last-updated {
    font-size: 0.8em;
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
    margin-top: 0.5rem;
}

/* Staking Container Styles */
.staking-container {
    padding: 2rem;
    margin: 2rem auto;
    max-width: 800px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.staking-container h2 {
    text-align: center;
    color: #ffffff;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.staking-stats {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 2rem;
}

.stat-box {
    flex: 1;
    background: rgba(13, 207, 56, 0.1);
    padding: 1rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(13, 207, 56, 0.2);
}

.stat-label {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.stat-value {
    display: block;
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 700;
}

.staking-input-container {
    margin-bottom: 1.5rem;
}

.input-group {
    position: relative;
    margin-bottom: 1rem;
}

.input-group input {
    width: 100%;
    padding: 1rem;
    padding-right: 70px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    color: #ffffff;
    font-size: 1rem;
}

.input-group input:focus {
    outline: none;
    border-color: #0dcf38;
}

.currency-label {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.7);
}

.staking-rewards {
    background: rgba(255, 255, 255, 0.05);
    padding: 1rem;
    border-radius: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.staking-rewards p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.reward-amount {
    color: #0dcf38;
    font-weight: 700;
}

.stake-btn {
    width: 100%;
    padding: 1rem;
    background: #0dcf38;
    color: #ffffff;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.stake-btn:hover {
    background: #0bb732;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(13, 207, 56, 0.3);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .staking-container {
        padding: 1.5rem;
        margin: 1.5rem 1rem;
    }

    .staking-stats {
        flex-direction: column;
        gap: 0.75rem;
    }

    .stat-box {
        padding: 0.75rem;
    }

    .stat-value {
        font-size: 1.1rem;
    }

    .staking-container h2 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
}

@media (max-width: 480px) {
    .staking-container {
        padding: 1rem;
        margin: 1rem 0.5rem;
    }

    .input-group input {
        padding: 0.75rem;
        font-size: 0.9rem;
    }

    .stake-btn {
        padding: 0.75rem;
        font-size: 0.9rem;
    }
}

.max-btn {
    position: absolute;
    right: 4.5rem;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(13, 207, 56, 0.2);
    color: #0dcf38;
    border: none;
    padding: 0.3rem 0.6rem;
    border-radius: 6px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.max-btn:hover {
    background: rgba(13, 207, 56, 0.3);
}

.lock-period-selector {
    margin: 1rem 0;
}

.lock-period-selector span {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.5rem;
}

.period-options {
    display: flex;
    gap: 0.5rem;
}

.period-btn {
    flex: 1;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
}

.period-btn:hover {
    background: rgba(13, 207, 56, 0.1);
    border-color: rgba(13, 207, 56, 0.3);
}

.period-btn.active {
    background: rgba(13, 207, 56, 0.2);
    border-color: #0dcf38;
    color: #0dcf38;
}

.reward-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.reward-info:last-child {
    border-bottom: none;
}

.reward-info p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.apy-rate {
    color: #0dcf38;
    font-weight: 700;
}

.unlock-date {
    color: #ffffff;
    font-weight: 500;
}

.staking-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.action-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.action-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.action-link:hover {
    color: #0dcf38;
}

@media (max-width: 768px) {
    .period-options {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .period-btn {
        flex: 1;
        min-width: calc(33.33% - 0.5rem);
        padding: 0.5rem;
        font-size: 0.9rem;
    }

    .action-links {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .max-btn {
        right: 4rem;
        padding: 0.2rem 0.4rem;
        font-size: 0.7rem;
    }

    .period-btn {
        min-width: calc(50% - 0.5rem);
    }

    .reward-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
    }
}

.staking-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.tvl-display {
    background: rgba(13, 207, 56, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 12px;
    border: 1px solid rgba(13, 207, 56, 0.2);
}

.tvl-label {
    display: block;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
}

.tvl-value {
    font-size: 1.2rem;
    font-weight: 700;
    color: #0dcf38;
}

.stat-change {
    display: block;
    font-size: 0.8rem;
    margin-top: 0.25rem;
}

.stat-change.positive {
    color: #0dcf38;
}

.stat-change.negative {
    color: #ff4d4d;
}

.stat-subtext {
    display: block;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 0.25rem;
}

.staking-tabs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    padding: 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
}

.tab-btn {
    flex: 1;
    padding: 0.75rem;
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-btn.active {
    background: rgba(13, 207, 56, 0.2);
    color: #0dcf38;
}

.wallet-balance {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

.wallet-balance span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.wallet-balance strong {
    color: #ffffff;
    margin-left: 0.5rem;
}

.usd-value {
    text-align: right;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    margin: 0.5rem 0;
}

.period-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.period {
    font-weight: 600;
}

.period-apy {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
}

.glass-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1rem;
}

.unstake-fee {
    color: #ff4d4d;
    font-weight: 600;
}

.staking-info {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.info-box {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: rgba(13, 207, 56, 0.1);
    border: 1px solid rgba(13, 207, 56, 0.2);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.info-box:hover {
    background: rgba(13, 207, 56, 0.15);
    transform: translateY(-1px);
}

.info-box i {
    color: #0dcf38;
    font-size: 1.4rem;
}

.info-box p {
    margin: 0;
    font-size: 1rem;
    color: #ffffff;
    line-height: 1.4;
}

@media (max-width: 480px) {
    .info-box {
        padding: 0.75rem 1rem;
    }
    
    .info-box p {
        font-size: 0.9rem;
    }
}

.action-link i {
    margin-right: 0.5rem;
}

@media (max-width: 768px) {
    .staking-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .wallet-balance {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    .staking-tabs {
        flex-wrap: wrap;
    }

    .tab-btn {
        min-width: calc(50% - 0.25rem);
    }
}

@media (max-width: 480px) {
    .tvl-display {
        width: 100%;
        text-align: center;
    }

    .tab-btn {
        min-width: 100%;
    }

    .period-btn {
        padding: 0.5rem;
    }

    .period {
        font-size: 0.9rem;
    }

    .period-apy {
        font-size: 0.75rem;
    }
}

/* Period Button Styles */
.period-options {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
}

.period-btn {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
}

.period-btn:hover {
    background: rgba(13, 207, 56, 0.1);
    border-color: rgba(13, 207, 56, 0.3);
    transform: translateY(-2px);
}

.period-btn.active {
    background: rgba(13, 207, 56, 0.2);
    border-color: #0dcf38;
    box-shadow: 0 4px 15px rgba(13, 207, 56, 0.2);
}

.period-btn.active .period,
.period-btn.active .period-apy {
    color: #0dcf38;
}

.period {
    font-size: 1.1rem;
    font-weight: 600;
}

.period-apy {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .period-options {
        gap: 0.75rem;
    }

    .period-btn {
        padding: 0.75rem;
    }

    .period {
        font-size: 1rem;
    }

    .period-apy {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .period-options {
        gap: 0.5rem;
        flex-direction: column;
    }

    .period-btn {
        padding: 0.75rem;
    }
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px; /* Adjust based on your header height */
}
