body {
    margin: 0;
    padding: 0;
    background: linear-gradient(135deg, #333 0%, #111 100%);
    color: #fff;
    font-family: 'Fenix', 'Arial', sans-serif;
}

header {
    background-color: #333;
    color: white;
    padding: 10px 0;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    position: static;
    top: 0;
    z-index: 1000;
}

header img {
    vertical-align: middle;
    transition: transform 0.3s ease;
}

header img:hover {
    transform: scale(1.1);
}

nav ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
}

nav ul li {
    margin: 0 10px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #f39c12;
}


@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}


main {
    padding: 20px;
    text-align: center;
}

main h1 {
    color: white;
    font-size: 100%;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
    position: relative;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

main h1::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 4px;
    background: #f39c12;
    left: 50%;
    bottom: -5px;
    transform: translateX(-50%);
}

main h2 {
    color: whitesmoke;
    border-bottom: 2px solid #eee;
    padding-bottom: 5px;
    margin-bottom: 15px;
    font-size: 200%;
    position: relative;
}

main h2::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 3px;
    background: #f39c12;
    left: 0;
    bottom: -5px;
}

main p, main li {
    color: white;
    line-height: 1.6;
    font-size: 150%;
    margin-bottom: 20px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 10px 0;
    border-top: 5px solid;
    border-image: linear-gradient(to right, orangered, yellow, orangered) 1;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

footer p {
    margin: 0;
}

footer p::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, orangered, yellow, orangered);
    top: 0;
    left: 0;
    animation: borderMove 5s linear infinite;
}

@keyframes borderMove {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

html {
    scroll-behavior: smooth;
}




.domain-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    padding: 20px;
    background-color: #111;
}

.domain-card {
    background-color: #222;
    color: #fff;
    padding: 20px;
    margin: 10px;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(255, 69, 0, 0.5), 0 0 20px rgba(255, 69, 0, 0.5) inset;
    animation: beamEffect 5s linear infinite;
    text-align: center;
}

@keyframes beamEffect {
    0% {
        box-shadow: 0 0 20px rgba(255, 69, 0, 0.5), 0 0 20px rgba(255, 69, 0, 0.5) inset;
    }
    50% {
        box-shadow: 0 0 20px rgba(255, 69, 0, 0.5), 0 0 50px rgba(255, 69, 0, 0.7) inset;
    }
    100% {
        box-shadow: 0 0 20px rgba(255, 69, 0, 0.5), 0 0 20px rgba(255, 69, 0, 0.5) inset;
    }
}

.domain-card img {
    display: block;
    margin: 0 auto;
    border-radius: 10px;
    max-width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
}

.domain-card h3 {
    font-size: 2dvw;
    margin-bottom: 10px;
    font-style: italic;
}

.domain-card p {
    margin-bottom: 5px;
    font-size: 1dvw;
}

.domain-card strong {
    font-weight: bold;
    color: #FF4500;
}

.domain-card a {
    color: #FF4500;
    text-decoration: none;
    transition: color 0.3s;
    font-style: italic;
}

.domain-card a:hover {
    color: #fff;
}

.domain-card::after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
    background-color: #FF4500;
    mix-blend-mode: overlay;
    opacity: 0.2;
}

.domain-card[data-category='business']::before {
    content: '\1F4BC'; /* Briefcase emoji */
    font-size: 40px;
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
}


.key-features {
    margin-left: 20px;
    color: #f96d00; /* Red-orange color for checkmark */
}

.checkmark {
    font-size: 16px;
    margin-right: 5px;
}

.domain-card img {
    display: block;
    margin: 0 auto;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(255, 69, 0, 0.99);
    max-width: 100%;
    height: auto;
}

.domain-card video:hover {
    transform: scale(1.1);
}


/* CSS for the search bar */
#searchInput {
    padding: 10px;
    width: 40%;
    font-size: 100%;
    border: none;
    border-radius: 50px;
    background-color: #222;
    color: #fff;
    box-shadow: 0 0 10px rgba(255, 69, 0, 0.5);
    outline: none;
    margin-bottom: 2.5%;
    margin-top: 2.5%;
    transition: background-color 0.3s, box-shadow 0.3s;
    font-family: 'Fenix', 'Arial', sans-serif;
}

#searchInput::placeholder {
    color: #aaa;
}

#searchInput:focus {
    background-color: #111;
    box-shadow: 0 0 20px rgba(255, 69, 0, 0.7);
}

/* CSS for the domain cards */
.domain-card {
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 10px;
    margin-bottom: 20px;
    display: block;
    max-width: 25dvw;
}

.domain-card img {
    display: block;
    margin: 0 auto;
    border-radius: 4px;
}

.domain-card h3 {
    margin-top: 10px;
}

.domain-card p {
    margin: 5px 0;
}

.domain-card .key-features {
    margin-top: 10px;
}


.search-container {
    position: relative;
    padding: 20px;
    background-color: #333;
}

.news-ticker {
    position: relative;
    overflow: hidden;
    height: 50px; /* Adjust height as needed */
    color: #FF4500;
    border-radius: 5px;
    margin-bottom: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    background-color: rgb(0, 0, 0);
    border-bottom: 5px #FF4500 solid;
    border-top: 5px #FF4500 solid;
}

.ticker-text {
    display: inline-block;
    white-space: nowrap;
    padding-left: 100%;
    font-size: 3dvw; /* Adjust font size as needed */
    animation: scroll-left 30s linear infinite;
}

.ticker-tex span  {
    font-size: medium;
}


.ticker-text:hover {
    animation-play-state: paused;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}


/* Responsive Styles */

/* Mobile Styles */
@media (max-width: 767px) {
    body {
        font-size: 16px;
    }

    header {
        padding: 5px 0;
        text-align:center;
        justify-content: center;
    }

    nav ul li {
        margin: 0 5px;
    }

    main h1 {
        font-size: 200%;
    }

    main h2 {
        font-size: 150%;
    }

    main p, main li {
        font-size: 100%;
    }

    #domainContainer {
        min-width: 100dvw;
        margin-left: -15%;
        margin-right: 5%;
        background: none;
    }

    .domain-section {
        width: 100dvw;
        background: none;
    }

    .domain-card {
        padding: 10px;
        margin: 5px;
        min-width: 40%;
    }

    .domain-card h3 {
        font-size: 5dvw;
    }

    .domain-card p {
        font-size: 2.5dvw;
    }

    #searchInput {
        width: 100%;
        font-size: 150%;
        margin-bottom: 5%;
        margin-top: 5%;
    }
    main h1 {
        font-size: 5dvw !important;
    }
    .ticker-text {
        font-size: 10dvw !important;
    }
    .key-features {
        font-size: 3dvw;
    }
}
