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

body {
    font-family: 'Gill Sans', 'Trebuchet MS', sans-serif;
    margin: 0;
}

.sky-gradient {
    background: linear-gradient(to bottom,
        #ff6b6b 0%,
        #ff8e53 25%,
        #feca57 50%,
        #ff9ff3 75%,
        #a29bfe 100%);
    min-height: 100vh;
    padding: 40px 20px;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
}

.sunset-hero {
    text-align: center;
    margin-bottom: 40px;
}

.horizon {
    padding: 60px 30px;
}

.glowing-name {
    font-size: 4.5em;
    font-weight: 600;
    margin-bottom: 15px;
    letter-spacing: 3px;
}

.glowing-name .pink {
    color: #ff1493;
    text-shadow: 0 0 20px rgba(255, 20, 147, 0.8);
}

.glowing-name .yellow {
    color: #ffd700;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.8);
}

.glowing-name .blue {
    color: #4169e1;
    text-shadow: 0 0 20px rgba(65, 105, 225, 0.8);
}

.sky-text {
    font-size: 1.6em;
    color: white;
    margin-bottom: 30px;
    font-weight: 600;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.info-badges {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.badge {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    color: white;
    padding: 12px 25px;
    border-radius: 25px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    font-weight: 600;
    font-size: 1.1em;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.main-content {
    display: grid;
    gap: 30px;
}

.glow-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 25px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.card-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
}

.header-icon {
    font-size: 2.5em;
}

.card-header h2 {
    font-size: 2.5em;
    background: linear-gradient(to right, #ff1493, #ffd700, #4169e1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
}

.info-boxes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.info-box {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 25px;
    border-radius: 15px;
    color: white;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.box-emoji {
    font-size: 2.5em;
}

.box-text strong {
    display: block;
    font-size: 1.1em;
    margin-bottom: 5px;
}

.box-text p {
    font-size: 1.05em;
}

.box1 {
    background: linear-gradient(135deg, #ff6b6b, #ee5a6f);
}

.box2 {
    background: linear-gradient(135deg, #ff8e53, #ff6348);
}

.box3 {
    background: linear-gradient(135deg, #feca57, #ff9ff3);
}

.box4 {
    background: linear-gradient(135deg, #a29bfe, #6c5ce7);
}

.activities-mosaic {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
}

.activity-tile {
    padding: 30px 20px;
    border-radius: 20px;
    text-align: center;
    color: white;
    font-weight: 700;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.activity-tile:hover {
    transform: translateY(-10px) rotate(2deg);
}

.tile-emoji {
    font-size: 3.5em;
    margin-bottom: 15px;
}

.tile-text {
    font-size: 1.2em;
}

.tile1 {
    background: linear-gradient(135deg, #ff6b6b, #c44569);
}

.tile2 {
    background: linear-gradient(135deg, #ff9ff3, #f368e0);
}

.tile3 {
    background: linear-gradient(135deg, #feca57, #ff9ff3);
}

.tile4 {
    background: linear-gradient(135deg, #a29bfe, #6c5ce7);
}

.tile5 {
    background: linear-gradient(135deg, #ff8e53, #ff6348);
}

.tile6 {
    background: linear-gradient(135deg, #48dbfb, #0abde3);
}

.favorites-display {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
}

.fav-panel {
    padding: 35px 25px;
    border-radius: 20px;
    text-align: center;
    color: white;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.panel-icon {
    font-size: 4.5em;
    margin-bottom: 15px;
}

.fav-panel h3 {
    font-size: 1.5em;
    margin-bottom: 12px;
    font-weight: 800;
}

.fav-panel p {
    font-size: 1.15em;
    line-height: 1.5;
}

.panel1 {
    background: linear-gradient(135deg, #ff6b6b, #ee5a6f);
}

.panel2 {
    background: linear-gradient(135deg, #feca57, #ff9ff3);
}

.panel3 {
    background: linear-gradient(135deg, #a29bfe, #6c5ce7);
}

@media (max-width: 768px) {
    .glowing-name {
        font-size: 2.5em;
    }

    .info-boxes {
        grid-template-columns: 1fr;
    }

    .activities-mosaic {
        grid-template-columns: repeat(2, 1fr);
    }
}
