
@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Roboto+Slab:wght@100..900&display=swap');


body {
    font-family: 'Roboto', sans-serif;
    color: #333;
    padding: 0;
    margin: 0;
}

.wrapper-domain-view {
    width: 100%;
    box-sizing: border-box;
    background:#fff;
    min-height:100vh;
}
.wrapper-domain-view.in4-1a {

}
.container-domain-view {
    width:100%;
    max-width:1400px;
    margin: 0 auto;
    padding: 0 30px;
    border-radius: 8px;
    box-sizing:border-box;
}

h1 {
    font-size: 36px;
    color: #333;
    text-align: center;
}

.container-form-view {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    border-radius: 8px;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;

}
.top-search-area {
    max-width: 1400px;
    background-color: #f5f5f5;
    padding: 20px;
    border-radius: 0 0 8px 8px;
    box-sizing: border-box;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    border: 1px solid #e1dddd;
}
.input-form {
    width: 100%;
    max-width: 1400px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    margin-bottom: 10px;
}
.input-form input {
    width: 100%;
    padding: 16px 20px;
    font-size: 16px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background-color: #fff;
    box-shadow: 0 0.1rem 0.5rem rgba(0, 0, 0, .15);
    outline: none;
}

.input-form button {
    padding: 16px 20px;
    font-size: 16px;
    color: #fff;
    background-color: #11a917;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    min-width: 200px;
    box-shadow: 0 0.1rem 0.5rem rgba(0, 0, 0, .15);
    transition: all 0.3s ease;
}

.input-form button:hover {
    background-color: #000;
}

.full-results {
    display: flex;
    align-items: flex-start;
	justify-content:center;
    gap: 30px;
    margin-top: 20px;
	margin-bottom:30px;
    box-sizing: border-box;
	position:relative;
}


/*--Advertising--*/

section.advertising-wrapper {
    padding: 20px 10px;
    background: linear-gradient(9deg, rgba(4, 10, 18, 1) 27%, rgba(6, 47, 105, 1) 100%);
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.161);
    font-family: 'Montserrat';
	border-radius: 8px;
	max-width:160px;
}
.advertising-header {
    text-align: center;
    margin-bottom: 20px;
	color:#fff;
}
.advertising-header img {
    width: 100px;
    margin-bottom: 10px;
}
.advertising-header h1 {
    font-size: 20px;
    margin: 0;
    color: #ffffff;
    background-color: #11a917;
    padding: 10px;
    border-radius: 8px;
}
.advertising-header p {
    font-size: 12px;
    margin: 5px 0;
    color: #1eff27;
}
.advertising-header p strong {
    color: #fff;
	border:1px dashed #fff;
	padding: 2px 4px;
    border-radius: 8px;
}

.advertising-section {
	display: flex;
	flex-direction: column;
	gap: 20px;
	align-items: center;
}

.ad-card {
    border-top:1px solid #fff;
    text-align: center;
    padding: 10px;
    transition: transform 0.2s;
}

.ad-card:hover {
	transform: scale(1.05);
}

.ad-card h3 {
    margin: 0;
    font-size: 18px;
    color: #00ff2d;
}

.ad-card p {
	font-size: 14px;
    margin: 10px 0;
    color: #fff;
}

.ad-card a {
	display: inline-block;
    text-decoration: none;
    color: #ffffff;
    background-color: rgb(255 59 59);
    padding: 5px 12px;
    border-radius: 5px;
    font-size: 12px;
    transition: background-color 0.3s;
}

.ad-card a:hover {
	background-color: #d32f2f;
}

.advertising-main-wrapper {
    height: 100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(9deg, rgba(4, 10, 18, 1) 27%, rgba(6, 47, 105, 1) 100%);
    font-family: 'Montserrat', sans-serif;
    color: #fff;
    border-radius: 8px;
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.161);
    padding: 0 10px;
    box-sizing: border-box;
    transform: translateY(-100%);
    animation: slideInFromTop 1s forwards;
    animation-delay: 1.5s;
}

.add-offers {
    display: flex;
    flex-direction: row;
    gap: 10px;
}

.add-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    font-size: 10px;
    border-radius: 4px;
    padding: 5px 10px;
    transition: transform 0.3s;
}

.add-card:hover {
    transform: scale(1.1);
}

.add-card h3 {
    margin: 0;
    font-size: 12px;
    color: #00ff2d;
}

.add-card a {
    margin-top: 5px;
    font-size: 10px;
    text-decoration: none;
    color: #ffffff;
    background-color: rgb(255, 59, 59);
    padding: 2px 6px;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.add-card a:hover {
    background-color: #d32f2f;
}

.add-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
}

.add-content img {
    width: 270px;
    height: auto;
    margin-bottom: 5px;
  filter: brightness(0) invert(1);
}

.add-content h1 {
    font-size: 16px;
    margin: 0;
    color: #ffffff;
    background-color: #11a917;
    padding: 2px 6px;
    border-radius: 4px;
}

.add-content p {
    font-size: 12px;
    margin: 5px 0;
    color: #1eff27;
}
.add-content p strong {
    color: #fff;
    border: 1px dashed #fff;
    padding: 2px 4px;
    border-radius: 8px;
}

.link-to-copy {
    line-height:2;
}

        @keyframes slideInFromTop {
            to {
                opacity: 1; /* Fully visible */
                transform: translateY(0); /* Move to original position */
            }
        }