@import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap');

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

body {
    font-family: 'Press Start 2P', cursive;
    background: linear-gradient(135deg, #261340 0%, #3d1f5a 50%, #4a1f4e 100%);
    min-height: 100vh;
    color: white;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1.5rem 2rem;
    z-index: 1000;
}

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

.logo {
    font-size: 0.9rem;
    font-weight: normal;
    letter-spacing: 1px;
    color: white;
    text-decoration: none;
    display: inline-block;
}

.logo::before {
    content: '$';
    color: #ff2d7e;
    margin-right: 0.2rem;
    font-size: 1.2em;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 3rem;
    background: rgba(25, 15, 45, 0.8);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(10px);
    padding: 1.1rem 3.5rem;
    border-radius: 999px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    flex-wrap: wrap;
    max-width: calc(100% - 2rem);
    justify-content: center;
}

.nav-menu a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.7rem;
    transition: color 0.3s, background 0.3s, padding 0.3s;
    font-weight: normal;
    padding: 0.6rem 1.2rem;
    border-radius: 999px;
}

.nav-menu a:hover,
.nav-menu a:focus {
    color: white;
    background: rgba(0, 0, 0, 0.4);
}

.close-btn {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    transition: opacity 0.3s;
    opacity: 0.7;
}

.close-btn:hover {
    opacity: 1;
}


.x-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: transparent;
    transition: opacity 0.3s;
    opacity: 0.7;
    text-decoration: none;
    margin-left: 1rem;
}

.x-logo:hover {
    opacity: 1;
}

.x-logo svg {
    width: 28px;
    height: 28px;
    display: block;
}

.social-links {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.telegram-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: transparent;
    transition: opacity 0.3s;
    opacity: 0.7;
    text-decoration: none;
}

.telegram-logo:hover {
    opacity: 1;
}

.telegram-logo svg {
    width: 28px;
    height: 28px;
    display: block;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    text-align: center;
}

.hero-content {
    max-width: 800px;
}

.avatar {
    margin-bottom: 2rem;
}

.avatar img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 6px solid #000000; /* clean black outline */
    background: #b8d9c7; /* single mint ring between dog and outline */
    padding: 8px;
    box-shadow: none; /* keep only black outline */
    object-fit: cover;
    object-position: center;
}

/* Hero Title */
.hero-title {
    font-size: clamp(2rem, 6vw, 3.5rem);
    font-weight: normal;
    line-height: 1.5;
    margin-bottom: 1.5rem;
    text-shadow: 4px 4px 0px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.05em;
}

.highlight {
    color: #ff2d7e;
    text-shadow: 0 0 20px rgba(255, 45, 126, 0.5);
}
/* Hero Description */
.hero-description {
    font-size: 1.3rem;
    line-height: 1.6;
    margin-bottom: 3rem;
    opacity: 1;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 400;
    letter-spacing: 0.01em;
    color: rgba(255, 255, 255, 0.75);
}

.brand {
    color: #ff2d7e;
    font-weight: 700;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1.4em;
}

.creator {
    color: white;
    font-weight: 700;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.coin {
    color: white;
    font-weight: 700;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.value {
    color: #ff2d7e;
    font-weight: 700;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* CTA Buttons */
.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-size: 0.65rem;
    font-weight: normal;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(90deg, #ff2d7e 0%, #d61a5c 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 45, 126, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 62, 140, 0.6);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
}

.btn-icon {
    font-size: 1.2rem;
}

.external-icon {
    font-size: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        gap: 1rem;
        font-size: 0.6rem;
        padding: 0.8rem 1.5rem;
        width: calc(100% - 2rem);
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .navbar {
        padding: 1rem;
    }
    
    .nav-menu {
        gap: 0.6rem;
        font-size: 0.5rem;
        padding: 0.7rem 1.2rem;
        width: calc(100% - 1.5rem);
    }
    
    .logo {
        font-size: 0.7rem;
    }
}

/* Story Section */
.story-section {
    padding: 5rem 2rem;
    background: linear-gradient(180deg, rgba(58, 28, 113, 0) 0%, rgba(35, 20, 65, 0.5) 100%);
}

.story-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.story-title {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    line-height: 1.5;
    margin-bottom: 2rem;
    font-weight: normal;
}

.story-text {
    margin-bottom: 3rem;
}

.story-text p {
    font-size: 1rem;
    line-height: 2;
    margin-bottom: 1.5rem;
    opacity: 0.9;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* Story Features */
.story-features {
    display: flex;
    gap: 1.5rem;
    flex-wrap: nowrap;
    justify-content: flex-start;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.88rem;
    background: rgba(255, 45, 126, 0.15);
    padding: 0.8rem 1.3rem;
    border-radius: 50px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    flex-shrink: 0;
    border: 1px solid rgba(255, 45, 126, 0.3);
    color: rgba(255, 255, 255, 0.95);
}

.feature-icon {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #ff2d7e;
    stroke: #ff2d7e;
}

.feature-text {
    white-space: normal;
    font-weight: 600;
    letter-spacing: 0.02em;
}

/* Doge Gallery */
.story-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.doge-gallery {
    background: linear-gradient(135deg, #c8b5ff 0%, #b8d5ff 100%);
    border-radius: 30px;
    padding: 2rem;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.doge-gallery-img {
    width: 100%;
    max-width: 800px;
    height: auto;
    object-fit: contain;
    border-radius: 20px;
}

@media (max-width: 968px) {
    .story-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .doge-gallery {
        padding: 1.5rem;
    }
    
    .doge-img {
        width: 100px;
        height: 100px;
    }
}

@media (max-width: 480px) {
    .story-features {
        flex-wrap: wrap;
    }
    
    .story-img {
        width: 80px;
        height: 80px;
    }
}

/* Response Section */
.response-section {
    padding: 5rem 2rem;
    background: linear-gradient(180deg, rgba(35, 20, 65, 0.5) 0%, rgba(58, 28, 113, 0.3) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.response-container {
    max-width: 900px;
    width: 100%;
    text-align: center;
}

.response-title {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    line-height: 1.5;
    margin-bottom: 1rem;
    font-weight: normal;
}

.response-subtitle {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 3rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* Tweet Card */
.tweet-card {
    background: transparent;
    border: none;
    border-radius: 16px;
    padding: 0;
    margin-bottom: 2rem;
    text-align: left;
    box-shadow: none;
    display: flex;
    justify-content: center;
}

.tweet-card-img {
    width: 100%;
    max-width: 650px;
    height: auto;
    border-radius: 16px;
    object-fit: contain;
}

.tweet-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.75rem;
    color: #666;
}

.tweet-back {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

.tweet-label {
    color: #1d9bf0;
    font-weight: 500;
}

.tweet-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    justify-content: space-between;
}

.tweet-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #b8d5ff 0%, #c8b5ff 100%);
}

.author-info {
    flex: 1;
    text-align: left;
}

.author-name {
    font-size: 0.95rem;
    font-weight: 600;
    color: white;
}

.verified {
    color: #1d9bf0;
    margin-left: 0.25rem;
}

.author-handle {
    font-size: 0.8rem;
    color: #666;
}

.tweet-subscribe {
    background: white;
    color: black;
    border: none;
    border-radius: 20px;
    padding: 0.5rem 1.5rem;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
}

.tweet-menu {
    background: none;
    border: none;
    color: #666;
    font-size: 1.2rem;
    cursor: pointer;
}

.tweet-content {
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    line-height: 1.6;
    color: white;
}

.tweet-content p {
    margin-bottom: 1rem;
}

.tweet-meta {
    font-size: 0.75rem;
    color: #666;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.tweet-time {
    display: block;
}

/* Response Badges */
.response-badges {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
}

.badge-burn {
    border-color: #ff6b6b;
    color: #ff6b6b;
    background: rgba(255, 107, 107, 0.1);
}

.badge-burn:hover {
    background: rgba(255, 107, 107, 0.2);
    transform: scale(1.05);
}

.badge-burn:active {
    background: rgba(255, 107, 107, 0.3);
    transform: scale(0.98);
}

.badge-community {
    border-color: #51cf66;
    color: #51cf66;
    background: rgba(81, 207, 102, 0.1);
}

.badge-community:hover {
    background: rgba(81, 207, 102, 0.2);
    transform: scale(1.05);
}

.badge-community:active {
    background: rgba(81, 207, 102, 0.3);
    transform: scale(0.98);
}

.badge-icon {
    font-size: 1rem;
}

@media (max-width: 768px) {
    .tweet-card {
        padding: 1.2rem;
    }
    
    .author-info {
        min-width: 0;
        flex-shrink: 1;
    }
    
    .author-name {
        font-size: 0.85rem;
    }
    
    .tweet-subscribe {
        padding: 0.4rem 1rem;
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .tweet-author {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }
    
    .response-badges {
        gap: 1rem;
    }
    
    .tweet-subscribe {
        width: 100%;
    }
}

/* Community Section */
.community-section {
    min-height: 100vh;
    padding: 6rem 2rem;
    background: linear-gradient(180deg, rgba(35, 20, 65, 0.3) 0%, rgba(58, 28, 113, 0) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.community-container {
    max-width: 900px;
    width: 100%;
    text-align: center;
}

.community-title {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    line-height: 1.5;
    margin-bottom: 1.5rem;
    font-weight: normal;
    white-space: normal;
}

.community-subtitle {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 3rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
}

.value {
    color: #ff3e8c;
    font-weight: 600;
}

.bold {
    font-weight: 600;
    color: white;
}

/* Transaction Card */
.transaction-card {
    background: transparent;
    border-radius: 20px;
    padding: 0;
    margin-bottom: 2rem;
    box-shadow: none;
    display: flex;
    justify-content: center;
}

.transaction-card-img {
    width: 100%;
    max-width: 650px;
    height: auto;
    border-radius: 20px;
    object-fit: contain;
}

/* View Transaction Link */
.view-transaction {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.view-transaction:hover {
    color: white;
}

.external-icon {
    font-size: 0.75rem;
}

@media (max-width: 768px) {
    .card-row {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }
    
    .card-header {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }
    
    .transaction-card {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .card-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .card-header {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .card-cell {
        justify-content: flex-start;
    }
}

/* CA Section */
.ca-section {
    min-height: 60vh;
    padding: 4rem 2rem;
    background: linear-gradient(180deg, rgba(35, 20, 65, 0.3) 0%, rgba(58, 28, 113, 0) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.ca-container {
    max-width: 600px;
    width: 100%;
    text-align: center;
}

.ca-title {
    font-size: clamp(1.2rem, 3vw, 2rem);
    line-height: 1.5;
    margin-bottom: 2.5rem;
    font-weight: normal;
}

.ca-address {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    padding: 1.75rem 2rem;
    font-family: 'Courier New', monospace;
}

.ca-text {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.88);
    word-break: break-all;
}

.copy-btn-large {
    background: transparent;
    border: none;
    color: #c7b4d9;
    cursor: pointer;
    transition: opacity 0.2s ease, transform 0.15s ease;
    flex-shrink: 0;
    padding: 0.35rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.copy-btn-large:hover {
    opacity: 0.95;
    transform: translateY(-1px);
}

.copy-icon {
    width: 26px;
    height: 26px;
    stroke: currentColor;
}


@media (max-width: 768px) {
    .ca-address {
        flex-direction: column;
        gap: 1rem;
    }
    
    .ca-text {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .ca-section {
        min-height: 50vh;
        padding: 3rem 1.5rem;
    }
    
    .ca-address {
        padding: 1rem;
    }
    
    .ca-text {
        font-size: 0.7rem;
    }
}

/* Movement Section */
.movement-section {
    min-height: 80vh;
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #261340 0%, #3d1f5a 50%, #4a1f4e 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.movement-container {
    max-width: 700px;
    width: 100%;
.movement-title {
    font-size: clamp(1.8rem, 5vw, 3rem);
    line-height: 1.4;
    margin-bottom: 1.5rem;
    font-weight: 400;
    letter-spacing: 0.05em;
}   margin-bottom: 1.5rem;
    font-weight: normal;
}

.movement-subtitle {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 3rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
}

.movement-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 4rem;
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.5);
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-size: 0.65rem;
    font-weight: normal;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
}

/* Movement Stats */
.movement-stats {
    display: flex;
    gap: 3rem;
    justify-content: center;
    flex-wrap: wrap;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.stat-value {
    font-size: clamp(1.8rem, 5vw, 2.8rem);
    font-weight: 700;
    color: white;
    letter-spacing: 0.05em;
    line-height: 1.2;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.stat-value.highlight-pink {
    color: #ff3e8c;
}

.stat-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 400;
    letter-spacing: 0.02em;
}

@media (max-width: 768px) {
    .movement-buttons {
        gap: 1rem;
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary,
    .btn-outline {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .movement-stats {
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .movement-section {
        min-height: auto;
        padding: 4rem 1.5rem;
    }
    
    .movement-stats {
        gap: 1.5rem;
        flex-direction: column;
        align-items: center;
    }
}
