/*
Theme Name: TopupEV Minimal Cover
Author: Domain Investor
Description: A minimalist cover banner for domain portfolio.
Version: 2.0
*/

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

body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: 'Syne', sans-serif;
    background-color: #0a0a0a;
    color: #ffffff;
}

.cover-wrapper {
    position: relative;
    height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Dark overlay to ensure text/logo visibility */
.cover-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 10, 10, 0.65);
    z-index: 1;
}

.content {
    position: relative;
    z-index: 2;
    padding: 20px;
}

.brand-logo {
    max-width: 300px;
    height: auto;
    margin-bottom: 20px;
}

.domain-name {
    font-size: 4rem;
    margin: 0;
    letter-spacing: -1px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

@media (max-width: 768px) {
    .domain-name {
        font-size: 2.5rem;
    }
    .brand-logo {
        max-width: 200px;
    }
}
