/* Existing styles */
body {
    font-family: Arial, sans-serif;
    text-align: center;
    background-color: #fff; /* White background */
    color: #000; /* Black text */
}

header {
    background-color: #000; /* Black header background */
    color: #AF174A; /* Text color for VBA */
    padding: 20px;
}

nav ul {
    background-color: #000; /* Black navbar background */
}

nav ul li {
    display: inline;
    margin-right: 20px;
}

nav ul li a {
    color: #AF174A; /* Link color for VBA */
    text-decoration: none;
}

main {
    padding: 20px;
}

footer {
    background-color: #000; /* Black footer background */
    color: #AF174A; /* Text color for VBA */
    padding: 10px;
}

/* Calculator Styles */
#calculator {
    background-color: #fff; /* White background */
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    margin: 20px 0;
    text-align: left;
}

#calculator h2 {
    color: #AF174A; /* Text color for "Kelly Staking Calculator" title */
}

#kellyCalculator label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #000; /* Text color for labels */
}

#kellyCalculator input {
    width: 100%;
    padding: 5px;
    margin-bottom: 10px;
    border: 1px solid #ccc; /* Input field border color */
}

#kellyCalculator button {
    background-color: #000; /* Black button background color */
    color: #fff; /* Button text color */
    padding: 10px 20px;
    border: none;
    cursor: pointer;
}

#kellyCalculator button:hover {
    background-color: #AF174A; /* Darker color on hover */
}

#result {
    margin-top: 20px;
}

#stakeAmount {
    color: #AF174A; /* Text color for recommended stake amount */
}

/* New styles for homepage content */
h1 {
    font-size: 36px; /* Larger font size for the main title */
}

h2 {
    font-size: 28px; /* Slightly larger font size for section titles */
    color: #AF174A; /* Text color for section titles */
}

p {
    font-size: 18px; /* Larger font size for paragraphs */
    line-height: 1.5;
}

/* Responsive styles for smaller screens */
@media screen and (max-width: 768px) {
    h1 {
        font-size: 28px;
    }

    h2 {
        font-size: 20px;
    }

    nav ul {
        padding: 5px 0;
    }

    nav ul li {
        margin-right: 10px;
    }

    p {
        font-size: 16px;
    }
}
