@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Oswald:wght@400;600;700&display=swap');

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

:root {
    --primary-color: #ff6b35;
    --secondary-color: #004e89;
    --accent-color: #ffd23f;
    --dark-bg: #1a1a1a;
    --text-light: #ffffff;
    --text-gray: #cccccc;
}

body {
    font-family: 'Oswald', sans-serif;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
    color: var(--text-light);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    position: relative;
    z-index: 10;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 4rem 0;
    position: relative;
}

.cat-container {
    position: relative;
    display: inline-block;
    margin-bottom: 2rem;
    animation: float 3s ease-in-out infinite;
}

.cat-image {
    max-width: 400px;
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(255, 107, 53, 0.3),
                0 0 40px rgba(255, 107, 53, 0.2);
    border: 4px solid var(--primary-color);
    animation: pulse-glow 2s ease-in-out infinite;
    transition: transform 0.3s ease;
}

.cat-image:hover {
    transform: scale(1.05);
}

.gloves-animation {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    background: radial-gradient(circle, var(--primary-color) 0%, transparent 70%);
    border-radius: 50%;
    animation: punch 1.5s ease-in-out infinite;
    opacity: 0.6;
}

.gloves-animation::before,
.gloves-animation::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 40px;
    background: radial-gradient(circle, var(--accent-color) 0%, transparent 70%);
    border-radius: 50%;
    animation: punch 1.5s ease-in-out infinite;
}

.gloves-animation::before {
    top: -30px;
    left: -40px;
    animation-delay: 0.3s;
}

.gloves-animation::after {
    top: -30px;
    right: -40px;
    animation-delay: 0.6s;
}

.title {
    font-family: 'Bebas Neue', cursive;
    font-size: 5rem;
    letter-spacing: 0.3em;
    color: var(--primary-color);
    text-shadow: 
        0 0 10px rgba(255, 107, 53, 0.5),
        0 0 20px rgba(255, 107, 53, 0.3),
        0 0 30px rgba(255, 107, 53, 0.2);
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.subtitle {
    font-size: 1.5rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    font-style: italic;
}

.quote {
    max-width: 600px;
    margin: 3rem auto;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-left: 4px solid var(--primary-color);
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.quote p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    font-style: italic;
}

.quote-author {
    text-align: right;
    color: var(--accent-color);
    font-weight: 600;
}

/* Social Links Section */
.social-links {
    margin: 4rem 0;
    text-align: center;
}

.section-title {
    font-family: 'Bebas Neue', cursive;
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 3rem;
    letter-spacing: 0.2em;
}

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

.social-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid transparent;
    border-radius: 15px;
    text-decoration: none;
    color: var(--text-light);
    transition: all 0.3s ease;
    min-width: 150px;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

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

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

.social-link:hover {
    transform: translateY(-10px) scale(1.05);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
}

.social-link.telegram:hover {
    border-color: #0088cc;
    box-shadow: 0 10px 30px rgba(0, 136, 204, 0.4);
}

.social-link.twitter:hover {
    border-color: #1da1f2;
    box-shadow: 0 10px 30px rgba(29, 161, 242, 0.4);
}

.social-link.pumpfun:hover {
    border-color: var(--accent-color);
    box-shadow: 0 10px 30px rgba(255, 210, 63, 0.4);
}

.social-icon {
    width: 60px;
    height: 60px;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(255, 107, 53, 0.5));
    transition: transform 0.3s ease;
}

.social-link:hover .social-icon {
    transform: rotate(360deg) scale(1.1);
}

.social-link span {
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Contract Address Section */
.contract-address {
    margin: 4rem 0;
    text-align: center;
}

.address-container {
    max-width: 700px;
    margin: 0 auto;
}

.address-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid var(--primary-color);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.address-box:hover {
    border-color: var(--accent-color);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
    transform: translateY(-2px);
}

.address-text {
    font-family: 'Courier New', monospace;
    font-size: 1rem;
    color: var(--text-light);
    word-break: break-all;
    flex: 1;
    text-align: center;
    padding: 0.5rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
}

.copy-btn {
    background: var(--primary-color);
    border: none;
    border-radius: 8px;
    padding: 0.75rem;
    cursor: pointer;
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.copy-btn:hover {
    background: var(--accent-color);
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
}

.copy-btn:active {
    transform: scale(0.95);
}

.copy-btn svg {
    stroke: currentColor;
}

.address-note {
    font-size: 0.85rem;
    color: var(--text-gray);
    font-style: italic;
    margin-top: 0.5rem;
}

/* Footer */
.footer {
    text-align: center;
    padding: 2rem 0;
    color: var(--text-gray);
    font-size: 0.9rem;
}

/* Floating Boxes Animation */
.floating-boxes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.box {
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid var(--primary-color);
    opacity: 0.1;
    animation: float-box 20s infinite ease-in-out;
}

.box-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.box-2 {
    top: 60%;
    right: 15%;
    animation-delay: 5s;
    width: 30px;
    height: 30px;
}

.box-3 {
    bottom: 20%;
    left: 20%;
    animation-delay: 10s;
    width: 15px;
    height: 15px;
}

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

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 20px 60px rgba(255, 107, 53, 0.3),
                    0 0 40px rgba(255, 107, 53, 0.2);
    }
    50% {
        box-shadow: 0 20px 60px rgba(255, 107, 53, 0.5),
                    0 0 60px rgba(255, 107, 53, 0.4);
    }
}

@keyframes punch {
    0%, 100% {
        transform: translateX(-50%) scale(1);
        opacity: 0.6;
    }
    50% {
        transform: translateX(-50%) scale(1.2);
        opacity: 0.9;
    }
}

@keyframes float-box {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(50px, -50px) rotate(90deg);
    }
    50% {
        transform: translate(-30px, -100px) rotate(180deg);
    }
    75% {
        transform: translate(-50px, -50px) rotate(270deg);
    }
}

@keyframes fade-in {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fade-in 1s ease-out;
}

.animate-fade-in-delay {
    animation: fade-in 1s ease-out 0.3s backwards;
}

.animate-fade-in-delay-2 {
    animation: fade-in 1s ease-out 0.6s backwards;
}

/* Responsive Design */
@media (max-width: 768px) {
    .title {
        font-size: 3rem;
        letter-spacing: 0.2em;
    }

    .subtitle {
        font-size: 1.2rem;
    }

    .cat-image {
        max-width: 300px;
    }

    .links-container {
        flex-direction: column;
        align-items: center;
    }

    .social-link {
        width: 100%;
        max-width: 250px;
    }

    .quote {
        padding: 1.5rem;
    }

    .quote p {
        font-size: 1rem;
    }

    .address-box {
        flex-direction: column;
        padding: 1rem;
    }

    .address-text {
        font-size: 0.85rem;
        word-break: break-all;
    }

    .copy-btn {
        width: 100%;
        padding: 0.5rem;
    }
}

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

    .section-title {
        font-size: 1.8rem;
    }

    .container {
        padding: 1rem;
    }

    .address-text {
        font-size: 0.75rem;
    }

    .address-note {
        font-size: 0.75rem;
    }
}

