* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body, h1, h2 {
    font-family: "Poppins", sans-serif;
    color: #faf9f6;
}

body {
    background-color: #c62828;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.navbar {
    box-sizing: border-box;
    background: #c62828;
    box-shadow: 0 5px 15px rgba(140, 0, 0, 0.4);
    border-radius: 8px;
    width: fill;
    margin: 15px 20px;
    z-index: 100;
    position: static;
    padding: 10px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.navbar a {
    font-family: "Poppins", sans-serif;
    color: #fff;
    text-decoration: none;
    position: relative;
}

.paradise-logo {
    display: flex;
    align-items: center;
}

.paradise-logo img {
    width: 45px;
    height: 45px;
    margin-right: 12px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.navbar a:not(:first-child) {
    padding: 10px 15px;
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    border-radius: 2px;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
}

.navbar a:not(:first-child) i {
    margin-right: 8px;
}

.navbar a:not(:first-child):hover {
    font-size: 18px;
    color: #484c51;
    background-color: #e7928f;
    border-radius: 10px;
    scale: 1.05;
}

.navbar a:first-child {
    padding: 10px 25px;
    font-size: 26px;
    font-weight: 650;
    margin-right: auto;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.navbar a:first-child:hover {
    transform: translateX(10px);
    color: #484c51;
    background-color: #e7928f;
    border-radius: 10px;
    scale: 1.1;
}

.main-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 20px 20px 60px;
    flex: 1;
    margin-top: 20px;
}

.welcome-container {
    text-align: center;
    margin-bottom: 30px;
}

.welcome-title {
    font-size: 4.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.freedom-text {
    font-size: 2.8rem;
    font-weight: 500;
    color: #fff;
}

.video-container {
    width: 100%;
    max-width: 1000px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.content-video {
    width: 100%;
    display: block;
}

@media screen and (max-width: 768px) {
    .welcome-title {
        font-size: 3.5rem;
    }
    
    .freedom-text {
        font-size: 2.2rem;
    }
    
    .navbar a:not(:first-child) span {
        display: none;
    }
    
    .video-container {
        max-width: 100%;
    }
}

@media screen and (max-width: 480px) {
    .welcome-title {
        font-size: 2.5rem;
    }
    
    .freedom-text {
        font-size: 1.8rem;
    }
    
    .main-content {
        padding: 10px 20px 40px;
    }
}        * {
            padding: 0;
            margin: 0;
            box-sizing: border-box;
        }

        body, h1, h2 {
            font-family: "Poppins", sans-serif;
            color: #faf9f6;
        }

        body {
            background-color: #c62828;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }

        .navbar {
            box-sizing: border-box;
            background: #c62828;
            box-shadow: 0 5px 15px rgba(140, 0, 0, 0.4);
            border-radius: 8px;
            width: fill;
            margin: 15px 20px;
            z-index: 100;
            position: static;
            padding: 10px;
            display: flex;
            align-items: center;
            overflow: hidden;
        }
        
        .navbar a {
            font-family: "Poppins", sans-serif;
            color: #fff;
            text-decoration: none;
            position: relative;
        }
        
        .paradise-logo {
            display: flex;
            align-items: center;
        }
        
        .paradise-logo img {
            width: 45px;
            height: 45px;
            margin-right: 12px;
            border-radius: 50%;
            object-fit: cover;
            border: 2px solid rgba(255, 255, 255, 0.3);
        }

        .navbar a:not(:first-child) {
            padding: 10px 15px;
            font-size: 16px;
            font-weight: 500;
            text-transform: uppercase;
            border-radius: 2px;
            transition: all 0.2s ease;
            display: flex;
            align-items: center;
        }
        
        .navbar a:not(:first-child) i {
            margin-right: 8px;
        }
        
        .navbar a:not(:first-child):hover {
            font-size: 18px;
            color: #484c51;
            background-color: #e7928f;
            border-radius: 10px;
            scale: 1.05;
        }

        .navbar a:first-child {
            padding: 10px 25px;
            font-size: 26px;
            font-weight: 650;
            margin-right: auto;
            border-radius: 2px;
            transition: all 0.3s ease;
        }
        
        .navbar a:first-child:hover {
            transform: translateX(10px);
            color: #484c51;
            background-color: #e7928f;
            border-radius: 10px;
            scale: 1.1;
        }

        .main-content {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: flex-start;
            padding: 20px 20px 60px;
            flex: 1;
            margin-top: 20px;
        }

        .welcome-container {
            text-align: center;
            margin-bottom: 30px;
        }

        .welcome-title {
            font-size: 4.5rem;
            font-weight: 700;
            margin-bottom: 15px;
        }

        .freedom-text {
            font-size: 2.8rem;
            font-weight: 500;
            color: #fff;
        }

        .video-container {
            width: 100%;
            max-width: 1000px;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }

        .content-video {
            width: 100%;
            display: block;
        }

        @media screen and (max-width: 768px) {
            .welcome-title {
                font-size: 3.5rem;
            }
            
            .freedom-text {
                font-size: 2.2rem;
            }
            
            .navbar a:not(:first-child) span {
                display: none;
            }
            
            .video-container {
                max-width: 100%;
            }
        }

        @media screen and (max-width: 480px) {
            .welcome-title {
                font-size: 2.5rem;
            }
            
            .freedom-text {
                font-size: 1.8rem;
            }
            
            .main-content {
                padding: 10px 20px 40px;
            }
        }