@font-face {
    font-family: 'Solana';
    src: url('solana.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Solana', sans-serif;
    min-height: 100vh;
    background-image: url('bgjaguar.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    color: #f5f5f5;
    overflow-x: hidden;
    position: relative;
}

@media (max-width: 768px) {
    body {
        background-attachment: scroll;
    }
}

body.intro-active {
    overflow: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    pointer-events: none;
    z-index: 0;
}

.intro-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    opacity: 1;
    transition: opacity 0.8s ease-out;
}

.intro-overlay.fade-out {
    opacity: 0;
    pointer-events: none;
}

.intro-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    padding: 1rem;
    position: relative;
    width: 100%;
    height: 100%;
}

@media (max-width: 768px) {
    .intro-content {
        gap: 1.5rem;
        padding: 0.5rem;
    }
}

.paws-container {
    position: absolute;
    width: 400px;
    height: 500px;
    overflow: visible;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.paw-print {
    position: absolute;
    width: 60px;
    height: 60px;
    background-image: url('paws.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0;
    transform: scale(0) rotate(20deg);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.paw-1 {
    bottom: 20px;
    left: 120px;
    animation: pawStep 0.4s ease-out 1s forwards;
    transform-origin: center center;
}

.paw-2 {
    bottom: 60px;
    left: 220px;
    animation: pawStep 0.4s ease-out 1.2s forwards;
    transform-origin: center center;
}

.paw-3 {
    bottom: 100px;
    left: 140px;
    animation: pawStep 0.4s ease-out 1.4s forwards;
    transform-origin: center center;
}

.paw-4 {
    bottom: 140px;
    left: 240px;
    animation: pawStep 0.4s ease-out 1.6s forwards;
    transform-origin: center center;
}

.paw-5 {
    bottom: 180px;
    left: 160px;
    animation: pawStep 0.4s ease-out 1.8s forwards;
    transform-origin: center center;
}

.paw-6 {
    bottom: 220px;
    left: 260px;
    animation: pawStep 0.4s ease-out 2s forwards;
    transform-origin: center center;
}

.paw-7 {
    bottom: 260px;
    left: 180px;
    animation: pawStep 0.4s ease-out 2.2s forwards;
    transform-origin: center center;
}

.paw-8 {
    bottom: 300px;
    left: 280px;
    animation: pawStep 0.4s ease-out 2.4s forwards;
    transform-origin: center center;
}

.paw-9 {
    bottom: 340px;
    left: 200px;
    animation: pawStep 0.4s ease-out 2.6s forwards;
    transform-origin: center center;
}

.paw-10 {
    bottom: 380px;
    left: 300px;
    animation: pawStep 0.4s ease-out 2.8s forwards;
    transform-origin: center center;
}

.paw-11 {
    bottom: 420px;
    left: 220px;
    animation: pawStep 0.4s ease-out 3s forwards;
    transform-origin: center center;
}

.paw-12 {
    bottom: 460px;
    left: 320px;
    animation: pawStep 0.4s ease-out 3.2s forwards;
    transform-origin: center center;
}

@keyframes pawStep {
    0% {
        opacity: 0;
        transform: scale(0) rotate(20deg);
    }
    50% {
        transform: scale(1.15) rotate(25deg);
    }
    100% {
        opacity: 1;
        transform: scale(1) rotate(20deg);
    }
}

.intro-title {
    font-size: 5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #ffd700 0%, #ffaa00 50%, #ff8800 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
    letter-spacing: 4px;
    opacity: 0;
    animation: titleFadeIn 1s ease-out 1s forwards, titlePulse 2s ease-in-out 2s infinite;
    transform-origin: center;
    color: #1a0f08;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .intro-title {
        color: #1a0f08;
    }
}

@keyframes pawsFadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px) scale(0.8);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes pawsWalk {
    0%, 100% {
        transform: translateX(0) rotate(0deg);
    }
    25% {
        transform: translateX(-10px) rotate(-5deg);
    }
    75% {
        transform: translateX(10px) rotate(5deg);
    }
}

@keyframes pawsBounce {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-15px) scale(1.05);
    }
}

@keyframes titleFadeIn {
    from {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.5) translateY(30px);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1) translateY(0);
    }
}

@keyframes titlePulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        transform: translate(-50%, -50%) scale(1.05);
    }
}

.container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
    animation: fadeInUp 0.8s ease-out;
}

.contract-section-top {
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 10;
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

.contract-display-top {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(26, 15, 8, 0.7);
    backdrop-filter: blur(10px);
    padding: 0.5rem 0.75rem;
    border-radius: 8px;
    border: 1px solid rgba(139, 90, 43, 0.5);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.contract-display-top #contract-address {
    font-size: 0.75rem;
    font-family: 'Courier New', monospace;
    color: #f5f5f5;
    word-break: break-all;
    max-width: 200px;
    line-height: 1.3;
    margin: 0;
    padding: 0;
    background: transparent;
    border-radius: 0;
    flex: none;
    min-width: auto;
}

.copy-btn-top {
    padding: 0.4rem 0.75rem;
    background: linear-gradient(135deg, #ffd700 0%, #ffaa00 100%);
    color: #1a0f08;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.75rem;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.copy-btn-top::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.copy-btn-top:hover::before {
    width: 200px;
    height: 200px;
}

.copy-btn-top:hover {
    transform: translateY(-1px) scale(1.05);
    box-shadow: 0 2px 8px rgba(255, 215, 0, 0.4);
    background: linear-gradient(135deg, #ffaa00 0%, #ff8800 100%);
}

.copy-btn-top:active {
    transform: translateY(0) scale(0.98);
}

@media (max-width: 768px) {
    .container {
        padding: 1rem 0.75rem;
    }
    
    .contract-section-top {
        top: 0.5rem;
        left: 0.5rem;
    }
    
    .contract-display-top {
        padding: 0.4rem 0.6rem;
        gap: 0.4rem;
    }
    
    .contract-display-top #contract-address {
        font-size: 0.65rem;
        max-width: 150px;
    }
    
    .copy-btn-top {
        padding: 0.35rem 0.6rem;
        font-size: 0.65rem;
    }
}

@media (max-width: 480px) {
    .contract-section-top {
        top: 0.5rem;
        left: 0.5rem;
        right: 0.5rem;
        position: relative;
        margin-bottom: 1rem;
    }
    
    .contract-display-top {
        flex-direction: column;
        align-items: stretch;
        padding: 0.5rem;
    }
    
    .contract-display-top #contract-address {
        font-size: 0.6rem;
        max-width: 100%;
        text-align: center;
    }
    
    .copy-btn-top {
        width: 100%;
        padding: 0.4rem;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .container {
        padding: 1rem 0.75rem;
    }
}

header {
    text-align: center;
    margin-bottom: 1.5rem;
    padding: 2rem 0 1rem 0;
}

@media (max-width: 768px) {
    header {
        margin-bottom: 1rem;
        padding: 1.5rem 0 0.75rem 0;
    }
}

.title {
    font-size: 4rem;
    font-weight: 700;
    background: linear-gradient(135deg, #ffd700 0%, #ffaa00 50%, #ff8800 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
    margin-bottom: 0.5rem;
    letter-spacing: 2px;
    animation: titleFloat 3s ease-in-out infinite;
    cursor: default;
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.title-paw {
    width: 60px;
    height: 60px;
    filter: brightness(0) saturate(100%) invert(85%) sepia(100%) saturate(2000%) hue-rotate(0deg) brightness(1.2);
    animation: pawFloat 3s ease-in-out infinite;
    flex-shrink: 0;
}

@keyframes pawFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-8px) rotate(5deg);
    }
}

.title:hover {
    transform: scale(1.05) rotate(1deg);
    animation-play-state: paused;
}

.title:hover .title-paw {
    animation-play-state: paused;
    transform: scale(1.1) rotate(10deg);
}

@keyframes titleFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.subtitle {
    font-size: 1.5rem;
    color: #d4a574;
    font-weight: 400;
    letter-spacing: 1px;
    animation: subtitleShimmer 2s ease-in-out infinite;
}

@keyframes subtitleShimmer {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

.content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.social-section {
    margin-top: 0;
}

@media (max-width: 768px) {
    .content {
        gap: 2rem;
    }
}

.contract-section,
.social-section,
.video-section,
.article-section,
.instagram-section {
    background: rgba(26, 15, 8, 0.4);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(139, 90, 43, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    animation: sectionSlideIn 0.6s ease-out backwards;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contract-section {
    animation-delay: 0.1s;
}

.social-section {
    animation-delay: 0.2s;
}

.video-section {
    animation-delay: 0.3s;
}

.article-section {
    animation-delay: 0.4s;
}

.instagram-section {
    animation-delay: 0.5s;
}

.contract-section:hover,
.social-section:hover,
.video-section:hover,
.article-section:hover,
.instagram-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
}

@keyframes sectionSlideIn {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@media (max-width: 768px) {
    .contract-section,
    .social-section,
    .video-section,
    .article-section,
    .instagram-section {
        padding: 1.25rem;
        border-radius: 16px;
    }
    
    .contract-section:hover,
    .social-section:hover,
    .video-section:hover,
    .article-section:hover,
    .instagram-section:hover {
        transform: translateY(-3px);
    }
}

.contract-section h2,
.social-section h2,
.video-section h2,
.article-section h2,
.instagram-section h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #ffd700;
    text-align: center;
    animation: headingGlow 2s ease-in-out infinite;
    cursor: default;
}

@keyframes headingGlow {
    0%, 100% {
        text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
    }
    50% {
        text-shadow: 0 0 20px rgba(255, 215, 0, 0.6), 0 0 30px rgba(255, 215, 0, 0.3);
    }
}

@media (max-width: 768px) {
    .contract-section h2,
    .social-section h2,
    .video-section h2,
    .article-section h2,
    .instagram-section h2 {
        font-size: 1.4rem;
        margin-bottom: 1rem;
    }
}

.contract-display {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    background: rgba(0, 0, 0, 0.4);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(139, 90, 43, 0.5);
}

@media (max-width: 768px) {
    .contract-display {
        padding: 1rem;
        gap: 0.75rem;
        border-radius: 10px;
    }
}

#contract-address {
    font-size: 1.1rem;
    font-family: 'Courier New', monospace;
    color: #f5f5f5;
    word-break: break-all;
    padding: 0.75rem 1rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    flex: 1;
    min-width: 200px;
}

@media (max-width: 768px) {
    #contract-address {
        font-size: 0.85rem;
        padding: 0.6rem 0.75rem;
        min-width: 100%;
        text-align: center;
    }
}

.copy-btn {
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #ffd700 0%, #ffaa00 100%);
    color: #1a0f08;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.copy-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.copy-btn:hover::before {
    width: 300px;
    height: 300px;
}

.copy-btn:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.4);
    background: linear-gradient(135deg, #ffaa00 0%, #ff8800 100%);
}

.copy-btn:active {
    transform: translateY(0) scale(0.98);
    animation: buttonBounce 0.3s ease;
}

@keyframes buttonBounce {
    0%, 100% {
        transform: scale(0.98);
    }
    50% {
        transform: scale(1.02);
    }
}

@media (max-width: 768px) {
    .copy-btn {
        padding: 0.65rem 1.25rem;
        font-size: 0.9rem;
        width: 100%;
    }
}

.hidden {
    display: none;
}

.social-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
}

@media (max-width: 768px) {
    .social-buttons {
        gap: 1rem;
    }
}

.social-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(139, 90, 43, 0.5);
    border-radius: 12px;
    color: #f5f5f5;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    flex: 1;
    min-width: 200px;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.social-btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.5s, height 0.5s;
}

.social-btn:hover::after {
    width: 300px;
    height: 300px;
}

.social-btn svg {
    transition: transform 0.3s ease;
}

.social-btn:hover svg {
    transform: scale(1.2) rotate(5deg);
}

@media (max-width: 768px) {
    .social-btn {
        padding: 0.85rem 1.5rem;
        font-size: 0.95rem;
        min-width: 100%;
        gap: 0.5rem;
    }
}

.social-btn svg {
    width: 24px;
    height: 24px;
}

@media (max-width: 768px) {
    .social-btn svg {
        width: 20px;
        height: 20px;
    }
}

.social-btn.twitter:hover {
    background: rgba(0, 0, 0, 0.6);
    border-color: #1da1f2;
    color: #1da1f2;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 6px 20px rgba(29, 161, 242, 0.3);
}

.social-btn.dexscreener:hover {
    background: rgba(0, 0, 0, 0.6);
    border-color: #00d4ff;
    color: #00d4ff;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 6px 20px rgba(0, 212, 255, 0.3);
}

.social-btn.pumpfun:hover {
    background: rgba(0, 0, 0, 0.6);
    border-color: #14f195;
    color: #14f195;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 6px 20px rgba(20, 241, 149, 0.3);
}

.social-btn.instagram:hover {
    background: rgba(0, 0, 0, 0.6);
    border-color: #E4405F;
    color: #E4405F;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 6px 20px rgba(228, 64, 95, 0.3);
}

.social-btn.tiktok:hover {
    background: rgba(0, 0, 0, 0.6);
    border-color: #000000;
    color: #ff0050;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 6px 20px rgba(255, 0, 80, 0.3);
}

.video-section {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.video-wrapper {
    width: 100%;
    max-width: 600px;
    border-radius: 16px;
    overflow: hidden;
    border: 2px solid rgba(139, 90, 43, 0.5);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
    background: rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: videoFloat 4s ease-in-out infinite;
}

.video-wrapper:hover {
    transform: scale(1.02);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.6);
    animation-play-state: paused;
}

@keyframes videoFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

@media (max-width: 768px) {
    .video-wrapper {
        border-radius: 12px;
        border-width: 1.5px;
    }
}

.solana-video {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 14px;
}

.article-section {
    display: flex;
    flex-direction: column;
}

.news-article {
    color: #f5f5f5;
    line-height: 1.8;
}

.article-header {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid rgba(139, 90, 43, 0.3);
}

@media (max-width: 768px) {
    .article-header {
        margin-bottom: 1.5rem;
        padding-bottom: 1rem;
    }
}

.article-header h3 {
    font-size: 1.5rem;
    color: #ffd700;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.article-meta {
    color: #d4a574;
    font-size: 0.9rem;
    font-style: italic;
    margin: 0;
}

@media (max-width: 768px) {
    .article-meta {
        font-size: 0.8rem;
        line-height: 1.5;
    }
}

.article-link {
    color: #ffd700;
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

.article-link:hover {
    color: #ffaa00;
    border-bottom-color: #ffaa00;
}

.article-content {
    font-size: 1.05rem;
}

.article-content p {
    margin-bottom: 1.25rem;
    text-align: justify;
}

@media (max-width: 768px) {
    .article-content p {
        margin-bottom: 1rem;
        text-align: left;
    }
}

.article-quote {
    margin: 1.5rem 0;
    padding: 1.25rem 1.5rem;
    background: rgba(0, 0, 0, 0.4);
    border-left: 4px solid #ffd700;
    border-radius: 8px;
    font-style: italic;
    color: #e8d5b7;
    font-size: 1.05rem;
    line-height: 1.7;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: quotePulse 3s ease-in-out infinite;
}

.article-quote:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.2);
}

@keyframes quotePulse {
    0%, 100% {
        border-left-color: #ffd700;
    }
    50% {
        border-left-color: #ffaa00;
    }
}

.instagram-section {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.instagram-section h2 {
    margin-bottom: 1.5rem;
}

.instagram-media {
    margin: 0 auto;
    max-width: 540px;
    width: 100%;
}

.footer {
    background: rgba(26, 15, 8, 0.6);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(139, 90, 43, 0.3);
    padding: 2rem 1rem;
    margin-top: 4rem;
    text-align: center;
    animation: footerSlideIn 0.6s ease-out 0.6s backwards;
}

@keyframes footerSlideIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.footer-text {
    color: #d4a574;
    font-size: 1rem;
    margin: 0;
    font-weight: 600;
}

.footer-address {
    font-family: 'Courier New', monospace;
    color: #f5f5f5;
    font-size: 0.9rem;
    word-break: break-all;
    padding: 0.75rem 1rem;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 8px;
    border: 1px solid rgba(139, 90, 43, 0.5);
    max-width: 100%;
}

.footer-copy-btn {
    padding: 0.65rem 1.25rem;
    background: linear-gradient(135deg, #ffd700 0%, #ffaa00 100%);
    color: #1a0f08;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.footer-copy-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.footer-copy-btn:hover::before {
    width: 300px;
    height: 300px;
}

.footer-copy-btn:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.4);
    background: linear-gradient(135deg, #ffaa00 0%, #ff8800 100%);
}

.footer-copy-btn:active {
    transform: translateY(0) scale(0.98);
}

@media (max-width: 768px) {
    .footer {
        padding: 1.5rem 1rem;
        margin-top: 3rem;
    }
    
    .footer-content {
        gap: 0.75rem;
    }
    
    .footer-text {
        font-size: 0.9rem;
    }
    
    .footer-address {
        font-size: 0.75rem;
        padding: 0.6rem 0.75rem;
        width: 100%;
    }
    
    .footer-copy-btn {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
        width: 100%;
        max-width: 200px;
    }
    
    .instagram-media {
        max-width: 100%;
        min-width: 100% !important;
    }
    
    .intro-title {
        font-size: 2.5rem;
        letter-spacing: 2px;
    }
    
    .paws-container {
        width: 280px;
        height: 350px;
    }
    
    .paw-print {
        width: 40px;
        height: 40px;
    }
    
    .paw-1 {
        bottom: 15px;
        left: 80px;
    }
    
    .paw-2 {
        bottom: 45px;
        left: 160px;
    }
    
    .paw-3 {
        bottom: 75px;
        left: 100px;
    }
    
    .paw-4 {
        bottom: 105px;
        left: 180px;
    }
    
    .paw-5 {
        bottom: 135px;
        left: 120px;
    }
    
    .paw-6 {
        bottom: 165px;
        left: 200px;
    }
    
    .paw-7 {
        bottom: 195px;
        left: 140px;
    }
    
    .paw-8 {
        bottom: 225px;
        left: 220px;
    }
    
    .paw-9 {
        bottom: 255px;
        left: 160px;
    }
    
    .paw-10 {
        bottom: 285px;
        left: 240px;
    }
    
    .paw-11 {
        bottom: 315px;
        left: 180px;
    }
    
    .paw-12 {
        bottom: 345px;
        left: 260px;
    }
    
    .title {
        font-size: 2rem;
        letter-spacing: 1px;
        gap: 0.75rem;
    }
    
    .title-paw {
        width: 40px;
        height: 40px;
    }
    
    .subtitle {
        font-size: 1rem;
        letter-spacing: 0.5px;
    }
    
    .social-btn {
        min-width: 100%;
    }
    
    .contract-display {
        flex-direction: column;
    }
    
    #contract-address {
        text-align: center;
    }
    
    .video-wrapper {
        max-width: 100%;
    }
    
    .article-header h3 {
        font-size: 1.1rem;
        line-height: 1.3;
    }
    
    .article-content {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .article-quote {
        padding: 0.875rem 1rem;
        font-size: 0.9rem;
        margin: 1rem 0;
        line-height: 1.6;
    }
    
    .article-link {
        word-break: break-word;
    }
}

@media (max-width: 480px) {
    .intro-title {
        font-size: 2rem;
        letter-spacing: 1px;
    }
    
    .paws-container {
        width: 220px;
        height: 280px;
    }
    
    .paw-print {
        width: 30px;
        height: 30px;
    }
    
    .paw-1 {
        bottom: 10px;
        left: 60px;
    }
    
    .paw-2 {
        bottom: 35px;
        left: 120px;
    }
    
    .paw-3 {
        bottom: 60px;
        left: 75px;
    }
    
    .paw-4 {
        bottom: 85px;
        left: 135px;
    }
    
    .paw-5 {
        bottom: 110px;
        left: 90px;
    }
    
    .paw-6 {
        bottom: 135px;
        left: 150px;
    }
    
    .paw-7 {
        bottom: 160px;
        left: 105px;
    }
    
    .paw-8 {
        bottom: 185px;
        left: 165px;
    }
    
    .paw-9 {
        bottom: 210px;
        left: 120px;
    }
    
    .paw-10 {
        bottom: 235px;
        left: 180px;
    }
    
    .paw-11 {
        bottom: 260px;
        left: 135px;
    }
    
    .paw-12 {
        bottom: 285px;
        left: 195px;
    }
    
    .title {
        font-size: 1.75rem;
        gap: 0.5rem;
    }
    
    .title-paw {
        width: 30px;
        height: 30px;
    }
    
    .subtitle {
        font-size: 0.9rem;
    }
    
    .container {
        padding: 0.75rem 0.5rem;
    }
    
    header {
        padding: 1rem 0;
        margin-bottom: 1.5rem;
    }
    
    .content {
        gap: 1.5rem;
    }
    
    .contract-section,
    .social-section,
    .video-section,
    .article-section,
    .instagram-section {
        padding: 1rem;
    }
    
    .contract-section h2,
    .social-section h2,
    .video-section h2,
    .article-section h2,
    .instagram-section h2 {
        font-size: 1.2rem;
    }
    
    #contract-address {
        font-size: 0.75rem;
    }
    
    .copy-btn {
        font-size: 0.85rem;
        padding: 0.6rem 1rem;
    }
    
    .social-btn {
        padding: 0.75rem 1.25rem;
        font-size: 0.9rem;
    }
    
    .article-header h3 {
        font-size: 1rem;
    }
    
    .article-content {
        font-size: 0.9rem;
    }
    
    .article-quote {
        padding: 0.75rem;
        font-size: 0.85rem;
    }
}


