/* General Styles */
body {
    background-color: black;
    color: white;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

h1, h2, h3, h4, h5, h6 {
    color: white;
}

a {
    color: white;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Header Styles */
header {
    background-color: #333;
    padding: 15px;
    position: relative;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: space-between;
    padding: 0;
}

nav ul li {
    margin: 0 15px;
}

nav a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
}

nav a:hover {
    text-decoration: underline;
}

/* SeagullCoin Logo */
header img {
    height: 40px;
    width: auto;
    position: absolute;
    top: 10px;
    right: 10px;
}

/* Main Content */
main {
    padding: 40px;
}

/* Hero Section */
.hero {
    text-align: center;
    margin-bottom: 40px;
}

.hero h1 {
    font-size: 36px;
    color: white;
}

.hero p {
    font-size: 18px;
    color: white;
}

button {
    background-color: #ffcc00;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 25px; /* Bubbly effect */
    margin-top: 20px;
}

button:hover {
    background-color: #ff9900;
}

/* User Profiles Section */
.user-profiles {
    margin-top: 40px;
}

.profile {
    display: inline-block;
    margin-right: 15px;
    text-align: center;
}

.profile img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 3px solid white;
}

.profile p {
    margin-top: 10px;
    color: white;
}

.profile-scroll {
    display: flex;
    overflow-x: auto;
}

/* Featured Collections */
.collections, .nfts {
    margin-top: 40px;
}

.nft-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.nft-item {
    position: relative;
}

.nft-item img {
    width: 100%;
    border-radius: 20px; /* Bubbly effect */
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.5);
}

/* Minting Progress */
#minting-progress {
    display: none;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 20px;
    text-align: center;
    border-radius: 10px;
    margin-top: 20px;
}

#minting-progress p {
    font-size: 18px;
}

/* Footer Styles */
footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 20px 0;
    position: fixed;
    bottom: 0;
    width: 100%;
}

/* Mint Button */
#mint-button {
    background-color: #ffcc00;
    color: black;
    padding: 15px 30px;
    font-size: 18px;
    cursor: pointer;
    border-radius: 25px; /* Bubbly effect */
    border: none;
    transition: background-color 0.3s ease;
}

#mint-button:hover {
    background-color: #ff9900;
}

#connect-wallet-btn {
    background-color: #ffcc00;
    color: black;
    padding: 15px 30px;
    font-size: 18px;
    cursor: pointer;
    border-radius: 25px;
    border: none;
    transition: background-color 0.3s ease;
}

#connect-wallet-btn:hover {
    background-color: #ff9900;
}

/* Wallet Info Section */
#wallet-info {
    margin-top: 10px;
}

#wallet-address {
    font-weight: bold;
}

/* Profile Section */
.profile-scroll {
    display: flex;
    overflow-x: scroll;
    padding: 10px;
}

.profile {
    margin-right: 20px;
}

/* Scrollbar Styling */
.profile-scroll::-webkit-scrollbar {
    height: 8px;
}

.profile-scroll::-webkit-scrollbar-thumb {
    background-color: #888;
    border-radius: 10px;
}

.profile-scroll::-webkit-scrollbar-thumb:hover {
    background-color: #555;
}

/* Custom Scrollbars */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-thumb {
    background-color: #888;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background-color: #555;
}
