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

body {
    font-family: Arial, Helvetica, sans-serif;
    background: url('Assets/Studio 27.01.22.JPG') center center/cover no-repeat;
    color: white;
    min-height: 100vh;
    position: relative;
}

/* Background Overlay */

.background-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.78);
    backdrop-filter: blur(6px);
    z-index: 0;
}

/* Header */

.site-header {
    position: relative;
    z-index: 2;
    width: 100%;
    text-align: center;
    padding-top: 40px;
}

.header-logo {
    width: 200px;
    max-width: 65%;
    opacity: 0.95;
    margin-bottom: -80px;
}


/* Layout */

.access-page {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 60px 20px 100px 20px;
    position: relative;
    z-index: 1;
}

/* Main Content */

.access-content {
    max-width: 800px;
    width: 100%;
    text-align: center;
    padding: 70px 60px;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(12px);
    margin-top: 40px;
}

/* Headings */

h1 {
    font-size: 3rem;
    letter-spacing: 10px;
    margin-bottom: 10px;
}

.sub-heading {
    letter-spacing: 4px;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.55);
    text-transform: uppercase;
    margin-bottom: 40px;
}

.intro {
    color: rgba(255,255,255,0.75);
    line-height: 1.8;
    margin-bottom: 50px;
}

h2 {
    margin: 60px 0 25px 0;
    letter-spacing: 5px;
    font-size: 1rem;
    text-transform: uppercase;
}

h3 {
    font-size: 0.8rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.55);
    margin-bottom: 20px;
}

/* Divider */

.divider {
    height: 1px;
    background: rgba(255,255,255,0.07);
    margin: 70px 0;
}

/* Lists */

.offer-list,
.signed-list {
    list-style: none;
}

.offer-list li,
.signed-list li {
    margin: 12px 0;
    color: rgba(255,255,255,0.85);
    letter-spacing: 1px;
}

/* Support Section */

.support-text {
    color: rgba(255,255,255,0.7);
    margin-bottom: 35px;
    line-height: 1.7;
}

.amount-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid rgba(255,255,255,0.25);
    max-width: 230px;
    margin: 0 auto 35px auto;
    padding: 14px;
    transition: 0.3s ease;
}

.amount-wrapper:focus-within {
    border-color: white;
}

.currency {
    font-size: 1.1rem;
    margin-right: 6px;
}

.amount-wrapper input {
    background: transparent;
    border: none;
    color: white;
    font-size: 1.1rem;
    text-align: center;
    width: 100%;
    outline: none;
}

/* Buttons */

.unlock-payment {
    padding: 15px 65px;
    border: 1px solid white;
    background: transparent;
    color: white;
    letter-spacing: 3px;
    cursor: pointer;
    transition: 0.3s ease;
}

.unlock-payment:hover {
    background: white;
    color: black;
}

.premium-btn {
    padding: 16px 60px;
    background: white;
    color: black;
    border: none;
    letter-spacing: 3px;
    cursor: pointer;
    transition: 0.3s ease;
}

.premium-btn:hover {
    background: rgba(255,255,255,0.85);
}

/* Signed Section */

.signed-section {
    margin-top: 40px;
}

.signed-image {
    width: 100%;
    max-width: 420px;
    margin: 30px auto 40px auto;
    display: block;
    border: 1px solid rgba(255,255,255,0.1);
}

.signed-group {
    margin-top: 40px;
}

.limited-note {
    margin: 35px 0 30px 0;
    color: rgba(255,255,255,0.55);
    font-size: 0.85rem;
    letter-spacing: 1px;
}

/* Responsive */

@media (max-width: 768px) {
    .access-content {
        padding: 50px 30px;
    }

    h1 {
        font-size: 2.2rem;
        letter-spacing: 6px;
    }

    .divider {
        margin: 50px 0;
    }
}