* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Finger Paint", sans-serif;
    font-weight: 400;
    overflow-x: hidden;
    min-height: 100vh;
    position: relative;
    background-color: #0a0a1a;
    color: #fff;
}

.background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/bg.png');
    background-size: 110%;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.pingu-character {
    position: fixed;
    width: 200px;
    height: 200px;
    z-index: 100;
    pointer-events: none;
    transform-origin: center center;
}

.pingu-character img {
    width: 100%;
    height: 100%;
}

.container {
    position: relative;
    z-index: 10;
    max-width: 800px;
    margin: 0 auto;
    padding: 10px;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

header {
    text-align: center;
    padding: 40px 20px;
    margin-bottom: 30px;
}

.title {
    font-size: 4.5rem;
    font-weight: 400;
    color: #ffffff;
    letter-spacing: 4px;
    margin-bottom: 10px;
    text-shadow: 0 0 20px rgba(0, 212, 255, 1);
}

.section-card {
    background: 
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg"><filter id="n"><feTurbulence baseFrequency="0.7"/></filter><rect width="100%" height="100%" filter="url(%23n)" opacity="0.2"/></svg>'),
        rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    padding: 30px;
    margin-bottom: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.section-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.section-card h3 {
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-align: center;
    text-shadow: 0 0 20px rgba(0, 212, 255, 1);
}

.section-card h3 i {
    font-size: 1.3rem;
}

.address-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.address-display {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 212, 255, 0.3);
    padding: 18px;
    font-family: "Finger Paint", sans-serif;
    font-size: 1.1rem;
    color: #fff;
    text-align: center;
    overflow-x: auto;
    white-space: nowrap;
    letter-spacing: 1px;
}

.copy-btn {
    background: rgba(0, 0, 0, 0.2);
    color: white;
    border: none;
    padding: 18px 25px;
    font-size: 1.1rem;
    font-weight: 400;
    font-family: "Finger Paint", sans-serif;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    letter-spacing: 1px;
}

.copy-btn:hover {
    background: rgba(0, 0, 0, 0.3);
    transform: translateY(-2px);
}

.copy-btn:active {
    transform: translateY(0);
}

.social-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px 25px;
    font-size: 1.1rem;
    font-weight: 400;
    text-decoration: none;
    transition: all 0.3s ease;
    gap: 10px;
    letter-spacing: 1px;
}

.telegram-btn {
    background: rgba(0, 0, 0, 0.3);
    color: white;
}

.telegram-btn:hover {
    background: rgba(0, 0, 0, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 136, 204, 0.4);
}

.twitter-btn {
    background: rgba(0, 0, 0, 0.4);
    color: white;
}

.twitter-btn:hover {
    background: rgba(0, 0, 0, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
}

.gallery-container {
    display: flex;
    align-items: center;
    gap: 20px;
}

.gallery-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #ffffff;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.gallery-btn:hover {
    background: rgba(0, 212, 255, 0.2);
    transform: scale(1.1);
}

.meme-display {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    height: 450px;
    justify-content: center;
}

.meme-display img {
    max-width: 100%;
    max-height: 400px;
    width: auto;
    height: auto;
    box-shadow: 0 0 100px rgba(0, 212, 255, 0.3);
    border-radius: 12px;
}

.meme-counter {
    font-size: 1.2rem;
    color: #ffffff;
    font-weight: 400;
}

footer {
    text-align: center;
    padding: 30px 20px;
    margin-top: auto;
}

.footer-text {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
}

.notification {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    color: #00ffaa;
    padding: 15px 25px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
    font-weight: 400;
    z-index: 1000;
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.5s ease;
    border: 1px solid rgba(0, 255, 170, 0.3);
    display: flex;
    align-items: center;
    gap: 10px;
}

.notification.show {
    transform: translateY(0);
    opacity: 1;
}

@media (max-width: 768px) {
    .title {
        font-size: 3.5rem;
    }
    
    .section-card {
        padding: 25px 20px;
    }
    
    .gallery-container {
        flex-direction: column;
    }
    
    .gallery-btn {
        width: 60px;
        height: 60px;
        order: 2;
    }
    
    .meme-display {
        order: 1;
        width: 100%;
        min-height: 350px;
    }

    .meme-display img {
        height: 350px;
    }
    
    .pingu-character {
        width: 60px;
        height: 60px;
    }
}

@media (max-width: 480px) {
    .title {
        font-size: 2.8rem;
    }
    
    .section-card {
        padding: 20px 15px;
    }
    
    .social-buttons {
        gap: 10px;
    }
    
    .social-btn {
        padding: 15px 20px;
        font-size: 1rem;
    }

    .meme-display {
        min-height: 300px;
    }

    .meme-display img {
        height: 300px;
    }
}