/* modern-style.css */
html, body {
    height: 100% !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}

body {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif !important;
    background-color: #f0f2f5 !important;
    -webkit-font-smoothing: antialiased;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.main-card {
    background: #ffffff;
    width: 90%;
    max-width: 460px;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    text-align: center;
    box-sizing: border-box;
}

h2.titol-eps {
    color: #001489;
    font-size: 26px;
    font-weight: 500;
    margin-bottom: 5px;
    letter-spacing: -0.01em;
}

.curs-info {
    display: block;
    color: #888;
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: 30px;
    letter-spacing: 0.02em;
}

.links-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.btn-modern {
    display: block;
    text-decoration: none;
    color: #001489 !important;
    background-color: #f1f5ff;
    padding: 16px 20px;
    border-radius: 12px;
    font-weight: 500;
    font-size: 15px;
    border: 1px solid #e2e8f3;
    transition: all 0.2s ease;
    text-align: left;
}

.btn-modern:hover {
    background-color: #e6edff;
    border-color: #001489;
}

.subtext {
    display: block;
    font-size: 12px;
    color: #666;
    font-weight: 400;
    margin-top: 3px;
}

.btn-external {
    margin-top: 10px;
    background-color: transparent;
    border: 1.5px dashed #ccc;
    color: #555 !important;
    text-align: center;
    font-weight: 400;
}

@media (max-width: 480px) {
    .main-card {
        padding: 30px 20px;
        width: 95%;
    }
}
