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

body {
    background-color: #1a0633;
    font-family: 'Outfit', sans-serif;
    min-height: 100vh;
    overflow-x: hidden;
}

.page-container {
    background-color: #1a0633;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 100%;
    min-height: 100vh;
    overflow: hidden;
}

.background-wrapper {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    z-index: 0;
}

.background-image-container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.background-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.1); /* Ensure it covers well */
}

.modal-container {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    z-index: 10;
}

.modal-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    justify-content: center;
    padding: 30px 30px 40px 30px;
    position: relative;
    width: 100%;
}

.title-container {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 10px;
    position: relative;
    width: 100%;
}

.title-text {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    line-height: 1.1;
    color: #fefefe;
    font-size: 30px;
    text-align: center;
    text-transform: uppercase;
    white-space: nowrap;
    text-shadow: 0px 1px 0px #847679, 0px 5px 4px rgba(20,20,20,0.3);
}

.subtitle-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    position: relative;
    width: 100%;
}

.subtitle-1 {
    font-family: 'Outfit', sans-serif;
    font-weight: 400;
    line-height: 1.1;
    color: #e0d1ff;
    font-size: 24px;
    text-align: center;
    letter-spacing: -0.48px;
    width: 100%;
}

.subtitle-2 {
    font-family: 'Kanit', sans-serif;
    font-weight: 300;
    line-height: 1.1;
    color: #f3ebff;
    font-size: 18px;
    text-align: center;
    letter-spacing: -0.36px;
    width: 100%;
}

.button-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    position: relative;
    margin-top: 20px;
}

.action-button {
    display: flex;
    gap: 10px;
    height: 55px;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 13px 80px;
    position: relative;
    border-radius: 25px;
    box-shadow: 0px 0px 180px 0px #9917ff, 0px 0px 1px 4px rgba(255,255,255,0.1);
    border: none;
    background: transparent;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.action-button:hover {
    transform: scale(1.05);
    box-shadow: 0px 0px 200px 0px #9917ff, 0px 0px 1px 4px rgba(255,255,255,0.2);
}

.button-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    border-radius: 25px;
    background-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 248 55" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none"><rect x="0" y="0" height="100%" width="100%" fill="url(%23grad)" opacity="1"/><defs><radialGradient id="grad" gradientUnits="userSpaceOnUse" cx="0" cy="0" r="10" gradientTransform="matrix(7.5928e-16 2.75 -12.4 1.6839e-16 124 27.5)"><stop stop-color="rgba(164,124,243,1)" offset="0"/><stop stop-color="rgba(134,94,239,1)" offset="0.5"/><stop stop-color="rgba(104,63,234,1)" offset="1"/></radialGradient></defs></svg>');
    background-size: cover;
    background-position: center;
}

.button-text {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    color: white;
    font-size: 20px;
    text-transform: uppercase;
    white-space: nowrap;
    position: relative;
    z-index: 2;
}

.button-shadow {
    position: absolute;
    inset: 0;
    pointer-events: none;
    border-radius: inherit;
    box-shadow: inset 0px -4px 2px 0px rgba(0,0,0,0.25), inset 0px 2px 1px 0px rgba(255,255,255,0.25);
    z-index: 1;
}
