/* Unique Modern Style */

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Montserrat', sans-serif;
    background: #1e1e2e;
    color: #e0e0e0;
    padding: 30px;
    text-align: center;
}
a {
    color: #ffcc00;
    text-decoration: none;
    transition: opacity 0.3s ease;
}
a:hover {
    opacity: 0.7;
}
h1, h2 {
    margin-bottom: 10px;
}
p {
    margin-bottom: 15px;
}

/* Header Styling */
header {
    background: #282a36;
    color: #ffcc00;
    padding: 60px 20px;
    border-radius: 16px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transform: skewY(-2deg);
}
header h1 {
    font-size: 3em;
}
header p {
    font-size: 1.5em;
}

/* Section Styling */
section {
    background: #2d2f41;
    padding: 40px;
    margin: 30px auto;
    width: 90%;
    max-width: 800px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    text-align: left;
    border-bottom: 6px solid #ffcc00;
}
section h2 {
    color: #ffcc00;
    font-size: 2em;
    text-transform: uppercase;
}

/* Footer Styling */
footer {
    background: #282a36;
    color: #ffcc00;
    padding: 25px;
    border-radius: 16px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
    transform: skewY(2deg);
}
footer a {
    font-weight: bold;
    margin: 0 12px;
}
footer a:hover {
    text-decoration: underline;
    opacity: 0.8;
}

/* 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;
}
.modal {
    background: #2d2f41;
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.4);
}
.modal h2 {
    color: #ffcc00;
}
.modal button {
    background: #ffcc00;
    color: #282a36;
    padding: 12px 20px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s ease;
}
.modal button:hover {
    background: #e6b800;
}

/* Responsive Styles */
@media (max-width: 768px) {
    body {
        padding: 20px;
    }
    header, footer {
        padding: 30px;
    }
    section {
        padding: 25px;
    }
}
