/* Responsive Styles */
@media (max-width: 1200px) {
    .container {
        max-width: 960px;
        padding: 0 20px;
    }

    .faq-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 992px) {
    .container {
        max-width: 720px;
    }

    .hero-container {
        flex-direction: column;
        text-align: center;
    }

    .hero-content {
        margin-bottom: 40px;
    }

    .hero-image {
        max-width: 100%;
        margin-top: 30px;
    }

    .about-buttons {
        justify-content: center;
    }

    .expandable-section {
        margin: 20px 10px;
    }

    .expandable-content {
        padding: 30px 20px;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .key-points ul {
        padding-left: 0;
    }
}

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

    .section {
        padding: 60px 0;
    }

    .hero-title {
        font-size: 32px;
        line-height: 1.3;
    }

    .hero-description {
        font-size: 16px;
    }

    .about-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .about-buttons .read-more-btn,
    .about-buttons .historical-btn {
        width: 100%;
        margin: 0;
    }

    .expandable-content {
        padding: 20px 15px;
    }

    .expandable-content h3 {
        font-size: 20px;
    }

    .expandable-content h4 {
        font-size: 18px;
    }

    .faq-item {
        padding: 20px 15px;
    }

    .faq-item h5 {
        font-size: 16px;
    }

    .show-less-btn-container {
        padding: 15px;
    }

    .show-less-btn {
        width: 100%;
        padding: 12px 20px;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 10px;
    }

    .hero-title {
        font-size: 28px;
    }

    .expandable-section {
        margin: 15px 5px;
        border-radius: 8px;
    }

    .key-points {
        padding: 15px;
    }

    .key-points li {
        font-size: 14px;
        margin-bottom: 10px;
    }

    .faq-item {
        padding: 15px;
    }

    .faq-item p, 
    .faq-item ul {
        font-size: 14px;
    }

    .show-less-btn {
        font-size: 14px;
        padding: 10px 16px;
    }
}

/* Fix for very small devices */
@media (max-width: 360px) {
    .hero-title {
        font-size: 24px;
    }

    .expandable-content {
        padding: 15px 10px;
    }

    .faq-item {
        padding: 12px;
    }
}

/* Fix for landscape mode */
@media (max-height: 600px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        padding: 40px 0;
    }

    .section {
        padding: 40px 0;
    }
}

/* Ensure content is readable on larger screens */
@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }

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

:root {
    --primary-color: #9EE6CF;
    --secondary-color: #4AACF7;
    --background-color: #1C2128;
    --card-background: #252B34;
    --text-color: #FFFFFF;
    --text-secondary: #A0A7B4;
    --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;
    border: none;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: #1C2128;
    color: var(--text-color);
    line-height: 1.6;
    min-height: 100vh;
}

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

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

    .section {
        padding: 2rem 0;
    }
}

/* Header */
header {
    background-color: #1C2128;
    backdrop-filter: blur(10px);
    padding: 1rem 2rem;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: none;
    border: none;
}

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

.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: none;
}

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

.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: var(--text-secondary);
    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: none;
}

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

.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: none;
    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;
    background-color: var(--primary-color);
    color: var(--background-color);
}

.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;
    background: var(--card-background);
    border-radius: 12px;
    padding: 20px;
}

.stat-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    padding: 1.5rem;
    border-radius: 15px;
    min-width: 200px;
    border: none;
    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: var(--text-color);
    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;
    background: linear-gradient(90deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.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: var(--text-color);
}

.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: none;
}

.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;
    background: var(--card-background);
    border-radius: 12px;
    padding: 20px;
}

.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: none;
    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-color);
    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: none;
}

.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;
    border: none;
}

.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: none;
}

.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: none;
    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: none;
    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: var(--card-background);
    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);
}

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

.bg-circle {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(90deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    opacity: 0.1;
    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);
    }
}

.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;
    background-color: var(--primary-color);
    color: var(--background-color);
}

.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: none;
}

.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: none;
}

.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: none;
    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: none;
    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 {
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
}

.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: none;
}

.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: none;
    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 */
}

.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(135deg, #252B34, #2d3440);
    color: white;
    border: 1px solid rgba(158, 230, 207, 0.2);
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.btc-connect:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(158, 230, 207, 0.1),
        transparent
    );
    transition: 0.5s;
}

.btc-connect:hover {
    background: linear-gradient(135deg, #2d3440, #353c4a);
    transform: translateY(-2px);
    border-color: rgba(158, 230, 207, 0.4);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.btc-connect:hover:before {
    left: 100%;
}

.btc-connect:active {
    transform: translateY(1px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.latest-coverage {
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.latest-coverage h2 {
    text-align: center;
    color: #9EE6CF;
    font-size: 2.5rem;
    margin-bottom: 40px;
    background: linear-gradient(135deg, #9EE6CF, #4AACF7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.news-container {
    background: #252B34;
    border-radius: 16px;
    padding: 25px;
    margin-bottom: 25px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.news-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(158, 230, 207, 0.3);
}

.news-source {
    display: inline-block;
    padding: 5px 12px;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 15px;
    background: rgba(158, 230, 207, 0.1);
    color: #9EE6CF;
    border: 1px solid rgba(158, 230, 207, 0.2);
}

.news-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #fff;
    line-height: 1.4;
}

.news-excerpt {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 20px;
}

.read-more-link {
    display: inline-flex;
    align-items: center;
    color: #9EE6CF;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.read-more-link:hover {
    color: #4AACF7;
}

.read-more-link:after {
    content: '→';
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.read-more-link:hover:after {
    transform: translateX(5px);
}

.community-section {
    padding: 60px 20px;
    text-align: center;
    background: #1C2128;
    position: relative;
    overflow: hidden;
}

.community-section h2 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    background: linear-gradient(135deg, #9EE6CF, #4AACF7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.community-section p {
    font-size: 1.4rem;
    color: #fff;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.community-links {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

.community-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: #252B34;
    border: 1px solid rgba(158, 230, 207, 0.2);
    border-radius: 12px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.community-link:hover {
    transform: translateY(-3px);
    background: #2d3440;
    border-color: rgba(158, 230, 207, 0.4);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.community-link img {
    width: 24px;
    height: 24px;
}

.discord-link {
    background: linear-gradient(135deg, #5865F2, #4752C4);
}

.discord-link:hover {
    background: linear-gradient(135deg, #4752C4, #3b45a0);
}

.twitter-link {
    background: linear-gradient(135deg, #1DA1F2, #0d8ecf);
}

.twitter-link:hover {
    background: linear-gradient(135deg, #0d8ecf, #0b7ab3);
}

.community-section::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 1000px;
    height: 1000px;
    background: radial-gradient(circle, rgba(158, 230, 207, 0.1) 0%, rgba(74, 172, 247, 0) 70%);
    transform: translate(-50%, -50%);
    z-index: 0;
    pointer-events: none;
}

.read-more-section {
    padding: 80px 0;
    background: #1C2128;
}

.info-block {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px;
    background: rgba(37, 43, 52, 0.5);
    border-radius: 16px;
    border: 1px solid rgba(158, 230, 207, 0.1);
}

.info-block h3 {
    font-size: 2rem;
    color: #fff;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #9EE6CF, #4AACF7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.info-block p {
    color: #fff;
    line-height: 1.6;
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.key-points {
    margin: 40px 0;
    padding: 30px;
    background: rgba(74, 172, 247, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(74, 172, 247, 0.1);
}

.key-points h4 {
    color: #4AACF7;
    margin-bottom: 20px;
    font-size: 1.4rem;
}

.key-points ul {
    list-style: none;
    padding: 0;
}

.key-points li {
    color: #fff;
    margin-bottom: 15px;
    padding-left: 24px;
    position: relative;
    line-height: 1.5;
}

.key-points li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #9EE6CF;
}

.key-points li strong {
    color: #9EE6CF;
}

.faq-section {
    margin-top: 60px;
}

.faq-section h4 {
    color: #fff;
    font-size: 1.8rem;
    margin-bottom: 30px;
    text-align: center;
}

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

.faq-item {
    background: rgba(37, 43, 52, 0.5);
    padding: 25px;
    border-radius: 12px;
    border: 1px solid rgba(158, 230, 207, 0.1);
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    border-color: rgba(158, 230, 207, 0.2);
}

.faq-item h5 {
    color: #4AACF7;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.faq-item p {
    color: #fff;
    margin-bottom: 15px;
    font-size: 1rem;
}

.faq-item ul {
    list-style: none;
    padding: 0;
}

.faq-item li {
    color: #fff;
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
    font-size: 1rem;
    line-height: 1.5;
}

.faq-item li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #9EE6CF;
}

@media (max-width: 768px) {
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .info-block {
        padding: 20px;
    }
    
    .key-points {
        padding: 20px;
    }
}

.expandable-section {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.8s ease-out;
    background: #1C2128;
    margin-top: 20px;
    border-radius: 12px;
    width: 100%;
    border: 1px solid rgba(158, 230, 207, 0.1);
}

.expandable-section.expanded {
    max-height: 4000px;
}

.expandable-content {
    padding: 40px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
    position: relative;
}

.expandable-section.expanded .expandable-content {
    opacity: 1;
    transform: translateY(0);
}

.expandable-content h3 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 24px;
}

.expandable-content h4 {
    color: #fff;
    margin: 30px 0 15px;
    font-size: 20px;
}

.expandable-content p {
    color: #fff;
    line-height: 1.6;
    margin-bottom: 20px;
}

.key-points {
    background: rgba(255, 255, 255, 0.05);
    padding: 24px;
    border-radius: 12px;
    margin: 20px 0;
}

.key-points ul {
    list-style: none;
    padding: 0;
}

.key-points li {
    color: #fff;
    margin-bottom: 12px;
    padding-left: 20px;
    position: relative;
}

.key-points li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #00ff88;
}

.faq-section {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 30px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 24px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.08);
}

.faq-item h5 {
    color: #00ff88;
    margin-bottom: 12px;
    font-size: 18px;
}

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

.faq-item ul {
    padding-left: 20px;
    margin-top: 8px;
}

.faq-item li {
    margin-bottom: 8px;
}

.show-less-btn-container {
    position: sticky;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(to top, #1C2128 50%, rgba(28, 33, 40, 0));
    text-align: center;
    margin-top: 30px;
    border-radius: 0 0 12px 12px;
}

.show-less-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 32px;
    background: #2A3038;
    border: 1px solid rgba(158, 230, 207, 0.2);
    color: #9EE6CF;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    gap: 8px;
}

.show-less-btn:before {
    content: "↑";
    font-size: 14px;
    transition: transform 0.3s ease;
}

.show-less-btn:hover {
    background: #343B45;
    border-color: rgba(158, 230, 207, 0.4);
    transform: translateY(-2px);
}

.show-less-btn:hover:before {
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .expandable-content {
        padding: 20px;
    }
    
    .faq-item {
        padding: 20px;
    }
}
