* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: linear-gradient(135deg, #95bfd3 0%, #d6ba97 100%);
    background-attachment: fixed;
    color: #333;
    overflow-x: hidden;
}

.hero {
    height: 100vh;
    position: relative;
    background: url('logosquare.png') no-repeat center center;
    background-size: cover;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(149, 191, 211, 0.5), rgba(214, 186, 151, 0.5));
    pointer-events: none;
}

.hero-content {
    background: rgba(0, 0, 0, 0.7);
    padding: 20px 40px;
    border-radius: 10px;
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 4rem;
    text-transform: uppercase;
    margin: 0;
    letter-spacing: 2px;
    color: #fff;
    text-shadow: 0 0 10px #95bfd3, 0 0 20px #95bfd3, 0 0 30px #95bfd3;
    animation: neon 1.5s ease-in-out infinite alternate;
}

@keyframes neon {
    from {
        text-shadow: 0 0 10px #95bfd3, 0 0 20px #95bfd3, 0 0 30px #95bfd3;
    }
    to {
        text-shadow: 0 0 20px #95bfd3, 0 0 30px #95bfd3, 0 0 40px #95bfd3;
    }
}

.hero p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 20px auto;
    line-height: 1.5;
    color: #fff;
    font-weight: 300;
}

section {
    max-width: 800px;
    margin: 40px auto;
    padding: 40px;
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid #95bfd3;
    border-radius: 10px;
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}

section.visible {
    opacity: 1;
    transform: translateY(0);
}

h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #d6ba97; /* Usunięto neonowy efekt */
}

p, ul {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 400;
}

ul {
    list-style: none;
    padding: 0;
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
}

ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    line-height: 1.5;
}

ul li::before {
    content: "🚗";
    position: absolute;
    left: 0;
    font-size: 1.2rem;
    line-height: 1.5;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 1rem;
}

.social-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    transition: transform 0.3s ease;
    object-fit: cover;
}

.social-icon:hover {
    transform: scale(1.2);
}

.contract-info {
    margin: 20px 0;
    font-size: 1.2rem;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

#contract-address {
    font-family: monospace;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem;
    border-radius: 5px;
    display: inline-block;
    max-width: 100%;
}

.copy-button {
    display: inline-block;
    padding: 8px 16px;
    margin-left: 10px;
    background: #95bfd3;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s ease;
}

.copy-button:hover {
    background: #7aa5b8;
    transform: scale(1.1);
}

.cta-button {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background: #95bfd3;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: background 0.3s, transform 0.3s ease;
}

.cta-button:hover {
    background: #7aa5b8;
    transform: scale(1.1);
}

#copy-tooltip {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #95bfd3;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px #95bfd3;
    opacity: 0;
    transition: opacity 0.5s;
    pointer-events: none;
    z-index: 1000;
}

#copy-tooltip.visible {
    opacity: 1;
}

.footer {
    text-align: center;
    padding: 2rem;
    background: #95bfd3;
    color: #fff;
}

.footer-logo {
    width: 300px;
    height: 100px;
    margin-bottom: 1rem;
}

.footer p {
    font-size: 1rem;
    font-weight: 300;
}

/* Responsive Design */
@media (max-width: 600px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1rem;
        padding: 0 20px;
    }

    .hero-content {
        padding: 15px 20px;
    }

    .footer-logo {
        width: 200px;
        height: 67px;
    }

    section {
        margin: 20px;
        padding: 20px;
    }

    h2 {
        font-size: 1.6rem;
    }

    p, ul {
        font-size: 1rem;
    }

    .social-icon {
        width: 40px;
        height: 40px;
    }

    #contract-address {
        font-size: 0.9rem;
    }

    #copy-tooltip {
        font-size: 0.8rem;
        padding: 8px 16px;
    }
}