        *   {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Playfair Display', serif;
            background: linear-gradient(135deg, #FCCBE6 0%, #E6E6FA 50%, #F8F1FF 100%);
            color: #4a4a4a;
            line-height: 1.6;
            overflow-x: hidden;
        }

        .container {
            max-width: 800px;
            margin: 0 auto;
            padding: 20px;
            position: relative;
        }
        
        .sparkle {
            position: relative;
            width: 4px;
            height: 4px;
            background: #87597c;
            border-radius: 50%;
            animation: sparkle 2s infinite;
            z-index: 1;
        }
        
        @keyframes sparkle {
            0%, 100% { opacity: 0; transform: scale(0); }
            50% { opacity: 1; transform: scale(1); }
        }
        
        .header {
            text-align: center;
            padding: 40px 0;
            position: relative;
        }
        
        .header h1 {
            font-family: 'Dancing Script', cursive;
            font-size: 4rem;
            color: #dc2acd;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
            margin-bottom: 10px;
            animation: glow 3s ease-in-out infinite alternate; 
        }
        
        @keyframes glow {
            from { text-shadow: 2px 2px 4px rgba(0,0,0,0.1), 0 0 10px #D8BFD8; }
            to { text-shadow: 2px 2px 4px rgba(0,0,0,0.1), 0 0 20px #DDA0DD; }
        }
        
        .date {
            font-size: 1.5rem;
            color: #7a7676;
            font-weight: 700;
            margin-bottom: 30px;
        }
        
        .content {
            background: rgba(255,255,255,0.9);
            border-radius: 20px;
            padding: 40px;
            margin: 20px 0;
            box-shadow: 0 10px 30px rgba(138,43,226,0.2);
            backdrop-filter: blur(10px);
        }
        
        .info-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin: 30px 0;
        }
        
        .info-item {
            text-align: center;
            padding: 20px;
            background: linear-gradient(145deg, #DDA0DD, #E0BBE4);
            border-radius: 15px;
            color: #4a4a4a;
        }
        
        .info-item h3 {
            font-family: 'Dancing Script', cursive;
            font-size: 1.8rem;
            color: #dc2acd;
            margin-bottom: 10px;
        }
        
        .rsvp {
            text-align: center;
            padding: 30px;
            background: linear-gradient(145deg, #F8F1FF, #FCCBE6);
            border-radius: 15px;
            margin: 30px 0;
        }
        
        .rsvp h3 {
            font-family: 'Dancing Script', cursive;
            font-size: 2rem;
            color: #C71585;
            margin-bottom: 15px;
        }
        
        .rsvp button {
            background: linear-gradient(145deg, #DDA0DD, #C71585);
            color: white;
            border: none;
            padding: 15px 30px;
            font-size: 1.2rem;
            border-radius: 50px;
            cursor: pointer;
            font-family: inherit;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(91, 37, 146, 0.3);
        }
        
        .rsvp button:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(138,43,226,0.4);
        }
        
        .footer {
            text-align: center;
            padding: 30px;
            color: #9370DB;
            font-style: italic;
        }
        
        @media (max-width: 600px) {
            .header h1 { font-size: 2.5rem; }
            .content { padding: 20px; }
            .info-grid { grid-template-columns: 1fr; }
        }
        
        /* Legg til tryllestøv-effekt */
        .magic-dust {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            overflow: hidden;
        }
        
        .dust-particle {
            position: absolute;
            width: 6px;
            height: 6px;
            background: radial-gradient(circle, #eb7ce9, transparent);
            border-radius: 50%;
            animation: float 6s infinite linear;
        }
        
        @keyframes float {
            0% {
                transform: translateY(100vh) rotate(0deg);
                opacity: 0;
            }
            10% {
                opacity: 1;
            }
            90% {
                opacity: 1;
            }
            100% {
                transform: translateY(-100px) rotate(360deg);
                opacity: 0;
            }
        }
            .rundt-bilde {
        width: 200px;           /* Bredde på bildet */
        height: 200px;          /* Høyde på bildet */
        object-fit: cover;      /* Sørger for at bildet fyller hele rammen */
        border-radius: 50%;     /* Gjør bildet sirkulært */
        border: 3px solid #333; /* Valgfri kantlinje */
        }

        .round-u-image {
        width: 400px;
        aspect-ratio: 4/5;
        object-fit: cover;
        border-radius: 0 0 160px 160px;
        display: block;
        margin: auto;
        clip-path: inset(0 0 0 0 round 0 0 50% 50%);
        position: relative;
        z-index: 2;
        }

        .center-img {
        display: block;       /* Make image a block element */
        margin-left: auto;    /* Auto margins center it */
        margin-right: auto;
        }

        .gfs-didot-regular {
        font-family: "GFS Didot", serif;
        font-weight: 400;
        font-style: normal;
        }

        .rsvp input,
        .rsvp textarea {
        width: 30%;
        padding: 14px 20px;
        font-size: 1.1rem;
        border-radius: 50px;
        border: none;
        outline: none;
        font-family: "GFS Didot", serif;
        font-style: normal;
        margin-bottom: 15px;

        background: rgba(255, 255, 255, 0.85);
        box-shadow: 0 4px 12px rgba(91, 37, 146, 0.2);
        transition: all 0.3s ease;
        }

        .rsvp input,
        .rsvp textarea,
        .rsvp button {
        -webkit-appearance: none;
        appearance: none;
        }

        .rsvp input,
        .rsvp textarea {
        font-size: 16px; /* minimum for iOS */
        }

        @media (max-width: 768px) {
        .rsvp input,
        .rsvp textarea {
            padding: 16px 18px;
            border-radius: 25px;
        }

        .rsvp button {
            width: 100%;
            padding: 16px;
            font-size: 1.1rem;
        }
        }

        .rsvp input:focus,
        .rsvp textarea:focus {
        background: white;
        }

        .auto-width {
        padding: 12px 16px;
        font-size: 1.1rem;
        border-radius: 50px;
        border: none;
        outline: none;
        box-shadow: 0 4px 12px rgba(91, 37, 146, 0.2);

        width: 18ch;        /* 👈 startbredde */
        min-width: 18ch;
        }
