@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;700&display=swap');

body, html {
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
    background-color: #000;
    color: #fff;
    height: 100%;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

header {
    padding: 20px 0;
    background-color: rgba(0,0,0,0.8);
    position: fixed;
    width: 100%;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.logo {
    font-size: 2.5em;
    font-weight: bold;
    color: #f7b801; 
    text-shadow: 0 0 10px rgba(247, 184, 1, 0.7);
}

.hero {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://mastorbeenu.xyz/assets/img/blurred-background.jpg');
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

.hero-content {
    max-width: 800px;
    z-index: 2;
    padding: 0 20px;
}

h1 {
    font-size: 4.5em;
    margin-bottom: 20px;
    text-transform: uppercase;
    text-shadow: 0 0 20px rgba(255,255,255,0.5);
}

.hero p {
    font-size: 1.5em;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-button {
    background-color: #f7b801; 
    color: #000; 
    padding: 20px 40px;
    font-size: 1.5em;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-weight: bold;
    box-shadow: 0 0 20px rgba(247, 184, 1, 0.7);
    text-decoration: none;
    display: inline-block;
}

.cta-button:hover {
    background-color: #ffc93c; 
    transform: scale(1.05);
}

.features {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    padding: 50px 0;
    background-color: rgba(17,17,17,0.8);
}

.feature {
    flex-basis: 30%;
    text-align: center;
    padding: 20px;
    transition: all 0.3s ease;
    margin-bottom: 20px;
}

.feature:hover {
    transform: translateY(-10px);
}

.feature h3 {
    color: #f7b801; 
    font-size: 2em;
    margin-bottom: 15px;
}

.feature p {
    font-size: 1.2em;
    opacity: 0.9;
}

footer {
    background-color: #111;
    padding: 20px 0;
    text-align: center;
    margin-top: 40px; 
}

footer p {
    font-size: 0.9em;
    opacity: 0.7;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.pulse {
    animation: pulse 2s infinite;
}

#fire-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    opacity: 0.5; 
}

.social-proof {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: rgba(247, 184, 1, 0.9);
    color: #000;
    padding: 15px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
    z-index: 1000;
    transition: opacity 0.5s ease-in-out;
    opacity: 0;
}

.social-proof.show {
    opacity: 1;
}

.blur-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://mastorbeenu.xyz/assets/img/blurred-models.jpg') no-repeat center center;
    background-size: cover;
    filter: blur(20px);
    opacity: 0.3;
    z-index: 0;
}

#visitor-counter {
    position: fixed; 
    bottom: 20px;     
    left: 20px;      
    transform: none;
    margin-top: 0; 
    margin-right: 0; 
    float: none;      
    background-color: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 15px;
    border-radius: 5px;
    font-size: 1.2em;
    z-index: 999;
    transition: opacity 0.5s ease-in-out; 
    opacity: 0; 
}

#visitor-counter.show {
    opacity: 1; 
}

#visitor-counter p {
    margin: 0;
    font-weight: bold;
}

#visitor-count {
    color: #f7b801; 
}

@media (max-width: 768px) {
    .logo {
        font-size: 2em;
    }

    h1 {
        font-size: 3em;
    }

    .hero p {
        font-size: 1.2em;
    }

    .cta-button {
        font-size: 1.2em;
        padding: 15px 30px;
    }

    .feature {
        flex-basis: 100%;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2.5em;
    }

    .hero p {
        font-size: 1em;
    }

    .cta-button {
        font-size: 1em;
        padding: 12px 24px;
    }

    .feature h3 {
        font-size: 1.5em;
    }

    .feature p {
        font-size: 1em;
    }
}