@import url('https://fonts.googleapis.com/css2?family=ABeeZee&display=swap');

/* Global Styles */
body {
    font-family: 'ABeeZee', sans-serif;
    background: linear-gradient(135deg, #0d0d0d, #1a1a1a, #000000);
    background-size: 400% 400%;
    animation: bgMove 12s ease-in-out infinite alternate;
    color: #ffffff;
    margin: 0;
    padding: 0;
}

@keyframes bgMove {
    0% { background-position: 0% 50%; }
    100% { background-position: 100% 50%; }
}

/* Header */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 40px;
    background: rgba(20, 20, 20, 0.85);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 255, 200, 0.4);
    box-shadow: 0 0 20px rgba(0, 255, 200, 0.2);
}

.logo {
    font-size: 22px;
    font-weight: bold;
    color: #00ffc8;
    text-shadow: 0 0 12px rgba(0, 255, 200, 0.6);
}

.wallet-btn {
    background: linear-gradient(135deg, #00ffc8, #0075ff);
    color: #121212;
    font-weight: bold;
    border: none;
    padding: 12px 20px;
    border-radius: 10px;
    cursor: pointer;
    box-shadow: 0 0 15px rgba(0, 255, 200, 0.5);
    transition: all 0.3s ease-in-out;
}
.wallet-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 25px rgba(0, 255, 200, 0.8);
}

/* Main Layout */
.main-content {
    max-width: 1100px;
    margin: 30px auto;
    padding: 20px;
}

/* Section Titles */
.network-section h2,
.create-section h2,
.contract-section h2 {
    color: #00ffc8;
    text-align: center;
    margin-bottom: 20px;
    text-shadow: 0 0 12px rgba(0, 255, 200, 0.7);
}

/* Network Cards */
.network-cards {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}
.network-card {
    background: rgba(0, 255, 200, 0.05);
    border: 1px solid rgba(0, 255, 200, 0.4);
    padding: 20px 35px;
    border-radius: 14px;
    font-weight: bold;
    color: #00ffc8;
    cursor: pointer;
    box-shadow: 0 0 15px rgba(0, 255, 200, 0.2);
    transition: all 0.3s ease-in-out;
}
.network-card:hover {
    background: rgba(0, 255, 200, 0.15);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 0 25px rgba(0, 255, 200, 0.6);
}
.network-card.active {
    background: linear-gradient(135deg, rgba(0, 255, 200, 0.3), rgba(0, 118, 255, 0.3));
    border: 1px solid #00ffc8;
    box-shadow: 0 0 30px rgba(0, 255, 200, 0.8);
}

/* Create Section */
.create-section {
    margin-top: 40px;
    text-align: center;
}
#createMultiSender {
    margin-top: 10px;
    background: linear-gradient(135deg, #00ffc8, #0075ff);
    color: #121212;
    font-weight: bold;
    border: none;
    padding: 12px 22px;
    border-radius: 10px;
    cursor: pointer;
    box-shadow: 0 0 15px rgba(0, 255, 200, 0.5);
    transition: all 0.3s ease-in-out;
}
#createMultiSender:hover {
    transform: scale(1.05);
    box-shadow: 0 0 25px rgba(0, 255, 200, 0.8);
}

input {
    width: 80%;
    max-width: 420px;
    padding: 14px;
    margin: 12px auto;
    display: block;
    border: none;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    outline: none;
    font-size: 15px;
    box-shadow: inset 0 0 12px rgba(0, 255, 200, 0.3);
    transition: all 0.3s ease-in-out;
}
input:focus {
    background: rgba(0, 0, 0, 0.4);
    transform: scale(1.02);
}

/* Contract Section */
.contract-section {
    margin-top: 50px;
    text-align: center;
}
.contract-list {
    list-style: none;
    padding: 0;
}
.contract-list li {
    background: linear-gradient(135deg, rgba(0, 255, 200, 0.1), rgba(0, 118, 255, 0.15));
    border: 1px solid rgba(0, 255, 200, 0.4);
    color: #00ffc8;
    margin: 12px auto;
    padding: 16px;
    border-radius: 12px;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 640px;
    box-shadow: 0 0 15px rgba(0, 255, 200, 0.2);
    transition: all 0.3s ease-in-out;
}
.contract-list li:hover {
    transform: scale(1.03);
    box-shadow: 0 0 25px rgba(0, 255, 200, 0.5);
}

/* Copy Button */
.copy-btn {
    background: linear-gradient(135deg, #00ffc8, #0075ff);
    color: #121212;
    padding: 8px 14px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
    box-shadow: 0 0 12px rgba(0, 255, 200, 0.4);
    transition: all 0.3s ease-in-out;
}
.copy-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(0, 255, 200, 0.8);
}

/* Flash Message */
#flashMessage {
    margin-top: 15px;
    font-weight: bold;
    color: #ff4444;
    text-shadow: 0 0 6px rgba(255, 68, 68, 0.5);
}
.hidden {
    display: none;
}
.network-logo {
    width: 24px;
    height: 24px;
    margin-right: 8px;
    vertical-align: middle;
    border-radius: 50%;
    background: #fff;
    padding: 2px;
}
.network-card {
    display: flex;
    align-items: center;
    gap: 8px;
}
.nav-links {
    display: flex;
    gap: 70px; 
    align-items: center;
}

.nav-links a {
    color: #00ffc8;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease-in-out;
}

.nav-links a:hover {
    color: #0075ff;
    text-shadow: 0 0 8px rgba(0, 255, 200, 0.6);
}
