* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #04b4e4;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    overflow: hidden; /* Prevents scrollbars */
}


/* Layout */
.container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 50px;
    height: 100vh;
}

/* Left Section */
.left-section {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-frame {
    position: relative;
    width: 100%;
    max-width: 600px;
    border: 10px solid #000;
    border-radius: 50%;
    overflow: hidden;
}

.main-image {
    width: 100%;
    border-radius: 50%;
}

.text-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 1;
}

.rug-text {
    font-size: 90px;
    color: rgba(0, 0, 0, 0.8);
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 10px;
}

/* Right Section */
.right-section {
    flex: 1;
    padding: 30px;
    text-align: center;
}

.coin-title {
    font-size: 80px;
    font-weight: bold;
    color: #fff;
    margin-bottom: 30px;
}

/* Contract Address Input */
.contract-address {
    padding: 12px;
    font-size: 18px;
    width: 80%;
    max-width: 450px;
    border: 3px solid #000;
    border-radius: 5px;
    background-color: #0ab4e4;
    color: white;
    text-align: center;
    margin-bottom: 30px;
    outline: none;
    transition: border-color 0.3s;
}

.contract-address:focus {
    border-color: #fff;
}
.copy-message {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 14px;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}


/* Coin Description */
.coin-description {
    font-size: 18px;
    font-family: Arial, sans-serif;
    margin-bottom: 40px;
}

/* Social Icons */
.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-icon {
    font-size: 40px;
    text-decoration: none;
    color: white;
    transition: transform 0.3s;
}

.social-icon svg {
    width: 1em;
    height: 1em;
    fill: white;
    transition: fill 0.3s, transform 0.3s;
}

.social-icon:hover {
    transform: scale(1.1);
}
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 1s ease-in-out;
}


.social-icon:hover svg {
    fill: #fff;
}

.social-icon:first-child svg {
    transform: translateY(-6px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        flex-direction: column;
        justify-content: flex-start;
        padding: 20px;
        height: auto;
        text-align: center;
    }

    .left-section, 
    .right-section {
        width: 100%;
    }

    .image-frame {
        max-width: 100%;
        margin-bottom: 20px;
    }

    .rug-text {
        font-size: 50px;
        letter-spacing: 5px;
    }

    .coin-title {
        font-size: 40px;
    }

    .contract-address {
        width: 100%;
        font-size: 16px;
    }

    .coin-description {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .social-icons {
        gap: 10px;
    }

    .social-icon {
        font-size: 30px;
    }
}
