/* Vibrant Modern UI Style */

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}
body {
    background: #0d1117;
    color: #e6edf3;
    padding: 20px;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: center;
}
a {
    color: #ff007a;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease-in-out;
}
a:hover {
    color: #ff3399;
}
h1, h2 {
    margin-bottom: 20px;
    font-weight: 900;
    text-transform: uppercase;
    text-align: center;
}
p {
    margin-bottom: 20px;
    line-height: 1.7;
}

/* Layout */
.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 90%;
    max-width: 1200px;
}

/* Header */
header {
    background: #ff007a;
    color: #ffffff;
    width: 100%;
    padding: 50px 20px;
    border-radius: 15px;
    text-align: center;
    font-size: 2.5em;
    font-weight: bold;
    box-shadow: 0 0 20px rgba(255, 0, 122, 0.6);
}

/* Sections */
section {
    background: #161b22;
    padding: 50px;
    margin: 30px 0;
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 0 20px rgba(255, 0, 122, 0.3);
}
section h2 {
    color: #ff007a;
    font-size: 2em;
    text-align: center;
}

/* Buttons */
.button {
    display: inline-block;
    padding: 15px 35px;
    background: #ff007a;
    color: #ffffff;
    border-radius: 10px;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    transition: 0.3s;
    text-align: center;
    box-shadow: 0 3px 8px rgba(255, 0, 122, 0.7);
    border: none;
    margin: 20px auto;
}
.button:hover {
    background: #ff3399;
    box-shadow: 0 6px 12px rgba(255, 51, 153, 0.9);
}

/* Modal Popup */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
}
.modal {
    background: #ff007a;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 0 20px rgba(255, 0, 122, 0.7);
    width: 90%;
    max-width: 500px;
}
.modal h2 {
    color: #ffffff;
    font-size: 2em;
    font-weight: bold;
    margin-bottom: 20px;
}
.modal p {
    color: #fff;
    font-size: 1.2em;
    margin-bottom: 25px;
}
.modal button {
    background: #ffffff;
    color: #ff007a;
    padding: 12px 25px;
    border: none;
    border-radius: 8px;
    font-size: 1.1em;
    cursor: pointer;
    transition: background 0.3s ease;
    font-weight: bold;
}
.modal button:hover {
    background: #e6edf3;
}

/* Footer */
footer {
    background: #ff007a;
    color: #ffffff;
    padding: 20px;
    width: 100%;
    text-align: center;
    border-radius: 15px;
    box-shadow: 0 0 15px rgba(255, 0, 122, 0.5);
}
footer a {
    color: #ffffff;
    font-weight: bold;
    margin: 0 15px;
}
footer a:hover {
    text-decoration: underline;
    color: #000;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .container {
        width: 95%;
    }
}