* {
    box-sizing: border-box;
}

body {
    background: linear-gradient(135deg, #1c1c1c 0%, #2b2b2b 100%);
    min-height: 100vh;
    margin: 0;
    background-repeat: no-repeat;
    background-attachment: fixed;
    font-family: 'Montserrat', 'Source Sans Pro', sans-serif;
    color: #f5f5f5;
}

.content {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px 8px;
}

.wrapper-1 {
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    border-radius: 14px;
    background: rgba(40, 40, 40, 0.85);
    backdrop-filter: blur(6px);
}
.wrapper-2 {
    padding: 30px;
    text-align: center;
}
h1 {
    font-size: 3em;
    letter-spacing: 2px;
    color: #ff5722;
    margin: 0 0 12px 0;
    font-weight: 700;
}
.wrapper-2 p {
    margin: 0;
    font-size: 1.4em;
    color: #d1d1d1;
    letter-spacing: 1px;
}
.go-home {
    background: #ff5722;
    border: none;
    color: #fff;
    font-weight: 600;
    letter-spacing: 1px;
    font-size: 1.1rem;
    padding: 14px 40px;
    margin-top: 22px;
    border-radius: 28px;
    box-shadow: 0 4px 14px rgba(255, 87, 34, 0.4);
    transition: background 0.3s, color 0.3s, border 0.3s, transform 0.2s;
    text-transform: uppercase;
    cursor: pointer;
    outline: none;
}
.go-home:hover {
    background: #fff;
    color: #ff5722;
    border: 2px solid #ff5722;
    transform: scale(1.05);
}
.go-home a {
    text-decoration: none;
    color: inherit;
}

.footer-like {
    margin-top: auto;
    background: #2b2b2b;
    padding: 8px;
    text-align: center;
    border-top: 1px solid #3a3a3a;
}
.footer-like p {
    margin: 0;
    padding: 4px;
    color: #ff9800;
    letter-spacing: 1px;
}
.footer-like p a {
    text-decoration: none;
    color: #ff9800;
    font-weight: 600;
}

.thankyou-card {
    background: #1f1f1f;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.4), 0 2px 8px rgba(255,87,34,0.2);
    padding: 42px 34px 34px 34px;
    max-width: 680px;
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    border: 1.5px solid rgba(255,87,34,0.25);
}

.thankyou-icon {
    font-size: 68px;
    color: #ff5722;
    margin-bottom: 12px;
    text-shadow: 0 0 10px rgba(255,87,34,0.6);
}

.thankyou-card p {
    margin: 0 0 10px 0;
    font-size: 1.2em;
    color: #d1d1d1;
    letter-spacing: 0.5px;
}

@media (max-width: 600px) {
    .thankyou-card {
        padding: 26px 10px 20px 10px;
        max-width: 96vw;
    }
    h1 {
        font-size: 1.7em;
    }
    .thankyou-icon {
        font-size: 48px;
    }
}

@media (min-width: 600px) {
    .content {
        max-width: 1000px;
        margin: 0 auto;
    }
    .wrapper-1 {
        height: initial;
        max-width: 640px;
        margin: 0 auto;
        margin-top: 50px;
        box-shadow: 6px 10px 44px 10px rgba(0,0,0,0.5);
    }
}
