/* Global settings */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #121212;
    color: #ffffff;
    line-height: 1.6;
}

/* Smooth scrolling for all navigations */
html {
    scroll-behavior: smooth;
}

/* Navigation Bar */
.navbar {
    background-color: #333333;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    color: #f0b90b;
    font-size: 2rem;
    font-weight: bold;
}

.nav-items a {
    color: #f0b90b;
    text-decoration: none;
    padding: 10px;
    margin: 0 10px;
    transition: color 0.3s;
}

.nav-items a:hover {
    color: #ffffff;
}

/* Hero Section */
.hero {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('hero-background.jpg') no-repeat center center/cover;
    text-align: center;
    padding: 60px 20px;
}

.hero h1 {
    font-size: 3rem;
    color: #f0b90b;
}

.hero p {
    font-size: 1.2rem;
    margin-top: 20px;
    margin-bottom: 30px;
}

.button-link {
    background-color: #f0b90b;
    color: #0e0e0e;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    display: inline-block;
    transition: background 0.3s ease;
}

.button-link:hover {
    background-color: #e0a509;
}

/* Features Section */
.features-section {
    padding: 50px 15px;
    background-color: #1c1c1c;
    text-align: center;
}

.features-section h2 {
    color: #f0b90b;
    margin-bottom: 25px;
}

.feature h3 {
    color: #f0b90b;
    margin-bottom: 10px;
}

.feature p {
    font-size: 1rem;
}

/* Blocks styling for wallet information */
.block {
    background: #222222;
    padding: 20px;
    margin: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    text-align: center;
}


/* Live Price Tracker */
.live-prices-section {
    background-color: #181818;
    padding: 50px 15px;
    text-align: center;
}

.live-prices-section h2 {
    color: #f0b90b;
}

/* About, Contact Section */
.about-section, .contact-section {
    padding: 50px 15px;
    background-color: #1c1c1c;
    text-align: center;
}

.about-section h2, .contact-section h2 {
    color: #f0b90b;
    margin-bottom: 20px;
}

/* Footer */
.footer {
    background-color: #333333;
    text-align: center;
    padding: 20px;
    font-size: 0.9rem;
}

.footer a {
    color: #f0b90b;
    text-decoration: none;
}

.footer a:hover {
    color: #ffffff;
}
