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

body {
    font-family: 'Inter', sans-serif;
    background-color: #121212;
    color: #e0e0e0;
    opacity: 0;
    animation: fadeIn 0.5s forwards;
}

/* Enhanced realistic discount sticker */
.announcement {
    position: fixed;
    top: 85px;
    right: 10px;
    background: #FFE135;
    color: #000;
    font-size: 12px;
    font-weight: bold;
    padding: 25px;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3),
                inset 0 -2px 4px rgba(0, 0, 0, 0.1),
                inset 0 2px 4px rgba(255, 255, 255, 0.5);
    transform: rotate(15deg);
    transform-origin: top right;
    z-index: 10000;
    text-align: center;
    border: 2px dashed #d50000;
    width: 140px;
    height: 140px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    animation: wiggle 3s infinite ease-in-out;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background-image: linear-gradient(45deg, 
        rgba(255,255,255,0.2) 25%, 
        transparent 25%, 
        transparent 50%, 
        rgba(255,255,255,0.2) 50%, 
        rgba(255,255,255,0.2) 75%, 
        transparent 75%, 
        transparent);
    background-size: 4px 4px;
}

.announcement strong {
    color: #d50000;
    font-size: 16px;
    text-shadow: 1px 1px 0 rgba(255,255,255,0.8);
    margin-top: 5px;
}

.announcement s {
    text-decoration-color: rgba(0, 0, 0, 0.9);
}

/* Enhanced promo label */
.promo-label {
    background: linear-gradient(135deg, #ff4444, #d50000);
    color: #fff;
    font-weight: bold;
    padding: 10px 20px;
    border-radius: 8px;
    margin-bottom: 15px;
    display: inline-block;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2),
                inset 0 -2px 4px rgba(0, 0, 0, 0.1),
                inset 0 2px 4px rgba(255, 255, 255, 0.2);
    font-size: 14px;
    letter-spacing: 0.8px;
    text-align: center;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
}

.promo-label::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    animation: shine 2s infinite;
}

@keyframes shine {
    to {
        left: 100%;
    }
}

@keyframes wiggle {
    0% {
        transform: translateX(0) rotate(15deg);
    }
    25% {
        transform: translateX(-5px) rotate(15deg);
    }
    50% {
        transform: translateX(5px) rotate(15deg);
    }
    75% {
        transform: translateX(-5px) rotate(15deg);
    }
    100% {
        transform: translateX(0) rotate(15deg);
    }
}

@keyframes colorPulse {
    0% {
        background: linear-gradient(135deg, #e74c3c, #ff6b6b);
    }
    100% {
        background: linear-gradient(135deg, #ff6b6b, #e74c3c);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

header {
    height: 70vh;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    padding: 40px;
    background-size: cover;
    background-position: center;
}

.knap-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 20px;
}

.tilbage-til-hjem, .om-os-knappen {
    display: flex;
    align-items: center;
    font-size: 18px;
    color: white;
    text-decoration: none;
    background-color: rgba(0, 0, 0, 0.7);
    padding: 8px 15px;
    border-radius: 30px;
    transition: background-color 0.3s;
}

.tilbage-til-hjem {
    position: absolute;
    top: 20px;
    left: 20px;
}

.om-os-knappen {
    position: absolute;
    top: 70px;
    left: 20px;
}

.tilbage-til-hjem i, .om-os-knappen i {
    margin-right: 10px;
}

.tilbage-til-hjem:hover {
    background-color: rgba(0, 0, 0, 0.9);
}

.tilbage-til-hjem i {
    margin-right: 10px;
}

header h1 {
    font-size: clamp(1.5rem, 3.3vw, 1.7rem);
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
    max-width: 80%;
    color: transparent;
    background: linear-gradient(135deg, #bdc3c7, #ecf0f1);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    background-clip: text;
    animation: shinyText 4s infinite linear, growShrink 5s infinite alternate;
}

header p {
    font-size: 22px;
    font-weight: 400;
    margin-bottom: 20px;
    max-width: 80%;
}

@keyframes shinyText {
    0% {
        background-position: 200% 0;
    }
    50% {
        background-position: 0 100%;
    }
    100% {
        background-position: 200% 0;
    }
}

@keyframes growShrink {
    0% {
        transform: scale(0.98);
    }
    50% {
        transform: scale(1.03);
    }
    100% {
        transform: scale(1);
    }
}

header button {
    padding: 12px 30px;
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    background-size: 200% 200%;
    border: none;
    border-radius: 30px;
    color: white;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    transition: background-color 0.3s ease, transform 0.3s ease;
    animation: gradientMove 2s infinite linear;
}

header button:hover {
    background-color: #FF4081;
    transform: scale(1.05);
}

@keyframes gradientMove {
    0% {
        background-position: 200% 0;
    }
    50% {
        background-position: 0 100%;
    }
    100% {
        background-position: 200% 0;
    }
}

.pil-ikon {
    position: absolute;
    top: 50%;
    right: -35px;
    transform: translateY(-50%);
    font-size: 20px;
    color: white;
    animation: moveArrow 2s infinite ease-in-out;
}

.pil-gra {
    color: #333 !important;
}

.pil-hvid {
    color: #fff !important;
}

header img {
    max-width: 180px;
    margin-bottom: 30px;
    position: relative;
    z-index: 3;
}

.nedtællings-sektion {
    color: #fff;
    padding: 30px 20px;
    text-align: center;
}

.nedtællings-sektion h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
}

#countdown {
    font-size: 24px;
    font-weight: 600;
    color: #29ABE2;
    margin-top: 15px;
    animation: countdownAnim 1.5s ease-in-out infinite alternate;
}

@keyframes countdownAnim {
    0% {
        color: #29ABE2;
    }
    50% {
        color: #f39c12;
    }
    100% {
        color: #e74c3c;
    }
}

#sections {
}

section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 50px 20px;
    margin: 20px auto;
    max-width: 1250px;
    position: relative;
    background-color: #fff;
    opacity: 0;
    animation: fadeIn 1s forwards;
}

.billede video {
    max-width: 80%;
    height: auto;
    border-radius: 10px;
    margin-left: auto;
    margin-right: auto;
    display: block;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    object-fit: cover;
}

.blue-section {
    background-color: #29ABE2;
    color: #fff;
}

.white-section {
    background-color: #f8f8f8;
    color: #333;
    flex-direction: row-reverse;
}

.blue-section .tilbud-header {
    text-shadow: 0 0 3px black, 0 0 6px white;
    color: #fff;
}

.white-section .tilbud-header {
    text-shadow: 0 0 3px #ccc, 0 0 6px #fff;
    color: #888;
}

.tilbud-header {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.tekst {
    flex: 1;
    padding: 20px;
    text-align: left;
    width: 100%;
}

.tekst h2 {
    font-size: 36px;
    margin-bottom: 20px;
    font-weight: 700;
}

.tekst p {
    font-size: 18px;
    margin-bottom: 30px;
    font-weight: 400;
}

.tekst button {
    padding: 12px 38px;
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    background-size: 200% 200%;
    border: none;
    border-radius: 30px;
    color: white;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    transition: background-color 0.3s ease;
    animation: gradientMove 2s infinite linear;
}

.tekst button:hover {
    background-color: #FF4081;
}

.tekst button .pil-ikon {
    position: absolute;
    right: -35px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    color: white;
    animation: moveArrow 2s infinite ease-in-out;
}

.tekst button .pil-ikon:hover {
    color: #f39c12;
}

.billede {
    flex: 1;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.billede img {
    max-width: 80%;
    height: auto;
    border-radius: 10px;
    margin-left: auto;
    margin-right: auto;
}

.tilbud-tekst {
    font-size: 12px;
    font-weight: 700;
    color: #FF4081;
    margin-top: 30px;
    text-align: left;
    animation: tilbudAnim 0.5s ease-in-out infinite alternate;
}

@keyframes tilbudAnim {
    0% {
        color: #28abe2;
    }
    100% {
        color: #E8FAFF;
    }
}

footer {
    color: #9e9e9e;
    text-align: center;
    padding: 40px 20px;
    font-size: 16px;
    max-width: 1200px;
    margin: 0 auto;
    background-color: #121212;
}

footer a {
    color: #29ABE2;
    text-decoration: none;
    font-weight: 600;
}

footer a:hover {
    text-decoration: underline;
}

.footer-indhold {
    display: block;
    text-align: center;
}

.footer-indhold p {
    margin: 10px 0;
}

@media (max-width: 768px) {
    section {
        flex-direction: column;
        height: auto;
        padding: 30px 20px;
    }

    .tekst {
        text-align: center;
        padding: 0;
    }

    .billede {
        margin-top: 20px;
    }

    .footer-indhold {
        text-align: center;
    }
    
    .announcement {
        top: 50px;
        right: 5px;
        width: 100px;
        height: 100px;
        font-size: 10px;
    }
    
    .announcement strong {
        font-size: 12px;
    }
    
    .promo-label {
        font-size: 12px;
        padding: 6px 10px;
    }
}

@keyframes moveArrow {
    0% {
        transform: translateY(-50%) translateX(0);
    }
    50% {
        transform: translateY(-50%) translateX(10px);
    }
    100% {
        transform: translateY(-50%) translateX(0);
    }
}

@media only screen and (max-width: 768px) {
    #hero h1 {
        animation: none;
    }

    body {
        font-size: 14px;
        padding: 0 10px;
    }

    #hero {
        background-size: cover;
        text-align: center;
        padding: 20px 10px;
    }

    #hero h1 {
        font-size: 24px;
        margin: 10px 0;
    }

    #hero p {
        font-size: 20px;
    }

    #hero img {
        width: 150px;
        height: auto;
        margin: 10px auto;
    }

    .popup-trigger {
        font-size: 14px;
        padding: 10px 20px;
    }

    #countdown-section {
        text-align: center;
        padding: 20px 0;
    }

    #countdown {
        font-size: 16px;
        margin: 10px 0;
    }

    .blue-section,
    .white-section {
        display: flex;
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .tekst,
    .billede {
        margin-bottom: 10px;
    }

    .tekst h2 {
        font-size: 20px;
    }

    .tekst p {
        font-size: 14px;
    }

    .tekst button {
        font-size: 16px;
        padding: 8px 16px;
    }

    .billede img {
        width: 100%;
        height: auto;
    }

    .footer-indhold {
        font-size: 12px;
        text-align: center;
        padding: 10px;
    }

    .footer-indhold p {
        margin: 5px 0;
    }
    .tilbud-tekst {
        text-align: center;
        margin: 20px auto;
        font-size: 16px;
        display: block;
    }
    .tilbage-til-hjem {
        font-size: 12px;
        padding: 8px 12px;
        border-radius: 4px;
    }

    .tilbage-til-hjem i {
        font-size: 14px;
    }
}