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

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: #f1f5f9;
    line-height: 1.6;
    min-height: 100vh;
}

.breadcrumb {
    background: rgba(15, 23, 42, 0.8);
    padding: 1rem 2rem;
    border-bottom: 1px solid rgba(59, 130, 246, 0.2);
    backdrop-filter: blur(10px);
}

.breadcrumb a {
    color: #3b82f6;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: #60a5fa;
}

.breadcrumb span {
    color: #64748b;
    margin: 0 0.5rem;
}

.breadcrumb .current {
    color: #fbbf24;
    font-weight: 500;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.update-header {
    text-align: center;
    padding: 3rem 0;
    border-bottom: 1px solid rgba(59, 130, 246, 0.1);
    margin-bottom: 3rem;
}

.update-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.status-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.status-update {
    background: rgba(59, 130, 246, 0.2);
    color: #3b82f6;
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.status-new {
    background: rgba(34, 197, 94, 0.2);
    color: #22c55e;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.status-fix {
    background: rgba(251, 191, 36, 0.2);
    color: #fbbf24;
    border: 1px solid rgba(251, 191, 36, 0.3);
}

.update-date {
    color: #fbbf24;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.update-title {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, #3b82f6 0%, #fbbf24 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.update-subtitle {
    font-size: 1.25rem;
    color: #cbd5e1;
    max-width: 600px;
    margin: 0 auto;
}

.update-content {
    margin-bottom: 4rem;
}

.feature-section {
    margin-bottom: 3rem;
    padding: 2rem;
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid rgba(59, 130, 246, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.feature-section h2 {
    font-size: 1.75rem;
    font-weight: 600;
    color: #f1f5f9;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(59, 130, 246, 0.1);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    border-color: rgba(59, 130, 246, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.1);
}

.status-icon {
    font-size: 1.25rem;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.feature-details h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #f1f5f9;
    margin-bottom: 0.5rem;
}

.feature-details p {
    color: #cbd5e1;
    line-height: 1.7;
}

.feature-details strong {
    color: #fbbf24;
}

.impact-section {
    margin-top: 4rem;
    padding: 3rem 2rem;
    background: rgba(30, 41, 59, 0.3);
    border: 1px solid rgba(251, 191, 36, 0.2);
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.impact-section h2 {
    font-size: 2rem;
    font-weight: 600;
    color: #fbbf24;
    margin-bottom: 2rem;
    text-align: center;
}

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

.impact-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(15, 23, 42, 0.4);
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.impact-item:hover {
    transform: translateY(-3px);
}

.impact-item h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #f1f5f9;
    margin-bottom: 1rem;
}

.impact-item p {
    color: #cbd5e1;
}

.update-footer {
    border-top: 1px solid rgba(59, 130, 246, 0.1);
    padding: 3rem 0;
    text-align: center;
}

.footer-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.btn-primary {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: white;
    border-color: #3b82f6;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
}

.btn-secondary {
    background: rgba(30, 41, 59, 0.8);
    color: #3b82f6;
    border-color: rgba(59, 130, 246, 0.3);
}

.btn-secondary:hover {
    background: rgba(59, 130, 246, 0.1);
    border-color: rgba(59, 130, 246, 0.5);
    transform: translateY(-2px);
}

.footer-meta {
    color: #94a3b8;
}

.footer-meta a {
    color: #3b82f6;
    text-decoration: none;
}

.footer-meta a:hover {
    color: #60a5fa;
}

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

    .container {
        padding: 1rem;
    }

    .update-title {
        font-size: 2.5rem;
    }

    .update-subtitle {
        font-size: 1.125rem;
    }

    .feature-section {
        padding: 1.5rem;
    }

    .feature-item {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }

    .footer-actions {
        flex-direction: column;
        align-items: center;
    }

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

@media (max-width: 480px) {
    .update-title {
        font-size: 2rem;
    }

    .feature-section h2 {
        font-size: 1.5rem;
    }

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

/* Additional styles for $PUSSY integration page */
.token-info {
    background: rgba(15, 23, 42, 0.4);
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1rem;
}

.token-overview p {
    color: #cbd5e1;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.token-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
}

.stat-item {
    background: rgba(30, 41, 59, 0.6);
    padding: 1rem;
    border-radius: 6px;
    text-align: center;
}

.stat-item h4 {
    color: #fbbf24;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.stat-item p {
    color: #f1f5f9;
    font-weight: 500;
}

.code-example {
    background: rgba(15, 23, 42, 0.8);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 6px;
    padding: 1rem;
    margin-top: 1rem;
    font-family: 'Courier New', monospace;
}

.code-example code {
    color: #22c55e;
    font-weight: 600;
    display: block;
    margin-bottom: 0.5rem;
}

.code-description {
    color: #94a3b8;
    font-size: 0.875rem;
}

.bonus-section {
    background: rgba(251, 191, 36, 0.1);
    border-color: rgba(251, 191, 36, 0.2);
}

.getting-started-section {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.2);
    border-radius: 12px;
    padding: 2rem;
    margin-top: 3rem;
}

.getting-started-section h2 {
    color: #22c55e;
    margin-bottom: 2rem;
    text-align: center;
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    background: #22c55e;
    color: #0f172a;
    border-radius: 50%;
    font-weight: 700;
    font-size: 1.125rem;
    flex-shrink: 0;
}

.step-content h3 {
    color: #f1f5f9;
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.step-content p {
    color: #cbd5e1;
    line-height: 1.6;
}

.step-content code {
    background: rgba(15, 23, 42, 0.8);
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    color: #22c55e;
    font-family: 'Courier New', monospace;
}

.step-content a {
    color: #3b82f6;
    text-decoration: none;
}

.step-content a:hover {
    color: #60a5fa;
}

/* Banner styles for $PUSSY integration page */
.banner-container {
    margin-bottom: 2rem;
    text-align: center;
}

.update-banner {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.update-banner:hover {
    transform: scale(1.02);
}

.pussy-link {
    color: #fbbf24 !important;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: border-color 0.3s ease;
}

.pussy-link:hover {
    border-bottom-color: #fbbf24;
}

@media (max-width: 768px) {
    .step-item {
        flex-direction: column;
        text-align: center;
    }

    .token-stats {
        grid-template-columns: 1fr;
    }

    .banner-container {
        margin-bottom: 1.5rem;
    }

    .update-banner {
        border-radius: 8px;
    }
}