        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Georgia', serif;
            background: linear-gradient(135deg, #ffc0cb 0%, #dda0dd 100%);
            min-height: 100vh;
            overflow-x: hidden;
            position: relative;
        }

        /* Corações flutuantes */
        .heart {
            position: fixed;
            bottom: -50px;
            font-size: 30px;
            color: rgba(255, 255, 255, 0.7);
            animation: float-up 8s infinite ease-in;
            pointer-events: none;
            z-index: 1;
        }

        @keyframes float-up {
            0% {
                bottom: -50px;
                opacity: 1;
                transform: translateX(0) rotate(0deg);
            }
            100% {
                bottom: 110vh;
                opacity: 0;
                transform: translateX(50px) rotate(360deg);
            }
        }

        /* Tela inicial */
        #welcome-screen {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background: linear-gradient(135deg, #ff69b4 0%, #ba55d3 100%);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            z-index: 1000;
            transition: opacity 0.8s ease, visibility 0.8s ease;
        }

        #welcome-screen.hidden {
            opacity: 0;
            visibility: hidden;
        }

        #welcome-screen h1 {
            color: white;
            font-size: 3em;
            margin-bottom: 20px;
            text-align: center;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        #welcome-screen p {
            color: white;
            font-size: 1.3em;
            margin-bottom: 40px;
            text-align: center;
        }

        #enter-btn {
            background: white;
            color: #ff69b4;
            border: none;
            padding: 20px 50px;
            font-size: 1.5em;
            border-radius: 50px;
            cursor: pointer;
            font-weight: bold;
            box-shadow: 0 8px 20px rgba(0,0,0,0.3);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        #enter-btn:hover {
            transform: scale(1.1);
            box-shadow: 0 12px 30px rgba(0,0,0,0.4);
        }

        /* Container principal */
        #main-content {
            opacity: 0;
            transition: opacity 1s ease;
            padding: 40px 20px;
            max-width: 900px;
            margin: 0 auto;
            position: relative;
            z-index: 10;
        }

        #main-content.visible {
            opacity: 1;
        }

        /* Player de música */
        #music-player {
            position: fixed;
            bottom: 20px;
            right: 20px;
            background: rgba(255, 255, 255, 0.95);
            padding: 15px 25px;
            border-radius: 50px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
            display: flex;
            align-items: center;
            gap: 15px;
            z-index: 100;
        }

        #play-pause-btn {
            background: #ff69b4;
            border: none;
            color: white;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            cursor: pointer;
            font-size: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: transform 0.2s ease;
        }

        #play-pause-btn:hover {
            transform: scale(1.1);
        }

        .music-info {
            color: #ff69b4;
            font-weight: bold;
        }

        /* Carrossel */
        .carousel-container {
            width: 100%;
            max-width: 600px;
            margin: 0 auto 40px;
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
            background: white;
        }

        .carousel {
            position: relative;
            width: 100%;
            height: 400px;
        }

        .carousel-image {
            position: absolute;
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0;
            transition: opacity 1s ease-in-out;
        }

        .carousel-image.active {
            opacity: 1;
        }

        .carousel-dots {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 10px;
            z-index: 10;
        }

        .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: background 0.3s ease;
        }

        .dot.active {
            background: white;
        }

        /* Contador */
        .counter-section {
            background: rgba(255, 255, 255, 0.95);
            padding: 40px;
            border-radius: 20px;
            margin: 40px 0;
            text-align: center;
            box-shadow: 0 8px 25px rgba(0,0,0,0.2);
        }

        .counter-section h2 {
            color: #ff69b4;
            font-size: 2.5em;
            margin-bottom: 20px;
        }

        .counter {
            display: flex;
            justify-content: center;
            gap: 30px;
            flex-wrap: wrap;
        }

        .counter-item {
            text-align: center;
        }

        .counter-number {
            font-size: 3em;
            color: #ba55d3;
            font-weight: bold;
        }

        .counter-label {
            color: #ff69b4;
            font-size: 1.2em;
            margin-top: 5px;
        }

        /* Mensagens */
        .message-section {
            background: rgba(255, 255, 255, 0.95);
            padding: 40px;
            border-radius: 20px;
            margin: 40px 0;
            box-shadow: 0 8px 25px rgba(0,0,0,0.2);
        }

        .message-section h3 {
            color: #ff69b4;
            font-size: 2em;
            margin-bottom: 20px;
            text-align: center;
        }

        .message-section p {
            color: #555;
            line-height: 1.8;
            font-size: 1.1em;
            text-align: justify;
            margin-bottom: 15px;
        }

        .signature {
            text-align: right;
            color: #ba55d3;
            font-style: italic;
            margin-top: 30px;
            font-size: 1.2em;
        }