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

html,
body {
    font-family: 'Roboto', sans-serif;
    width: 100vw;
    min-height: 100vh;
    overflow-x: hidden;
    overflow-y: auto;
}

.full-background {
    width: 100%;
    min-height: 100vh;
    background:
        linear-gradient(to top left, rgba(187, 187, 187, 0.185), rgba(0, 0, 0, 0.7)),
        repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.623), rgba(255, 255, 255, 0.308) 1.2px, transparent 1.2px, transparent 100px),
        repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.459), rgba(255, 255, 255, 0.1) 1.2px, transparent 1.2px, transparent 100px),
        linear-gradient(to top left, #222222, #000000);
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    padding: 40px 20px;
    box-sizing: border-box;
}

.content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 100%;
    max-width: 1200px;
    gap: 20px;
}

.headline {
    color: white;
    font-size: 2.5rem;
    font-weight: 900;
    letter-spacing: 2px;
}

.poster-container {
    max-width: 40%;
}

.poster-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.glass-button {
    display: inline-block;
    padding: 24px 32px;
    border: 0;
    text-decoration: none;
    border-radius: 15px;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(30px);
    color: rgba(255, 255, 255, 0.95);
    font-size: 14px;
    letter-spacing: 2px;
    cursor: pointer;
    text-transform: uppercase;
    transition: background-color 0.3s ease;
}

.glass-button:active {
    transform: scale(0.98);
    background-color: rgba(255, 255, 255, 0.3);
}

.glass-button:hover {
    background-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
}

.gift-info {
    color: white;
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.6;
    padding: 40px 20px;
    position: relative;
}

.gift-info::before,
.gift-info::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 30px;
    border: 2px solid white;
    pointer-events: none;
}

.gift-info::before {
    top: 0;
    left: 0;
    border-right: none;
    border-bottom: none;
}

.gift-info::after {
    bottom: 0;
    right: 0;
    border-left: none;
    border-top: none;
}
.gift-info ul {
    list-style: none;
    padding: 0;
    margin-top: 10px;
}

.gift-info li {
    margin-bottom: 5px;
}

/* Media Queries */
@media (max-width: 768px) {
    .poster-container {
        max-width: 90%;
    }

    .headline {
        font-size: 2rem;
    }

    .glass-button {
        padding: 20px 28px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .glass-button {
        padding: 16px 24px;
        font-size: 14px;
    }

    .headline {
        font-size: 1.6rem;
    }
}
