@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');

:root {
    --color-primary: #f26425;
    --color-glass: rgba(0, 0, 0, 0.5);
    --color-glass-modal: rgba(74, 74, 74, 0.93);

}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background: url('../image/bglink.jpg') no-repeat center center fixed;
    background-size: cover;
    font-family: 'Poppins', sans-serif;
    color: #fff;
}

.glass-card-container {
    display: flex;
    gap: 20px;
    justify-content: center;
    padding: 10px 20px;
}

.glass-card {
    display: flex;
    max-width: clamp(450px, 50vw, 490px);
    background-color: var(--color-glass);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    color: white;
    text-decoration: none;
    padding: clamp(12px, 2vw, 24px);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.25);
    transition: background-color 0.3s ease;
}

.glass-card:hover {
    background-color: rgba(31, 31, 31, 0.47);
}

.card-content {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
}
.card-text{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.card-text h3 {
    padding: 10px;
    font-size: clamp(2rem, 1.5vw, 1.25rem);
    margin: 0 0 8px;
    color: orange;
}

.card-text p {
    font-size: clamp(0.95rem, 1vw, 0.95rem);
    text-align: center;
    color: #ccc;
}

.card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 25px;
}

.card-icon img {
    width: clamp(74px, 5vw, 140px);
    height: auto;
    max-height: 100%;
    object-fit: contain;
}

.card-tag {
    position: absolute;
    top: 0;
    left: 0;
    transform: translate(12px, -50%);
    background: rgba(255, 145, 0, 0.95);
    color: #000;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 6px;
    text-transform: uppercase;
    z-index: 2;
    width: 265px;
}

.btn {
    padding: 12px 30px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
    border-radius: 6px;
    color: #dddddd;
    font-weight: 600;
    background: #ff4e00;
    flex: 1;
    margin: 25px 25px;
}

.btn:hover:not(:disabled) {
    background: #e84600;
    color: white;
}

.btn:active:not(:disabled) {
}

.btn-group {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    margin-top: 10px;
}

label {
    text-align: left;
    color: #bcbcbc;
    font-weight: 400;
    margin-left: 5px;
    font-size: 9px;
}

input,
select {
    padding: 10px;
    font-size: 16px;
    height: 40px;
    border: 1px solid #ccc;
    border-radius: 6px;
    transition: all 0.2s ease;
    width: 100%;
    max-width: 100%;
    background-color: rgba(0, 0, 0, 0.37);
    color: #dddddd;
}

input:focus,
select:focus {
    border-color: var(--color-primary);
    outline: none;
    color: #e6e6e6;
}

.modal {
    position: fixed;
    inset: 0;
    background: rgba(74, 74, 74, 0.09);
    backdrop-filter: blur(1px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.modal.hidden {
    display: none;
}

.modal-content.show {
    opacity: 1;
}

.modal-content {
    background: var(--color-glass-modal);
    padding: 40px 30px 60px;
    border-radius: 12px;
    width: 90%;
    height: auto;
    max-width: 400px;
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.06);
    position: relative;
    animation: fadeInModal 0.25s ease forwards;
}

.modal-tabs {
    display: flex;
    justify-content: space-around;
    margin-bottom: 15px;
}

.container-link{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    height: 100dvh;
}

.glass-card-container-links {
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: center;
    padding: 10px 20px;
}

.card-icon-links img {
    width: clamp(54px, 1vw, 140px);
    height: auto;
    max-height: 100%;
    object-fit: contain;
}