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

body {
    font-family: 'Comic Sans MS', cursive, sans-serif;
    background: url('img/bg.png') center center fixed;
    background-size: cover;
    color: #333;
    overflow-x: hidden;
}

header {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: bold;
    color: #ff6b6b;
}

.logo img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

nav a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
    transition: color 0.3s;
}

nav a:hover {
    color: #ff6b6b;
}

.telegram-btn {
    background: #0088cc;
    color: white !important;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.telegram-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 136, 204, 0.4);
}

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

.welcome-section {
    padding: 120px 0 80px;
    text-align: center;
}

.hero-logo {
    margin-bottom: 2rem;
}

.hero-logo-img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 50%;
    border: 5px solid #fff;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    animation: float 3s ease-in-out infinite;
}



.welcome-content h1 {
    font-size: 4rem;
    color: #fff;
    text-shadow: 3px 3px 0px #ff6b6b, 6px 6px 0px #4ecdc4;
    margin-bottom: 1rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

.welcome-content h2 {
    font-size: 2rem;
    color: #fff;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.welcome-content p {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 3rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.welcome-images {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.meme-img {
    width: 300px;
    height: 300px;
    object-fit: cover;
    border-radius: 20px;
    border: 5px solid #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s, box-shadow 0.3s;
}

.meme-img:hover {
    transform: scale(1.05) rotate(2deg);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.cta-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.pump-btn, .telegram-btn-main {
    padding: 1rem 2rem;
    font-size: 1.2rem;
    font-weight: bold;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.pump-btn {
    background: linear-gradient(45deg, #ff6b6b, #ff8e53);
    color: white;
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.4);
}

.pump-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 107, 107, 0.6);
}

.telegram-btn-main {
    background: #0088cc;
    color: white;
    box-shadow: 0 5px 15px rgba(0, 136, 204, 0.4);
}

.telegram-btn-main:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 136, 204, 0.6);
}

.about-section {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    padding: 80px 0;
    margin: 2rem;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.about-section h2 {
    text-align: center;
    font-size: 3rem;
    color: #ff6b6b;
    margin-bottom: 3rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.about-content {
    display: flex;
    justify-content: center;
}

.about-text-full {
    max-width: 800px;
    margin: 0 auto;
}

.about-text-full h3 {
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.about-text-full p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: #fff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

.about-text-full ul {
    list-style: none;
    margin-bottom: 2rem;
}

.about-text-full li {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    padding-left: 1rem;
    color: #fff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

.about-images {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}





@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.warning-box {
    background: rgba(255, 243, 205, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 234, 167, 0.5);
    border-radius: 15px;
    padding: 1.5rem;
    margin-top: 3rem;
}

.warning-box h4 {
    color: #fff;
    margin-bottom: 0.5rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

.warning-box p {
    color: #fff;
    font-size: 0.9rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

footer {
    background: rgba(0, 0, 0, 0.8);
    color: white;
    text-align: center;
    padding: 2rem 0;
    margin-top: 2rem;
}

.social-links {
    margin-top: 1rem;
}

.social-links a {
    color: #4ecdc4;
    text-decoration: none;
    margin: 0 1rem;
    font-weight: bold;
}

@media (max-width: 768px) {
    .welcome-content h1 { font-size: 2.5rem; }
    .welcome-content h2 { font-size: 1.5rem; }
    .about-content { flex-direction: column; }
    .meme-img { width: 250px; height: 250px; }
    .hero-logo-img { width: 150px; height: 150px; }
    nav ul { flex-direction: column; gap: 1rem; }
    .cta-buttons { flex-direction: column; align-items: center; }
}
