/*
 * AddMy.Link authenticated product stylesheet
 * Consolidated 2026-08-08
 * Dashboard / Getting Started / Analytics / Growth / authenticated shell
 */


/* ===== legacy-main ===== */
/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
html {
  font-family: sans-serif;
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}

body {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #757575;
  background-color: #fff;
  margin: 0;
  padding: 0;
  min-height: 100vh;
}

/*--------------------------------------------------------------
# Avatar
--------------------------------------------------------------*/
.avatar {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 50%;
}

/*--------------------------------------------------------------
# Header (Masthead)
--------------------------------------------------------------*/
.masthead {
  position: relative;
  background: linear-gradient(rgba(0, 153, 255, 0.7), rgba(28, 55, 94, 0.7)), url('https://addmy.link/assets/imgs/bg-masthead1.jpg') no-repeat center/cover;
  padding: 8rem 0;
  color: #fff;
  text-align: center;
}

.masthead h1 {
  font-size: 2rem;
  font-weight: 700;
}

@media (min-width: 768px) {
  .masthead {
    padding: 12rem 0;
  }
  .masthead h1 {
    font-size: 3rem;
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 4rem 0;
}

.section-bg {
  background-color: #f3f8fa;
}

.section-title {
  text-align: center;
  padding-bottom: 2rem;
}

.section-title h2 {
  font-size: 1.75rem;
  font-weight: 600;
  margin-bottom: 1rem;
  position: relative;
}

.section-title h2::before {
  content: '';
  position: absolute;
  width: 120px;
  height: 1px;
  background: #ddd;
  bottom: -0.5rem;
  left: 50%;
  transform: translateX(-50%);
}

.section-title h2::after {
  content: '';
  position: absolute;
  width: 40px;
  height: 3px;
  background: #68a4c4;
  bottom: -0.5rem;
  left: 50%;
  transform: translateX(-50%);
}

.section-title p {
  margin: 0 auto;
  font-size: 0.9375rem;
  color: #556877;
  max-width: 50%;
}

@media (max-width: 768px) {
  .section-title p {
    max-width: 80%;
  }
}

/*--------------------------------------------------------------
# Features Icons
--------------------------------------------------------------*/
.features-icons {
  padding: 5rem 0;
}

.features-icons-item {
  max-width: 20rem;
  margin: 0 auto 2rem;
}

.features-icons-icon {
  height: 7rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.features-icons-icon i {
  font-size: 4.5rem;
  color: #007bff;
}

/*--------------------------------------------------------------
# Clients Section
--------------------------------------------------------------*/
#clients {
  padding: 4rem 0;
}

.clients-wrap {
  display: flex;
  flex-wrap: wrap;
  border-top: 1px solid #d6eaff;
  border-left: 1px solid #d6eaff;
  margin-bottom: 1.5rem;
}

.client-logo {
  flex: 0 0 25%;
  max-width: 25%;
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid #d6eaff;
  border-bottom: 1px solid #d6eaff;
  background: #fff;
  height: 160px;
  transition: transform 0.3s ease;
}

.client-logo img {
  max-width: 100%;
  height: auto;
  transition: transform 0.4s ease-in-out;
}

.client-logo:hover img {
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .client-logo {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

@media (max-width: 576px) {
  .client-logo {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features .row + .row {
  margin-top: 4rem;
}

.features h3 {
  font-size: 1.5rem;
  font-weight: 600;
}

.features ul {
  list-style: none;
  padding: 0;
}

.features ul li {
  padding-bottom: 0.625rem;
  display: flex;
  align-items: center;
}

.features ul i {
  font-size: 1.25rem;
  color: #68a4c4;
  margin-right: 0.5rem;
}

/*--------------------------------------------------------------
# Send Message Form
--------------------------------------------------------------*/
.cardMessage {
  width: 340px;
  height: 430px;
  background-color: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
}

.top-div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.top-div h2 {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0;
}

.top-div i {
  font-size: 1.25rem;
  color: #ccc;
}

.input-text {
  position: relative;
  margin-bottom: 1.5rem;
}

.input-text input[type='text'] {
  width: 100%;
  height: 40px;
  border: none;
  border-bottom: 1px solid #ccc;
  padding: 0 2rem;
  font-size: 0.9375rem;
  transition: border-color 0.3s ease;
}

.input-text input:focus {
  outline: none;
  border-bottom: 2px solid #800080;
}

.input-text span {
  position: absolute;
  top: 10px;
  left: 35px;
  font-size: 0.9375rem;
  color: #757575;
  transition: all 0.3s ease;
}

.input-text input:focus ~ span,
.input-text input:valid ~ span {
  top: -5px;
  font-size: 0.75rem;
  color: #800080;
  font-weight: 600;
}

.detailsMessage :nth-child(5) input[type='text'] {
  border: none;
}

.last {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-top: 2rem;
}

.last button {
  background: none;
  border: none;
  color: #007bff;
  font-size: 0.9375rem;
  cursor: pointer;
}

.last span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  background-color: #007bff;
  border-radius: 50%;
}

.last .fa-envelope-o {
  color: #fff;
  font-size: 0.875rem;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
footer.footer {
  padding: 4rem 0;
  background-color: #f8f9fa;
  text-align: center;
}

footer.footer p {
  margin: 0;
  color: #556877;
}

/*--------------------------------------------------------------
# Custom Overrides for Bootstrap
--------------------------------------------------------------*/
.btn-primary {
  background-color: #007bff;
  border-color: #007bff;
  transition: background-color 0.3s ease;
}

.btn-primary:hover {
  background-color: #0056b3;
  border-color: #0056b3;
}

.form-control:focus {
  border-color: #68a4c4;
  box-shadow: 0 0 0 0.2rem rgba(104, 164, 196, 0.25);
}


/* ===== legacy-heroic ===== */
/*!
 * Start Bootstrap - Heroic Features (https://startbootstrap.com/template-overviews/heroic-features)
 * Copyright 2013-2019 Start Bootstrap
 * Licensed under MIT (https://github.com/BlackrockDigital/startbootstrap-heroic-features/blob/master/LICENSE)
 */
 


article, aside, figcaption, figure, footer, header, hgroup, main, nav, section {
  display: block;
}



[tabindex="-1"]:focus:not(:focus-visible) {
  outline: 0 !important;
}




/*!
 * The Following code is (c)2020 Damo Crane (http://damocrane.com)
 */
 
 .card{
	 border:#0066FF 1px solid;
	 display:block !important;
 }
 li.star {
    list-style: none;
    display: inline-block;
    margin-right: 5px;
    cursor: pointer;
    color: #9E9E9E;
}

li.star.selected {
    color: #ff6e00;
}

.row-title {
    font-size: 20px;
    color: #00BCD4;
}

.review-note {
    font-size: 12px;
    color: #999;
    font-style: italic;
}
.row-item {
    margin-bottom: 20px;
    border-bottom: #F0F0F0 1px solid;
}
p.text-address {
    font-size: 12px;
}
.fb-like, 
.fb-like > span,
.fb-like > span iframe {
    max-width:100%;
	overflow:visible;
}
/* Apple Box */
.applefeature {
height: 150px;
margin: 8px;
vertical-align: top;
display: inline-block;
}
 
.applefeature a {
display: block;
width: 168px;
height: 140px;
border: 1px solid #ccc;
color: #333;
text-decoration: none;
font-weight: bold;
line-height: 1.3em;
background: #f7f7f7;
-webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, .3);
-moz-box-shadow: inset 0 1px 2px rgba(0, 0, 0, .3);
box-shadow: inset 0 1px 2px rgba(0, 0, 0, .3);
-webkit-border-radius: 4px;
-moz-border-radius: 4px;
border-radius: 4px;
}
.applefeature a:hover {
background: #fafafa;
background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#fff), to(#f7f7f7));
background: -moz-linear-gradient(100% 100% 90deg, #f7f7f7, #fff);
-webkit-box-shadow: inset 0 1px 2px rgba(0,0,0,.3); 
-moz-box-shadow: inset 0 1px 2px rgba(0,0,0,.3); 
box-shadow: inset 0 1px 2px rgba(0,0,0,.3);
-webkit-border-radius: 4px; 
-moz-border-radius: 4px; 
border-radius: 4px;
}
 
.applefeature a img { 
display: block;
margin: 26px auto 4px;
}
.applefeature a h4 {
display: block;
width: 160px;
font-size: 11px;
font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
color: #646464;
text-align: center;
}




/* ===== legacy-default ===== */
/* (c) Damien Crane 2022 */
/* https://damocrane.com */

.page_top_notice {
  color: #444;
  border-bottom: solid 1px #e2c822;
  top:0px;
  padding: 5px 20px 4px;
  background: #fff9d7;
}

.modal{
	/*width: 350px;*/
	margin: 0 auto;
}

/* Switch */
/* The switch - the box around the slider */
.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

/* Hide default HTML checkbox */
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

/* The slider */
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

input:checked + .slider {
  background-color: #2196F3;
}

input:focus + .slider {
  box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}

/* Social Icons For List */
.IconSize16{
	width: 16px;
	height: 16px;
	border: none;
}
.IconSize32{
	width: 32px;
	height: 32px;
	border: none;
}
.IconSize64{
	width: 64px;
	height: 64px;
	border: none;
}

/* Table */


.button {
  color: #aaa;
  cursor: pointer;
  vertical-align: middle;
  margin-top: -4px;
}

.edit:hover {
  color: #0a79df;
}

.delete:hover {
  color: #dc2a2a;
}



.profile-block{
	margin:30px auto;
	position:relative;
	overflow:hidden;
	max-width: 400px;
	}
.profile-block .user-heading {
  background: none repeat scroll 0 0;
  border-radius: 4px 4px 0 0;
  padding: 20px;
  text-align: center;
}
.profile-block .user-heading img {
	border-radius: 50%;
	margin:auto auto 10px;
	display: block;
	height: 140px;
	width: 140px;
	border: 10px solid rgba(255, 255, 255, 0.3);
}
.profile-block .user-heading h1 {
  font-size: 20px;
  font-weight: 300;
  line-height: 22px;
  margin-bottom: 5px;
  margin-top: 5px;
}
.profile-block .user-heading p {
  font-size: 12px;
  margin-bottom: 0;
  text-align: center;
}

/* Profile Content */
.profile-content {
  padding: 20px;
  background: #fff;
  min-height: 460px;
}


  .fb-like, 
.fb-like > span,
.fb-like > span iframe {
    max-width:100%;
	overflow:visible;
}

.vertical-alignment-helper {
display:table;
height: 100%;
width: 100%;
pointer-events:none;}

.vertical-align-center {
/* To center vertically */
display: table-cell;
vertical-align: middle;
pointer-events:none;}


/* Form */
.divider-text {
    position: relative;
    text-align: center;
    margin-top: 15px;
    margin-bottom: 15px;
}
.divider-text span {
    padding: 7px;
    font-size: 12px;
    position: relative;   
    z-index: 2;
}
.divider-text:after {
    content: "";
    position: absolute;
    width: 100%;
    border-bottom: 1px solid #ddd;
    top: 55%;
    left: 0;
    z-index: 1;
}

.btn-facebook {
    background-color: #405D9D;
    color: #fff;
}
.btn-twitter {
    background-color: #42AEEC;
    color: #fff;
}

/* UI Buttons*/
.uibutton,
.uibutton:visited {
    position: relative;
    z-index: 1;
    overflow: visible;
    display: inline-block;
    padding: 0.3em 0.6em 0.375em;
    border: 1px solid #999;
    border-bottom-color: #888;
    margin: 0;
    text-decoration: none;
    text-align: center;
    font: bold 11px/normal 'lucida grande', tahoma, verdana, arial, sans-serif;
    white-space: nowrap;
    cursor: pointer;
    /* outline: none; */
    color: #911B2D;
    background-color: #eee;
    background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#f5f6f6), to(#e4e4e3));
    background-image: -moz-linear-gradient(#f5f6f6, #e4e4e3);
    background-image: -o-linear-gradient(#f5f6f6, #e4e4e3);
    background-image: linear-gradient(#f5f6f6, #e4e4e3);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#f5f6f6', EndColorStr='#e4e4e3'); /* for IE 6 - 9 */
    -webkit-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.1), inset 0 1px 0 #fff;
    -moz-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.1), inset 0 1px 0 #fff;
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.1), inset 0 1px 0 #fff;
    /* IE hacks */
    zoom: 1;
    *display: inline;
}

.uibutton:hover,
.uibutton:focus,
.uibutton:active {
    border-color: #777 #777 #666;
}

.uibutton:active {
    border-color: #aaa;
    background: #ddd;
    filter: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
}

/* overrides extra padding on button elements in Firefox */
.uibutton::-moz-focus-inner {
    padding: 0;
    border: 0;
}

/* ............................................................................................................. Icons */

.uibutton.icon:before {
    content: "";
    position: relative;
    top: 1px;
    float:left;
    width: 10px;
    height: 12px;
    margin: 0 0.5em 0 0;
    background: url(fb-icons.png) 99px 99px no-repeat;
}

.uibutton.edit:before  { background-position: 0 0; }
.uibutton.add:before  { background-position: -10px 0; }
.uibutton.secure:before  { background-position: -20px 0; }
.uibutton.prev:before  { background-position: -30px 0; }
.uibutton.next:before  { float:right; margin: 0 -0.25em 0 0.5em; background-position: -40px 0; }

/* ------------------------------------------------------------------------------------------------------------- BUTTON EXTENSIONS */

/* ............................................................................................................. Large */

.uibutton.large {
    font-size: 13px;
}

/* ............................................................................................................. Submit, etc */

.uibutton.confirm {
    border-color: #29447e #29447e #1a356e;
    color: #fff;
    background-color: #5B74A8;
    background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#637bad), to(#5872a7));
    background-image: -moz-linear-gradient(#637bad, #5872a7);
    background-image: -o-linear-gradient(#637bad, #5872a7);
    background-image: linear-gradient(#637bad, #5872a7);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#637bad', EndColorStr='#5872a7'); /* for IE 6 - 9 */
    -webkit-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.1), inset 0 1px 0 #8a9cc2;
    -moz-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.1), inset 0 1px 0 #8a9cc2;
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.1), inset 0 1px 0 #8a9cc2;
}

.uibutton.confirm:active {
    border-color: #29447E;
    background: #4F6AA3;
    filter: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
}

/* ............................................................................................................. Special */

.uibutton.special {
    border-color: #3b6e22 #3b6e22 #2c5115;
    color: #fff;
    background-color: #69a74e;
    background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#75ae5c), to(#67a54b));
    background-image: -moz-linear-gradient(#75ae5c, #67a54b);
    background-image: -o-linear-gradient(#75ae5c, #67a54b);
    background-image: linear-gradient(#75ae5c, #67a54b);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#75ae5c', EndColorStr='#67a54b'); /* for IE 6 - 9 */
    -webkit-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.1), inset 0 1px 0 #98c286;
    -moz-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.1), inset 0 1px 0 #98c286;
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.1), inset 0 1px 0 #98c286;
}

.uibutton.special:active {
    border-color: #3b6e22;
    background: #609946;
    filter: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
}

/* ............................................................................................................. Disable */

.uibutton.disable {
    z-index: 0;
    border-color: #c8c8c8;
    color: #b8b8b8;
    background: #f2f2f2;
    cursor: default;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
}

.uibutton.confirm.disable {
    color: #fff;
    border-color: #94a2bf;
    background: #adbad4;
}

.uibutton.special.disable {
    color: #fff;
    border-color: #9db791;
    background: #b4d3a7;
}

.uibutton.disable.icon:before,
.uibutton.disable.icon:after {
    opacity: 0.5;
}

/* ------------------------------------------------------------------------------------------------------------- BUTTON GROUPS */

.uibutton-group {
    display: inline-block;
    list-style: none;
    padding: 0;
    margin: 0;
    /* IE hacks */
    zoom: 1;
    *display: inline;
}

.uibutton + .uibutton,
.uibutton + .uibutton-group,
.uibutton-group + .uibutton,
.uibutton-group + .uibutton-group {
    margin-left: 3px;
}

.uibutton-group li {
    float: left;
    padding: 0;
    margin: 0;
}

.uibutton-group .uibutton {
    float: left;
    margin-left: -1px;
}

.uibutton-group .uibutton:hover,
.uibutton-group .uibutton:focus,
.uibutton-group .uibutton:active {
    z-index:2;
}

.uibutton-group > .uibutton:first-child,
.uibutton-group li:first-child .uibutton {
    margin-left: 0;
}

/* ------------------------------------------------------------------------------------------------------------- BUTTON CONTAINER */
/* For mixing buttons and button groups, e.g., in a navigation bar */

.uibutton-toolbar {
	width:90%;
	margin:0 auto;
    padding: 6px;
    border-top: 1px solid #ccc;
    background: #FFF;
}

.uibutton-toolbar .uibutton,
.uibutton-toolbar .uibutton-group {
    vertical-align: bottom;
	color:#000;
}


/* ===== legacy-buttons ===== */
/*---Button Reset---*/
.btn:focus {
  box-shadow: 0 0 0 1px rgba(0, 123, 255, 0.25); }

/*---Buttons Colors---*/
.color-and-background, .btn-red.btn-fill:hover, .btn-green.btn-fill:hover, .btn-dirty-green.btn-fill:hover, .btn-blue.btn-fill:hover, .btn-black.btn-fill:hover, .btn-purple.btn-fill:hover, .btn-orange.btn-fill:hover, .btn-aqua.btn-fill:hover, .btn-primary.btn-fill:hover, .btn-secondary.btn-fill:hover, .btn-success.btn-fill:hover, .btn-danger.btn-fill:hover, .btn-info.btn-fill:hover, .btn-dark.btn-fill:hover {
  color: #fff;
  background-color: transparent; }

.btn{
text-align:left;
}

.btn-red {
  background-color: #d31433;
  color: #fff; }
  .btn-red:hover {
    background-color: #C02942; }

.btn-red-flip {
  background-color: #d31433;
  color: #fff; }
  .btn-red-flip:hover {
    background-color: #fff;
    color: #d31433;
    border-color: #d31433; }

.btn-yellow {
  background-color: #f9d154; }
  .btn-yellow:hover {
    background-color: #dcb743; }

.btn-yellow-flip {
  background-color: #f9d154;
  color: #000; }
  .btn-yellow-flip:hover {
    background-color: #000;
    color: #f9d154;
    border-color: #f9d154; }

.btn-green {
  background-color: #34c70f;
  color: #fff; }
  .btn-green:hover {
    background-color: #30b110; }

.btn-green-flip {
  background-color: #34c70f;
  color: #fff; }
  .btn-green-flip:hover {
    background-color: #fff;
    color: #34c70f;
    border-color: #34c70f; }

.btn-dirty-green {
  background-color: #147684;
  color: #fff; }
  .btn-dirty-green:hover {
    background-color: #0a95a9; }

.btn-dirty-green-flip {
  background-color: #147684;
  color: #fff; }
  .btn-dirty-green-flip:hover {
    background-color: #fff;
    color: #147684;
    border-color: #147684; }

.btn-blue {
  background-color: #1265A8;
  color: #fff; }
  .btn-blue:hover {
    background-color: #1975bf; }

.btn-blue-flip {
  background-color: #1265A8;
  color: #fff; }
  .btn-blue-flip:hover {
    background-color: #fff;
    color: #1265A8;
    border-color: #1265A8; }

.btn-black {
  background-color: #222;
  color: #fff; }
  .btn-black:hover {
    background-color: #111; }

.btn-black-flip {
  background-color: #222;
  color: #fff; }
  .btn-black-flip:hover {
    background-color: #fff;
    color: #222;
    border-color: #222; }

.btn-purple {
  background-color: #b53399;
  color: #fff; }
  .btn-purple:hover {
    background-color: #8c1573; }

.btn-purple-flip {
  background-color: #b53399;
  color: #fff; }
  .btn-purple-flip:hover {
    background-color: #fff;
    color: #b53399;
    border-color: #b53399; }

.btn-orange {
  background-color: #F57C02;
  color: #fff; }
  .btn-orange:hover {
    background-color: #d87a1c; }

.btn-orange-flip {
  background-color: #F57C02;
  color: #fff; }
  .btn-orange-flip:hover {
    background-color: #fff;
    color: #F57C02;
    border-color: #F57C02; }

.btn-aqua {
  background-color: #30b3be;
  color: #fff; }
  .btn-aqua:hover {
    background-color: #0a6b74; }

.btn-aqua-flip {
  background-color: #30b3be;
  color: #fff; }
  .btn-aqua-flip:hover {
    background-color: #fff;
    color: #30b3be;
    border-color: #30b3be; }

.btn-grey {
  background-color: #eee;
  border-color: #eee;
  color: #666; }
  .btn-grey:hover {
    background-color: #d0d0d0; }

/*---Buttons sizes---*/
.btn.btn-mini {
  padding: 0 10px;
  font-size: 12px;
  height: 29px;
  line-height: 25px; }

.btn.btn-xlg {
  padding: 0 34px;
  font-size: 18px;
  height: 52px;
  line-height: 52px; }

/*---Buttons Helpers---*/
.btn.btn-3d {
  border-radius: 3px;
  border-bottom: 3px solid rgba(0, 0, 0, 0.15);
  -webkit-transition: none;
  -o-transition: none;
  transition: none; }

.btn-rounded {
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px; }

.btn-no-radius {
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0; }

.btn-circle {
  -webkit-border-radius: 25px;
  -moz-border-radius: 25px;
  border-radius: 25px; }

.btn.btn-border-1 {
  border-width: 1px;
  font-weight: 600;
  text-shadow: none; }

.btn.btn-border-2 {
  border-width: 2px;
  font-weight: 600;
  text-shadow: none; }

.btn.btn-border-dashed-1 {
  border-width: 1px;
  border-style: dashed;
  font-weight: 600;
  text-shadow: none; }

.btn.btn-border-dashed-2 {
  border-width: 2px;
  border-style: dashed;
  font-weight: 600;
  text-shadow: none; }

.btn.btn-border-dotted-1 {
  border-width: 1px;
  border-style: dotted;
  font-weight: 600;
  text-shadow: none; }

.btn.btn-border-dotted-2 {
  border-width: 2px;
  border-style: dotted;
  font-weight: 600;
  text-shadow: none; }

.btn-icon-overlay {
  position: relative; }

.btn-icon-overlay i {
  position: absolute;
  top: 0;
  right: 0;
  margin-right: -1px;
  padding: 0;
  background-color: rgba(0, 0, 0, 0.2);
  border-top-right-radius: inherit;
  border-bottom-right-radius: inherit; }

.btn-xlg.btn-icon-overlay {
  padding-right: 55px; }

.btn-xlg.btn-icon-overlay i {
  width: 37px;
  height: 51px;
  line-height: 52px; }

.btn-lg.btn-icon-overlay {
  padding-right: 35px; }

.btn-lg.btn-icon-overlay i {
  width: 28px;
  height: 46px;
  line-height: 45px; }

.btn-sm.btn-icon-overlay {
  padding-right: 25px; }

.btn-sm.btn-icon-overlay i {
  width: 20px;
  height: 30px;
  line-height: 30px; }

.btn-mini.btn-icon-overlay {
  padding-right: 22px; }

.btn-mini.btn-icon-overlay i {
  width: 18px;
  height: 28px;
  line-height: 25px; }

.btn-icon-overlay:not([class~=btn-xlg]):not([class~=btn-sm]):not([class~=btn-lg]):not([class~=btn-mini]) {
  padding-right: 25px; }

.btn-icon-overlay:not([class~=btn-xlg]):not([class~=btn-sm]):not([class~=btn-lg]):not([class~=btn-mini]) i {
  width: 20px;
  height: 36px;
  line-height: 36px; }

/*---Fill Buttons---*/
.btn-fill {
  /*-- position: relative; --*/
  overflow: hidden;
  background-color: transparent;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out; }
  .btn-fill:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
    transition: 0.4s ease-in-out; }

.fill-top:before {
  -webkit-transform: translateY(-105%);
  transform: translateY(-105%); }
.fill-top:hover:before {
  transform: translateY(0); }

.fill-bottom:before {
  -webkit-transform: translateY(105%);
  transform: translateY(105%); }
.fill-bottom:hover:before {
  transform: translateY(0); }

.fill-left:before {
  -webkit-transform: translateX(-105%);
  transform: translateX(-105%); }
.fill-left:hover:before {
  transform: translateY(0); }

.fill-right:before {
  -webkit-transform: translateX(105%);
  transform: translateX(105%); }
.fill-right:hover:before {
  transform: translateY(0); }

.btn-red.btn-fill {
  color: #d31433;
  border-color: #d31433; }
  .btn-red.btn-fill:hover:before {
    background-color: #d31433 !important; }

.btn-yellow.btn-fill {
  color: #f9d154;
  border-color: #f9d154; }
  .btn-yellow.btn-fill:hover {
    color: #000;
    background-color: transparent; }
    .btn-yellow.btn-fill:hover:before {
      background-color: #f9d154 !important; }

.btn-green.btn-fill {
  color: #34c70f;
  border-color: #34c70f; }
  .btn-green.btn-fill:hover:before {
    background-color: #34c70f !important; }

.btn-dirty-green.btn-fill {
  color: #147684;
  border-color: #147684; }
  .btn-dirty-green.btn-fill:hover:before {
    background-color: #147684 !important; }

.btn-blue.btn-fill {
  color: #1265A8;
  border-color: #1265A8; }
  .btn-blue.btn-fill:hover:before {
    background-color: #1265A8 !important; }

.btn-black.btn-fill {
  color: #222;
  border-color: #222; }
  .btn-black.btn-fill:hover:before {
    background-color: #222 !important; }

.btn-purple.btn-fill {
  color: #b53399;
  border-color: #b53399; }
  .btn-purple.btn-fill:hover:before {
    background-color: #b53399 !important; }

.btn-orange.btn-fill {
  color: #F57C02;
  border-color: #F57C02; }
  .btn-orange.btn-fill:hover:before {
    background-color: #F57C02 !important; }

.btn-aqua.btn-fill {
  color: #30b3be;
  border-color: #30b3be; }
  .btn-aqua.btn-fill:hover:before {
    background-color: #30b3be !important; }

.btn-primary.btn-fill {
  color: #007bff;
  border-color: #007bff; }
  .btn-primary.btn-fill:hover:before {
    background-color: #007bff !important; }

.btn-secondary.btn-fill {
  color: #868e96;
  border-color: #868e96; }
  .btn-secondary.btn-fill:hover:before {
    background-color: #868e96 !important; }

.btn-success.btn-fill {
  color: #28a745;
  border-color: #28a745; }
  .btn-success.btn-fill:hover:before {
    background-color: #28a745 !important; }

.btn-danger.btn-fill {
  color: #dc3545;
  border-color: #dc3545; }
  .btn-danger.btn-fill:hover:before {
    background-color: #dc3545 !important; }

.btn-warning.btn-fill {
  color: #ffc107;
  border-color: #ffc107; }
  .btn-warning.btn-fill:hover {
    color: #000;
    background-color: transparent; }
    .btn-warning.btn-fill:hover:before {
      background-color: #ffc107 !important; }

.btn-info.btn-fill {
  color: #17a2b8;
  border-color: #17a2b8; }
  .btn-info.btn-fill:hover:before {
    background-color: #17a2b8 !important; }

.btn-light.btn-fill {
  color: #f8f9fa;
  border-color: #f8f9fa; }
  .btn-light.btn-fill:hover {
    color: #000;
    background-color: transparent; }
    .btn-light.btn-fill:hover:before {
      background-color: #f8f9fa !important; }

.btn-dark.btn-fill {
  color: #1d2124;
  border-color: #1d2124; }
  .btn-dark.btn-fill:hover:before {
    background-color: #1d2124 !important; }

/*---Social Buttons---*/
.btn-facebook {
  background-color: #3b5998;
  border-color: #3b5998;
  color: #fff; }
  .btn-facebook:hover {
    background-color: #204592; }

.btn-twitter {
  background-color: #00aced;
  border-color: #00aced;
  color: #fff; }
  .btn-twitter:hover {
    background-color: #039dd7; }

.btn-pinterest {
  background-color: #cb2027;
  border-color: #cb2027;
  color: #fff; }
  .btn-pinterest:hover {
    background-color: #b9171e; }

.btn-dribble {
  background-color: #ea4c89;
  border-color: #ea4c89;
  color: #fff; }
  .btn-dribble:hover {
    background-color: #d1316f; }

.btn-youtube {
  background-color: #c51e24;
  border-color: #c51e24;
  color: #fff; }
  .btn-youtube:hover {
    background-color: #a7191e; }

.btn-linkedin {
  background-color: #0084bf;
  border-color: #0084bf;
  color: #fff; }
  .btn-linkedin:hover {
    background-color: #0475a8; }

.btn-google-plus {
  background-color: #dd4b39;
  border-color: #dd4b39;
  color: #fff; }
  .btn-google-plus:hover {
    background-color: #c13e2e; }





/* ===== toasts ===== */
/**
 * Copyright (c) 2021 Peyton Gasink
 * Distributed under MIT License.
 
 * This file contains all the styling for the toasts. It may cause
 * conflicting styles if simultaneously using Bootstrap toasts not generated by
 * Bootstrap Toaster, which is not recommended.
 */

.status-icon {
    font-size: 1.1rem;
}

#toastContainer {
    /*
        Variables dedicated to light and dark theme colors. The light theme ones are only used
        for JavaScript overrides, and are duplicates of Bootstrap's settings.
    */
    --header-color-light: #6c757d;
    --text-color-light: #212529;
    --header-bg-color-light: rgba(255,255,255,.85);
    --body-bg-color-light: rgba(255,255,255,.85);
    --header-color-dark: #f8f9fa;
    --text-color-dark: #f8f9fa;
    --header-bg-color-dark: rgba(30,40,45,.85);
    --body-bg-color-dark: rgba(30,40,45,.85);
    max-height: 100vh;
    /* Override Bootstrap 5's pointer-events:none on .toast-container, so overflow-y: scroll works */
    pointer-events: auto;
    overflow-y: scroll;
    /* Hide scrollbar in Firefox */
    scrollbar-width: none;
    /* Render in front of Bootstrap toasts */
    z-index: 1060;
}

/* Hide scrollbar in all webkit-based browsers. */
#toastContainer::-webkit-scrollbar {
    display: none;
}

#toastContainer .toast {
    margin: 0.8rem;
}

/* Force toast container to top center on mobile. */
@media only screen and (max-width: 576px) {
    #toastContainer {
        width: 100%;
        top: 0 !important;
        bottom: auto !important;
        left: 0 !important;
        transform: none !important;
    }

    #toastContainer .toast {
        margin: 0.8rem auto;
    }
}

@media (prefers-color-scheme: dark){
    .toast, .toast-header {
        color: var(--text-color-dark);
    }

    /* Copy of Bootstrap 5's .btn-close-white */
    .toast-header .btn-close {
        filter: invert(1) grayscale(100%) brightness(200%);
    }

    .toast {
        background-color: var(--body-bg-color-dark);
    }

    .toast-header {
        background-color: var(--header-bg-color-dark);
    }
}



/* ===== professional ===== */
/* AddMy.Link professional product theme */
:root {
  --aml-blue: #0875e1;
  --aml-electric: #005cff;
  --aml-blue-dark: #0759b7;
  --aml-ink: #102033;
  --aml-muted: #66758a;
  --aml-border: #dbe6f2;
  --aml-soft: #f4f8fc;
  --aml-surface: #ffffff;
  --aml-success: #14a267;
  --aml-danger: #d93f4c;
  --aml-shadow: 0 14px 34px rgba(16, 32, 51, 0.09);
}

.aml-app {
  min-height: 100vh;
  padding-left: 272px;
  background: #f8fbff;
}

.aml-sidebar {
  position: fixed;
  inset: 0 auto 0 0;
  z-index: 1020;
  width: 272px;
  display: flex;
  flex-direction: column;
  padding: 1.1rem;
  border-right: 1px solid var(--aml-border);
  background: #fff;
}

.aml-brand {
  display: flex;
  gap: 0.55rem;
  align-items: center;
  padding: 0.35rem 0.2rem 1.4rem;
  color: var(--aml-electric);
  font-size: 1.35rem;
  font-weight: 900;
  letter-spacing: 0;
  text-decoration: none;
  text-transform: uppercase;
}

.aml-brand:hover {
  color: var(--aml-electric);
  text-decoration: none;
}

.aml-user-mini {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  margin-bottom: 1rem;
  padding: 0.85rem 0.25rem;
}

.aml-user-mini img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 0 1px var(--aml-border);
}

.aml-user-mini strong,
.aml-user-mini small {
  display: block;
}

.aml-user-mini strong {
  color: var(--aml-ink);
  font-weight: 850;
}

.aml-user-mini small {
  color: var(--aml-muted);
}

.aml-create {
  display: flex;
  gap: 0.65rem;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  margin-bottom: 1.1rem;
  border-radius: 8px;
  background: var(--aml-electric);
  color: #fff;
  font-weight: 850;
  text-decoration: none;
  box-shadow: 0 14px 26px rgba(0, 92, 255, 0.24);
}

.aml-create:hover {
  color: #fff;
  text-decoration: none;
  background: #004fd9;
}

.aml-nav {
  display: grid;
  gap: 0.25rem;
}

.aml-nav a,
.aml-logout {
  display: flex;
  gap: 0.8rem;
  align-items: center;
  min-height: 44px;
  padding: 0 0.8rem;
  border-radius: 8px;
  color: var(--aml-ink);
  text-decoration: none;
  font-weight: 720;
}

.aml-nav a i,
.aml-logout i {
  width: 22px;
  color: #34465d;
  text-align: center;
}

.aml-nav a.active,
.aml-nav a:hover,
.aml-logout:hover {
  background: #edf4ff;
  color: var(--aml-electric);
  text-decoration: none;
}

.aml-nav a.active i,
.aml-nav a:hover i {
  color: var(--aml-electric);
}

.aml-nav b {
  margin-left: auto;
  min-width: 22px;
  height: 22px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: var(--aml-electric);
  color: #fff;
  font-size: 0.74rem;
}

.aml-logout {
  margin-top: auto;
  border-top: 1px solid var(--aml-border);
  border-radius: 0;
  padding-top: 1rem;
}

.aml-main {
  min-height: 100vh;
}

.aml-topbar {
  position: sticky;
  top: 0;
  z-index: 1010;
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  padding: 0.85rem 1.75rem;
  border-bottom: 1px solid var(--aml-border);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
}

.aml-search {
  position: relative;
  width: min(100%, 452px);
}

.aml-search i {
  position: absolute;
  top: 50%;
  left: 1rem;
  transform: translateY(-50%);
  color: var(--aml-muted);
}

.aml-search input {
  width: 100%;
  height: 42px;
  padding: 0 1rem 0 2.75rem;
  border: 1px solid var(--aml-border);
  border-radius: 8px;
  outline: 0;
  background: #fff;
}

.aml-search input:focus {
  border-color: rgba(0, 92, 255, 0.45);
  box-shadow: 0 0 0 4px rgba(0, 92, 255, 0.08);
}

.aml-top-actions {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.aml-top-actions a {
  display: inline-grid;
  min-width: 38px;
  height: 38px;
  place-items: center;
  color: #34465d;
  text-decoration: none;
}

.aml-top-actions a.active,
.aml-top-actions a:hover {
  color: var(--aml-electric);
}

.aml-account {
  display: inline-flex !important;
  width: auto !important;
  padding: 0 0.75rem;
  border-left: 1px solid var(--aml-border);
  color: var(--aml-ink) !important;
  font-weight: 850;
}

.aml-content {
  padding: 1.1rem 1.75rem 2rem;
}

.aml-three-col {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 378px);
  gap: 1.5rem;
  max-width: 1240px;
  margin: 0 auto;
}

.aml-right-rail {
  display: grid;
  align-content: start;
  gap: 1rem;
}

.rail-panel {
  padding: 1.05rem;
  border: 1px solid var(--aml-border);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--aml-shadow);
}

.rail-panel h3 {
  margin: 0 0 0.8rem;
  color: var(--aml-ink);
  font-size: 1.05rem;
  font-weight: 900;
}

.rail-list {
  display: grid;
  gap: 0.6rem;
}

.rail-list a,
.rail-person {
  display: flex;
  gap: 0.7rem;
  align-items: center;
  color: var(--aml-electric);
  text-decoration: none;
}

.rail-person img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: cover;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  padding-top: 76px;
  color: var(--aml-ink);
  background:
    radial-gradient(circle at 8% 0%, rgba(8, 117, 225, 0.09), transparent 28rem),
    linear-gradient(180deg, #f8fbff 0%, #eef5fb 100%);
  font-family: "Poppins", "Inter", "Segoe UI", Arial, sans-serif;
  letter-spacing: 0;
}

a {
  color: var(--aml-blue);
}

a:hover {
  color: var(--aml-blue-dark);
}

.navbar.bg-dark {
  background: rgba(255, 255, 255, 0.94) !important;
  border-bottom: 1px solid rgba(219, 230, 242, 0.9);
  box-shadow: 0 8px 24px rgba(16, 32, 51, 0.06);
  backdrop-filter: blur(14px);
}

.navbar-dark .navbar-brand h3,
.navbar-dark .navbar-brand,
.navbar-dark .navbar-nav .nav-link {
  color: var(--aml-ink) !important;
}

.navbar-dark .navbar-brand h3 {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0;
}

.navbar-dark .navbar-nav .nav-link {
  border-radius: 8px;
  font-size: 0.92rem;
  font-weight: 600;
  padding: 0.55rem 0.8rem;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .show > .nav-link {
  background: rgba(8, 117, 225, 0.08);
  color: var(--aml-blue) !important;
}

.navbar-dark .navbar-toggler {
  border-color: var(--aml-border);
  background: var(--aml-blue);
}

.btn {
  border-radius: 8px;
  font-weight: 700;
  letter-spacing: 0;
}

.btn-primary,
.bg-primary {
  border-color: var(--aml-blue) !important;
  background-color: var(--aml-blue) !important;
}

.btn-primary:hover,
.btn-primary:focus {
  border-color: var(--aml-blue-dark) !important;
  background-color: var(--aml-blue-dark) !important;
}

.btn-outline-primary {
  border-color: rgba(8, 117, 225, 0.3);
  color: var(--aml-blue);
  background: #fff;
}

.btn-outline-primary:hover,
.btn-outline-primary:focus {
  border-color: var(--aml-blue);
  background: rgba(8, 117, 225, 0.08);
  color: var(--aml-blue-dark);
}

.card,
.modal-content,
.list-group {
  border: 1px solid var(--aml-border) !important;
  border-radius: 8px !important;
  box-shadow: var(--aml-shadow);
}

.card-header,
.card-footer {
  border-color: var(--aml-border);
}

.card-header.bg-light,
.card-footer.bg-light {
  background: #f8fbff !important;
}

.form-control {
  border-color: var(--aml-border);
  border-radius: 8px;
  color: var(--aml-ink);
}

.form-control:focus {
  border-color: var(--aml-blue);
  box-shadow: 0 0 0 0.2rem rgba(8, 117, 225, 0.14);
}

.container-fluid.mt-5,
.container-fluid.mb-5 {
  max-width: 1440px;
}

.sidebar-menu,
.utility-card {
  position: sticky;
  top: 96px;
}

.list-group-item {
  border-color: var(--aml-border);
  color: var(--aml-ink);
  font-weight: 600;
}

.list-group-item.active {
  border-color: var(--aml-blue);
  background: var(--aml-blue);
}

.composer-card .card-header {
  padding: 1rem 1.2rem;
}

.composer-card textarea {
  min-height: 120px;
  resize: vertical;
  font-size: 1rem;
}

.feed-card {
  overflow: hidden;
}

.feed-card .card-header,
.reply-card .card-header {
  padding: 0.9rem 1rem;
}

.feed-card .card-body {
  padding: 1.1rem 1.2rem;
}

.feed-card .card-text,
.reply-card .card-text {
  color: #26384d;
  font-size: 0.98rem;
  line-height: 1.65;
}

.feed-card img.rounded-circle,
.reply-card img.rounded-circle {
  object-fit: cover;
  border: 2px solid #fff;
  box-shadow: 0 0 0 1px var(--aml-border);
}

.feed-actions {
  gap: 0.45rem;
  padding: 0.8rem 1rem;
}

.feed-actions .btn {
  margin: 0 0.35rem 0.35rem 0;
}

.feed-carousel {
  overflow: hidden;
  border: 1px solid var(--aml-border);
  border-radius: 8px;
  background: #061629;
}

.feed-carousel img {
  max-height: 520px;
  object-fit: cover;
}

.image-count {
  display: inline-block;
  border-radius: 999px;
  padding: 0.2rem 0.55rem;
  background: rgba(16, 32, 51, 0.74);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
}

.ReplyPanel {
  padding: 0 1rem 1rem;
}

.reply-card {
  box-shadow: 0 10px 24px rgba(16, 32, 51, 0.06);
}

.masthead {
  margin-top: -76px;
  padding: 9rem 0 5rem;
  background:
    linear-gradient(135deg, rgba(8, 117, 225, 0.92), rgba(4, 39, 78, 0.9)),
    url("https://addmy.link/assets/imgs/bg-masthead1.jpg") center/cover no-repeat;
}

.masthead h1 {
  max-width: 800px;
  font-size: clamp(2.1rem, 5vw, 4rem);
  line-height: 1.05;
}

.hero-preview {
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 8px;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.96);
  color: var(--aml-ink);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.24);
}

.hero-preview-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--aml-border);
}

.hero-preview-header img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
}

.hero-preview-header span {
  display: block;
  color: var(--aml-muted);
  font-size: 0.88rem;
}

.hero-link-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 0.65rem;
  padding: 0.8rem 0.95rem;
  border: 1px solid var(--aml-border);
  border-radius: 8px;
  background: #f8fbff;
  font-weight: 700;
}

.hero-link-row i {
  width: 22px;
  color: var(--aml-blue);
}

.intro-panel,
.features .card,
.stats .card,
.showcase .row {
  border: 1px solid var(--aml-border);
  border-radius: 8px !important;
  box-shadow: var(--aml-shadow);
}

.features .card,
.stats .card {
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.features .card:hover,
.stats .card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(16, 32, 51, 0.12);
}

.feature-list li {
  margin-bottom: 0.65rem;
  color: #26384d;
  font-weight: 600;
}

.feature-list i {
  margin-right: 0.5rem;
  color: var(--aml-success);
}

.profile-block {
  max-width: 460px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 8px;
  box-shadow: var(--aml-shadow);
}

.profile-block .user-heading {
  padding: 2rem 1.5rem;
}

.profile-block .user-heading h1 {
  font-size: 1.55rem;
  font-weight: 800;
}

.profile-block .list-group-item {
  border-right: 0;
  border-left: 0;
}

footer.bg-dark {
  background: #102033 !important;
}

footer a {
  color: #b9d9ff;
}

footer a:hover {
  color: #fff;
}

.fw-bold {
  font-weight: 700 !important;
}

.fw-semibold {
  font-weight: 600 !important;
}

.rounded-3,
.rounded-4 {
  border-radius: 8px !important;
}

.text-end {
  text-align: right !important;
}

.text-lg-end {
  text-align: right !important;
}

.me-1 {
  margin-right: 0.25rem !important;
}

.me-2 {
  margin-right: 0.5rem !important;
}

.me-4 {
  margin-right: 1.5rem !important;
}

.ms-2 {
  margin-left: 0.5rem !important;
}

.gap-2 > * {
  margin-right: 0.5rem;
  margin-bottom: 0.5rem;
}

.visible-xs {
  display: none;
}

.profile-block {
  width: min(100% - 1.5rem, 460px);
  max-width: 460px;
  backdrop-filter: blur(10px);
}

.profile-block .user-heading img {
  max-width: 38vw;
  max-height: 38vw;
  object-fit: cover;
}

.profile-block input.btn-block,
.profile-block .btn-block {
  min-width: 0;
  width: 100%;
  overflow-wrap: anywhere;
  white-space: normal;
}

.profile-block .list-group-item {
  min-width: 0;
}

.app-page-shell {
  min-width: 100%;
  min-height: 550px;
  padding: 0;
}

.app-panel,
.dashboard-panel {
  overflow: hidden;
  border: 1px solid var(--aml-border);
  border-radius: 8px;
  background: var(--aml-surface);
  box-shadow: var(--aml-shadow);
}

.app-panel-header {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.25rem;
}

.app-panel-header h2 {
  margin: 0;
  color: var(--aml-ink);
  font-size: 1.45rem;
  font-weight: 800;
}

.app-panel-header p {
  margin: 0.2rem 0 0;
  color: var(--aml-muted);
}

.dashboard-shell .tab-content {
  padding: 1.4rem;
}

.dashboard-tabs {
  border: 1px solid var(--aml-border);
  border-bottom: 0;
  border-radius: 8px 8px 0 0;
  background: #f8fbff;
  padding: 0.45rem 0.45rem 0;
}

.dashboard-tabs .nav-link {
  border: 0;
  border-radius: 8px 8px 0 0;
  color: var(--aml-muted);
  font-weight: 700;
}

.dashboard-tabs .nav-link.active {
  color: var(--aml-blue);
  background: #fff;
  box-shadow: 0 -1px 0 var(--aml-border), 0 0 0 1px var(--aml-border);
}

.dashboard-panel h3,
.dashboard-panel h4 {
  color: var(--aml-ink);
  font-weight: 800;
}

.dashboard-panel label {
  color: #34465d;
  font-size: 0.9rem;
  font-weight: 700;
}

.dashboard-panel .form-group {
  margin-bottom: 1rem;
}

.dashboard-panel .table {
  margin-bottom: 0;
  color: var(--aml-ink);
}

.DashUserPic,
.dashboard-panel .avatar {
  object-fit: cover;
  box-shadow: 0 0 0 1px var(--aml-border), 0 10px 22px rgba(16, 32, 51, 0.12);
}

.friend-list {
  display: grid;
  gap: 0.75rem;
}

.friend-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 1rem;
  align-items: center;
  padding: 0.9rem;
  border: 1px solid var(--aml-border);
  border-radius: 8px;
  background: #f8fbff;
}

.friend-person {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 0.75rem;
  color: var(--aml-ink);
  text-decoration: none;
}

.friend-person:hover {
  text-decoration: none;
}

.friend-person img {
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 0 1px var(--aml-border);
}

.friend-person span {
  min-width: 0;
}

.friend-person strong,
.friend-person small {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.friend-person small {
  color: var(--aml-muted);
}

.friend-actions {
  white-space: nowrap;
}

.empty-state {
  padding: 2rem;
  text-align: center;
}

.empty-state h3 {
  color: var(--aml-ink);
  font-weight: 800;
}

.empty-state p {
  color: var(--aml-muted);
}

.table-inbox,
.table-responsive .table {
  overflow: hidden;
  border: 1px solid var(--aml-border) !important;
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--aml-shadow);
}

.table-inbox th,
.table-inbox td {
  border-color: var(--aml-border) !important;
  vertical-align: middle;
}

.table-inbox thead th {
  border-bottom: 1px solid var(--aml-border);
  background: #f8fbff;
  color: var(--aml-ink);
  font-size: 0.84rem;
  text-transform: uppercase;
}

.table-inbox tr.unread td {
  background: rgba(8, 117, 225, 0.06);
}

.uibutton-toolbar {
  width: 100%;
  margin-bottom: 0.8rem;
  border: 1px solid var(--aml-border);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--aml-shadow);
}

.uibutton,
.uibutton:visited {
  border-color: var(--aml-border);
  border-radius: 8px;
  color: var(--aml-ink);
  background: #fff;
  background-image: none;
  box-shadow: none;
}

.uibutton:hover,
.uibutton:focus {
  border-color: rgba(8, 117, 225, 0.35);
  background: rgba(8, 117, 225, 0.08);
  color: var(--aml-blue);
  text-decoration: none;
}

.auth-page {
  min-height: calc(100vh - 190px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.auth-card {
  border: 1px solid var(--aml-border);
  border-radius: 8px;
  box-shadow: var(--aml-shadow);
}

.auth-card .card-title {
  color: var(--aml-ink);
  font-weight: 850;
}

.auth-card .input-group-text {
  border-color: var(--aml-border);
  background: #f8fbff;
  color: var(--aml-blue);
}

.auth-card .form-control {
  border-color: var(--aml-border);
}

.upgrade-strip {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
  padding: 1rem;
  border: 1px solid rgba(8, 117, 225, 0.18);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(8, 117, 225, 0.1), rgba(15, 184, 127, 0.1));
}

.upgrade-strip h3,
.upgrade-strip p {
  margin: 0;
}

.upgrade-strip h3 {
  color: var(--aml-ink);
  font-size: 1.05rem;
  font-weight: 850;
}

.upgrade-strip p {
  color: var(--aml-muted);
}

.upgrade-actions {
  display: flex;
  flex: 0 0 auto;
  gap: 0.5rem;
  align-items: center;
}

.paypal-subscribe-form {
  margin: 0;
}

.pricing-page {
  background: var(--aml-soft);
}

.pricing-hero {
  padding: 7.5rem 0 3rem;
  background: #fff;
  border-bottom: 1px solid var(--aml-border);
}

.pricing-hero h1 {
  color: var(--aml-ink);
  font-size: clamp(2.25rem, 5vw, 4.4rem);
  line-height: 0.98;
  font-weight: 900;
}

.pricing-hero .lead {
  max-width: 680px;
  color: var(--aml-muted);
  font-size: 1.15rem;
}

.pricing-proof {
  display: grid;
  gap: 0.65rem;
  padding: 1.25rem;
  border: 1px solid var(--aml-border);
  border-radius: 8px;
  background: #f8fbff;
  box-shadow: var(--aml-shadow);
}

.pricing-proof strong {
  color: var(--aml-ink);
  font-size: 1.1rem;
}

.pricing-proof span {
  color: var(--aml-muted);
}

.pricing-grid-section {
  padding: 3rem 0 4rem;
}

.pricing-card {
  position: relative;
  height: 100%;
  padding: 1.25rem;
  border: 1px solid var(--aml-border);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--aml-shadow);
}

.pricing-card.featured {
  border-color: rgba(8, 117, 225, 0.38);
  box-shadow: 0 22px 60px rgba(8, 117, 225, 0.16);
}

.pricing-card h2 {
  color: var(--aml-ink);
  font-weight: 850;
}

.pricing-card .price {
  margin: 0.7rem 0;
  color: var(--aml-ink);
  font-size: 2.6rem;
  line-height: 1;
  font-weight: 900;
}

.pricing-card .price span {
  color: var(--aml-muted);
  font-size: 1rem;
  font-weight: 700;
}

.pricing-card p {
  color: var(--aml-muted);
}

.pricing-card ul {
  min-height: 166px;
  margin: 1rem 0;
  padding-left: 1.15rem;
  color: #34465d;
}

.pricing-card li {
  margin-bottom: 0.55rem;
}

.plan-label {
  display: inline-flex;
  margin-bottom: 0.7rem;
  padding: 0.28rem 0.55rem;
  border-radius: 999px;
  background: rgba(15, 184, 127, 0.12);
  color: #087a56;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.dashboard-command {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(280px, 0.9fr);
  gap: 1rem;
  padding: 1.25rem;
  border: 1px solid var(--aml-border);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--aml-shadow);
}

.dashboard-kicker {
  margin-bottom: 0.3rem;
  color: var(--aml-blue);
  font-size: 0.8rem;
  font-weight: 850;
  text-transform: uppercase;
}

.dashboard-command h1 {
  margin: 0;
  color: var(--aml-ink);
  font-size: 2rem;
  font-weight: 900;
}

.dashboard-command p {
  margin: 0.45rem 0 0;
  color: var(--aml-muted);
}

.dashboard-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  align-items: center;
  margin-top: 1rem;
}

.plan-chip {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0.38rem 0.7rem;
  border: 1px solid rgba(8, 117, 225, 0.18);
  border-radius: 999px;
  background: #f8fbff;
  color: var(--aml-blue);
  font-size: 0.86rem;
  font-weight: 850;
}

.plan-chip-1,
.plan-chip-2 {
  border-color: rgba(15, 184, 127, 0.24);
  background: rgba(15, 184, 127, 0.1);
  color: #087a56;
}

.dashboard-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
}

.metric-tile {
  padding: 0.95rem;
  border: 1px solid var(--aml-border);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--aml-shadow);
}

.metric-tile span {
  display: block;
  color: var(--aml-muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.metric-tile strong {
  display: block;
  margin-top: 0.3rem;
  color: var(--aml-ink);
  font-size: 1.55rem;
  line-height: 1;
}

.creator-checklist {
  display: grid;
  gap: 0.45rem;
}

.checklist-row {
  display: flex;
  gap: 0.55rem;
  align-items: center;
  color: var(--aml-muted);
  font-size: 0.9rem;
}

.checklist-row span {
  display: inline-grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border: 1px solid var(--aml-border);
  border-radius: 50%;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 900;
}

.checklist-row.is-done {
  color: var(--aml-ink);
}

.checklist-row.is-done span {
  border-color: #0fb87f;
  background: #0fb87f;
}

.conversion-card {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  justify-content: space-between;
  margin-top: 0.85rem;
  padding: 0.85rem;
  border: 1px solid rgba(8, 117, 225, 0.18);
  border-radius: 8px;
  background: #f8fbff;
}

.conversion-card p {
  margin: 0.2rem 0 0;
  font-size: 0.86rem;
}

.limit-notice {
  padding: 0.85rem;
  border: 1px solid rgba(255, 184, 0, 0.35);
  border-radius: 8px;
  background: rgba(255, 184, 0, 0.12);
  color: #6b5200;
  font-weight: 700;
}

.feed-layout {
  background: var(--aml-soft);
}

.composer-card .card-header {
  border-bottom: 1px solid var(--aml-border);
  background: #fff !important;
  color: var(--aml-ink) !important;
}

.composer-card textarea {
  min-height: 110px;
  border: 0;
  border-bottom: 1px solid var(--aml-border);
  border-radius: 0;
  box-shadow: none;
  font-size: 1rem;
}

.composer-tools,
.emoji-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
}

.emoji-bar {
  margin-top: 0.75rem;
}

.emoji-btn {
  width: 34px;
  height: 34px;
  border: 1px solid var(--aml-border);
  border-radius: 8px;
  background: #fff;
  cursor: pointer;
  font-size: 1.05rem;
}

.emoji-btn:hover {
  border-color: var(--aml-blue);
  background: #f8fbff;
}

.friend-search-panel {
  margin-bottom: 1rem;
  padding: 1rem;
  border: 1px solid var(--aml-border);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--aml-shadow);
}

.friend-search-panel h1 {
  color: var(--aml-ink);
  font-size: 1.7rem;
  font-weight: 900;
}

.profile-upgrade-row {
  background: rgba(8, 117, 225, 0.09) !important;
}

@media (max-width: 991.98px) {
  .aml-app {
    padding-left: 0;
    padding-bottom: 76px;
  }

  .aml-sidebar {
    top: auto;
    right: 0;
    width: auto;
    height: 70px;
    display: block;
    padding: 0.35rem;
    border-top: 1px solid var(--aml-border);
    border-right: 0;
  }

  .aml-brand,
  .aml-user-mini,
  .aml-create,
  .aml-logout {
    display: none;
  }

  .aml-nav {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    height: 100%;
  }

  .aml-nav a:nth-child(n+6) {
    display: none;
  }

  .aml-nav a {
    min-height: 0;
    display: grid;
    gap: 0.1rem;
    justify-items: center;
    padding: 0.25rem;
    font-size: 0.68rem;
  }

  .aml-nav a i {
    width: auto;
    font-size: 1rem;
  }

  .aml-topbar {
    padding: 0.75rem;
  }

  .aml-top-actions a:not(.aml-account) {
    display: none;
  }

  .aml-content {
    padding: 0.9rem;
  }

  .aml-three-col {
    grid-template-columns: 1fr;
  }

  .aml-right-rail {
    display: none;
  }

  body {
    padding-top: 68px;
  }

  .navbar .btn {
    margin-top: 0.5rem;
    margin-left: 0 !important;
  }

  .container-fluid.mt-5 {
    margin-top: 1.5rem !important;
  }

  .feed-card .card-footer,
  .reply-card .card-footer {
    display: block !important;
  }

  .feed-actions .btn {
    width: 100%;
    margin-right: 0;
  }

  .ReplyPanel {
    padding: 0 0.4rem 1rem;
  }

  .reply-card.ml-4 {
    margin-left: 0 !important;
  }

  .friend-row {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .friend-actions .btn {
    width: 100%;
    margin-bottom: 0.35rem;
  }

  .dashboard-shell .tab-content {
    padding: 1rem;
  }

  .profile-block {
    margin-top: 1rem;
  }

  .masthead {
    padding-top: 7rem;
  }

  .upgrade-strip,
  .upgrade-actions {
    display: grid;
    width: 100%;
  }

  .pricing-hero {
    padding-top: 6rem;
  }

  .pricing-card ul {
    min-height: 0;
  }

  .dashboard-command,
  .dashboard-metrics {
    grid-template-columns: 1fr;
  }

  .dashboard-command h1 {
    font-size: 1.6rem;
  }

  .conversion-card {
    display: grid;
  }
}



/* ===== premium ===== */
/* AddMy.Link shared premium experience */
:root{--aml-ui-ink:#172033;--aml-ui-muted:#687086;--aml-ui-line:#e4e9f2;--aml-ui-soft:#f7f9fd;--aml-ui-brand:#635bff;--aml-ui-brand-dark:#4f46e5;--aml-ui-success:#159a62;--aml-ui-danger:#d92d48;--aml-ui-shadow:0 18px 48px rgba(20,30,55,.12)}
body>.modal{z-index:13050!important}body>.modal-backdrop{z-index:13040!important}#saveStatusModal{z-index:13060!important}.modal-dialog{position:relative;z-index:1}.modal-content{border:0!important;border-radius:22px!important;overflow:hidden;box-shadow:0 30px 90px rgba(15,23,42,.32)!important}.modal-header{padding:22px 24px 14px!important;border-bottom:1px solid var(--aml-ui-line)!important;background:#fff!important}.modal-title{color:var(--aml-ui-ink)!important;font-weight:850!important;letter-spacing:-.02em}.modal-body{padding:22px 24px!important;background:#fff}.modal-footer{padding:14px 24px 22px!important;border-top:1px solid var(--aml-ui-line)!important;background:#fff!important}.modal .close{width:38px;height:38px;display:grid;place-items:center;margin:-6px -8px -6px auto!important;padding:0!important;border:0!important;border-radius:10px!important;background:#f3f5fa!important;color:#536077!important;opacity:1!important;font-size:1.35rem!important}.modal .close:hover{background:#e9edf5!important;color:var(--aml-ui-ink)!important}.modal label{color:var(--aml-ui-ink)!important;font-weight:750!important}.modal .form-control{min-height:46px;border:1px solid #d5ddea!important;border-radius:12px!important;padding:.72rem .85rem!important;color:var(--aml-ui-ink)!important;background:#fff!important}.modal textarea.form-control{min-height:116px}.modal .form-control:focus{border-color:#7c75ff!important;box-shadow:0 0 0 4px rgba(99,91,255,.12)!important}.modal .btn{border-radius:12px!important;font-weight:800!important;padding:.68rem 1rem!important}.modal .btn-primary{background:var(--aml-ui-brand)!important;border-color:var(--aml-ui-brand)!important}.modal .btn-success{background:var(--aml-ui-success)!important;border-color:var(--aml-ui-success)!important}.modal .btn-danger{background:var(--aml-ui-danger)!important;border-color:var(--aml-ui-danger)!important}.modal .form-group>[class*=col-]{max-width:100%!important;flex:0 0 100%!important;padding-left:0!important;padding-right:0!important}.aml-badge-free,.aml-badge-premium{display:inline-flex;align-items:center;min-height:26px;padding:0 .55rem;border-radius:999px;font-size:.73rem;font-weight:850;text-transform:uppercase;letter-spacing:.06em}.aml-badge-free{background:#eaf8f1;color:#08794d}.aml-badge-premium{background:#eeecff;color:#574ad8}@media(max-width:575.98px){.modal-dialog{margin:.65rem!important}.modal-header,.modal-body,.modal-footer{padding-left:18px!important;padding-right:18px!important}}



/* ===== app-shell ===== */

/*
 * AddMy.Link unified authenticated app shell
 * Load this stylesheet after professional.css and page-specific CSS.
 */
:root{
  --aml-shell-width:240px;
  --aml-shell-mobile-height:70px;
  --aml-shell-border:#dbe6f2;
  --aml-shell-background:#ffffff;
  --aml-shell-page:#f5f7fb;
  --aml-shell-ink:#102033;
  --aml-shell-muted:#66758a;
  --aml-shell-blue:#005cff;
  --aml-shell-active:#edf4ff;
}

html,
body{
  margin:0!important;
  padding:0!important;
  min-height:100%!important;
}

*,
*::before,
*::after{
  box-sizing:border-box;
}

body.aml-app{
  min-height:100vh!important;
  margin:0!important;
  padding:0 0 0 var(--aml-shell-width)!important;
  background:var(--aml-shell-page)!important;
  overflow:hidden!important;
}

/* One sidebar size and structure on every authenticated desktop page. */
body.aml-app > .aml-sidebar,
.aml-sidebar{
  position:fixed!important;
  z-index:1040!important;
  top:0!important;
  bottom:0!important;
  left:0!important;
  right:auto!important;
  width:var(--aml-shell-width)!important;
  height:100vh!important;
  min-height:0!important;
  margin:0!important;
  padding:14px 10px 12px!important;
  display:flex!important;
  flex-direction:column!important;
  overflow-x:hidden!important;
  overflow-y:auto!important;
  border:0!important;
  border-right:1px solid var(--aml-shell-border)!important;
  background:var(--aml-shell-background)!important;
  box-shadow:none!important;
  transform:none!important;
}

.aml-sidebar .aml-brand{
  display:flex!important;
  align-items:center!important;
  gap:8px!important;
  width:100%!important;
  min-height:42px!important;
  margin:0 0 12px!important;
  padding:3px 4px 9px!important;
  color:var(--aml-shell-blue)!important;
  font-size:18px!important;
  line-height:1!important;
  font-weight:900!important;
  letter-spacing:.01em!important;
  text-decoration:none!important;
  white-space:nowrap!important;
}

.aml-sidebar .aml-user-mini{
  display:grid!important;
  grid-template-columns:44px minmax(0,1fr)!important;
  align-items:center!important;
  gap:10px!important;
  width:100%!important;
  min-height:62px!important;
  margin:0 0 11px!important;
  padding:7px 4px!important;
}

.aml-sidebar .aml-user-mini img{
  width:44px!important;
  height:44px!important;
  min-width:44px!important;
  min-height:44px!important;
  margin:0!important;
  border-radius:50%!important;
  object-fit:cover!important;
  box-shadow:0 0 0 1px var(--aml-shell-border)!important;
}

.aml-sidebar .aml-user-mini > div,
.aml-sidebar .aml-user-mini span{
  min-width:0!important;
}

.aml-sidebar .aml-user-mini strong{
  display:block!important;
  margin:0!important;
  overflow:hidden!important;
  color:var(--aml-shell-ink)!important;
  font-size:14px!important;
  line-height:1.25!important;
  font-weight:850!important;
  text-overflow:ellipsis!important;
  white-space:nowrap!important;
}

.aml-sidebar .aml-user-mini small{
  display:block!important;
  margin-top:2px!important;
  overflow:hidden!important;
  color:var(--aml-shell-muted)!important;
  font-size:12px!important;
  line-height:1.25!important;
  text-overflow:ellipsis!important;
  white-space:nowrap!important;
}

.aml-sidebar .aml-create{
  display:flex!important;
  align-items:center!important;
  justify-content:center!important;
  gap:8px!important;
  width:100%!important;
  min-height:42px!important;
  margin:0 0 13px!important;
  padding:0 12px!important;
  border:0!important;
  border-radius:8px!important;
  background:var(--aml-shell-blue)!important;
  color:#fff!important;
  font-size:13px!important;
  line-height:1!important;
  font-weight:850!important;
  text-align:center!important;
  text-decoration:none!important;
  box-shadow:0 12px 24px rgba(0,92,255,.20)!important;
}

.aml-sidebar .aml-create:hover,
.aml-sidebar .aml-create:focus{
  background:#004fd9!important;
  color:#fff!important;
  text-decoration:none!important;
}

.aml-sidebar .aml-nav{
  display:grid!important;
  grid-template-columns:1fr!important;
  gap:2px!important;
  width:100%!important;
  margin:0!important;
  padding:0!important;
  flex:1 1 auto!important;
  align-content:start!important;
}

.aml-sidebar .aml-nav a,
.aml-sidebar .aml-logout{
  display:flex!important;
  align-items:center!important;
  justify-content:flex-start!important;
  gap:10px!important;
  width:100%!important;
  min-height:42px!important;
  margin:0!important;
  padding:0 10px!important;
  border:0!important;
  border-radius:8px!important;
  background:transparent!important;
  color:var(--aml-shell-ink)!important;
  font-size:13px!important;
  line-height:1.1!important;
  font-weight:750!important;
  text-decoration:none!important;
  white-space:nowrap!important;
}

.aml-sidebar .aml-nav a i,
.aml-sidebar .aml-logout i{
  width:20px!important;
  min-width:20px!important;
  margin:0!important;
  color:#34465d!important;
  font-size:14px!important;
  line-height:1!important;
  text-align:center!important;
}

.aml-sidebar .aml-nav a.active,
.aml-sidebar .aml-nav a:hover,
.aml-sidebar .aml-nav a:focus,
.aml-sidebar .aml-logout:hover,
.aml-sidebar .aml-logout:focus{
  background:var(--aml-shell-active)!important;
  color:var(--aml-shell-blue)!important;
  text-decoration:none!important;
}

.aml-sidebar .aml-nav a.active i,
.aml-sidebar .aml-nav a:hover i,
.aml-sidebar .aml-nav a:focus i{
  color:var(--aml-shell-blue)!important;
}

.aml-sidebar .aml-nav b{
  display:inline-grid!important;
  place-items:center!important;
  min-width:20px!important;
  height:20px!important;
  margin-left:auto!important;
  padding:0 5px!important;
  border-radius:999px!important;
  background:var(--aml-shell-blue)!important;
  color:#fff!important;
  font-size:11px!important;
}

.aml-sidebar .aml-logout{
  flex:0 0 auto!important;
  margin-top:10px!important;
  padding-top:0!important;
  border-top:1px solid var(--aml-shell-border)!important;
  border-radius:0!important;
}

/* All authenticated page content begins at the same top and left position. */
body.aml-app > .aml-main,
.aml-main{
  position:fixed!important;
  z-index:1!important;
  top:0!important;
  right:0!important;
  bottom:0!important;
  left:var(--aml-shell-width)!important;
  width:auto!important;
  max-width:none!important;
  height:auto!important;
  min-height:0!important;
  margin:0!important;
  padding:0!important;
  overflow-x:hidden!important;
  overflow-y:auto!important;
  background:var(--aml-shell-page)!important;
  transform:none!important;
}

.aml-main > .aml-topbar{
  display:none!important;
  width:0!important;
  height:0!important;
  min-height:0!important;
  margin:0!important;
  padding:0!important;
  overflow:hidden!important;
  border:0!important;
}

.aml-main > .aml-content,
.aml-content.dashboard-shell,
.aml-content.feed-layout{
  position:static!important;
  top:auto!important;
  left:auto!important;
  width:100%!important;
  max-width:none!important;
  min-height:0!important;
  height:auto!important;
  margin:0!important;
  padding:14px 18px 34px!important;
  background:var(--aml-shell-page)!important;
  transform:none!important;
}

.aml-content > .aml-three-col,
.aml-three-col{
  margin-top:0!important;
  padding-top:0!important;
  align-items:start!important;
  align-content:start!important;
}

.dashboard-command,
.feed-intro{
  margin-top:0!important;
}

@media(max-width:991.98px){
  body.aml-app{
    padding:0 0 var(--aml-shell-mobile-height)!important;
    overflow:auto!important;
  }

  body.aml-app > .aml-sidebar,
  .aml-sidebar{
    top:auto!important;
    right:0!important;
    bottom:0!important;
    left:0!important;
    width:100%!important;
    height:var(--aml-shell-mobile-height)!important;
    min-height:var(--aml-shell-mobile-height)!important;
    padding:5px!important;
    display:block!important;
    overflow:hidden!important;
    border-right:0!important;
    border-top:1px solid var(--aml-shell-border)!important;
  }

  .aml-sidebar .aml-brand,
  .aml-sidebar .aml-user-mini,
  .aml-sidebar .aml-create,
  .aml-sidebar .aml-logout{
    display:none!important;
  }

  .aml-sidebar .aml-nav{
    display:grid!important;
    grid-template-columns:repeat(5,minmax(0,1fr))!important;
    height:100%!important;
    gap:2px!important;
  }

  .aml-sidebar .aml-nav a{
    display:grid!important;
    grid-template-rows:22px auto!important;
    place-items:center!important;
    gap:1px!important;
    min-height:0!important;
    padding:5px 2px!important;
    font-size:10px!important;
    text-align:center!important;
    white-space:normal!important;
  }

  .aml-sidebar .aml-nav a:nth-child(n+6){
    display:none!important;
  }

  .aml-sidebar .aml-nav a i{
    width:auto!important;
    min-width:0!important;
    font-size:15px!important;
  }

  body.aml-app > .aml-main,
  .aml-main{
    position:relative!important;
    inset:auto!important;
    width:100%!important;
    min-height:calc(100vh - var(--aml-shell-mobile-height))!important;
    overflow:visible!important;
  }

  .aml-main > .aml-content,
  .aml-content.dashboard-shell,
  .aml-content.feed-layout{
    padding:12px!important;
  }
}



/* ===== extracted from dashboard/index.php #1 ===== */
.DashUserPic{
		border-radius: 50%;
		margin:auto auto 10px;
		display: block;
		height: 140px;
		width: 140px;
		border: 10px solid rgba(255, 255, 255, 0.3);	
	}


/* ===== extracted from dashboard/index.php #2 ===== */
:root{--aml-ink:#172033;--aml-muted:#687086;--aml-line:#e7eaf0;--aml-soft:#f6f8fc;--aml-brand:#635bff;--aml-brand2:#8b5cf6;--aml-success:#0f9f6e;--aml-warning:#f59e0b}
.aml-content.dashboard-shell{max-width:1500px;margin:0 auto;padding:28px}
.dashboard-command{border:0;border-radius:24px;padding:30px;background:linear-gradient(135deg,#171c2f 0%,#29235c 55%,#635bff 100%);color:#fff;box-shadow:0 24px 55px rgba(24,30,55,.18)}
.dashboard-command h1{font-size:clamp(2rem,4vw,3.25rem);letter-spacing:-.045em;margin:.2rem 0 .65rem}.dashboard-command p{max-width:720px;color:rgba(255,255,255,.78);font-size:1.04rem}.dashboard-kicker{text-transform:uppercase;letter-spacing:.14em;font-weight:800;font-size:.72rem;color:#b8b5ff}.dashboard-actions{display:flex;gap:10px;flex-wrap:wrap;align-items:center}.dashboard-actions .btn{border-radius:12px;font-weight:700;padding:.7rem 1rem}.plan-chip{background:rgba(255,255,255,.13);border:1px solid rgba(255,255,255,.2);padding:.65rem .9rem;border-radius:999px;font-weight:700}.dashboard-metrics{display:grid;grid-template-columns:repeat(auto-fit,minmax(150px,1fr));gap:14px}.metric-tile{background:#fff;border:1px solid var(--aml-line);border-radius:18px;padding:18px;box-shadow:0 8px 28px rgba(28,39,67,.06)}.metric-tile span{display:block;color:var(--aml-muted);font-size:.82rem;font-weight:700;text-transform:uppercase;letter-spacing:.05em}.metric-tile strong{display:block;font-size:1.8rem;color:var(--aml-ink);margin-top:5px}.growth-grid{display:grid;grid-template-columns:minmax(0,1fr);gap:16px;margin:0 0 18px}.growth-card{background:#fff;border:1px solid var(--aml-line);border-radius:20px;padding:22px;box-shadow:0 8px 28px rgba(28,39,67,.05)}.growth-card h2,.growth-card h3{color:var(--aml-ink);letter-spacing:-.025em}.growth-card p{color:var(--aml-muted)}.quick-action-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:10px}.quick-action{display:block;border:1px solid var(--aml-line);border-radius:14px;padding:14px;color:var(--aml-ink);background:var(--aml-soft);transition:.2s}.quick-action:hover{text-decoration:none;transform:translateY(-2px);border-color:#c7c3ff}.quick-action i{display:block;font-size:1.2rem;color:var(--aml-brand);margin-bottom:8px}.quick-action strong{display:block}.quick-action small{color:var(--aml-muted)}.revenue-products{display:grid;gap:10px}.revenue-item{display:flex;justify-content:space-between;gap:12px;align-items:center;padding:13px;border:1px solid var(--aml-line);border-radius:14px}.revenue-item strong{display:block}.revenue-item small{color:var(--aml-muted)}.revenue-price{font-weight:800;color:var(--aml-brand);white-space:nowrap}.score-wrap{display:grid;grid-template-columns:88px minmax(0,1fr);align-items:center;gap:18px;min-height:92px}.score-wrap>div:last-child{min-width:0}.score-wrap h3{margin-top:0}.score-wrap p{max-width:760px;line-height:1.55;margin-bottom:0}.score-ring{width:82px;height:82px;border-radius:50%;display:grid;place-items:center;background:conic-gradient(var(--aml-success) calc(var(--score)*1%),#e9edf4 0);position:relative}.score-ring:after{content:'';position:absolute;inset:8px;border-radius:50%;background:#fff}.score-ring strong{position:relative;z-index:1}.growth-grid > .growth-card:last-child{padding:20px 24px}.growth-grid > .growth-card:last-child .score-ring{flex:0 0 auto}@media(max-width:560px){.score-wrap{grid-template-columns:1fr;text-align:center}.score-ring{margin:0 auto}.growth-grid > .growth-card:last-child{padding:20px}}.dashboard-panel{background:#fff;border:1px solid var(--aml-line);border-radius:20px;padding:18px}.dashboard-tabs{border-bottom:1px solid var(--aml-line);gap:6px}.dashboard-tabs .nav-link{border:0;border-radius:10px;color:var(--aml-muted);font-weight:700}.dashboard-tabs .nav-link.active{background:#eeecff;color:var(--aml-brand)}.conversion-note{font-size:.8rem;color:var(--aml-muted)}@media(max-width:1100px){.dashboard-metrics{grid-template-columns:repeat(3,1fr)}.growth-grid{grid-template-columns:1fr}}@media(max-width:700px){.aml-content.dashboard-shell{padding:14px}.dashboard-metrics{grid-template-columns:repeat(2,1fr)}.quick-action-grid{grid-template-columns:1fr}.dashboard-command{padding:22px}.metric-tile strong{font-size:1.45rem}}


/* ===== extracted from dashboard/index.php #3 ===== */
.aml-token-button{background:linear-gradient(135deg,#ffd84d,#ffb800)!important;border-color:#f3ad00!important;color:#382700!important;font-weight:900!important}
.aml-token-wallet-card{position:relative;overflow:hidden;border-color:#e3ddff!important;background:linear-gradient(135deg,#fff 0%,#f8f7ff 55%,#edf7ff 100%)!important}
.aml-token-wallet-card:after{content:'';position:absolute;right:-70px;top:-85px;width:210px;height:210px;border-radius:50%;background:rgba(99,91,255,.08);pointer-events:none}
.aml-token-wallet-grid{position:relative;z-index:1;display:grid;grid-template-columns:minmax(0,1.25fr) repeat(3,minmax(120px,.55fr));gap:12px;align-items:stretch}
.aml-token-wallet-main,.aml-token-stat{padding:16px;border:1px solid #e4e8f1;border-radius:16px;background:rgba(255,255,255,.84)}
.aml-token-wallet-main{display:flex;align-items:center;gap:14px}.aml-token-wallet-icon{display:grid;place-items:center;flex:0 0 54px;width:54px;height:54px;border-radius:17px;background:linear-gradient(135deg,#635bff,#1677ed);color:#fff;font-size:1.25rem;box-shadow:0 10px 24px rgba(74,78,190,.24)}
.aml-token-wallet-main strong,.aml-token-wallet-main span,.aml-token-stat strong,.aml-token-stat span{display:block}.aml-token-wallet-main strong{font-size:1.6rem;color:#172033}.aml-token-wallet-main span,.aml-token-stat span{color:#687086;font-size:.78rem}.aml-token-stat strong{font-size:1.25rem;color:#172033;margin-top:4px}
.aml-token-wallet-actions{position:relative;z-index:1;display:flex;gap:9px;flex-wrap:wrap;margin-top:13px}.aml-token-wallet-actions .btn{border-radius:12px;font-weight:800}.aml-token-wallet-note{position:relative;z-index:1;margin:12px 0 0;color:#687086;font-size:.78rem;line-height:1.45}
@media(max-width:900px){.aml-token-wallet-grid{grid-template-columns:1fr 1fr}.aml-token-wallet-main{grid-column:1/-1}}
@media(max-width:560px){.aml-token-wallet-grid{grid-template-columns:1fr}.aml-token-wallet-main{grid-column:auto}.aml-token-wallet-actions .btn{width:100%}}


/* ===== extracted from dashboard/index.php #4 ===== */
/* Dashboard layout and contrast corrections */
.dashboard-main,
.dashboard-command-main,
.dashboard-command-side,
.growth-card,
.metric-tile {
    min-width: 0;
}

.dashboard-command {
    display: block;
    overflow: hidden;
    isolation: isolate;
}

.dashboard-command-main {
    width: 100%;
    max-width: none;
}

.dashboard-command h1,
.dashboard-command h2,
.dashboard-command h3,
.dashboard-command h4,
.dashboard-command h5,
.dashboard-command h6,
.dashboard-command p,
.dashboard-command label,
.dashboard-command li,
.dashboard-command span:not(.plan-chip),
.dashboard-command strong,
.dashboard-command small {
    color: #ffffff !important;
}

.dashboard-command p,
.dashboard-command small {
    color: rgba(255,255,255,.82) !important;
}

.dashboard-command .dashboard-kicker {
    color: #c7c5ff !important;
}

.dashboard-command-side {
    width: 100%;
    margin-top: 24px;
    padding: 18px 20px;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 16px;
    background: rgba(255,255,255,.10);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

/* Normalise checklist output generated by CreatorChecklist() */
.dashboard-command-side > * {
    width: 100%;
    max-width: none !important;
    margin: 0 !important;
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
}

.dashboard-command-side ul,
.dashboard-command-side ol {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 18px;
    margin: 0 !important;
    padding: 0 !important;
    list-style: none;
}

.dashboard-command-side li {
    min-width: 0;
    margin: 0 !important;
    padding: 0 !important;
    line-height: 1.45;
}

.dashboard-command-side a:not(.btn) {
    color: #ffffff !important;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.dashboard-command .btn-outline-primary {
    color: #ffffff !important;
    border-color: rgba(255,255,255,.72) !important;
    background: rgba(255,255,255,.08) !important;
}

.dashboard-command .btn-outline-primary:hover,
.dashboard-command .btn-outline-primary:focus {
    color: #172033 !important;
    background: #ffffff !important;
    border-color: #ffffff !important;
}

.plan-chip {
    color: #ffffff !important;
}

/* Keep the page columns usable rather than squeezing the main workspace */
.aml-three-col {
    align-items: start;
}

.dashboard-main {
    width: 100%;
    min-width: 0;
}

.aml-right-rail {
    min-width: 280px;
}

.metric-tile,
.growth-card,
.dashboard-panel,
.rail-panel {
    overflow-wrap: anywhere;
}

.metric-tile small,
.growth-card small,
.growth-card p,
.dashboard-panel p {
    line-height: 1.5;
}

@media (max-width: 1250px) {
    .aml-three-col {
        grid-template-columns: minmax(0, 1fr) !important;
    }

    .aml-right-rail {
        width: 100%;
        min-width: 0;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px;
    }
}

@media (max-width: 760px) {
    .dashboard-command-side ul,
    .dashboard-command-side ol,
    .aml-right-rail {
        grid-template-columns: 1fr;
    }

    .dashboard-command-side {
        padding: 16px;
    }

    .dashboard-actions .btn,
    .dashboard-actions .plan-chip {
        width: 100%;
        text-align: center;
    }
}


/* ===== extracted from dashboard/index.php #5 ===== */
.dashboard-manage{background:#fff;border:1px solid var(--aml-line);border-radius:20px;padding:22px;box-shadow:0 8px 28px rgba(28,39,67,.05)}
.manage-heading{margin-bottom:16px}.manage-heading p{color:var(--aml-muted)}
.manage-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:12px}
.manage-grid>a{display:flex;gap:12px;align-items:flex-start;min-width:0;padding:16px;border:1px solid var(--aml-line);border-radius:15px;background:var(--aml-soft);color:var(--aml-ink);text-decoration:none;transition:.18s ease}
.manage-grid>a:hover{transform:translateY(-2px);border-color:#b9b5ff;box-shadow:0 8px 18px rgba(28,39,67,.08)}
.manage-grid i{width:34px;height:34px;display:grid;place-items:center;border-radius:10px;background:#eceaff;color:var(--aml-brand);flex:0 0 auto}
.manage-grid a[href="/dashboard/referrals/"]{
  border-color:#d8d4ff;
  background:linear-gradient(135deg,#f8f7ff,#eef6ff);
}
.manage-grid a[href="/dashboard/referrals/"] i{
  background:linear-gradient(135deg,#635bff,#1677ed);
  color:#fff;
}
.manage-grid span{min-width:0}.manage-grid strong,.manage-grid small{display:block}.manage-grid small{margin-top:4px;color:var(--aml-muted);line-height:1.4}
.micro-buy-form{margin:0}.revenue-item .aml-paypal-form{flex:0 0 auto}.revenue-item .btn{white-space:nowrap}
@media(max-width:1050px){.manage-grid{grid-template-columns:repeat(2,minmax(0,1fr))}}
@media(max-width:600px){.manage-grid{grid-template-columns:1fr}}


/* ===== extracted from dashboard/index.php #6 ===== */
.aml-sidebar{display:flex;flex-direction:column;min-height:100vh;position:sticky;top:0}.aml-nav{flex:1 1 auto}.aml-logout{margin-top:auto}.aml-create{cursor:pointer}
.profile-editor-shell{display:grid;grid-template-columns:320px minmax(0,1fr);gap:22px}.media-uploader-card,.profile-form-card,.profile-tip-card{background:#fff;border:1px solid #e7eaf0;border-radius:22px;box-shadow:0 10px 32px rgba(25,35,63,.06)}.media-uploader-card{padding:22px}.profile-tip-card{padding:18px 20px}.profile-tip-card h4{margin:0 0 10px;color:#172033}.profile-tip-card ul{margin:0;padding-left:18px;color:#687086}.profile-tip-card li+li{margin-top:8px}.media-card-header h3,.profile-form-header h3{margin:6px 0 8px;color:#172033;letter-spacing:-.03em}.media-card-header p,.profile-form-header p{color:#687086;margin:0}.section-eyebrow{display:inline-block;text-transform:uppercase;letter-spacing:.12em;font-size:.72rem;font-weight:800;color:#635bff}.media-preview-card{display:flex;align-items:center;gap:14px;padding:14px;border:1px solid #edf1f7;border-radius:18px;background:#f8faff;margin:18px 0 12px}.media-preview-card strong{display:block;color:#172033}.media-preview-card small{display:block;color:#687086}.background-preview-image{width:92px;height:92px;object-fit:cover;border-radius:16px;border:1px solid #dfe6f2}.aml-file-input{background:#fff;border:1px dashed #cdd6e4;border-radius:14px;padding:10px 12px;height:auto}.media-upload-form label,.profile-field label{display:block;font-size:.86rem;font-weight:700;color:#172033;margin-bottom:8px}.media-upload-form .btn{margin-top:10px;border-radius:12px;font-weight:700}.profile-form-card{padding:24px}.profile-form-header{display:flex;justify-content:space-between;gap:12px;align-items:flex-start;margin-bottom:20px;padding-bottom:16px;border-bottom:1px solid #eef2f7}.profile-form-badge{padding:.55rem .85rem;border-radius:999px;background:#eff6ff;color:#1d4ed8;font-weight:700;font-size:.82rem;white-space:nowrap}.profile-form-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:16px 18px}.profile-field{min-width:0}.profile-field.full{grid-column:1/-1}.profile-info-form .form-control{border-radius:14px;border:1px solid #d8dfeb;padding:.88rem 1rem;min-height:48px;box-shadow:none}.profile-info-form textarea.form-control{min-height:120px;resize:vertical}.profile-info-form .form-control:focus{border-color:#7c7bf6;box-shadow:0 0 0 4px rgba(99,91,255,.11)}.profile-field small{display:block;color:#7a8499;margin-top:6px}.disabled-field .form-control{background:#f4f6fb;color:#7a8499;cursor:not-allowed}.profile-form-actions{display:flex;justify-content:flex-start;margin-top:22px;padding-top:18px;border-top:1px solid #eef2f7}.profile-form-actions .btn{min-width:240px;border-radius:14px;font-weight:800}.dashboard-tabs{position:sticky;top:0;background:#fff;z-index:8;padding-bottom:8px}.tab-content{padding-top:18px}.save-status-modal .modal-content{border-radius:18px;border:0;box-shadow:0 24px 60px rgba(18,26,45,.2)}.save-status-icon{width:64px;height:64px;border-radius:50%;display:grid;place-items:center;margin:0 auto 12px;font-size:1.5rem}.save-status-icon.success{background:#eafaf3;color:#159a62}.save-status-icon.error{background:#fff1f2;color:#dc2626}.save-status-icon.info{background:#eef2ff;color:#4338ca}.save-status-body{text-align:center;padding:10px 12px 6px}.save-status-body h4{margin:0 0 8px;color:#172033}.save-status-body p{margin:0;color:#687086}.revenue-item form{margin:0}.revenue-item .btn{min-width:110px}.modal .modal-content{border-radius:18px}.modal .modal-body h5{font-size:1.35rem;color:#172033;margin-bottom:10px}.modal .form-group label{font-weight:700;color:#172033}.modal .form-group .col-lg-6{max-width:100%;flex:0 0 100%}.modal .form-group label.col-lg-6{max-width:100%;flex:0 0 100%;margin-bottom:6px}.modal .btn{border-radius:12px;font-weight:700}.dashboard-panel .table td,.dashboard-panel .table th{vertical-align:middle}@media(max-width:1100px){.profile-editor-shell{grid-template-columns:1fr}.profile-form-header{flex-direction:column}.profile-form-badge{white-space:normal}}@media(max-width:700px){.profile-form-grid{grid-template-columns:1fr}.profile-form-actions .btn{width:100%;min-width:0}.media-uploader-card,.profile-form-card,.profile-tip-card{border-radius:18px}.dashboard-tabs{overflow:auto;flex-wrap:nowrap}}


/* ===== extracted from dashboard/index.php #7 ===== */
html,body{margin:0!important;padding:0!important;min-height:100%!important}



.aml-topbar{display:none!important}
.aml-content.dashboard-shell{display:block!important;width:100%!important;max-width:none!important;min-height:0!important;height:auto!important;margin:0!important;padding:18px 22px 36px!important;position:static!important;transform:none!important}
.aml-three-col{display:grid!important;grid-template-columns:minmax(0,1fr) 300px!important;gap:18px!important;width:100%!important;max-width:none!important;min-height:0!important;height:auto!important;margin:0!important;padding:0!important;align-items:start!important;align-content:start!important;justify-content:stretch!important}
.dashboard-main,.aml-right-rail{align-self:start!important;margin:0!important;padding:0!important;min-height:0!important;transform:none!important}
.dashboard-main{min-width:0!important;width:100%!important}
.aml-right-rail{width:300px!important;min-width:300px!important;max-width:300px!important}
.dashboard-command{margin-top:0!important}
#_DashResult:empty{display:none!important;height:0!important;margin:0!important;padding:0!important}
@media(max-width:1250px){.aml-three-col{grid-template-columns:1fr!important}.aml-right-rail{width:100%!important;min-width:0!important;max-width:none!important;grid-template-columns:repeat(2,minmax(0,1fr))!important}}
@media(max-width:991.98px){body.aml-app{padding:0 0 70px!important;overflow:auto!important}.aml-sidebar{top:auto!important;right:0!important;width:auto!important;height:70px!important;bottom:0!important;overflow:hidden!important}.aml-main{position:relative!important;inset:auto!important;width:100%!important;min-height:calc(100vh - 70px)!important;overflow:visible!important}.aml-content.dashboard-shell{padding:12px!important}.aml-right-rail{display:none!important}}


/* ===== extracted from dashboard/index.php #8 ===== */
.dashboard-footer-wrap{margin-top:28px;width:100%;clear:both}
.dashboard-footer-wrap footer{position:relative!important;inset:auto!important;width:100%!important;margin:0!important}
@media(max-width:991.98px){.dashboard-footer-wrap{margin-bottom:72px}}


/* ===== extracted from dashboard/index.php #9 ===== */
#saveStatusModal{z-index:13060!important}#saveStatusModal+.modal-backdrop{z-index:13050!important}#saveStatusModal .modal-dialog{max-width:440px}#saveStatusModal .modal-content{border:0!important;border-radius:22px!important;overflow:hidden;box-shadow:0 28px 80px rgba(15,23,42,.28)!important}#saveStatusModal .modal-body{padding:30px 28px 24px!important}#saveStatusModal .save-status-icon{width:72px;height:72px;border-radius:50%;display:grid;place-items:center;margin:0 auto 16px;font-size:2rem}#saveStatusModal .save-status-icon.success{background:#e8f8ef;color:#12864f}#saveStatusModal .save-status-icon.error{background:#fff0f1;color:#cf2438}#saveStatusModal .save-status-icon.info{background:#eef3ff;color:#3157d5}#saveStatusModal .save-status-body h4{font-size:1.35rem;margin-bottom:8px}#saveStatusModal .save-status-body p{line-height:1.55;overflow-wrap:anywhere}#saveStatusModal .btn{min-width:120px}.aml-save-busy{pointer-events:none;opacity:.68}


/* ===== extracted from dashboard/index.php #10 ===== */
:root{
  --aml-shell-width:240px;
  --aml-shell-mobile-height:70px;
}
html,body{
  margin:0!important;
  padding:0!important;
  min-height:100%!important;
}
body.aml-app{
  margin:0!important;
  padding:0 0 0 var(--aml-shell-width)!important;
  min-height:100vh!important;
  overflow:hidden!important;
  background:#f5f7fb!important;
}
body.aml-app>.aml-sidebar,
.aml-sidebar{
  position:fixed!important;
  z-index:1040!important;
  top:0!important;
  bottom:0!important;
  left:0!important;
  right:auto!important;
  width:var(--aml-shell-width)!important;
  height:100vh!important;
  min-height:0!important;
  margin:0!important;
  transform:none!important;
}
body.aml-app>.aml-main,
.aml-main{
  position:fixed!important;
  top:0!important;
  right:0!important;
  bottom:0!important;
  left:var(--aml-shell-width)!important;
  width:calc(100% - var(--aml-shell-width))!important;
  max-width:none!important;
  height:auto!important;
  min-height:0!important;
  margin:0!important;
  padding:0!important;
  overflow-x:hidden!important;
  overflow-y:auto!important;
  transform:none!important;
  background:#f5f7fb!important;
}
.aml-main>.aml-topbar{
  display:none!important;
  height:0!important;
  min-height:0!important;
  margin:0!important;
  padding:0!important;
}
.aml-main>.aml-content.dashboard-shell{
  position:relative!important;
  inset:auto!important;
  display:block!important;
  width:100%!important;
  max-width:none!important;
  min-height:0!important;
  height:auto!important;
  margin:0!important;
  padding:14px 18px 34px!important;
  transform:none!important;
}
.aml-content.dashboard-shell>.aml-three-col{
  position:relative!important;
  inset:auto!important;
  display:grid!important;
  grid-template-columns:minmax(0,1fr) 300px!important;
  gap:18px!important;
  width:100%!important;
  max-width:none!important;
  min-height:0!important;
  height:auto!important;
  margin:0!important;
  padding:0!important;
  align-items:start!important;
  align-content:start!important;
  justify-content:stretch!important;
  transform:none!important;
}
.dashboard-main{
  position:relative!important;
  left:auto!important;
  top:auto!important;
  width:100%!important;
  min-width:0!important;
  max-width:none!important;
  margin:0!important;
  padding:0!important;
  transform:none!important;
}
.dashboard-command{
  position:relative!important;
  left:auto!important;
  top:auto!important;
  width:100%!important;
  max-width:none!important;
  margin:0 0 16px!important;
  transform:none!important;
}
.aml-right-rail{
  position:relative!important;
  left:auto!important;
  top:auto!important;
  width:300px!important;
  min-width:300px!important;
  max-width:300px!important;
  margin:0!important;
  transform:none!important;
}
#_DashResult:empty{
  display:none!important;
  width:0!important;
  height:0!important;
  min-height:0!important;
  margin:0!important;
  padding:0!important;
}
@media(max-width:1250px){
  .aml-content.dashboard-shell>.aml-three-col{
    grid-template-columns:minmax(0,1fr)!important;
  }
  .aml-right-rail{
    width:100%!important;
    min-width:0!important;
    max-width:none!important;
  }
}
@media(max-width:991.98px){
  body.aml-app{
    padding:0 0 var(--aml-shell-mobile-height)!important;
    overflow:auto!important;
  }
  body.aml-app>.aml-main,
  .aml-main{
    position:relative!important;
    inset:auto!important;
    width:100%!important;
    min-height:calc(100vh - var(--aml-shell-mobile-height))!important;
    overflow:visible!important;
  }
  .aml-main>.aml-content.dashboard-shell{
    padding:12px!important;
  }
  .aml-right-rail{
    display:none!important;
  }
}


/* ===== extracted from dashboard/index.php #11 ===== */
@media (max-width: 991.98px) {
  html,
  body {
    width:100%!important;
    max-width:100%!important;
    min-height:100%!important;
    margin:0!important;
    padding:0!important;
    overflow-x:hidden!important;
  }

  body.aml-app {
    width:100%!important;
    max-width:100%!important;
    min-height:100vh!important;
    margin:0!important;
    padding:0 0 70px!important;
    overflow-x:hidden!important;
    overflow-y:auto!important;
    background:#f5f7fb!important;
  }

  body.aml-app > .aml-sidebar,
  .aml-sidebar {
    position:fixed!important;
    z-index:1200!important;
    top:auto!important;
    right:0!important;
    bottom:0!important;
    left:0!important;
    display:block!important;
    width:100%!important;
    max-width:100%!important;
    min-width:0!important;
    height:70px!important;
    min-height:70px!important;
    max-height:70px!important;
    margin:0!important;
    padding:5px 8px!important;
    overflow:hidden!important;
    border:0!important;
    border-top:1px solid #dbe6f2!important;
    background:#fff!important;
    box-shadow:0 -10px 28px rgba(24,34,56,.08)!important;
    transform:none!important;
  }

  .aml-sidebar .aml-brand,
  .aml-sidebar .aml-user-mini,
  .aml-sidebar .aml-create,
  .aml-sidebar .aml-logout {
    display:none!important;
  }

  .aml-sidebar .aml-nav {
    display:grid!important;
    grid-template-columns:repeat(5,minmax(0,1fr))!important;
    grid-template-rows:1fr!important;
    gap:3px!important;
    width:100%!important;
    height:60px!important;
    min-height:60px!important;
    margin:0!important;
    padding:0!important;
    align-items:stretch!important;
    align-content:stretch!important;
  }

  .aml-sidebar .aml-nav a {
    display:flex!important;
    flex-direction:column!important;
    align-items:center!important;
    justify-content:center!important;
    gap:4px!important;
    width:100%!important;
    min-width:0!important;
    height:60px!important;
    min-height:60px!important;
    margin:0!important;
    padding:5px 2px!important;
    border-radius:10px!important;
    color:#172033!important;
    font-size:11px!important;
    line-height:1.05!important;
    font-weight:800!important;
    text-align:center!important;
    white-space:normal!important;
    overflow:hidden!important;
  }

  .aml-sidebar .aml-nav a:nth-child(n+6) {
    display:none!important;
  }

  .aml-sidebar .aml-nav a i {
    display:block!important;
    width:auto!important;
    min-width:0!important;
    margin:0!important;
    font-size:20px!important;
    line-height:1!important;
    text-align:center!important;
  }

  .aml-sidebar .aml-nav a span {
    display:block!important;
    width:100%!important;
    overflow:hidden!important;
    text-overflow:ellipsis!important;
    white-space:nowrap!important;
  }

  .aml-sidebar .aml-nav a.active {
    background:#edf4ff!important;
    color:#005cff!important;
  }

  .aml-sidebar .aml-nav b {
    display:none!important;
  }

  body.aml-app > .aml-main,
  .aml-main {
    position:relative!important;
    z-index:1!important;
    top:auto!important;
    right:auto!important;
    bottom:auto!important;
    left:auto!important;
    display:block!important;
    width:100%!important;
    max-width:100%!important;
    min-width:0!important;
    min-height:calc(100vh - 70px)!important;
    height:auto!important;
    margin:0!important;
    padding:0!important;
    overflow:visible!important;
    transform:none!important;
    background:#f5f7fb!important;
  }

  .aml-main > .aml-topbar {
    display:none!important;
  }

  .aml-main > .aml-content.dashboard-shell,
  .aml-content.dashboard-shell {
    position:relative!important;
    inset:auto!important;
    display:block!important;
    width:100%!important;
    max-width:100%!important;
    min-width:0!important;
    min-height:0!important;
    height:auto!important;
    margin:0!important;
    padding:12px 12px 90px!important;
    overflow:visible!important;
    transform:none!important;
  }

  .aml-content.dashboard-shell > .aml-three-col,
  .aml-three-col {
    position:relative!important;
    inset:auto!important;
    display:block!important;
    width:100%!important;
    max-width:100%!important;
    min-width:0!important;
    min-height:0!important;
    height:auto!important;
    margin:0!important;
    padding:0!important;
    transform:none!important;
  }

  .dashboard-main,
  .dashboard-command,
  .dashboard-panel,
  .growth-card,
  .metric-tile,
  .dashboard-metrics,
  .growth-grid,
  .quick-action-grid {
    position:relative!important;
    left:auto!important;
    right:auto!important;
    top:auto!important;
    width:100%!important;
    max-width:100%!important;
    min-width:0!important;
    margin-left:0!important;
    margin-right:0!important;
    transform:none!important;
  }

  .dashboard-command {
    padding:22px!important;
    margin-bottom:14px!important;
    border-radius:22px!important;
  }

  .dashboard-command h1 {
    font-size:clamp(2rem,10vw,3rem)!important;
    line-height:1.05!important;
    overflow-wrap:anywhere!important;
  }

  .dashboard-actions {
    display:grid!important;
    grid-template-columns:1fr 1fr!important;
    gap:9px!important;
    width:100%!important;
  }

  .dashboard-actions .btn,
  .dashboard-actions .plan-chip {
    width:100%!important;
    min-width:0!important;
    margin:0!important;
    text-align:center!important;
  }

  .dashboard-actions .plan-chip {
    grid-column:1/-1!important;
  }

  .dashboard-metrics {
    display:grid!important;
    grid-template-columns:repeat(2,minmax(0,1fr))!important;
    gap:10px!important;
  }

  .metric-tile {
    padding:15px!important;
  }

  .metric-tile strong {
    font-size:1.45rem!important;
  }

  .quick-action-grid,
  .growth-grid {
    display:grid!important;
    grid-template-columns:1fr!important;
    gap:10px!important;
  }

  .dashboard-panel {
    padding:14px!important;
    overflow:hidden!important;
  }

  .dashboard-tabs {
    display:flex!important;
    flex-wrap:nowrap!important;
    width:100%!important;
    overflow-x:auto!important;
    -webkit-overflow-scrolling:touch!important;
    scrollbar-width:none!important;
  }

  .dashboard-tabs::-webkit-scrollbar {
    display:none!important;
  }

  .dashboard-tabs .nav-link {
    flex:0 0 auto!important;
    white-space:nowrap!important;
  }

  .dashboard-panel .table-responsive,
  .dashboard-panel table {
    max-width:100%!important;
  }

  .dashboard-panel .table-responsive {
    overflow-x:auto!important;
    -webkit-overflow-scrolling:touch!important;
  }

  .aml-right-rail {
    display:none!important;
  }

  .dashboard-footer-wrap {
    width:100%!important;
    max-width:100%!important;
    margin:24px 0 0!important;
    padding:0!important;
    overflow:hidden!important;
  }

  .dashboard-footer-wrap footer {
    position:relative!important;
    inset:auto!important;
    width:100%!important;
    max-width:100%!important;
    margin:0!important;
    transform:none!important;
  }
}

@media (max-width: 480px) {
  .dashboard-metrics {
    grid-template-columns:1fr 1fr!important;
  }

  .dashboard-command {
    padding:20px!important;
  }

  .dashboard-actions {
    grid-template-columns:1fr!important;
  }

  .dashboard-actions .plan-chip {
    grid-column:auto!important;
  }
}


/* ===== extracted from dashboard/index.php #12 ===== */
.dashboard-workspace{border:1px solid var(--aml-line);border-radius:22px;background:#fff;box-shadow:0 10px 34px rgba(28,39,67,.06);overflow:hidden}
.workspace-heading{display:flex;justify-content:space-between;align-items:center;gap:16px;padding:20px 22px 16px;border-bottom:1px solid #edf1f6}
.workspace-heading h2{color:var(--aml-ink);font-weight:850;letter-spacing:-.025em}.workspace-heading p{color:var(--aml-muted)}
.dashboard-tab-shell{position:sticky;top:0;z-index:20;width:100%;padding:10px 12px;border-bottom:1px solid #e8edf4;background:rgba(255,255,255,.97);backdrop-filter:blur(12px)}
.dashboard-tabs{position:static!important;display:flex!important;flex-wrap:nowrap!important;gap:6px!important;width:100%!important;margin:0!important;padding:0!important;overflow-x:auto!important;overflow-y:hidden!important;border:0!important;scrollbar-width:none!important;-webkit-overflow-scrolling:touch!important}
.dashboard-tabs::-webkit-scrollbar{display:none!important}
.dashboard-tabs .nav-link{display:inline-flex!important;align-items:center!important;justify-content:center!important;gap:8px!important;flex:1 0 auto!important;min-height:44px!important;margin:0!important;padding:10px 14px!important;border:1px solid transparent!important;border-radius:12px!important;background:transparent!important;color:#687086!important;font-size:.88rem!important;line-height:1!important;font-weight:800!important;white-space:nowrap!important;transition:.18s ease!important}
.dashboard-tabs .nav-link i{font-size:.95rem}
.dashboard-tabs .nav-link:hover{border-color:#dfe4ee!important;background:#f7f9fd!important;color:#354158!important;transform:translateY(-1px)!important}
.dashboard-tabs .nav-link.active{border-color:#d8d4ff!important;background:#eeecff!important;color:#5145cd!important;box-shadow:0 5px 14px rgba(81,69,205,.10)!important}
.dashboard-tabs .dashboard-danger-tab{color:#9f3c4c!important}
.dashboard-tabs .dashboard-danger-tab.active{border-color:#ffd1d8!important;background:#fff1f3!important;color:#b4233b!important}
.dashboard-workspace .dashboard-panel{border:0!important;border-radius:0!important;box-shadow:none!important;padding:22px!important}
.dashboard-workspace .tab-pane{min-height:260px;animation:amlTabReveal .18s ease}
@keyframes amlTabReveal{from{opacity:.4;transform:translateY(4px)}to{opacity:1;transform:none}}
.manage-grid .dashboard-tab-trigger,.quick-action-grid .dashboard-tab-trigger{cursor:pointer}
.manage-grid a:focus-visible,.quick-action:focus-visible,.dashboard-tabs .nav-link:focus-visible{outline:3px solid rgba(99,91,255,.25)!important;outline-offset:2px!important}
@media(max-width:991.98px){
  .workspace-heading{align-items:flex-start;flex-direction:column;padding:18px 16px 14px}
  .workspace-heading .btn{width:100%}
  .dashboard-tab-shell{top:0!important;padding:8px 10px!important}
  .dashboard-tabs .nav-link{flex:0 0 auto!important;min-width:92px!important;min-height:50px!important;flex-direction:column!important;gap:4px!important;padding:7px 11px!important;font-size:.76rem!important}
  .dashboard-tabs .nav-link i{font-size:1rem!important}
  .dashboard-workspace .dashboard-panel{padding:15px!important}
}


/* ===== extracted from dashboard/index.php #13 ===== */
.studio-pane-head{display:flex;justify-content:space-between;align-items:flex-start;gap:18px;margin-bottom:22px}
.studio-pane-head h3{margin:.25rem 0 .45rem;color:var(--aml-ink);font-weight:900;letter-spacing:-.025em}
.studio-pane-head p{max-width:720px;margin:0;color:var(--aml-muted)}
.studio-kicker{display:block;color:var(--aml-brand);font-size:.72rem;font-weight:900;letter-spacing:.12em;text-transform:uppercase}
.provider-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:12px}
.provider-card,.studio-feature,.business-action{appearance:none;width:100%;border:1px solid #e2e7f0;border-radius:16px;background:#fff;color:#172033;text-align:left;cursor:pointer;transition:.18s ease}
.provider-card{display:grid;grid-template-columns:42px minmax(0,1fr);align-items:center;gap:10px;padding:15px}
.provider-card i{grid-row:1/3;display:grid;place-items:center;width:42px;height:42px;border-radius:12px;background:#f0efff;color:#5549d7;font-size:1.2rem}
.provider-card strong,.provider-card small{display:block}.provider-card small{color:#687086}
.provider-card:hover,.studio-feature:hover,.business-action:hover{border-color:#cfc9ff;background:#faf9ff;transform:translateY(-2px);box-shadow:0 10px 24px rgba(50,45,120,.08)}
.studio-feature-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:13px}
.studio-feature{padding:18px}.studio-feature i{display:grid;place-items:center;width:44px;height:44px;margin-bottom:13px;border-radius:13px;background:#f0efff;color:#5549d7;font-size:1.25rem}.studio-feature strong,.studio-feature small{display:block}.studio-feature small{margin-top:5px;color:#687086}
.business-action-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:11px}
.business-action{display:grid;grid-template-columns:46px minmax(0,1fr);align-items:center;gap:12px;padding:15px}.business-action>i{display:grid;place-items:center;width:46px;height:46px;border-radius:13px;background:#edf4ff;color:#005cff;font-size:1.1rem}.business-action strong,.business-action small{display:block}.business-action small{margin-top:4px;color:#687086}
.studio-callout{display:flex;align-items:flex-start;gap:13px;margin-top:18px;padding:15px;border:1px solid #dfe4ee;border-radius:15px;background:#f8faff}.studio-callout>i{color:#5549d7;font-size:1.25rem}.studio-callout strong,.studio-callout span{display:block}.studio-callout span{margin-top:3px;color:#687086}
.media-studio-modal{border:0!important;border-radius:22px!important;overflow:hidden}.media-studio-modal .modal-header{align-items:flex-start;padding:22px 24px;border-bottom:1px solid #e8edf4}.media-studio-modal .modal-body{padding:22px 24px}.media-studio-modal .modal-footer{padding:15px 24px;border-top:1px solid #e8edf4}
.media-form-grid{display:grid;grid-template-columns:1fr 1fr;gap:14px}.media-form-grid .full{grid-column:1/-1}.media-form-grid label{font-weight:800;color:#273248}.media-form-grid .form-control{min-height:46px;border-radius:11px}
.studio-access{display:flex;align-items:flex-start;gap:9px;min-height:46px;padding:11px 12px;border:1px solid #dfe4ee;border-radius:11px;background:#f8faff;color:#48556c}.studio-access i{margin-top:2px;color:#16a36a}
.media-preview{display:flex;align-items:center;gap:14px;margin-top:8px;padding:16px;border:1px solid #dcd8ff;border-radius:16px;background:#f7f6ff}.media-preview-icon{display:grid;place-items:center;flex:0 0 48px;width:48px;height:48px;border-radius:14px;background:#6257e8;color:#fff;font-size:1.2rem}.media-preview strong,.media-preview span{display:block}.media-preview span{margin-top:4px;color:#687086;overflow-wrap:anywhere}
@media(max-width:991.98px){.provider-grid,.studio-feature-grid{grid-template-columns:repeat(2,minmax(0,1fr))}}
@media(max-width:700px){.studio-pane-head{flex-direction:column}.studio-pane-head .btn{width:100%}.provider-grid,.studio-feature-grid,.business-action-grid,.media-form-grid{grid-template-columns:1fr}.media-form-grid .full{grid-column:auto}.media-studio-modal .modal-header,.media-studio-modal .modal-body,.media-studio-modal .modal-footer{padding-left:17px;padding-right:17px}}


/* ===== extracted from dashboard/index.php #14 ===== */
.analytics-detail-head{display:flex;justify-content:space-between;align-items:flex-start;gap:16px;margin-bottom:18px}.analytics-detail-head h2{color:var(--aml-ink);font-weight:900}.analytics-detail-head p{color:var(--aml-muted)}
.top-links-list{display:grid;gap:9px}.top-link-row{display:grid;grid-template-columns:34px minmax(0,1fr) auto;align-items:center;gap:12px;padding:12px;border:1px solid #e8edf4;border-radius:13px;background:#fff}.top-link-position{display:grid;place-items:center;width:34px;height:34px;border-radius:10px;background:#eeecff;color:#5145cd;font-weight:900}.top-link-copy{min-width:0}.top-link-copy strong{display:block;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.top-link-bar{height:6px;margin-top:7px;overflow:hidden;border-radius:999px;background:#edf0f6}.top-link-bar span{display:block;height:100%;border-radius:999px;background:linear-gradient(90deg,#635bff,#0ea5e9)}.top-link-clicks{font-weight:850;color:#344158;white-space:nowrap}
.analytics-locked-preview{display:grid;grid-template-columns:220px minmax(0,1fr);align-items:center;gap:22px;padding:20px;border:1px solid #e2defe;border-radius:16px;background:#f8f7ff}.locked-chart{display:flex;align-items:flex-end;gap:12px;height:110px;padding:12px;border-radius:13px;background:#fff}.locked-chart span{flex:1;border-radius:6px 6px 2px 2px;background:linear-gradient(180deg,#877fff,#d5d1ff);filter:blur(1px)}
.dashboard-empty-state{display:flex;flex-direction:column;align-items:center;padding:28px;text-align:center;color:#687086}.dashboard-empty-state i{margin-bottom:10px;font-size:1.8rem;color:#635bff}.dashboard-empty-state strong,.dashboard-empty-state span{display:block}
.benefit-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:10px}.benefit-item{appearance:none;display:grid;grid-template-columns:32px minmax(0,1fr) auto;align-items:center;gap:9px;width:100%;padding:12px;border:1px solid #e4e9f2;border-radius:13px;background:#fff;text-align:left}.benefit-item i{display:grid;place-items:center;width:32px;height:32px;border-radius:10px}.benefit-item span{font-weight:850}.benefit-item small{white-space:nowrap}.benefit-item.active i{background:#e9f8f1;color:#0b8b5d}.benefit-item.active small{color:#0b8b5d}.benefit-item.locked{cursor:pointer}.benefit-item.locked i{background:#f2f4f8;color:#687086}.benefit-item.locked small{color:#5145cd}.benefit-item.locked:hover{border-color:#cbc6ff;background:#faf9ff}
.limit-upgrade-button{appearance:none;margin-left:5px;padding:0;border:0;background:transparent;color:#5145cd;font-weight:900;text-decoration:underline;cursor:pointer}
.upgrade-prompt-modal{position:relative;padding:30px;border:0!important;border-radius:24px!important;text-align:center;overflow:hidden}.upgrade-close{position:absolute;top:12px;right:15px}.upgrade-icon{display:grid;place-items:center;width:64px;height:64px;margin:0 auto 16px;border-radius:20px;background:linear-gradient(135deg,#635bff,#0ea5e9);color:#fff;font-size:1.5rem}.upgrade-prompt-modal h3{margin:.35rem 0 .55rem;font-weight:900}.upgrade-prompt-modal p{color:#687086}.upgrade-actions{display:grid;grid-template-columns:1fr 1fr;gap:9px;margin:20px 0 12px}
@media(max-width:900px){.benefit-grid{grid-template-columns:repeat(2,1fr)}.analytics-locked-preview{grid-template-columns:1fr}.locked-chart{height:85px}}@media(max-width:600px){.analytics-detail-head{flex-direction:column}.analytics-detail-head .btn{width:100%}.top-link-row{grid-template-columns:32px minmax(0,1fr)}.top-link-clicks{grid-column:2}.benefit-grid{grid-template-columns:1fr}.upgrade-actions{grid-template-columns:1fr}}


/* ===== extracted from dashboard/index.php #15 ===== */
.appearance-editor-head{display:flex;justify-content:space-between;align-items:flex-start;gap:18px;margin-bottom:22px}.appearance-editor-head h3{margin:.25rem 0 .4rem;font-weight:900;color:var(--aml-ink)}.appearance-editor-head p{max-width:720px;margin:0;color:var(--aml-muted)}
.appearance-layout{display:grid;grid-template-columns:minmax(0,1.2fr) minmax(300px,.8fr);gap:22px;align-items:start}.appearance-controls{min-width:0}.appearance-order-card{display:flex;justify-content:space-between;align-items:center;gap:15px;margin-bottom:15px;padding:15px;border:1px solid #e3e8f1;border-radius:15px;background:#f8faff}.appearance-order-card strong,.appearance-order-card small{display:block}.appearance-order-card small{margin-top:3px;color:#687086}.appearance-select{min-width:210px;margin:0}
.appearance-colour-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:12px}.colour-control{display:block;margin:0;padding:15px;border:1px solid #e3e8f1;border-radius:15px;background:#fff}.colour-control>span,.colour-control>small{display:block}.colour-control>span{font-weight:850;color:#263148}.colour-control>small{min-height:34px;margin:4px 0 11px;color:#687086;font-size:.78rem}.colour-control>div{display:grid;grid-template-columns:58px minmax(0,1fr);align-items:center;gap:11px}.colour-control input[type=color]{width:58px;height:42px;padding:3px;border:1px solid #d8dfeb;border-radius:10px;background:#fff;cursor:pointer}.colour-control output{padding:9px 11px;border:1px solid #e0e6ef;border-radius:10px;background:#f8faff;color:#455268;font-family:ui-monospace,SFMono-Regular,Menlo,monospace;font-size:.82rem;text-transform:uppercase}
.appearance-actions{display:flex;gap:9px;flex-wrap:wrap;margin-top:16px}.appearance-preview-wrap{position:sticky;top:12px}.appearance-preview-label{margin:0 0 8px;color:#687086;font-size:.75rem;font-weight:900;letter-spacing:.1em;text-transform:uppercase}.appearance-preview{padding:18px;border-radius:22px;background:var(--preview-header-bg);color:var(--preview-header-text);box-shadow:0 20px 50px rgba(25,35,60,.16)}.appearance-preview-header{text-align:center;padding:8px 8px 18px}.appearance-preview-avatar{width:66px;height:66px;margin:0 auto 10px;border-radius:50%;background:linear-gradient(135deg,#b9c5ff,#635bff);border:4px solid color-mix(in srgb,var(--preview-header-text) 40%,transparent)}.appearance-preview-header strong,.appearance-preview-header span{display:block}.appearance-preview-header strong{font-size:1.15rem}.appearance-preview-header span{margin-top:4px;opacity:.82;font-size:.78rem}.appearance-preview section{overflow:hidden;border:1px solid color-mix(in srgb,var(--preview-header-text) 38%,transparent);border-radius:16px}.appearance-preview section header{display:flex;align-items:center;gap:10px;padding:13px;background:color-mix(in srgb,var(--preview-header-bg) 88%,var(--preview-header-text) 12%);color:var(--preview-header-text)}.appearance-preview section header i{display:grid;place-items:center;width:34px;height:34px;border-radius:10px;background:color-mix(in srgb,var(--preview-header-text) 16%,transparent)}.appearance-preview section header strong,.appearance-preview section header span{display:block}.appearance-preview section header span{margin-top:2px;opacity:.78;font-size:.7rem}.appearance-preview section>a{display:flex;align-items:center;gap:9px;margin:8px;padding:11px;border-radius:11px;background:var(--preview-list-bg);color:var(--preview-list-text);text-decoration:none;font-size:.82rem;font-weight:800}.appearance-preview section>a.preview-hover{background:var(--preview-hover-bg);color:var(--preview-hover-text)}
@media(max-width:950px){.appearance-layout{grid-template-columns:1fr}.appearance-preview-wrap{position:relative;top:auto}.appearance-preview{max-width:520px;margin:0 auto}}@media(max-width:650px){.appearance-editor-head,.appearance-order-card{align-items:stretch;flex-direction:column}.appearance-editor-head .btn,.appearance-select{width:100%;min-width:0}.appearance-colour-grid{grid-template-columns:1fr}.appearance-actions .btn{width:100%}}


/* ===== extracted from dashboard/index.php #16 ===== */
.btn-live{background:linear-gradient(135deg,#39ff14,#00bd6f)!important;border-color:#28dc28!important;color:#06210b!important;box-shadow:0 10px 24px rgba(57,255,20,.22)!important}.appearance-theme-picker{min-width:min(430px,100%)}.appearance-theme-picker>label{display:block;margin-bottom:6px;font-weight:850}.appearance-theme-picker-row{display:grid;grid-template-columns:minmax(0,1fr) auto;gap:8px}.appearance-theme-picker small{display:block;margin-top:6px;color:#687086;font-size:.76rem}@media(max-width:650px){.appearance-theme-picker-row{grid-template-columns:1fr}}


/* ===== extracted from dashboard/index.php #17 ===== */
.adult-controls-card{
  border:1px solid #ead8df;
  border-radius:20px;
  background:linear-gradient(145deg,#fff,#fff7f9);
  box-shadow:0 8px 28px rgba(60,25,40,.06);
  overflow:hidden;
}
.adult-controls-head{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:18px;
  padding:20px 22px 16px;
  border-bottom:1px solid #f0e1e6;
}
.adult-controls-head h2{
  margin:.25rem 0 .4rem;
  color:#3a1f29;
  font-weight:900;
}
.adult-controls-head p{
  max-width:760px;
  margin:0;
  color:#765f68;
}
.adult-controls-body{
  padding:20px 22px 22px;
}
.adult-control-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:12px;
}
.adult-control-option{
  display:flex;
  align-items:flex-start;
  gap:12px;
  padding:15px;
  border:1px solid #eadde2;
  border-radius:15px;
  background:#fff;
}
.adult-control-option input{
  margin-top:4px;
  transform:scale(1.15);
}
.adult-control-option strong,
.adult-control-option span{
  display:block;
}
.adult-control-option strong{
  color:#3d2830;
}
.adult-control-option span{
  margin-top:4px;
  color:#7b6870;
  font-size:.78rem;
  line-height:1.45;
}
.adult-control-warning{
  display:flex;
  align-items:flex-start;
  gap:10px;
  margin-top:14px;
  padding:13px 14px;
  border:1px solid #efd3dc;
  border-radius:14px;
  background:#fff5f7;
  color:#7a3348;
}
.adult-control-warning i{
  margin-top:2px;
}
.adult-declaration{
  margin-top:14px;
}
.adult-controls-actions{
  display:flex;
  justify-content:flex-end;
  margin-top:16px;
}
.adult-controls-actions .btn{
  min-width:180px;
  border-radius:12px;
  font-weight:850;
}
.adult-controls-status{
  display:none;
  margin-top:14px;
  padding:12px 13px;
  border-radius:12px;
}
.adult-controls-status.is-visible{
  display:block;
}
.adult-controls-status.success{
  border:1px solid #bfe8d4;
  background:#eefaf4;
  color:#0d744d;
}
.adult-controls-status.error{
  border:1px solid #f3cad3;
  background:#fff3f5;
  color:#9f2b42;
}
@media(max-width:760px){
  .adult-controls-head{
    flex-direction:column;
  }
    .adult-control-grid{
    grid-template-columns:1fr;
  }
  .adult-controls-actions .btn{
    width:100%;
  }
}


/* ===== extracted from dashboard/index.php #18 ===== */
.dashboard-command-side{display:none!important}.dashboard-command{padding:24px!important}.dashboard-command h1{font-size:clamp(1.85rem,4vw,2.65rem)!important}.dashboard-command p{margin-bottom:16px!important}.dashboard-actions{margin-top:4px}.dashboard-metrics{grid-template-columns:repeat(4,minmax(0,1fr))!important}.metric-tile{padding:16px!important}.metric-tile strong{font-size:1.55rem!important}
.aml-dashboard-launchpad{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:10px}.aml-dashboard-launchpad>a,.aml-dashboard-launchpad>button{appearance:none;display:flex;align-items:center;gap:11px;min-height:74px;padding:13px;border:1px solid #e2e7f0;border-radius:16px;background:#fff;color:#172033;text-align:left;text-decoration:none!important;box-shadow:0 8px 24px rgba(24,34,58,.05);cursor:pointer}.aml-dashboard-launchpad>a:hover,.aml-dashboard-launchpad>button:hover{transform:translateY(-2px);border-color:#c9c4ff}.aml-launch-icon{display:grid;place-items:center;flex:0 0 42px;width:42px;height:42px;border-radius:13px;background:#eeecff;color:#635bff}.aml-launch-wallet .aml-launch-icon{background:linear-gradient(135deg,#ffe56d,#ffb800);color:#432f00}.aml-dashboard-launchpad strong,.aml-dashboard-launchpad small{display:block}.aml-dashboard-launchpad small{margin-top:3px;color:#6d788c;font-size:.72rem}.aml-dashboard-more-row{text-align:center}.aml-dashboard-more-row .btn{border:1px solid #e2e7f0;border-radius:13px;color:#455268;font-weight:800}.aml-secondary-dashboard{display:none!important}.aml-dashboard-show-more .aml-secondary-dashboard{display:block!important}.dashboard-manage{padding:18px}.manage-grid{grid-template-columns:repeat(5,minmax(0,1fr))}.manage-grid>a{padding:13px}.manage-grid small{display:none}.workspace-heading{padding:17px 20px 13px}.dashboard-workspace .dashboard-panel{padding:18px!important}
@media(max-width:1100px){.aml-dashboard-launchpad{grid-template-columns:repeat(2,minmax(0,1fr))}.manage-grid{grid-template-columns:repeat(3,minmax(0,1fr))}}
@media(max-width:700px){.dashboard-metrics{grid-template-columns:repeat(2,minmax(0,1fr))!important}.aml-dashboard-launchpad{grid-template-columns:repeat(2,minmax(0,1fr))}.manage-grid{grid-template-columns:repeat(2,minmax(0,1fr))}.dashboard-command{padding:20px!important}.dashboard-command .dashboard-actions{grid-template-columns:1fr 1fr!important}}
@media(max-width:420px){.aml-dashboard-launchpad,.manage-grid{grid-template-columns:1fr}.dashboard-command .dashboard-actions{grid-template-columns:1fr!important}}


/* ===== extracted from dashboard/index.php #19 ===== */
:root{--aml-site-header-height:44px}
@media(min-width:992px){
  body.aml-app>.aml-sidebar,.aml-sidebar{top:var(--aml-site-header-height)!important;height:calc(100vh - var(--aml-site-header-height))!important}
  body.aml-app>.aml-main,.aml-main{top:var(--aml-site-header-height)!important}
  .aml-main>.aml-content.dashboard-shell{padding-top:18px!important}
}
.media-preview-card{min-width:0}.media-preview-card>div{min-width:0}.media-preview-card strong{display:block;max-width:100%;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;overflow-wrap:normal!important;word-break:normal!important;font-size:.9rem}.media-preview-card small{overflow-wrap:anywhere}
.aml-right-rail{display:grid!important;gap:14px!important;align-content:start!important}.aml-right-rail>.rail-panel,.aml-right-rail>.utility-card{margin:0!important;min-width:0;overflow:hidden}.aml-rail-ad .card-body{padding:10px!important;overflow:hidden}.aml-rail-ad iframe{display:block!important;width:100%!important;height:280px!important;min-height:280px!important;max-height:280px!important;border:0!important;overflow:hidden!important}
.aml-spotlight-panel{padding:16px!important;border:1px solid #e2e7f0!important;border-radius:18px!important;background:#fff!important;box-shadow:0 10px 30px rgba(20,30,55,.06)!important}.aml-spotlight-head{display:flex;justify-content:space-between;align-items:flex-start;gap:10px;margin-bottom:12px}.aml-spotlight-head h3{margin:0;color:#172033;font-size:1rem;font-weight:950}.aml-spotlight-head small{display:block;margin-top:3px;color:#6d788c;font-size:.7rem}.aml-spotlight-label{padding:5px 7px;border-radius:999px;background:#fff4d8;color:#7b5700;font-size:.62rem;font-weight:900}.aml-spotlight-list{display:grid;gap:9px}.aml-spotlight-card{display:grid;grid-template-columns:46px minmax(0,1fr);gap:10px;align-items:center;padding:10px;border:1px solid #e7ebf2;border-radius:14px;background:#f9fbff;color:#172033!important;text-decoration:none!important}.aml-spotlight-card:hover{border-color:#cbc6ff;background:#f7f5ff}.aml-spotlight-card img{width:46px;height:46px;border-radius:50%;object-fit:cover}.aml-spotlight-card strong,.aml-spotlight-card small{display:block;min-width:0;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.aml-spotlight-card strong{font-size:.82rem}.aml-spotlight-card small{margin-top:3px;color:#6d788c;font-size:.66rem}.aml-spotlight-empty{padding:13px;border:1px dashed #d6dce7;border-radius:14px;background:#fafbfe;text-align:center;color:#687086;font-size:.75rem}.aml-spotlight-buy{width:100%;margin-top:11px;border-radius:11px!important;font-weight:850!important}.aml-rail-links{padding:16px!important}.aml-rail-links h3{font-size:1rem!important}.aml-rail-links .rail-list{display:grid;gap:7px}.aml-rail-links .rail-list a{display:block;padding:8px 10px;border-radius:9px;background:#f7f9fc;text-decoration:none!important}


/* ===== extracted from dashboard/index.php #20 ===== */
.feed-preferences-card{border:1px solid #dfe3ee;border-radius:20px;background:#fff;box-shadow:0 8px 28px rgba(28,39,67,.06);overflow:hidden}.feed-preferences-head{display:flex;justify-content:space-between;align-items:flex-start;gap:18px;padding:20px 22px 15px;border-bottom:1px solid #edf1f6}.feed-preferences-head h2{margin:.2rem 0 .35rem;color:#172033;font-weight:900}.feed-preferences-head p{margin:0;color:#687086}.feed-mode-grid{display:grid;grid-template-columns:repeat(5,minmax(0,1fr));gap:10px;padding:18px 20px}.feed-mode-option{position:relative;display:block;margin:0}.feed-mode-option input{position:absolute;opacity:0;pointer-events:none}.feed-mode-option span{display:block;min-height:132px;padding:15px;border:1px solid #e2e7f0;border-radius:16px;background:#fafbfe;cursor:pointer;transition:.18s ease}.feed-mode-option i{display:grid;place-items:center;width:40px;height:40px;margin-bottom:11px;border-radius:12px;background:#eeecff;color:#635bff}.feed-mode-option strong,.feed-mode-option small{display:block}.feed-mode-option strong{color:#172033;font-weight:900}.feed-mode-option small{margin-top:5px;color:#687086;line-height:1.4}.feed-mode-option input:checked+span{border-color:#635bff;background:#f2f0ff;box-shadow:0 0 0 3px rgba(99,91,255,.12)}.feed-mode-option input:focus-visible+span{outline:3px solid rgba(99,91,255,.25);outline-offset:2px}.feed-preferences-foot{display:flex;justify-content:space-between;align-items:center;gap:14px;padding:14px 20px;border-top:1px solid #edf1f6;background:#fbfcfe}.feed-preferences-foot p{margin:0;color:#687086;font-size:.8rem}.feed-preferences-status{display:none;margin:0 20px 18px;padding:12px 13px;border-radius:12px}.feed-preferences-status.is-visible{display:block}.feed-preferences-status.success{border:1px solid #bfe8d4;background:#eefaf4;color:#0d744d}.feed-preferences-status.error{border:1px solid #f3cad3;background:#fff3f5;color:#9f2b42}@media(max-width:1100px){.feed-mode-grid{grid-template-columns:repeat(2,minmax(0,1fr))}}@media(max-width:650px){.feed-mode-grid{grid-template-columns:1fr;padding:14px}.feed-mode-option span{min-height:0}.feed-preferences-head,.feed-preferences-foot{flex-direction:column;align-items:stretch}.feed-preferences-foot .btn{width:100%}}


/* ===== extracted from dashboard/index.php #21 ===== */
.feed-experience-options{display:grid;grid-template-columns:1fr 1fr;gap:12px;padding:0 20px 18px}.feed-experience-options>label{margin:0;padding:15px;border:1px solid #e2e7f0;border-radius:15px;background:#fafbfe}.feed-experience-options>label>strong,.feed-experience-options>label>small{display:block}.feed-experience-options>label>small{margin-top:6px;color:#687086}.feed-experience-options .form-control{margin-top:8px;border-radius:11px}@media(max-width:650px){.feed-experience-options{grid-template-columns:1fr;padding:0 14px 14px}}


/* ===== extracted from dashboard/index.php #22 ===== */
.social-editor-head{display:flex;justify-content:space-between;align-items:flex-start;gap:18px;margin-bottom:22px}
.social-editor-head h3{margin:.25rem 0 .45rem;color:#172033;font-weight:950;letter-spacing:-.03em}
.social-editor-head p{margin:0;color:#687086}
.social-editor-form{display:grid;gap:16px}
.social-editor-section{padding:18px;border:1px solid #e3e8f1;border-radius:18px;background:#fff}
.social-section-title{display:flex;align-items:center;justify-content:space-between;margin-bottom:15px}
.social-section-title>div{display:flex;align-items:center;gap:12px}
.social-section-title strong,.social-section-title small{display:block}
.social-section-title small{margin-top:3px;color:#687086}
.social-section-icon{display:grid;place-items:center;width:42px;height:42px;border-radius:13px;background:#eeecff;color:#635bff}
.social-section-icon.adult{background:#fff1f3;color:#b4233b}
.social-field-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:12px}
.social-field-card{display:grid;grid-template-columns:42px minmax(0,1fr);gap:10px;padding:14px;border:1px solid #e4e9f2;border-radius:15px;background:#fafbfe}
.social-field-brand{display:grid;place-items:center;grid-row:1/3;width:42px;height:42px;border-radius:12px;background:#fff;color:#635bff;font-size:1.08rem;box-shadow:0 5px 14px rgba(25,35,63,.06)}
.social-field-copy{min-width:0}
.social-field-copy strong,.social-field-copy small{display:block}
.social-field-copy strong{color:#172033;font-weight:900}
.social-field-copy small{margin-top:3px;color:#687086;font-size:.72rem;line-height:1.35}
.social-field-card .form-control{grid-column:1/-1;min-height:44px;border-radius:11px;border-color:#d8dfeb}
.social-field-card .form-control:focus{border-color:#7c7bf6;box-shadow:0 0 0 4px rgba(99,91,255,.11)}
.social-more-toggle{appearance:none;display:flex;align-items:center;justify-content:space-between;width:100%;padding:2px;border:0;background:transparent;color:#273248;font-weight:900;cursor:pointer}
.social-more-toggle>span{display:flex;align-items:center;gap:9px}
.social-more-toggle[aria-expanded="true"]>.fa-chevron-down{transform:rotate(180deg)}
.social-more-platforms{margin-top:16px}
.adult-social-section{border-color:#efdbe1;background:#fffafb}
.social-editor-actions{display:flex;justify-content:flex-start}
.social-editor-actions .btn{min-width:230px;border-radius:13px;font-weight:900}
@media(max-width:760px){.social-field-grid{grid-template-columns:1fr}.social-editor-section{padding:15px}.social-editor-actions .btn{width:100%;min-width:0}}


/* ===== extracted from dashboard/index.php #23 ===== */
.aml-verification-banner{display:flex;align-items:center;justify-content:space-between;gap:18px;margin-bottom:14px;padding:16px 18px;border:1px solid #f1d28a;border-radius:17px;background:#fff8e8;color:#624500;box-shadow:0 8px 24px rgba(92,65,0,.06)}
.aml-verification-copy{display:flex;align-items:flex-start;gap:12px}.aml-verification-icon{display:grid;place-items:center;flex:0 0 42px;width:42px;height:42px;border-radius:13px;background:#ffe8a8;color:#755200}.aml-verification-copy strong,.aml-verification-copy span{display:block}.aml-verification-copy strong{font-weight:950}.aml-verification-copy span{margin-top:3px;font-size:.82rem;line-height:1.45}.aml-verification-actions{display:flex;gap:8px;align-items:center;flex-wrap:wrap}.aml-verification-actions .btn{border-radius:11px;font-weight:850}.aml-verification-status{display:none;margin-top:8px;font-size:.78rem;font-weight:800}.aml-verification-status.show{display:block}
@media(max-width:720px){.aml-verification-banner{align-items:stretch;flex-direction:column}.aml-verification-actions,.aml-verification-actions .btn{width:100%}}


/* ===== extracted from dashboard/index.php #24 ===== */
.aml-lift-spotlight{
  --lift-ink:#172033;
  --lift-muted:#6c778b;
  --lift-line:#e2e7f0;
  --lift-purple:#635bff;
  position:relative;
  overflow:hidden;
  border:1px solid var(--lift-line);
  border-radius:20px;
  background:#fff;
  color:var(--lift-ink);
  box-shadow:0 12px 36px rgba(20,30,55,.07);
}
.aml-lift-spotlight:before{
  content:'';
  position:absolute;
  right:-75px;
  top:-85px;
  width:210px;
  height:210px;
  border-radius:50%;
  background:rgba(99,91,255,.08);
  pointer-events:none;
}
.aml-lift-head{
  position:relative;
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:16px;
  padding:20px 20px 14px;
}
.aml-lift-kicker{
  display:inline-flex;
  align-items:center;
  gap:6px;
  color:#5145cd;
  font-size:.68rem;
  font-weight:950;
  letter-spacing:.09em;
  text-transform:uppercase;
}
.aml-lift-head h2{
  margin:5px 0 4px;
  color:var(--lift-ink)!important;
  font-size:1.18rem;
  font-weight:950;
  letter-spacing:-.025em;
}
.aml-lift-head p{
  max-width:650px;
  margin:0;
  color:var(--lift-muted)!important;
  font-size:.79rem;
  line-height:1.48;
}
.aml-lift-order{
  flex:0 0 auto;
  padding:5px 8px;
  border-radius:999px;
  background:#eef2ff;
  color:#5145cd;
  font-size:.62rem;
  font-weight:900;
}
.aml-lift-list{
  position:relative;
  display:grid;
  gap:10px;
  padding:0 14px 14px;
}
.aml-lift-card{
  padding:12px;
  border:1px solid #e7ebf2;
  border-radius:15px;
  background:#fafbff;
}
.aml-lift-profile{
  display:grid;
  grid-template-columns:43px minmax(0,1fr) auto;
  align-items:center;
  gap:10px;
  color:var(--lift-ink)!important;
  text-decoration:none!important;
}
.aml-lift-profile img{
  width:43px;
  height:43px;
  border-radius:50%;
  object-fit:cover;
  background:#e8ecf4;
}
.aml-lift-profile strong,
.aml-lift-profile small{
  display:block;
  min-width:0;
  overflow:hidden;
  text-overflow:ellipsis;
  white-space:nowrap;
}
.aml-lift-profile strong{font-size:.84rem}
.aml-lift-profile small{
  margin-top:2px;
  color:#737e92;
  font-size:.66rem;
}
.aml-lift-profile>i{color:#1697f6}
.aml-lift-drop{
  display:-webkit-box;
  margin:10px 0 9px;
  overflow:hidden;
  color:#4d596d!important;
  font-size:.73rem;
  line-height:1.45;
  -webkit-line-clamp:3;
  -webkit-box-orient:vertical;
}
.aml-lift-actions{
  display:flex;
  gap:7px;
  flex-wrap:wrap;
}
.aml-lift-actions a{
  padding:6px 8px;
  border-radius:9px;
  background:#fff;
  color:#5145cd!important;
  font-size:.66rem;
  font-weight:850;
  text-decoration:none!important;
}
.aml-lift-actions a:first-child{
  background:#090909;
  color:#fff!important;
}
.aml-lift-empty{
  position:relative;
  display:grid;
  justify-items:center;
  padding:22px;
  text-align:center;
}
.aml-lift-empty>i{
  display:grid;
  place-items:center;
  width:46px;
  height:46px;
  margin-bottom:10px;
  border-radius:14px;
  background:#090909;
  color:#fff;
}
.aml-lift-empty strong,.aml-lift-empty span{display:block}
.aml-lift-empty span{
  max-width:430px;
  margin-top:5px;
  color:var(--lift-muted);
  font-size:.75rem;
}
.aml-lift-footer{
  position:relative;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:8px;
  padding:13px 14px 15px;
  border-top:1px solid #edf0f5;
  background:#fbfcfe;
}
.aml-lift-footer a{
  padding:9px 10px;
  border-radius:10px;
  font-size:.72rem;
  font-weight:900;
  text-align:center;
  text-decoration:none!important;
}
.aml-lift-primary{background:linear-gradient(135deg,#635bff,#1677ed);color:#fff!important}
.aml-lift-secondary{border:1px solid #dce2ec;background:#fff;color:#4f5a6d!important}
.aml-lift-home{
  width:min(1160px,calc(100% - 28px));
  margin:28px auto;
}
.aml-lift-home .aml-lift-list{
  grid-template-columns:repeat(3,minmax(0,1fr));
}
.aml-lift-home .aml-lift-head{
  padding:25px 26px 18px;
}
.aml-lift-home .aml-lift-head h2{font-size:clamp(1.6rem,3vw,2.25rem)}
.aml-lift-home .aml-lift-head p{font-size:.9rem}
.aml-lift-home .aml-lift-list{padding:0 20px 20px}
.aml-lift-home .aml-lift-footer{
  display:flex;
  justify-content:center;
  padding:16px;
}
.aml-lift-home .aml-lift-footer a{min-width:190px}
.aml-lift-rail{margin:0!important}
@media(max-width:850px){
  .aml-lift-home .aml-lift-list{grid-template-columns:1fr}
}
@media(max-width:540px){
  .aml-lift-head{flex-direction:column}
  .aml-lift-order{align-self:flex-start}
  .aml-lift-footer{grid-template-columns:1fr}
}


/* ===== extracted from dashboard/index.php #25 ===== */
/* This final layer deliberately overrides earlier dashboard experiments. */
.aml-mobile-onboarding,
.aml-mobile-discovery{
  display:none;
}

@media(max-width:991.98px){
  :root{
    --aml-mobile-pad:14px;
    --aml-mobile-radius:22px;
    --aml-mobile-shadow:0 14px 40px rgba(24,34,58,.09);
  }

  body.aml-app{
    background:#f3f6fb!important;
  }

  .aml-main>.aml-content.dashboard-shell,
  .aml-content.dashboard-shell{
    padding:10px var(--aml-mobile-pad) 96px!important;
  }

  /* Mobile hierarchy: welcoming, clear, not overloaded */
  .dashboard-command{
    margin:0 0 12px!important;
    padding:22px 19px!important;
    border-radius:var(--aml-mobile-radius)!important;
    background:
      radial-gradient(circle at 90% 0%,rgba(255,255,255,.18),transparent 32%),
      linear-gradient(145deg,#101527 0%,#29235d 58%,#6658f2 100%)!important;
    box-shadow:0 18px 45px rgba(35,31,92,.24)!important;
  }

  .dashboard-command .dashboard-kicker{
    margin-bottom:6px!important;
    font-size:.67rem!important;
  }

  .dashboard-command h1{
    margin:0 0 8px!important;
    font-size:clamp(1.85rem,9vw,2.55rem)!important;
    line-height:1.02!important;
    letter-spacing:-.05em!important;
  }

  .dashboard-command p{
    margin:0 0 17px!important;
    font-size:.9rem!important;
    line-height:1.52!important;
  }

  .dashboard-actions{
    grid-template-columns:1fr 1fr!important;
    gap:8px!important;
  }

  .dashboard-actions .btn{
    display:inline-flex!important;
    align-items:center!important;
    justify-content:center!important;
    min-height:46px!important;
    padding:10px 9px!important;
    border-radius:13px!important;
    font-size:.78rem!important;
  }

  .dashboard-actions .plan-chip{
    display:none!important;
  }

  .dashboard-actions .btn-live{
    grid-column:1/-1!important;
    min-height:49px!important;
  }

  /* New-user journey */
  .aml-mobile-onboarding{
    display:block;
    overflow:hidden;
    border:1px solid #dfe5ef;
    border-radius:var(--aml-mobile-radius);
    background:#fff;
    box-shadow:var(--aml-mobile-shadow);
  }

  .aml-onboarding-head{
    display:grid;
    grid-template-columns:minmax(0,1fr) 68px;
    gap:14px;
    align-items:center;
    padding:19px 18px 15px;
    background:linear-gradient(145deg,#fff,#f8f7ff);
  }

  .aml-onboarding-kicker{
    display:block;
    margin-bottom:5px;
    color:#5a4fe0;
    font-size:.67rem;
    font-weight:950;
    letter-spacing:.11em;
    text-transform:uppercase;
  }

  .aml-onboarding-head h2{
    margin:0;
    color:#172033;
    font-size:1.18rem;
    line-height:1.18;
    font-weight:950;
    letter-spacing:-.035em;
  }

  .aml-onboarding-head p{
    margin:6px 0 0;
    color:#687086;
    font-size:.76rem;
    line-height:1.45;
  }

  .aml-onboarding-progress{
    position:relative;
    display:grid;
    place-items:center;
    width:64px;
    height:64px;
    border-radius:50%;
    background:conic-gradient(#635bff calc(var(--aml-progress) * 1%),#e8ebf3 0);
  }

  .aml-onboarding-progress:after{
    content:'';
    position:absolute;
    inset:6px;
    border-radius:50%;
    background:#fff;
  }

  .aml-onboarding-progress strong,
  .aml-onboarding-progress span{
    position:relative;
    z-index:1;
    display:block;
    text-align:center;
  }

  .aml-onboarding-progress strong{
    font-size:.9rem;
    line-height:1;
    color:#172033;
  }

  .aml-onboarding-progress span{
    margin-top:2px;
    color:#687086;
    font-size:.53rem;
    font-weight:850;
    text-transform:uppercase;
  }

  .aml-onboarding-steps{
    display:grid;
    gap:0;
    border-top:1px solid #edf0f5;
  }

  .aml-onboarding-step{
    display:grid;
    grid-template-columns:42px minmax(0,1fr) 24px;
    gap:11px;
    align-items:center;
    min-height:72px;
    padding:12px 16px;
    border-bottom:1px solid #edf0f5;
    color:#172033!important;
    text-decoration:none!important;
  }

  .aml-onboarding-step:last-child{
    border-bottom:0;
  }

  .aml-onboarding-step-icon{
    display:grid;
    place-items:center;
    width:42px;
    height:42px;
    border-radius:13px;
    background:#efedff;
    color:#5a4fe0;
  }

  .aml-onboarding-step-copy strong,
  .aml-onboarding-step-copy small{
    display:block;
  }

  .aml-onboarding-step-copy strong{
    font-size:.82rem;
    font-weight:950;
  }

  .aml-onboarding-step-copy small{
    margin-top:3px;
    color:#727d91;
    font-size:.68rem;
    line-height:1.38;
  }

  .aml-onboarding-step-state{
    color:#9099aa;
    text-align:right;
  }

  .aml-onboarding-step.is-complete{
    background:#fbfefc;
  }

  .aml-onboarding-step.is-complete .aml-onboarding-step-icon{
    background:#e8f8f0;
    color:#0c8b5b;
  }

  .aml-onboarding-step.is-complete .aml-onboarding-step-state{
    color:#0c8b5b;
  }

  /* Metrics become a swipeable, compact strip instead of a wall */
  .dashboard-metrics{
    display:flex!important;
    gap:9px!important;
    width:calc(100% + var(--aml-mobile-pad))!important;
    margin-right:calc(var(--aml-mobile-pad) * -1)!important;
    padding-right:var(--aml-mobile-pad)!important;
    overflow-x:auto!important;
    scroll-snap-type:x proximity;
    scrollbar-width:none;
  }

  .dashboard-metrics::-webkit-scrollbar{
    display:none;
  }

  .dashboard-metrics .metric-tile{
    flex:0 0 145px!important;
    min-height:100px!important;
    padding:15px!important;
    border-radius:17px!important;
    scroll-snap-align:start;
  }

  .metric-tile span{
    font-size:.68rem!important;
  }

  .metric-tile strong{
    font-size:1.42rem!important;
  }

  /* The important actions are obvious and comfortable to tap */
  .aml-dashboard-launchpad{
    grid-template-columns:1fr 1fr!important;
    gap:9px!important;
  }

  .aml-dashboard-launchpad>a,
  .aml-dashboard-launchpad>button{
    min-height:104px!important;
    padding:13px!important;
    flex-direction:column!important;
    align-items:flex-start!important;
    justify-content:space-between!important;
    border-radius:18px!important;
    box-shadow:0 8px 24px rgba(24,34,58,.06)!important;
  }

  .aml-dashboard-launchpad .aml-launch-icon{
    width:40px!important;
    height:40px!important;
  }

  .aml-dashboard-launchpad strong{
    font-size:.8rem!important;
  }

  .aml-dashboard-launchpad small{
    font-size:.66rem!important;
    line-height:1.3!important;
  }

  .aml-dashboard-launchpad>a[href="/creator-lift/manage.php"]{
    background:linear-gradient(145deg,#10131e,#2c255e)!important;
    border-color:#312b66!important;
    color:#fff!important;
  }

  .aml-dashboard-launchpad>a[href="/creator-lift/manage.php"] .aml-launch-icon{
    background:#fff!important;
    color:#111827!important;
  }

  .aml-dashboard-launchpad>a[href="/creator-lift/manage.php"] strong,
  .aml-dashboard-launchpad>a[href="/creator-lift/manage.php"] small{
    color:#fff!important;
  }

  .aml-dashboard-launchpad>a[href="/creator-lift/manage.php"] small{
    opacity:.76;
  }

  /* Full-width discovery replaces squeezed desktop rail cards */
  .aml-mobile-discovery{
    display:grid;
    gap:10px;
  }

  .aml-mobile-discovery .aml-lift-spotlight{
    margin:0!important;
    border-radius:var(--aml-mobile-radius)!important;
  }

  .aml-mobile-discovery .aml-lift-head{
    padding:18px 17px 13px!important;
  }

  .aml-mobile-discovery .aml-lift-list{
    grid-template-columns:1fr!important;
    padding:0 12px 12px!important;
  }

  .aml-mobile-discovery .aml-lift-card{
    padding:12px!important;
  }

  .aml-mobile-community{
    overflow:hidden;
    border:1px solid #dfe5ef;
    border-radius:var(--aml-mobile-radius);
    background:#fff;
    box-shadow:var(--aml-mobile-shadow);
  }

  .aml-mobile-community-head{
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    gap:12px;
    padding:17px 17px 12px;
  }

  .aml-mobile-community-head span{
    display:block;
    color:#5a4fe0;
    font-size:.63rem;
    font-weight:950;
    letter-spacing:.09em;
    text-transform:uppercase;
  }

  .aml-mobile-community-head h2{
    margin:4px 0 0;
    color:#172033;
    font-size:1rem;
    font-weight:950;
  }

  .aml-mobile-community-head>a{
    padding:7px 9px;
    border-radius:10px;
    background:#f0efff;
    color:#5145cd!important;
    font-size:.66rem;
    font-weight:900;
    text-decoration:none!important;
  }

  .aml-mobile-community-list{
    display:grid;
    gap:8px;
    padding:0 12px 13px;
  }

  .aml-mobile-community-list>a{
    display:grid;
    grid-template-columns:46px minmax(0,1fr) 20px;
    gap:10px;
    align-items:center;
    padding:10px;
    border:1px solid #e7ebf2;
    border-radius:14px;
    background:#fafbfe;
    color:#172033!important;
    text-decoration:none!important;
  }

  .aml-mobile-community-list img{
    width:46px;
    height:46px;
    border-radius:50%;
    object-fit:cover;
  }

  .aml-mobile-community-list strong,
  .aml-mobile-community-list small{
    display:block;
    overflow:hidden;
    text-overflow:ellipsis;
    white-space:nowrap;
  }

  .aml-mobile-community-list strong{
    font-size:.78rem;
  }

  .aml-mobile-community-list small{
    margin-top:3px;
    color:#727d91;
    font-size:.65rem;
  }

  .aml-mobile-community-empty{
    margin:0 12px 13px;
    padding:14px;
    border:1px dashed #d5dce8;
    border-radius:14px;
    color:#687086;
    font-size:.74rem;
    text-align:center;
  }

  /* Reduce secondary noise but retain every tool behind one control */
  .aml-dashboard-more-row{
    margin-top:3px!important;
  }

  .aml-dashboard-more-row .btn{
    width:100%!important;
    min-height:47px!important;
    border-radius:14px!important;
    background:#fff!important;
    box-shadow:0 8px 20px rgba(24,34,58,.05)!important;
  }

  .dashboard-manage{
    padding:17px!important;
    border-radius:var(--aml-mobile-radius)!important;
  }

  .manage-heading{
    margin-bottom:12px!important;
  }

  .manage-heading h2{
    font-size:1.05rem!important;
  }

  .manage-heading p{
    font-size:.75rem!important;
  }

  .manage-grid{
    grid-template-columns:1fr 1fr!important;
    gap:8px!important;
  }

  .manage-grid>a{
    min-height:88px!important;
    padding:12px!important;
    flex-direction:column!important;
    border-radius:15px!important;
  }

  .manage-grid i{
    width:36px!important;
    height:36px!important;
  }

  .manage-grid strong{
    font-size:.76rem!important;
  }

  /* Workspace stays fully functional, but feels like an app */
  .dashboard-workspace{
    border-radius:var(--aml-mobile-radius)!important;
  }

  .workspace-heading{
    padding:17px 16px 13px!important;
  }

  .workspace-heading h2{
    font-size:1.05rem!important;
  }

  .workspace-heading p{
    font-size:.74rem!important;
  }

  .dashboard-tab-shell{
    padding:7px!important;
  }

  .dashboard-tabs .nav-link{
    min-width:78px!important;
    min-height:51px!important;
    border-radius:11px!important;
    font-size:.7rem!important;
  }

  .dashboard-workspace .dashboard-panel{
    padding:13px!important;
  }

  .profile-editor-shell,
  .profile-form-grid,
  .social-field-grid,
  .provider-grid,
  .studio-feature-grid,
  .business-action-grid,
  .appearance-layout,
  .appearance-colour-grid{
    grid-template-columns:1fr!important;
  }

  .media-uploader-card,
  .profile-form-card,
  .profile-tip-card,
  .social-editor-section{
    border-radius:17px!important;
  }

  .profile-form-card{
    padding:16px!important;
  }

  .profile-info-form .form-control,
  .social-field-card .form-control,
  .media-form-grid .form-control{
    min-height:48px!important;
    font-size:16px!important; /* prevents iOS zoom */
  }

  .profile-form-actions{
    position:sticky;
    bottom:78px;
    z-index:25;
    margin:16px -16px -16px!important;
    padding:12px 16px!important;
    background:rgba(255,255,255,.96);
    backdrop-filter:blur(12px);
  }

  .profile-form-actions .btn{
    width:100%!important;
    min-height:48px!important;
  }

  /* Explicitly prevent desktop rail conflicts on mobile */
  .aml-content.dashboard-shell>.aml-three-col>.aml-right-rail,
  .aml-three-col>.aml-right-rail{
    display:none!important;
  }

  /* Mobile bottom navigation: clear and enticing */
  body.aml-app>.aml-sidebar,
  .aml-sidebar{
    height:76px!important;
    min-height:76px!important;
    max-height:76px!important;
    padding:6px 8px calc(6px + env(safe-area-inset-bottom))!important;
    border-top:1px solid #dce4ef!important;
    box-shadow:0 -12px 32px rgba(24,34,58,.12)!important;
  }

  .aml-sidebar .aml-nav{
    height:64px!important;
    min-height:64px!important;
  }

  .aml-sidebar .aml-nav a{
    height:64px!important;
    min-height:64px!important;
    border-radius:13px!important;
  }

  .aml-sidebar .aml-nav a i{
    font-size:19px!important;
  }

  .aml-sidebar .aml-nav a span{
    font-size:10px!important;
  }
}

@media(max-width:410px){
  .aml-main>.aml-content.dashboard-shell,
  .aml-content.dashboard-shell{
    --aml-mobile-pad:10px;
  }

  .dashboard-command{
    padding:20px 16px!important;
  }

  .dashboard-actions{
    grid-template-columns:1fr!important;
  }

  .dashboard-actions .btn-live{
    grid-column:auto!important;
  }

  .aml-onboarding-head{
    grid-template-columns:minmax(0,1fr) 60px;
    padding:17px 15px 13px;
  }

  .aml-onboarding-progress{
    width:58px;
    height:58px;
  }

  .aml-dashboard-launchpad,
  .manage-grid{
    grid-template-columns:1fr 1fr!important;
  }
}


/* ===== extracted from dashboard/index.php #26 ===== */
.aml-dashboard-subnav{
  display:none;
}

.aml-focused-page-head{
  display:none;
}

@media(max-width:991.98px){
  /* Give the page clear separation from the fixed/global header. */
  .aml-main>.aml-content.dashboard-shell,
  .aml-content.dashboard-shell{
    padding-top:38px!important;
  }

  .aml-dashboard-subnav{
    position:sticky;
    z-index:45;
    top:0;
    display:flex;
    gap:7px;
    width:calc(100% + 8px);
    margin:0 -4px 14px;
    padding:7px 4px;
    overflow-x:auto;
    scrollbar-width:none;
    background:rgba(243,246,251,.94);
    backdrop-filter:blur(14px);
    -webkit-backdrop-filter:blur(14px);
  }

  .aml-dashboard-subnav::-webkit-scrollbar{
    display:none;
  }

  .aml-dashboard-subnav a{
    display:flex;
    flex:0 0 auto;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:4px;
    min-width:70px;
    min-height:58px;
    padding:7px 9px;
    border:1px solid #dde4ee;
    border-radius:14px;
    background:#fff;
    color:#536074!important;
    font-size:.66rem;
    font-weight:900;
    text-decoration:none!important;
    box-shadow:0 6px 18px rgba(24,34,58,.05);
  }

  .aml-dashboard-subnav a i{
    font-size:.95rem;
  }

  .aml-dashboard-subnav a.active{
    border-color:#655bf0;
    background:linear-gradient(145deg,#151a2b,#332c72);
    color:#fff!important;
    box-shadow:0 10px 24px rgba(50,44,114,.22);
  }

  /* Focused pages hide the dashboard overview but reuse the exact same forms. */
  body:not(.aml-dashboard-section-home) .aml-dashboard-home-only{
    display:none!important;
  }

  body.aml-dashboard-section-home .aml-dashboard-workspace-section{
    margin-top:0;
  }

  body.aml-dashboard-section-profile .aml-dashboard-workspace-section,
  body.aml-dashboard-section-social .aml-dashboard-workspace-section,
  body.aml-dashboard-section-links .aml-dashboard-workspace-section,
  body.aml-dashboard-section-appearance .aml-dashboard-workspace-section{
    display:block!important;
    margin-top:0!important;
  }

  body.aml-dashboard-section-tools .aml-dashboard-workspace-section{
    display:none!important;
  }

  body.aml-dashboard-section-profile .aml-secondary-dashboard,
  body.aml-dashboard-section-social .aml-secondary-dashboard,
  body.aml-dashboard-section-links .aml-secondary-dashboard,
  body.aml-dashboard-section-appearance .aml-secondary-dashboard{
    display:none!important;
  }

  body.aml-dashboard-section-tools .aml-secondary-dashboard{
    display:block!important;
  }

  body.aml-dashboard-section-tools .dashboard-manage,
  body.aml-dashboard-section-tools .aml-dashboard-workspace-section{
    display:none!important;
  }

  body.aml-dashboard-section-tools .aml-focused-page-head{
    display:block;
    padding:20px 18px;
    border:1px solid #dfe5ef;
    border-radius:22px;
    background:linear-gradient(145deg,#101527,#30286c);
    color:#fff;
    box-shadow:0 16px 40px rgba(38,33,94,.18);
  }

  .aml-focused-page-head>span{
    display:block;
    color:#c8c4ff;
    font-size:.66rem;
    font-weight:950;
    letter-spacing:.11em;
    text-transform:uppercase;
  }

  .aml-focused-page-head h1{
    margin:6px 0 7px;
    color:#fff;
    font-size:1.45rem;
    line-height:1.12;
    font-weight:950;
    letter-spacing:-.04em;
  }

  .aml-focused-page-head p{
    margin:0;
    color:rgba(255,255,255,.76);
    font-size:.76rem;
    line-height:1.5;
  }

  /* Focused editing screens should not feel like one enormous page. */
  body.aml-dashboard-section-profile .dashboard-workspace .workspace-heading h2:after{
    content:' — Profile';
  }
  body.aml-dashboard-section-social .dashboard-workspace .workspace-heading h2:after{
    content:' — Social';
  }
  body.aml-dashboard-section-links .dashboard-workspace .workspace-heading h2:after{
    content:' — Links';
  }
  body.aml-dashboard-section-appearance .dashboard-workspace .workspace-heading h2:after{
    content:' — Design';
  }

  body.aml-dashboard-section-profile .dashboard-tab-shell,
  body.aml-dashboard-section-social .dashboard-tab-shell,
  body.aml-dashboard-section-links .dashboard-tab-shell,
  body.aml-dashboard-section-appearance .dashboard-tab-shell{
    display:none!important;
  }

  body.aml-dashboard-section-profile .workspace-heading,
  body.aml-dashboard-section-social .workspace-heading,
  body.aml-dashboard-section-links .workspace-heading,
  body.aml-dashboard-section-appearance .workspace-heading{
    padding-top:18px!important;
  }

  /* On focused views only the selected pane is shown by JS. */
  body.aml-dashboard-section-profile .dashboard-workspace,
  body.aml-dashboard-section-social .dashboard-workspace,
  body.aml-dashboard-section-links .dashboard-workspace,
  body.aml-dashboard-section-appearance .dashboard-workspace{
    min-height:calc(100vh - 190px);
  }
}

@media(max-width:420px){
  .aml-main>.aml-content.dashboard-shell,
  .aml-content.dashboard-shell{
    padding-top:32px!important;
  }

  .aml-dashboard-subnav{
    margin-top:0;
  }

  .aml-dashboard-subnav a{
    min-width:64px;
    min-height:56px;
    padding-left:7px;
    padding-right:7px;
  }
}


/* ===== extracted from dashboard/index.php #27 ===== */
.aml-dashboard-header-gap{
  display:none;
}

@media(max-width:991.98px){
  .aml-main>.aml-content.dashboard-shell,
  .aml-content.dashboard-shell{
    padding-top:0!important;
  }

  .aml-dashboard-header-gap{
    display:block!important;
    width:100%;
    height:24px!important;
    min-height:24px!important;
    flex:0 0 24px!important;
  }

  .aml-dashboard-subnav{
    position:sticky!important;
    top:0!important;
    margin:0 -4px 14px!important;
  }
}

@media(max-width:420px){
  .aml-dashboard-header-gap{
    height:20px!important;
    min-height:20px!important;
    flex-basis:20px!important;
  }
}


/* ===== extracted from dashboard/index.php #28 ===== */
@media(max-width:991.98px){
  .aml-main>.aml-content.dashboard-shell,
  .aml-content.dashboard-shell{
    padding-top:0!important;
  }

  .aml-dashboard-header-gap{
    display:block!important;
    width:100%!important;
    height:24px!important;
    min-height:24px!important;
    margin:0!important;
    padding:0!important;
  }

  .aml-dashboard-subnav{
    position:relative!important;
    top:auto!important;
    inset:auto!important;
    transform:none!important;
    margin:0 -4px 18px!important;
  }
}

@media(max-width:420px){
  .aml-dashboard-header-gap{
    height:20px!important;
    min-height:20px!important;
  }
}


/* ===== extracted from dashboard/index.php #29 ===== */
.aml-dashboard-manage-menu,
.aml-dashboard-focused-nav{display:none}

@media(max-width:991.98px){
  .aml-main>.aml-content.dashboard-shell,
  .aml-content.dashboard-shell{padding-top:18px!important}

  .aml-dashboard-header-gap{display:none!important}

  .aml-dashboard-manage-menu{
    display:block;
    margin:0 0 12px;
    padding:16px;
    border:1px solid #dfe5ef;
    border-radius:22px;
    background:#fff;
    box-shadow:0 12px 34px rgba(24,34,58,.08);
  }

  .aml-dashboard-manage-menu-head{margin-bottom:12px}
  .aml-dashboard-manage-menu-head>span{
    display:block;color:#5a4fe0;font-size:.64rem;font-weight:950;
    letter-spacing:.11em;text-transform:uppercase
  }
  .aml-dashboard-manage-menu-head h2{
    margin:5px 0 0;color:#172033;font-size:1rem;line-height:1.25;
    font-weight:950;letter-spacing:-.025em
  }

  .aml-dashboard-manage-menu .aml-dashboard-subnav{
    position:static!important;inset:auto!important;transform:none!important;
    display:grid!important;grid-template-columns:repeat(3,minmax(0,1fr))!important;
    gap:8px!important;width:100%!important;margin:0!important;padding:0!important;
    overflow:visible!important;background:transparent!important;backdrop-filter:none!important
  }

  .aml-dashboard-manage-menu .aml-dashboard-subnav a{
    display:flex!important;flex-direction:column!important;align-items:center!important;
    justify-content:center!important;gap:6px!important;min-width:0!important;
    min-height:76px!important;padding:10px 6px!important;border:1px solid #e1e6ef!important;
    border-radius:15px!important;background:#f8f9fc!important;color:#4d596d!important;
    font-size:.68rem!important;font-weight:900!important;box-shadow:none!important;text-align:center!important
  }

  .aml-dashboard-manage-menu .aml-dashboard-subnav a i{
    display:grid!important;place-items:center!important;width:34px!important;height:34px!important;
    border-radius:10px!important;background:#eeecff!important;color:#5a4fe0!important;font-size:.9rem!important
  }

  .aml-dashboard-manage-menu .aml-dashboard-subnav a.active{
    border-color:#5f55e8!important;
    background:linear-gradient(145deg,#151a2b,#332c72)!important;
    color:#fff!important
  }

  .aml-dashboard-manage-menu .aml-dashboard-subnav a.active i{
    background:rgba(255,255,255,.14)!important;color:#fff!important
  }

  .aml-dashboard-focused-nav{
    display:flex;gap:7px;width:100%;margin:0 0 12px;padding:7px;overflow-x:auto;
    border:1px solid #dfe5ef;border-radius:16px;background:#fff;
    box-shadow:0 8px 22px rgba(24,34,58,.06);scrollbar-width:none
  }
  .aml-dashboard-focused-nav::-webkit-scrollbar{display:none}
  .aml-dashboard-focused-nav a{
    display:flex;flex:0 0 auto;align-items:center;gap:6px;min-height:40px;padding:8px 10px;
    border-radius:10px;color:#536074!important;font-size:.68rem;font-weight:900;text-decoration:none!important
  }
  .aml-dashboard-focused-nav a.active{background:#201b4d;color:#fff!important}

  body.aml-dashboard-section-home .dashboard-command{margin-top:0!important}
}

@media(max-width:390px){
  .aml-dashboard-manage-menu{padding:14px}
  .aml-dashboard-manage-menu .aml-dashboard-subnav{
    grid-template-columns:repeat(2,minmax(0,1fr))!important
  }
}


/* ===== extracted from dashboard/index.php #30 ===== */
.aml-get-active{
  overflow:hidden;
  margin:0 0 14px;
  border:1px solid #dde4ee;
  border-radius:22px;
  background:#fff;
  box-shadow:0 14px 38px rgba(25,36,62,.08);
}
.aml-get-active-head{
  display:grid;
  grid-template-columns:minmax(0,1fr) 82px;
  gap:15px;
  align-items:center;
  padding:20px;
  background:
    radial-gradient(circle at 90% 0%,rgba(99,91,255,.13),transparent 36%),
    linear-gradient(145deg,#fff,#f8f8ff);
}
.aml-get-active-kicker{
  display:block;
  margin-bottom:5px;
  color:#5b50df;
  font-size:.67rem;
  font-weight:950;
  letter-spacing:.11em;
  text-transform:uppercase;
}
.aml-get-active-head h2{
  margin:0;
  color:#172033;
  font-size:1.22rem;
  line-height:1.18;
  font-weight:950;
  letter-spacing:-.035em;
}
.aml-get-active-head p{
  margin:7px 0 0;
  color:#69748a;
  font-size:.78rem;
  line-height:1.5;
}
.aml-momentum-ring{
  position:relative;
  display:grid;
  place-items:center;
  width:78px;
  height:78px;
  border-radius:50%;
  background:conic-gradient(#6257ef calc(var(--momentum)*1%),#e7ebf2 0);
}
.aml-momentum-ring:after{
  content:'';
  position:absolute;
  inset:7px;
  border-radius:50%;
  background:#fff;
}
.aml-momentum-ring strong,
.aml-momentum-ring small{
  position:relative;
  z-index:1;
  display:block;
  text-align:center;
}
.aml-momentum-ring strong{font-size:1.13rem;color:#172033;line-height:1}
.aml-momentum-ring small{margin-top:3px;color:#7a8496;font-size:.55rem;font-weight:850;text-transform:uppercase}
.aml-active-next{
  display:grid;
  grid-template-columns:42px minmax(0,1fr) auto;
  gap:11px;
  align-items:center;
  margin:0 16px 14px;
  padding:13px;
  border-radius:15px;
  background:linear-gradient(135deg,#171c2f,#30286d);
  color:#fff!important;
  text-decoration:none!important;
}
.aml-active-next-icon{
  display:grid;
  place-items:center;
  width:42px;
  height:42px;
  border-radius:12px;
  background:rgba(255,255,255,.13);
}
.aml-active-next-copy strong,
.aml-active-next-copy small{display:block}
.aml-active-next-copy strong{font-size:.86rem;font-weight:950}
.aml-active-next-copy small{margin-top:3px;color:rgba(255,255,255,.72);font-size:.69rem;line-height:1.4}
.aml-active-next>i{font-size:.72rem;opacity:.72}
.aml-active-recent{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:8px;
  padding:0 16px 14px;
}
.aml-active-recent div{
  padding:11px;
  border:1px solid #e5e9f0;
  border-radius:13px;
  background:#fafbfe;
}
.aml-active-recent strong,
.aml-active-recent span{display:block}
.aml-active-recent strong{color:#172033;font-size:1rem}
.aml-active-recent span{margin-top:2px;color:#758096;font-size:.62rem;font-weight:800}
.aml-active-path{
  display:grid;
  grid-template-columns:repeat(5,minmax(0,1fr));
  gap:7px;
  padding:14px 16px 17px;
  border-top:1px solid #edf0f5;
}
.aml-active-step{
  position:relative;
  display:grid;
  justify-items:center;
  gap:6px;
  padding:10px 5px;
  border:1px solid #e4e8ef;
  border-radius:13px;
  background:#fafbfe;
  color:#596579!important;
  text-align:center;
  text-decoration:none!important;
}
.aml-active-step i{
  display:grid;
  place-items:center;
  width:30px;
  height:30px;
  border-radius:9px;
  background:#eceafd;
  color:#5a4fe0;
}
.aml-active-step span{font-size:.61rem;font-weight:900;line-height:1.2}
.aml-active-step.is-complete{
  border-color:#cbeedc;
  background:#f2fbf7;
  color:#16724f!important;
}
.aml-active-step.is-complete i{background:#dff7eb;color:#087c54}
.aml-active-step.is-complete:after{
  content:'✓';
  position:absolute;
  top:5px;
  right:6px;
  color:#09845a;
  font-size:.58rem;
  font-weight:950;
}
.aml-activated-note{
  margin:0 16px 14px;
  padding:10px 12px;
  border:1px solid #cfeedd;
  border-radius:12px;
  background:#f1fbf6;
  color:#267254;
  font-size:.7rem;
  line-height:1.45;
}
@media(max-width:650px){
  .aml-get-active-head{grid-template-columns:minmax(0,1fr) 70px;padding:17px 16px}
  .aml-momentum-ring{width:68px;height:68px}
  .aml-active-path{
    display:flex;
    overflow-x:auto;
    scrollbar-width:none;
    padding:12px 16px 15px;
  }
  .aml-active-path::-webkit-scrollbar{display:none}
  .aml-active-step{flex:0 0 82px;min-height:74px}
  .aml-active-recent div{padding:9px 8px}
  .aml-active-recent span{font-size:.57rem}
}


/* ===== extracted from dashboard/index.php #31 ===== */
@media (max-width: 991.98px){
  .aml-content.dashboard-shell,
  .dashboard-shell{
    padding-top:18px!important;
  }

  .aml-dashboard-focused-nav,
  .aml-dashboard-manage-menu .aml-dashboard-subnav,
  .aml-dashboard-subnav{
    position:relative!important;
    top:auto!important;
    inset:auto!important;
    transform:none!important;
    z-index:1!important;
  }

  .aml-dashboard-focused-nav{
    margin-top:18px!important;
    margin-bottom:14px!important;
  }

  .aml-dashboard-manage-menu{
    margin-top:18px!important;
  }

  .aml-dashboard-subnav{
    margin-top:0!important;
  }
}

@media (max-width:480px){
  .aml-dashboard-focused-nav{
    margin-top:22px!important;
  }

  .aml-dashboard-manage-menu{
    margin-top:22px!important;
  }
}


/* ===== extracted from dashboard/_center_common.php #1 ===== */
:root{--gc-brand:#635bff;--gc-brand2:#8b5cf6;--gc-ink:#172033;--gc-muted:#68758a;--gc-line:#e3e8f0;--gc-soft:#f7f8fc;--gc-good:#078455;--gc-warn:#a76700}
*{box-sizing:border-box}
body{background:#f5f7fb;color:var(--gc-ink)}
.gc-main{padding:82px 12px 90px}
.gc-shell{width:min(1180px,100%);margin:auto}
.gc-topnav{display:flex;gap:8px;overflow-x:auto;padding:4px 0 14px;scrollbar-width:none}.gc-topnav::-webkit-scrollbar{display:none}
.gc-topnav a{flex:0 0 auto;display:flex;align-items:center;gap:7px;min-height:42px;padding:9px 12px;border:1px solid var(--gc-line);border-radius:12px;background:#fff;color:#536075!important;font-size:.73rem;font-weight:900;text-decoration:none!important}
.gc-topnav a.active{background:#201a52;border-color:#201a52;color:#fff!important}
.gc-hero{position:relative;overflow:hidden;padding:24px;border-radius:24px;background:linear-gradient(135deg,#171c2f,#30286d 64%,#635bff);color:#fff;box-shadow:0 20px 48px rgba(28,35,65,.18)}
.gc-hero:after{content:"";position:absolute;width:220px;height:220px;border-radius:50%;right:-70px;top:-100px;background:rgba(255,255,255,.10)}
.gc-kicker{display:block;margin-bottom:7px;color:#c7c1ff;font-size:.67rem;font-weight:950;letter-spacing:.12em;text-transform:uppercase}
.gc-hero h1{position:relative;z-index:1;margin:0;max-width:780px;font-size:clamp(1.65rem,5vw,2.7rem);line-height:1.05;font-weight:950;letter-spacing:-.045em}
.gc-hero p{position:relative;z-index:1;max-width:720px;margin:10px 0 0;color:rgba(255,255,255,.78);font-size:.88rem;line-height:1.55}
.gc-grid{display:grid;grid-template-columns:repeat(12,minmax(0,1fr));gap:14px;margin-top:14px}
.gc-card{grid-column:span 12;padding:18px;border:1px solid var(--gc-line);border-radius:19px;background:#fff;box-shadow:0 8px 28px rgba(25,35,60,.055)}
.gc-card h2,.gc-card h3{margin:0;color:var(--gc-ink);font-weight:950;letter-spacing:-.025em}
.gc-card p{color:var(--gc-muted);font-size:.78rem;line-height:1.5}
.gc-btn{display:inline-flex;align-items:center;justify-content:center;gap:7px;min-height:44px;padding:10px 14px;border:0;border-radius:12px;background:#635bff;color:#fff!important;font-size:.76rem;font-weight:900;text-decoration:none!important;cursor:pointer}
.gc-btn.secondary{border:1px solid var(--gc-line);background:#fff;color:#4f5b70!important}.gc-btn.dark{background:#171c2f}.gc-btn.good{background:#078455}
.gc-actions{display:flex;gap:8px;flex-wrap:wrap}
.gc-stat-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:9px}
.gc-stat{padding:13px;border:1px solid var(--gc-line);border-radius:14px;background:var(--gc-soft)}
.gc-stat strong,.gc-stat span{display:block}.gc-stat strong{font-size:1.3rem;font-weight:950}.gc-stat span{margin-top:3px;color:#748096;font-size:.63rem;font-weight:800}
.gc-progress{height:8px;overflow:hidden;border-radius:999px;background:#e8ebf2}.gc-progress span{display:block;height:100%;border-radius:inherit;background:linear-gradient(90deg,#635bff,#8b5cf6)}
.gc-badge{display:inline-flex;align-items:center;gap:5px;padding:5px 8px;border-radius:999px;background:#efedff;color:#5549ce;font-size:.64rem;font-weight:900}
.gc-badge.good{background:#e8f8f0;color:#087d53}.gc-badge.warn{background:#fff4d8;color:#795800}
.gc-upgrade{border-color:#d8d2ff;background:linear-gradient(145deg,#fbfaff,#f5f2ff)}
.gc-note{padding:11px 12px;border:1px solid #dce3ee;border-radius:12px;background:#f8fafe;color:#637087;font-size:.7rem;line-height:1.45}
@media(min-width:760px){.gc-half{grid-column:span 6}.gc-third{grid-column:span 4}.gc-stat-grid{grid-template-columns:repeat(4,minmax(0,1fr))}.gc-main{padding-left:22px;padding-right:22px}}


/* ===== extracted from dashboard/analytics/index.php #1 ===== */
.ac-range{display:flex;gap:7px;overflow-x:auto;margin-top:14px;scrollbar-width:none}.ac-range a{flex:0 0 auto;padding:8px 11px;border:1px solid rgba(255,255,255,.22);border-radius:999px;color:#fff!important;font-size:.69rem;font-weight:900;text-decoration:none!important}.ac-range a.active{background:#fff;color:#31296d!important}
.ac-chart{display:flex;gap:3px;height:170px;align-items:flex-end;padding:12px 2px 0;border-bottom:1px solid #e5e9f0;overflow:hidden}.ac-day{flex:1;min-width:3px;display:flex;gap:1px;align-items:flex-end;height:100%}.ac-bar{flex:1;min-height:2px;border-radius:4px 4px 0 0}.ac-view{background:#635bff}.ac-click{background:#10a675}.ac-lift{background:#202433}
.ac-legend{display:flex;gap:13px;flex-wrap:wrap;margin-top:10px;color:#68758a;font-size:.67rem}.ac-legend i{display:inline-block;width:8px;height:8px;border-radius:50%;margin-right:4px}
.ac-links{display:grid;gap:8px}.ac-link{display:grid;grid-template-columns:minmax(0,1fr) auto;gap:10px;align-items:center;padding:11px;border:1px solid #e5e9f0;border-radius:13px}.ac-link strong,.ac-link small{display:block;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.ac-link small{color:#7a8496;font-size:.65rem}.ac-link b{font-size:.82rem}
.ac-insight{display:grid;grid-template-columns:38px minmax(0,1fr) auto;gap:10px;align-items:center;padding:11px;border:1px solid #e5e9f0;border-radius:13px;margin-top:8px}.ac-insight>i{display:grid;place-items:center;width:38px;height:38px;border-radius:11px;background:#efedff;color:#5549ce}.ac-insight strong,.ac-insight small{display:block}.ac-insight small{margin-top:3px;color:#748096;font-size:.68rem;line-height:1.4}


/* ===== extracted from dashboard/growth/index.php #1 ===== */
.gr-mission{display:grid;grid-template-columns:42px minmax(0,1fr) auto;gap:11px;align-items:center;padding:12px;border:1px solid #e4e9f0;border-radius:14px;margin-top:8px;color:inherit!important;text-decoration:none!important}.gr-mission>span:first-child{display:grid;place-items:center;width:42px;height:42px;border-radius:12px;background:#efedff;color:#5549ce}.gr-mission.done{background:#f2fbf7;border-color:#ccebdc}.gr-mission.done>span:first-child{background:#daf5e8;color:#087d53}.gr-mission strong,.gr-mission small{display:block}.gr-mission small{margin-top:3px;color:#748096;font-size:.67rem;line-height:1.4}
.gr-share{display:grid;grid-template-columns:1fr 1fr;gap:8px}.gr-share a{min-height:64px;display:flex;align-items:center;justify-content:center;gap:8px;padding:12px;border-radius:14px;text-decoration:none!important;font-weight:900;font-size:.76rem}.gr-x{background:#050505;color:#fff!important}.gr-fb{background:#1877f2;color:#fff!important}
.gr-ref{padding:15px;border-radius:16px;background:linear-gradient(135deg,#171c2f,#312970);color:#fff}.gr-ref p{color:rgba(255,255,255,.72)}.gr-ref input{width:100%;min-height:44px;padding:10px;border:1px solid rgba(255,255,255,.18);border-radius:11px;background:rgba(255,255,255,.10);color:#fff;font-size:.72rem}


/* ==============================================================
   CANONICAL AUTHENTICATED SHELL — source of truth
   ============================================================== */
:root{
  --aml-mobile-header-height:64px;
  --aml-mobile-bottom-nav-height:76px;
  --aml-app-max:1500px;
}
html{min-height:100%;overflow-x:hidden;overflow-y:auto!important}
body.aml-app{
  min-height:100vh!important;
  overflow-x:hidden!important;
  overflow-y:auto!important;
  overscroll-behavior-y:auto;
}

/* Center pages use the same app shell but are normal document pages. */
body.aml-app.aml-center-page{
  position:relative!important;
  height:auto!important;
  min-height:100vh!important;
  overflow-y:auto!important;
}
body.aml-app.aml-center-page .gc-main{
  position:relative!important;
  min-height:calc(100vh - var(--aml-mobile-header-height))!important;
  overflow:visible!important;
}

/* Shared dashboard mobile section navigation. */
.aml-dashboard-focused-nav{
  position:relative!important;
  inset:auto!important;
  transform:none!important;
  z-index:2!important;
}

/* Utility classes replacing page-level inline declarations. */
.aml-clickable{cursor:pointer!important}
.aml-brand-text{color:var(--aml-brand)!important}
.aml-hidden{display:none!important}
.aml-wizard-callout{padding:16px;border:1px solid #dcd8ff;border-radius:19px;background:linear-gradient(135deg,#fbfaff,#f1efff);box-shadow:0 10px 28px rgba(37,31,95,.06)}
.aml-wizard-callout-row{display:flex;gap:13px;align-items:center;justify-content:space-between;flex-wrap:wrap}
.aml-wizard-callout-copy{display:flex;gap:11px;align-items:center;min-width:0}
.aml-wizard-callout-icon{display:grid;place-items:center;flex:0 0 44px;height:44px;border-radius:13px;background:#635bff;color:#fff}
.aml-wizard-callout-title{display:block;color:#1d2440;font-size:.9rem}
.aml-wizard-callout-sub{display:block;margin-top:3px;color:#6e7890;font-size:.7rem}
.aml-wizard-callout-btn{border-radius:11px!important;font-weight:900!important}

.gc-flex-between{display:flex;justify-content:space-between;gap:12px;align-items:center}
.gc-step-layout{display:flex;gap:12px;align-items:flex-start}
.gc-min0{min-width:0}
.gc-mt-8{margin-top:8px!important}.gc-mt-9{margin-top:9px!important}.gc-mt-10{margin-top:10px!important}.gc-mt-12{margin-top:12px!important}.gc-mt-13{margin-top:13px!important}.gc-mb-0{margin-bottom:0!important}
.gc-percent-number{font-size:1.6rem}
.gc-kicker-brand{color:#5a4fe0!important}
.gc-stat-grid-two{grid-template-columns:repeat(2,minmax(0,1fr))!important}
.gc-step-icon{display:grid;place-items:center;flex:0 0 42px;height:42px;border-radius:12px;background:#efedff;color:#5549ce}
.gc-step-icon.done{background:#e8f8f0;color:#087d53}
.gc-native-progress{display:block;width:100%;height:8px;border:0;border-radius:999px;overflow:hidden;background:#e8ebf2;appearance:none}
.gc-native-progress::-webkit-progress-bar{background:#e8ebf2;border-radius:999px}.gc-native-progress::-webkit-progress-value{background:linear-gradient(90deg,#635bff,#8b5cf6);border-radius:999px}.gc-native-progress::-moz-progress-bar{background:linear-gradient(90deg,#635bff,#8b5cf6);border-radius:999px}
.ac-range-note{margin-top:14px}
.ac-insight-link{color:inherit!important;text-decoration:none!important}
.ac-chevron{font-size:.7rem}
.ac-legend-dot{display:inline-block;width:8px;height:8px;border-radius:50%;margin-right:4px}.ac-legend-view{background:#635bff}.ac-legend-click{background:#10a675}.ac-legend-lift{background:#202433}
.gr-chevron{font-size:.7rem}.gr-two-stats{grid-template-columns:repeat(2,minmax(0,1fr))!important;margin-bottom:12px}

@media(max-width:991.98px){
  /* One reliable top and bottom safe area for every authenticated mobile page. */
  body.aml-app{
    padding:var(--aml-mobile-header-height) 0 var(--aml-mobile-bottom-nav-height)!important;
    overflow-y:auto!important;
  }
  body.aml-app > .aml-main,.aml-main{
    position:relative!important;
    inset:auto!important;
    width:100%!important;
    height:auto!important;
    min-height:calc(100vh - var(--aml-mobile-header-height) - var(--aml-mobile-bottom-nav-height))!important;
    overflow:visible!important;
  }
  .aml-main > .aml-content,.aml-content.dashboard-shell,.aml-content.feed-layout{
    padding:12px!important;
    overflow:visible!important;
  }
  .aml-dashboard-focused-nav{
    display:flex!important;
    width:100%!important;
    min-height:52px!important;
    margin:8px 0 14px!important;
    padding:6px!important;
    gap:5px!important;
    overflow-x:auto!important;
    overflow-y:hidden!important;
    border:1px solid #dfe5ef!important;
    border-radius:15px!important;
    background:#fff!important;
    box-shadow:0 7px 20px rgba(24,34,58,.07)!important;
    scrollbar-width:none!important;
  }
  .aml-dashboard-focused-nav::-webkit-scrollbar{display:none!important}
  .aml-dashboard-focused-nav a{
    display:flex!important;
    flex:0 0 auto!important;
    align-items:center!important;
    justify-content:center!important;
    gap:6px!important;
    min-height:40px!important;
    padding:8px 11px!important;
    border-radius:10px!important;
    color:#536074!important;
    font-size:.72rem!important;
    font-weight:900!important;
    line-height:1!important;
    text-decoration:none!important;
    white-space:nowrap!important;
  }
  .aml-dashboard-focused-nav a.active{background:#201b4d!important;color:#fff!important}

  body.aml-app.aml-center-page .gc-main{
    padding:10px 12px calc(var(--aml-mobile-bottom-nav-height) + 12px)!important;
    min-height:auto!important;
  }
  .gc-topnav{
    position:relative!important;
    top:auto!important;
    display:flex!important;
    gap:6px!important;
    margin:0 0 12px!important;
    padding:6px!important;
    min-height:52px!important;
    overflow-x:auto!important;
    overflow-y:hidden!important;
    border:1px solid #dfe5ef!important;
    border-radius:15px!important;
    background:#fff!important;
    box-shadow:0 7px 20px rgba(24,34,58,.07)!important;
  }
  .gc-topnav a{min-height:40px!important;padding:8px 10px!important;font-size:.7rem!important}
  .gc-hero{padding:20px!important;border-radius:19px!important}
  .gc-card{padding:15px!important;border-radius:16px!important}
}

@media(max-width:390px){
  :root{--aml-mobile-header-height:62px;--aml-mobile-bottom-nav-height:74px}
  .aml-dashboard-focused-nav a,.gc-topnav a{padding-left:9px!important;padding-right:9px!important;font-size:.68rem!important}
}


/* ===== free-seo-pages ===== */

:root{--fl-ink:#142033;--fl-muted:#637086;--fl-line:#e2e8f1;--fl-brand:#635bff;--fl-dark:#0b1020;--fl-green:#16a34a}
body{margin:0;background:#fff;color:var(--fl-ink)}
.fl-page{overflow:hidden;background:#fff}.fl-shell{width:min(1160px,calc(100% - 30px));margin:0 auto}
.fl-breadcrumb{padding:12px 0;border-bottom:1px solid var(--fl-line);background:#fff;color:#6c788d;font-size:.8rem}.fl-breadcrumb a{color:#5145cd;text-decoration:none}
.fl-hero{position:relative;padding:78px 0 68px;background:radial-gradient(circle at 10% 15%,rgba(99,91,255,.16),transparent 34%),radial-gradient(circle at 90% 30%,rgba(14,165,233,.13),transparent 29%),linear-gradient(180deg,#fafbff,#fff)}
.fl-hero-grid{display:grid;grid-template-columns:minmax(0,1.05fr) minmax(380px,.95fr);gap:50px;align-items:center}
.fl-kicker{display:inline-flex;align-items:center;gap:7px;padding:7px 11px;border:1px solid #d9d5ff;border-radius:999px;background:#f4f2ff;color:#5045cc;font-size:.74rem;font-weight:900;letter-spacing:.07em;text-transform:uppercase}
.fl-hero h1{margin:17px 0 15px;color:var(--fl-ink);font-size:clamp(2.65rem,5.7vw,4.8rem);line-height:.98;letter-spacing:-.058em;font-weight:950}
.fl-lead{max-width:700px;margin:0;color:var(--fl-muted);font-size:1.08rem;line-height:1.72}
.fl-actions{display:flex;gap:10px;flex-wrap:wrap;margin-top:24px}.fl-actions .btn{min-height:50px;padding:12px 20px;border-radius:13px;font-weight:850}
.fl-trust{display:flex;gap:14px;flex-wrap:wrap;margin-top:16px;color:#647187;font-size:.8rem}.fl-trust span{display:flex;align-items:center;gap:6px}.fl-trust i{color:var(--fl-green)}
.fl-preview{padding:18px;border:1px solid var(--fl-line);border-radius:27px;background:#111827;box-shadow:0 28px 70px rgba(13,20,38,.25)}
.fl-preview-screen{padding:22px;border-radius:20px;background:linear-gradient(155deg,#12375d,#171744);color:#fff}.fl-preview-head{text-align:center}.fl-preview-head strong,.fl-preview-head small{display:block}.fl-preview-head strong{font-size:1.08rem}.fl-preview-head small{margin-top:4px;color:rgba(255,255,255,.72)}
.fl-avatar{width:70px;height:70px;margin:0 auto 10px;border:4px solid rgba(255,255,255,.55);border-radius:50%;background:linear-gradient(135deg,#8f9cff,#5844e8)}
.fl-preview-links{display:grid;gap:9px;margin-top:18px}.fl-preview-link{display:flex;align-items:center;gap:10px;padding:12px;border-radius:12px;background:#fff;color:#172033;font-size:.78rem;font-weight:850}.fl-preview-link i{display:grid;place-items:center;width:31px;height:31px;border-radius:9px;background:#eeecff;color:#635bff}
.fl-section{padding:72px 0}.fl-soft{background:#f6f8fc}.fl-dark{background:var(--fl-dark);color:#fff}
.fl-heading{max-width:810px;margin:0 auto 35px;text-align:center}.fl-heading h2{margin:11px 0;color:var(--fl-ink);font-size:clamp(2rem,4vw,3.15rem);letter-spacing:-.045em;font-weight:950}.fl-heading p{margin:0;color:var(--fl-muted);font-size:1.01rem;line-height:1.66}.fl-dark .fl-heading h2{color:#fff}.fl-dark .fl-heading p{color:#aab5c8}
.fl-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:15px}.fl-card{padding:23px;border:1px solid var(--fl-line);border-radius:20px;background:#fff;box-shadow:0 12px 34px rgba(20,30,55,.06)}.fl-card i{display:grid;place-items:center;width:47px;height:47px;border-radius:14px;background:#eeecff;color:#635bff}.fl-card h3{margin:15px 0 8px;font-size:1.08rem;font-weight:900}.fl-card p{margin:0;color:var(--fl-muted);line-height:1.62}
.fl-steps{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:15px}.fl-step{padding:25px;border:1px solid #27334c;border-radius:20px;background:#111827}.fl-step span{display:grid;place-items:center;width:42px;height:42px;border-radius:13px;background:#39ff14;color:#06210b;font-weight:950}.fl-step h3{margin:15px 0 8px;color:#fff;font-weight:900}.fl-step p{margin:0;color:#aab5c8;line-height:1.62}
.fl-split{display:grid;grid-template-columns:minmax(0,.93fr) minmax(0,1.07fr);gap:42px;align-items:center}.fl-split h2{margin:11px 0;color:var(--fl-ink);font-size:clamp(2rem,4vw,3.1rem);font-weight:950;letter-spacing:-.045em}.fl-split p{color:var(--fl-muted);line-height:1.7}
.fl-use-list{display:grid;gap:10px}.fl-use{display:flex;gap:12px;padding:15px;border:1px solid var(--fl-line);border-radius:15px;background:#fff;box-shadow:0 9px 27px rgba(20,30,55,.05)}.fl-use i{display:grid;place-items:center;flex:0 0 42px;width:42px;height:42px;border-radius:12px;background:#eeecff;color:#635bff}.fl-use strong,.fl-use small{display:block}.fl-use small{margin-top:4px;color:#6c788d;line-height:1.45}
.fl-related{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:12px}.fl-related a{display:block;padding:17px;border:1px solid var(--fl-line);border-radius:15px;background:#fff;color:#5145cd;font-weight:850;text-decoration:none;box-shadow:0 8px 24px rgba(20,30,55,.05)}.fl-related a:hover{border-color:#bfb8ff;background:#f8f7ff}
.fl-faq{max-width:900px;margin:0 auto}.fl-faq details{margin-bottom:10px;border:1px solid var(--fl-line);border-radius:15px;background:#fff}.fl-faq summary{padding:17px 19px;cursor:pointer;color:#172033;font-weight:900}.fl-faq p{margin:0;padding:0 19px 18px;color:var(--fl-muted);line-height:1.65}
.fl-final{padding:74px 0;text-align:center;background:radial-gradient(circle at 20% 10%,rgba(99,91,255,.13),transparent 32%),linear-gradient(180deg,#f8f9ff,#fff)}.fl-final h2{max-width:800px;margin:0 auto;color:var(--fl-ink);font-size:clamp(2.1rem,5vw,3.7rem);letter-spacing:-.052em;font-weight:950}.fl-final p{max-width:690px;margin:14px auto 23px;color:var(--fl-muted);font-size:1.02rem}
.fl-hub-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:15px}.fl-hub-card{display:flex;flex-direction:column;padding:23px;border:1px solid var(--fl-line);border-radius:20px;background:#fff;box-shadow:0 12px 34px rgba(20,30,55,.06)}.fl-hub-card h2{font-size:1.2rem;font-weight:900}.fl-hub-card p{flex:1;color:var(--fl-muted);line-height:1.62}.fl-hub-card a{align-self:flex-start;font-weight:850}
@media(max-width:950px){.fl-hero-grid,.fl-split{grid-template-columns:1fr}.fl-preview{max-width:600px;margin:0 auto}.fl-grid,.fl-steps{grid-template-columns:1fr 1fr}}
@media(max-width:680px){.fl-shell{width:min(100% - 22px,1160px)}.fl-hero{padding:52px 0 47px}.fl-hero h1{font-size:2.65rem}.fl-actions{display:grid}.fl-actions .btn{width:100%;margin:0!important}.fl-section{padding:53px 0}.fl-grid,.fl-steps,.fl-related,.fl-hub-grid{grid-template-columns:1fr}.fl-preview{padding:11px}.fl-preview-screen{padding:16px}}



/* ===== legacy-feed ===== */
/* 
    Body, button, comment-thread, and utilities

    Notes:
        - This section sets some basic styles. You can ignore this part and 
        go directly to the comment styles.
*/

* {
    box-sizing: border-box;
}
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    line-height: 1.4;
    color: rgba(0, 0, 0, 0.85);
    background-color: #f9f9f9;

}
button {
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    font-size: 14px;
    padding: 4px 8px;
    color: rgba(0, 0, 0, 0.85);
    background-color: #fff;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 4px;
}
button:hover,
button:focus,
button:active {
    cursor: pointer;
    background-color: #ecf0f1;
}
.comment-thread {
    width: 700px;
    max-width: 100%;
    margin: auto;
    padding: 0 30px;
    background-color: #fff;
    border: 1px solid transparent; /* Removes margin collapse */
}
.m-0 {
    margin: 0;
}
.sr-only {
    position: absolute;
    left: -10000px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

/* Comment */

.comment {
    position: relative;
    margin: 20px auto;
}
.comment-heading {
    display: flex;
    align-items: center;
    height: 50px;
    font-size: 14px;
}
.comment-voting {
    width: 20px;
    height: 32px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 4px;
}
.comment-voting button {
    display: block;
    width: 100%;
    height: 50%;
    padding: 0;
    border: 0;
    font-size: 10px;
}
.comment-info {
    color: rgba(0, 0, 0, 0.5);
    margin-left: 10px;
}
.comment-author {
    color: rgba(0, 0, 0, 0.85);
    font-weight: bold;
    text-decoration: none;
}
.comment-author:hover {
    text-decoration: underline;
}
.replies {
    margin-left: 20px;
}

/* Adjustments for the comment border links */

.comment-border-link {
    display: block;
    position: absolute;
    top: 50px;
    left: 0;
    width: 12px;
    height: calc(100% - 50px);
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    background-color: rgba(0, 0, 0, 0.1);
    background-clip: padding-box;
}
.comment-border-link:hover {
    background-color: rgba(0, 0, 0, 0.3);
}
.comment-body {
    padding: 0 20px;
    padding-left: 28px;
}
.replies {
    margin-left: 28px;
}

/* Adjustments for toggleable comments */

details.comment summary {
    position: relative;
    list-style: none;
    cursor: pointer;
}
details.comment summary::-webkit-details-marker {
    display: none;
}
details.comment:not([open]) .comment-heading {
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}
.comment-heading::after {
    display: inline-block;
    position: absolute;
    right: 5px;
    align-self: center;
    font-size: 12px;
    color: rgba(0, 0, 0, 0.55);
}
details.comment[open] .comment-heading::after {
    content: "Click to hide";
}
details.comment:not([open]) .comment-heading::after {
    content: "Click to show";
}

/* Adjustment for Internet Explorer */

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
    /* Resets cursor, and removes prompt text on Internet Explorer */
    .comment-heading {
        cursor: default;
    }
    details.comment[open] .comment-heading::after,
    details.comment:not([open]) .comment-heading::after {
        content: " ";
    }
}

/* Styling the reply to comment form */

.reply-form textarea {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    font-size: 16px;
    width: 100%;
    max-width: 100%;
    margin-top: 15px;
    margin-bottom: 5px;
}
.d-none {
    display: none;
}
/* Feed Styling */
#PostWrapper, .ReplyPanel {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border: 1px solid #1b03a3;
}

#PostWrapper:hover, .ReplyPanel:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.card-body img, .carousel-item img {
    max-height: 400px;
    object-fit: cover;
}

.carousel {
    position: relative;
    max-width: 100%;
}

.carousel-control-prev, .carousel-control-next {
    background: rgba(0, 0, 0, 0.5);
    width: 50px;
    height: 50px;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 50%;
    transition: background 0.3s ease;
}

.carousel-control-prev:hover, .carousel-control-next:hover {
    background: rgba(0, 0, 0, 0.7);
}

.carousel-control-prev-icon, .carousel-control-next-icon {
    background-size: 100%, 100%;
}

.carousel-caption {
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    padding: 5px 10px;
    border-radius: 5px;
    bottom: 10px;
}

.image-count {
    font-size: 0.9rem;
}

.ReplyPanel {
    margin-left: 20%;
    width: 80%;
}

@media (max-width: 576px) {
    .ReplyPanel {
        margin-left: 10%;
        width: 90%;
    }
    .card-body img, .carousel-item img {
        max-height: 250px;
    }
}

.pb-cmnt-textarea {
    resize: vertical;
    padding: 0.75rem;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    transition: border-color 0.3s ease;
}

.pb-cmnt-textarea:focus {
    border-color: #68a4c4;
    box-shadow: 0 0 0 0.2rem rgba(104, 164, 196, 0.25);
}

.loading-image {
    width: 50px;
    height: 50px;
}

.end-record-info {
    text-align: center;
    padding: 1rem;
    background: #f9f9fa;
    border-radius: 0.25rem;
}

.btn-hover-success:hover {
    background-color: #28a745;
    color: #fff;
}

.btn-hover-danger:hover {
    background-color: #dc3545;
    color: #fff;
}


/* ===== INDEX / PUBLIC PROFILE + HOMEPAGE (moved from index.php 2026-08-08) ===== */

/* --- index-inline id="aml-homepage-2026" --- */
:root{
  --aml-home-ink:#142033;
  --aml-home-muted:#637086;
  --aml-home-border:#e2e8f1;
  --aml-home-brand:#635bff;
  --aml-home-green:#39ff14;
  --aml-home-dark:#090d18;
}
body{background:#fff;color:var(--aml-home-ink)}
.aml-homepage{overflow:hidden;background:#fff}
.aml-home-shell{width:min(1220px,calc(100% - 32px));margin:0 auto}
.aml-home-hero{
  position:relative;isolation:isolate;padding:84px 0 76px;
  background:
    radial-gradient(circle at 10% 10%,rgba(99,91,255,.17),transparent 34%),
    radial-gradient(circle at 90% 28%,rgba(14,165,233,.15),transparent 30%),
    linear-gradient(180deg,#fbfcff,#fff);
}
.aml-home-hero:after{
  content:"";position:absolute;inset:auto 0 0;height:1px;
  background:linear-gradient(90deg,transparent,#dfe4ef,transparent)
}
.aml-home-hero-grid{display:grid;grid-template-columns:minmax(0,1.02fr) minmax(420px,.98fr);gap:54px;align-items:center}
.aml-home-eyebrow{display:inline-flex;align-items:center;gap:7px;padding:7px 11px;border:1px solid #d9d5ff;border-radius:999px;background:#f4f2ff;color:#5045cc;font-size:.76rem;font-weight:900;letter-spacing:.06em;text-transform:uppercase}
.aml-home-eyebrow-live{border-color:#c8f7bd;background:#f0ffec;color:#157d09}
.aml-home-hero h1{max-width:760px;margin:18px 0 18px;font-size:clamp(2.75rem,6vw,5.2rem);line-height:.96;letter-spacing:-.065em;font-weight:950;color:var(--aml-home-ink)}
.aml-home-hero h1 span{background:linear-gradient(100deg,#635bff,#006ee6 48%,#0aae69);-webkit-background-clip:text;background-clip:text;color:transparent}
.aml-home-hero-copy{max-width:690px;margin:0;color:var(--aml-home-muted);font-size:1.12rem;line-height:1.7}
.aml-home-hero-actions{display:flex;gap:10px;flex-wrap:wrap;margin:26px 0 17px}
.aml-home-hero-actions .btn{min-height:50px;padding:12px 20px;border-radius:13px;font-weight:850}
.aml-btn-live{background:var(--aml-home-green)!important;border-color:#24db17!important;color:#06210b!important;box-shadow:0 12px 28px rgba(57,255,20,.23)}
.aml-home-trust{display:flex;align-items:center;gap:16px;flex-wrap:wrap;color:#667287;font-size:.8rem}
.aml-home-trust span{display:inline-flex;align-items:center;gap:6px}
.aml-home-trust i{color:#12a45c}
.aml-home-username-form{display:grid;grid-template-columns:minmax(0,1fr) auto;gap:8px;max-width:570px;margin-top:24px;padding:8px;border:1px solid var(--aml-home-border);border-radius:16px;background:#fff;box-shadow:0 15px 36px rgba(22,32,54,.08)}
.aml-home-username-form input{min-width:0;border:0!important;box-shadow:none!important;font-size:1rem}
.aml-home-username-form button{border-radius:11px;font-weight:850}

.aml-product-preview{position:relative;min-height:585px}
.aml-preview-phone{position:absolute;width:292px;padding:10px;border-radius:36px;background:#111827;box-shadow:0 30px 70px rgba(13,20,38,.28)}
.aml-preview-phone-main{top:0;left:50%;transform:translateX(-55%);z-index:3}
.aml-preview-phone-live{right:-8px;bottom:2px;z-index:4;width:260px;transform:rotate(2.5deg)}
.aml-preview-screen{overflow:hidden;min-height:520px;border-radius:28px;background:linear-gradient(155deg,#0e385e,#11213b);color:#fff}
.aml-preview-profile{text-align:center;padding:25px 14px 16px}
.aml-preview-avatar{position:relative;width:74px;height:74px;margin:0 auto 10px;border-radius:50%;background:linear-gradient(135deg,#a9b6ff,#4d40d7);border:4px solid rgba(255,255,255,.55)}
.aml-preview-avatar-live:before,.aml-preview-avatar-live:after{content:"";position:absolute;inset:-8px;border:3px solid #39ff14;border-radius:50%;animation:amlHeroPulse 1.6s infinite}
.aml-preview-avatar-live:after{inset:-15px;animation-delay:.45s}
@keyframes amlHeroPulse{0%{transform:scale(.88);opacity:.9}75%,100%{transform:scale(1.12);opacity:0}}
.aml-preview-profile strong,.aml-preview-profile small{display:block}
.aml-preview-profile strong{font-size:1.1rem}.aml-preview-profile small{margin-top:4px;color:rgba(255,255,255,.72)}
.aml-preview-badges{display:flex;justify-content:center;gap:5px;margin:9px 0}
.aml-preview-badges span{padding:5px 7px;border-radius:999px;font-size:.58rem;font-weight:900}
.aml-preview-founder{background:#fff2cf;color:#7a5700}.aml-preview-live{background:#e60024;color:#fff}
.aml-preview-links{display:grid;gap:7px;padding:8px 12px 16px}
.aml-preview-section{padding:10px;border:1px solid rgba(255,255,255,.25);border-radius:15px;background:rgba(255,255,255,.08)}
.aml-preview-section>strong{display:block;margin-bottom:7px;font-size:.7rem}
.aml-preview-link{display:flex;align-items:center;gap:8px;margin-top:6px;padding:9px;border-radius:10px;background:#fff;color:#172033;font-size:.68rem;font-weight:800}
.aml-preview-link i{width:21px;text-align:center;color:#635bff}
.aml-live-preview-screen{display:grid;grid-template-rows:minmax(0,1fr) auto;min-height:455px;background:#080d17}
.aml-live-preview-video{position:relative;display:grid;place-items:center;background:radial-gradient(circle at 50% 30%,#31405d,#070a10 60%);overflow:hidden}
.aml-live-preview-video:after{content:"LIVE PREVIEW";font-size:1rem;font-weight:950;letter-spacing:.15em;color:#fff}
.aml-live-preview-top{position:absolute;top:11px;left:11px;padding:5px 8px;border-radius:999px;background:#e60024;color:#fff;font-size:.58rem;font-weight:900}
.aml-live-preview-chat{padding:11px;background:#111827}
.aml-live-preview-chat strong{display:block;margin-bottom:6px;font-size:.7rem}
.aml-live-chat-line{margin-top:5px;padding:7px 8px;border-radius:8px;background:#1d293b;font-size:.6rem;color:#dce4ef}
.aml-live-preview-ad{margin-top:7px;padding:6px;text-align:center;border-radius:7px;background:#fff;color:#667287;font-size:.52rem}
.aml-preview-float{position:absolute;left:0;bottom:45px;z-index:5;display:flex;align-items:center;gap:9px;padding:12px 14px;border:1px solid #e0e5ee;border-radius:15px;background:#fff;box-shadow:0 18px 42px rgba(20,30,55,.14)}
.aml-preview-float i{display:grid;place-items:center;width:38px;height:38px;border-radius:12px;background:#e9fff1;color:#12934d}
.aml-preview-float strong,.aml-preview-float small{display:block}.aml-preview-float small{color:#687086;font-size:.7rem}


.aml-home-stats-wrap{
  position:relative;
  z-index:8;
  margin-top:-35px;
  padding:0 0 8px;
}
.aml-home-stats{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  overflow:hidden;
  border:1px solid var(--aml-home-border);
  border-radius:22px;
  background:rgba(255,255,255,.96);
  box-shadow:0 22px 55px rgba(20,30,55,.12);
  backdrop-filter:blur(14px);
}
.aml-home-stat{
  position:relative;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:18px;
  min-height:122px;
  padding:24px 28px;
  text-align:left;
}
.aml-home-stat:not(:last-child):after{
  content:"";
  position:absolute;
  top:24px;
  right:0;
  bottom:24px;
  width:1px;
  background:linear-gradient(180deg,transparent,#dfe5ee 20%,#dfe5ee 80%,transparent);
}
.aml-home-stat-icon{
  position:relative;
  display:grid;
  place-items:center;
  flex:0 0 58px;
  width:58px;
  height:58px;
  border-radius:18px;
  background:linear-gradient(145deg,#f1efff,#e8e4ff);
  color:#5a50e6;
  box-shadow:inset 0 0 0 1px rgba(90,80,230,.08),0 8px 20px rgba(90,80,230,.12);
}
.aml-home-stat-icon::after{
  content:"";
  position:absolute;
  inset:7px;
  border-radius:13px;
  background:rgba(255,255,255,.42);
  pointer-events:none;
}
.aml-home-stat-icon svg{
  position:relative;
  z-index:1;
  width:27px;
  height:27px;
  display:block;
  stroke:currentColor;
  fill:none;
  stroke-width:2.25;
  stroke-linecap:round;
  stroke-linejoin:round;
}
.aml-home-stat:nth-child(2) .aml-home-stat-icon{
  background:linear-gradient(145deg,#ecfff3,#dcfbe8);
  color:#079454;
  box-shadow:inset 0 0 0 1px rgba(7,148,84,.08),0 8px 20px rgba(7,148,84,.12);
}
.aml-home-stat:nth-child(3) .aml-home-stat-icon{
  background:linear-gradient(145deg,#eff8ff,#dfefff);
  color:#086fc7;
  box-shadow:inset 0 0 0 1px rgba(8,111,199,.08),0 8px 20px rgba(8,111,199,.12);
}
.aml-home-stat strong,
.aml-home-stat span{
  display:block;
}
.aml-home-stat strong{
  color:var(--aml-home-ink);
  font-size:clamp(1.85rem,3vw,2.55rem);
  line-height:.95;
  font-weight:950;
  letter-spacing:-.045em;
}
.aml-home-stat span{
  margin-top:9px;
  color:#4f5c72;
  font-size:.78rem;
  font-weight:900;
  letter-spacing:.07em;
  text-transform:uppercase;
}
.aml-home-stat small{
  display:block;
  margin-top:5px;
  color:#8993a5;
  font-size:.72rem;
  line-height:1.35;
}

.aml-home-section{padding:78px 0}
.aml-home-section-soft{background:#f6f8fc}
.aml-home-section-dark{background:#0b1020;color:#fff}
.aml-home-heading{max-width:800px;margin:0 auto 38px;text-align:center}
.aml-home-heading h2{margin:12px 0 11px;font-size:clamp(2rem,4vw,3.25rem);font-weight:950;letter-spacing:-.045em;color:var(--aml-home-ink)}
.aml-home-heading p{margin:0;color:var(--aml-home-muted);font-size:1.04rem;line-height:1.65}
.aml-home-section-dark .aml-home-heading h2{color:#fff}.aml-home-section-dark .aml-home-heading p{color:#aab5c8}

.aml-feature-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:16px}
.aml-feature-card{position:relative;min-height:250px;padding:24px;border:1px solid var(--aml-home-border);border-radius:22px;background:#fff;box-shadow:0 14px 38px rgba(20,30,55,.06);overflow:hidden}
.aml-feature-card:after{content:"";position:absolute;right:-55px;bottom:-55px;width:150px;height:150px;border-radius:50%;background:var(--card-glow,#eeecff);opacity:.75}
.aml-feature-card i.aml-feature-icon{position:relative;z-index:2;display:grid;place-items:center;width:48px;height:48px;border-radius:15px;background:var(--card-icon,#eeecff);color:var(--card-colour,#635bff);font-size:1.2rem}
.aml-feature-card h3{position:relative;z-index:2;margin:17px 0 8px;font-size:1.12rem;font-weight:900;color:var(--aml-home-ink)}
.aml-feature-card p{position:relative;z-index:2;margin:0;color:var(--aml-home-muted);line-height:1.6}
.aml-feature-card ul{position:relative;z-index:2;margin:14px 0 0;padding:0;list-style:none;color:#4e5a70;font-size:.86rem}
.aml-feature-card li{margin-top:7px}.aml-feature-card li:before{content:"✓";margin-right:7px;color:#11a35b;font-weight:900}

.aml-live-feature{display:grid;grid-template-columns:minmax(0,1fr) minmax(420px,.9fr);gap:52px;align-items:center}
.aml-live-copy h2{margin:14px 0 13px;font-size:clamp(2.2rem,4vw,3.65rem);font-weight:950;letter-spacing:-.05em}
.aml-live-copy>p{color:#aab5c8;font-size:1.04rem;line-height:1.7}
.aml-live-points{display:grid;grid-template-columns:1fr 1fr;gap:10px;margin:22px 0}
.aml-live-point{display:flex;gap:9px;padding:11px;border:1px solid #263149;border-radius:13px;background:#111827}
.aml-live-point i{color:#39ff14}.aml-live-point strong{display:block;font-size:.85rem}.aml-live-point small{display:block;margin-top:3px;color:#9ca8bb;font-size:.72rem}
.aml-live-visual{padding:12px;border:1px solid #27324a;border-radius:25px;background:#111827;box-shadow:0 28px 65px rgba(0,0,0,.35)}
.aml-live-stage{position:relative;display:grid;place-items:center;aspect-ratio:16/9;border-radius:18px;background:radial-gradient(circle at 50% 35%,#405171,#060910 63%);overflow:hidden}
.aml-live-stage:after{content:"Your live stream";font-size:1.4rem;font-weight:950}
.aml-live-stage-status{position:absolute;top:12px;left:12px;padding:6px 9px;border-radius:999px;background:#e60024;font-size:.66rem;font-weight:900}
.aml-live-stage-switch{position:absolute;right:12px;bottom:12px;padding:7px 10px;border-radius:10px;background:rgba(255,255,255,.12);font-size:.68rem;font-weight:850}
.aml-live-controls{display:grid;grid-template-columns:1fr 1fr;gap:8px;margin-top:9px}
.aml-live-control{padding:10px;border-radius:11px;background:#1c2639;color:#d9e2f0;font-size:.72rem;text-align:center;font-weight:800}
.aml-live-control-green{background:#39ff14;color:#06210b}
.aml-live-chat-mock{display:grid;gap:6px;margin-top:9px;padding:10px;border-radius:14px;background:#0c1322}
.aml-live-chat-mock div{padding:7px 9px;border-radius:8px;background:#192438;color:#c8d3e2;font-size:.65rem}

.aml-business-grid{display:grid;grid-template-columns:minmax(0,.86fr) minmax(0,1.14fr);gap:46px;align-items:center}
.aml-business-action-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:10px}
.aml-business-action{display:flex;align-items:center;gap:11px;padding:14px;border:1px solid #e2e7f0;border-radius:15px;background:#fff;box-shadow:0 9px 26px rgba(20,30,55,.05)}
.aml-business-action i{display:grid;place-items:center;width:40px;height:40px;border-radius:12px;background:#eeecff;color:#635bff}
.aml-business-action strong,.aml-business-action small{display:block}.aml-business-action small{margin-top:3px;color:#687086;font-size:.72rem}
.aml-business-copy h2{margin:12px 0;font-size:clamp(2.1rem,4vw,3.4rem);font-weight:950;letter-spacing:-.05em}
.aml-business-copy p{color:#687086;line-height:1.7}
.aml-business-checks{display:grid;grid-template-columns:1fr 1fr;gap:9px;margin:20px 0}
.aml-business-checks span{display:flex;align-items:center;gap:7px;color:#455268;font-size:.87rem}.aml-business-checks i{color:#0ba85b}

.aml-theme-showcase{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:14px}
.aml-theme-card{padding:13px;border:1px solid #e1e6ef;border-radius:19px;background:#fff;box-shadow:0 12px 30px rgba(20,30,55,.06)}
.aml-theme-card-preview{min-height:235px;padding:18px;border-radius:14px;background:var(--theme-bg);color:var(--theme-text)}
.aml-theme-avatar{width:45px;height:45px;margin:0 auto 8px;border-radius:50%;background:var(--theme-text);opacity:.35}
.aml-theme-name{text-align:center;font-weight:900}.aml-theme-line{height:31px;margin-top:8px;border-radius:9px;background:var(--theme-link);color:var(--theme-link-text);font-size:.65rem;padding:8px}
.aml-theme-card footer{display:flex;justify-content:space-between;align-items:center;padding:11px 4px 1px}.aml-theme-card footer strong{font-size:.86rem}.aml-theme-card footer span{font-size:.7rem;color:#687086}

.aml-offer-wrap{display:grid;grid-template-columns:minmax(0,1fr) minmax(350px,.74fr);gap:24px;align-items:stretch}
.aml-offer-main{padding:36px;border-radius:25px;background:linear-gradient(135deg,#151b31,#2e276c 60%,#635bff);color:#fff;box-shadow:0 25px 60px rgba(28,29,83,.25)}
.aml-offer-main h2{margin:12px 0 9px;font-size:clamp(2rem,4vw,3.1rem);font-weight:950}.aml-offer-main p{color:rgba(255,255,255,.78);line-height:1.65}
.aml-offer-benefits{display:grid;grid-template-columns:1fr 1fr;gap:9px;margin:20px 0}.aml-offer-benefits span{font-size:.84rem}.aml-offer-benefits i{margin-right:6px;color:#39ff14}
.aml-offer-price{font-size:2.7rem;font-weight:950;letter-spacing:-.04em}.aml-offer-price small{font-size:.84rem;font-weight:700;color:rgba(255,255,255,.7)}
.aml-founding-capacity{display:grid;grid-template-columns:auto 1fr;align-items:center;gap:3px 9px;margin:18px 0;padding:14px;border:1px solid rgba(255,255,255,.18);border-radius:15px;background:rgba(255,255,255,.09)}
.aml-founding-capacity strong{font-size:1.25rem;color:#fff}.aml-founding-capacity span{color:rgba(255,255,255,.82);font-size:.84rem}.aml-founding-capacity small{grid-column:1/-1;margin-top:5px;color:rgba(255,255,255,.66)}

.aml-offer-side{display:grid;gap:13px}
.aml-offer-card{padding:22px;border:1px solid #e1e6ef;border-radius:20px;background:#fff;box-shadow:0 12px 34px rgba(20,30,55,.07)}
.aml-offer-card h3{font-weight:900}.aml-offer-card p{color:#687086}.aml-offer-card-price{font-size:1.75rem;font-weight:950}

.aml-profile-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:15px}
.aml-person-card{position:relative;padding:22px;text-align:center;border:1px solid #e2e7ef;border-radius:20px;background:#fff;box-shadow:0 12px 32px rgba(20,30,55,.06)}
.aml-person-card img{width:78px;height:78px;border-radius:50%;object-fit:cover;box-shadow:0 0 0 4px #f0f2f7}
.aml-person-card h3{margin:13px 0 5px;font-size:1rem;font-weight:900}.aml-person-card p{min-height:42px;color:#687086;font-size:.82rem}
.aml-person-label{display:inline-flex;margin-bottom:11px;padding:5px 8px;border-radius:999px;background:#fff2cf;color:#7a5700;font-size:.65rem;font-weight:900}
.aml-person-live{background:#e60024;color:#fff}
.aml-person-live-ring{box-shadow:0 0 0 4px #39ff14!important}

.aml-home-final{padding:82px 0;text-align:center;background:
radial-gradient(circle at 20% 10%,rgba(99,91,255,.13),transparent 32%),
linear-gradient(180deg,#f8f9ff,#fff)}
.aml-home-final h2{max-width:800px;margin:0 auto;font-size:clamp(2.2rem,5vw,4rem);font-weight:950;letter-spacing:-.055em}
.aml-home-final p{max-width:690px;margin:14px auto 23px;color:#687086;font-size:1.04rem}
.aml-home-final-actions{display:flex;justify-content:center;gap:10px;flex-wrap:wrap}


.aml-featured-on{
  padding:34px 0;
  border-top:1px solid var(--aml-home-border);
  border-bottom:1px solid var(--aml-home-border);
  background:#fff;
}
.aml-featured-on-inner{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:28px;
  flex-wrap:wrap;
  text-align:center;
}
.aml-featured-on-copy span,
.aml-featured-on-copy strong{
  display:block;
}
.aml-featured-on-copy span{
  color:var(--aml-home-muted);
  font-size:.72rem;
  font-weight:900;
  letter-spacing:.14em;
  text-transform:uppercase;
}
.aml-featured-on-copy strong{
  margin-top:5px;
  color:var(--aml-home-ink);
  font-size:1.05rem;
  font-weight:900;
}
.aml-featured-on-badge{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:72px;
  padding:12px 18px;
  border:1px solid var(--aml-home-border);
  border-radius:18px;
  background:#fff;
  box-shadow:0 12px 30px rgba(20,30,55,.08);
  transition:transform .18s ease,box-shadow .18s ease;
}
.aml-featured-on-badge:hover{
  transform:translateY(-2px);
  box-shadow:0 17px 38px rgba(20,30,55,.12);
}
.aml-featured-on-badge img{
  display:block;
  width:auto;
  max-width:min(250px,72vw);
  height:auto;
}
.aml-featured-on-badges{display:flex;align-items:stretch;justify-content:center;gap:14px;flex-wrap:wrap}
.aml-featured-on-female-switch{gap:15px;text-align:left;text-decoration:none!important;color:var(--aml-home-ink)!important}
.aml-featured-on-female-switch img{width:178px;max-width:42vw}
.aml-featured-on-female-switch span,.aml-featured-on-female-switch strong,.aml-featured-on-female-switch small{display:block}
.aml-featured-on-female-switch strong{font-size:.92rem;font-weight:950}
.aml-featured-on-female-switch small{margin-top:3px;color:var(--aml-home-muted);font-size:.69rem;line-height:1.35}
@media(max-width:560px){.aml-featured-on-inner{align-items:stretch}.aml-featured-on-badges{display:grid;width:100%}.aml-featured-on-badge{width:100%}.aml-featured-on-female-switch{justify-content:flex-start}.aml-featured-on-female-switch img{width:150px;max-width:45%}}

@media(max-width:1000px){
 .aml-home-hero-grid,.aml-live-feature,.aml-business-grid,.aml-offer-wrap{grid-template-columns:1fr}
 .aml-product-preview{min-height:565px;max-width:620px;margin:0 auto}
 .aml-feature-grid{grid-template-columns:1fr 1fr}
 .aml-profile-grid{grid-template-columns:1fr 1fr}
}
@media(max-width:680px){
 .aml-home-stats-wrap{margin-top:-20px}
 .aml-home-stats{grid-template-columns:1fr}
 .aml-home-stat{justify-content:flex-start;min-height:96px;padding:18px 20px}
 .aml-home-stat:not(:last-child):after{top:auto;right:18px;bottom:0;left:18px;width:auto;height:1px}
 .aml-home-stat-icon{width:50px;height:50px;flex-basis:50px;border-radius:16px}
 .aml-home-stat-icon svg{width:24px;height:24px}
 .aml-home-stat strong{font-size:1.85rem}
 .aml-home-shell{width:min(100% - 22px,1220px)}
 .aml-home-hero{padding:52px 0 48px}
 .aml-home-hero h1{font-size:2.75rem}
 .aml-home-hero-grid{gap:34px}
 .aml-home-username-form{grid-template-columns:1fr}.aml-home-username-form button{width:100%}
 .aml-product-preview{min-height:520px}
 .aml-preview-phone-main{left:43%;width:255px}
 .aml-preview-phone-live{right:-18px;width:215px}
 .aml-preview-float{left:5px;bottom:10px}
 .aml-home-section{padding:55px 0}
 .aml-feature-grid,.aml-theme-showcase,.aml-profile-grid{grid-template-columns:1fr}
 .aml-live-points,.aml-business-checks,.aml-offer-benefits{grid-template-columns:1fr}
 .aml-business-action-grid{grid-template-columns:1fr}
 .aml-live-feature{gap:30px}
 .aml-home-final{padding:58px 0}
}

/* --- index-inline id="aml-public-sales-fixes" --- */
.aml-profile-founding-badge{display:inline-flex;align-items:center;gap:6px;margin:0 0 12px;padding:6px 10px;border-radius:999px;background:#fff4d8;color:#7b5700;font-size:.78rem;font-weight:900}
.profile-upgrade-row a{background:#fff7ed!important;color:#9a3412!important}
.aml-bottom-ad{width:min(320px,calc(100% - 28px));margin:28px auto!important;padding:10px;border:1px solid #e4e9f2;border-radius:16px;background:#fff;box-shadow:0 12px 30px rgba(20,30,55,.08)}
.aml-bottom-ad p{margin:0!important}.aml-bottom-ad iframe{display:block;width:100%!important;min-height:250px!important}
.aml-business-focus{position:relative;isolation:isolate;background:#fff!important;color:#172033!important;overflow:hidden}
.aml-business-focus::before{content:"";position:absolute;inset:0;z-index:-1;background:radial-gradient(circle at 15% 15%,rgba(99,91,255,.10),transparent 32%),radial-gradient(circle at 90% 80%,rgba(14,165,233,.10),transparent 28%),#fff}
.aml-business-focus h2,.aml-business-focus h3,.aml-business-focus p,.aml-business-focus li{color:#172033!important;text-shadow:none!important}
.aml-business-copy{padding:28px;border:1px solid #e4e9f2;border-radius:22px;background:rgba(255,255,255,.97);box-shadow:0 16px 42px rgba(20,30,55,.08)}
.aml-offer-card{border:1px solid #dcd8ff!important;border-radius:24px!important;background:#fff!important;box-shadow:0 24px 60px rgba(45,42,110,.15)!important}
.aml-package-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:18px}
.aml-package-card{display:flex;flex-direction:column;padding:24px;border:1px solid #e4e9f2;border-radius:20px;background:#fff;box-shadow:0 12px 34px rgba(20,30,55,.07)}
.aml-package-card h3{color:#172033;font-weight:900}.aml-package-price{font-size:2rem;font-weight:900;color:#172033}.aml-package-card p{color:#687086;flex:1}
.aml-founding-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:16px}
.aml-founding-card{padding:20px;text-align:center;border:1px solid #e4e9f2;border-radius:18px;background:#fff;box-shadow:0 10px 30px rgba(20,30,55,.06)}
.aml-founding-card img{width:76px;height:76px;border-radius:50%;object-fit:cover;box-shadow:0 0 0 1px #e4e9f2}
.aml-founding-card h3{margin:12px 0 5px;font-size:1rem;font-weight:850;color:#172033}.aml-founding-card p{min-height:38px;color:#687086;font-size:.88rem}
@media(max-width:1000px){.aml-package-grid{grid-template-columns:1fr 1fr}.aml-founding-grid{grid-template-columns:repeat(2,1fr)}}
@media(max-width:650px){.aml-package-grid,.aml-founding-grid{grid-template-columns:1fr}.aml-business-copy{padding:20px}}

/* --- index-inline id="aml-rich-profile-blocks" --- */
/* Modernise the public profile while preserving each selected theme. */
.profile-block{width:min(480px,calc(100vw - 24px))!important;max-width:480px!important;margin:18px auto!important;border-radius:22px!important;overflow:hidden!important;box-shadow:0 24px 70px rgba(0,0,0,.28)!important}
.profile-block .panel{padding:22px 16px 18px!important}
.profile-block .user-heading img{width:88px!important;height:88px!important;border-radius:50%!important;object-fit:cover!important;border:4px solid rgba(255,255,255,.7)!important;box-shadow:0 8px 24px rgba(0,0,0,.25)!important}
.profile-block .user-heading h1{margin:9px 0 4px!important;font-size:1.35rem!important;line-height:1.15!important;overflow-wrap:anywhere!important}
.profile-block .user-heading p{margin:4px 0!important;line-height:1.35!important}
.profile-block .subNav{display:grid!important;gap:9px!important;padding:10px 12px 14px!important;background:transparent!important}
.profile-block .subNav>.list-group-item{margin:0!important;border:1px solid rgba(255,255,255,.42)!important;border-radius:13px!important;overflow:hidden!important;box-shadow:0 7px 18px rgba(0,0,0,.12)!important}
.profile-block .subNav>.list-group-item:not(.aml-rich-block){min-height:44px!important;padding:0!important}
.profile-block .subNav>.list-group-item:not(.aml-rich-block)>a{display:flex!important;align-items:center!important;gap:8px!important;min-height:44px!important;padding:10px 12px!important;line-height:1.3!important;text-align:left!important;text-decoration:none!important;overflow-wrap:anywhere!important}

.aml-rich-block{position:relative!important;display:block!important;padding:0!important;overflow:hidden!important;border:1px solid color-mix(in srgb,var(--aml-provider) 48%,rgba(255,255,255,.55))!important;background:linear-gradient(135deg,color-mix(in srgb,var(--aml-provider) 24%,rgba(12,18,38,.88)),rgba(10,16,35,.88))!important;color:#fff!important;box-shadow:0 12px 28px color-mix(in srgb,var(--aml-provider) 24%,rgba(0,0,0,.35))!important}
.aml-rich-block::before{content:"";position:absolute;inset:0 auto 0 0;width:5px;background:var(--aml-provider);z-index:2}
.aml-rich-card{position:relative;z-index:3;display:grid!important;grid-template-columns:54px minmax(0,1fr) auto!important;align-items:center!important;gap:13px!important;width:100%!important;min-height:78px!important;padding:12px 14px 12px 17px!important;color:#fff!important;text-decoration:none!important;text-align:left!important}
.aml-rich-icon{display:grid!important;place-items:center!important;flex:0 0 54px!important;width:54px!important;height:54px!important;border-radius:16px!important;background:var(--aml-provider)!important;color:#fff!important;font-size:1.35rem!important;box-shadow:0 8px 18px rgba(0,0,0,.22)!important}
.aml-rich-copy{min-width:0!important;text-align:left!important}
.aml-rich-copy strong{display:block!important;margin:0!important;color:#fff!important;font-size:.98rem!important;line-height:1.25!important;white-space:normal!important;overflow-wrap:anywhere!important}
.aml-rich-copy small{display:block!important;margin-top:5px!important;color:rgba(255,255,255,.72)!important;font-size:.76rem!important;font-weight:700!important;letter-spacing:.03em!important;text-transform:uppercase!important}
.aml-rich-action{display:inline-flex!important;align-items:center!important;justify-content:center!important;gap:6px!important;min-height:34px!important;padding:8px 10px!important;border:1px solid rgba(255,255,255,.25)!important;border-radius:999px!important;background:rgba(255,255,255,.12)!important;color:#fff!important;font-size:.73rem!important;font-weight:900!important;white-space:nowrap!important}

.aml-player-block{padding:14px 14px 13px 18px!important}
.aml-player-block .aml-rich-heading{display:flex!important;align-items:center!important;gap:12px!important;margin-bottom:12px!important;text-align:left!important}
.aml-player-block .aml-rich-icon{width:46px!important;height:46px!important;flex-basis:46px!important;border-radius:13px!important}
.aml-embed-frame{position:relative!important;width:100%!important;overflow:hidden!important;border-radius:14px!important;background:#070b15!important;aspect-ratio:16/9!important;box-shadow:0 8px 22px rgba(0,0,0,.3)!important}
.aml-embed-frame iframe{position:absolute!important;inset:0!important;width:100%!important;height:100%!important;border:0!important}
.aml-open-original{display:flex!important;align-items:center!important;justify-content:center!important;gap:7px!important;margin-top:10px!important;padding:9px 11px!important;border:1px solid rgba(255,255,255,.18)!important;border-radius:11px!important;background:rgba(255,255,255,.1)!important;color:#fff!important;font-size:.8rem!important;font-weight:850!important;text-decoration:none!important}

@media(max-width:500px){
  .profile-block{width:calc(100vw - 18px)!important;margin:9px auto 84px!important;border-radius:18px!important}
  .profile-block .panel{padding:18px 10px 14px!important}
  .profile-block .subNav{gap:8px!important;padding:8px 8px 12px!important}
  .aml-rich-card{grid-template-columns:48px minmax(0,1fr)!important;min-height:76px!important;padding:11px 11px 11px 15px!important}
  .aml-rich-icon{width:48px!important;height:48px!important;flex-basis:48px!important;border-radius:14px!important}
  .aml-rich-action{grid-column:2!important;justify-self:start!important;margin-top:1px!important;padding:6px 9px!important}
  .aml-embed-frame{aspect-ratio:16/10!important}
}

/* --- index-inline id="aml-premium-public-profile" --- */
.profile-block{width:min(720px,calc(100% - 24px))!important;max-width:720px!important;margin:24px auto 42px!important;border-radius:28px!important;overflow:hidden!important;box-shadow:0 28px 80px rgba(0,0,0,.24)!important}.profile-block .panel{padding:28px 24px 22px!important}.profile-block .user-heading img{width:112px!important;height:112px!important;border:5px solid rgba(255,255,255,.55)!important;box-shadow:0 12px 28px rgba(0,0,0,.22)!important}.profile-block .user-heading h1{margin:14px 0 5px!important;font-size:clamp(1.8rem,5vw,2.5rem)!important;font-weight:900!important;letter-spacing:-.04em!important}
.aml-profile-badges{display:flex;justify-content:center;gap:7px;flex-wrap:wrap;margin:8px 0 10px}.aml-profile-featured-badge{display:inline-flex;align-items:center;gap:6px;padding:6px 10px;border-radius:999px;background:#eaf2ff;color:#035dcc;font-size:.78rem;font-weight:900}
.aml-profile-content{display:grid;gap:16px;padding:0 18px 22px}.aml-profile-utilities{display:flex;justify-content:center;gap:8px;flex-wrap:wrap;padding:3px 0 2px}.aml-profile-utility{appearance:none;display:inline-flex;align-items:center;gap:7px;padding:9px 12px;border:1px solid rgba(255,255,255,.32);border-radius:999px;background:rgba(255,255,255,.12);color:inherit!important;font:inherit;font-size:.82rem;font-weight:850;text-decoration:none!important;cursor:pointer}
.aml-profile-section{overflow:hidden;border:1px solid rgba(255,255,255,.32);border-radius:20px;background:rgba(255,255,255,.10);backdrop-filter:blur(10px)}.aml-profile-section-head{display:flex;align-items:center;gap:12px;padding:15px 16px;border-bottom:1px solid rgba(255,255,255,.20)}.aml-profile-section-icon{display:grid;place-items:center;flex:0 0 40px;width:40px;height:40px;border-radius:12px;background:rgba(255,255,255,.18)}.aml-profile-section-head h2{margin:0!important;font-size:1rem!important;font-weight:900!important;color:inherit!important}.aml-profile-section-head p{margin:3px 0 0!important;font-size:.77rem!important;opacity:.76}.aml-profile-section-list{margin:0!important;padding:8px!important}.aml-profile-section-list .list-group-item{margin:7px 0!important;border:1px solid rgba(255,255,255,.18)!important;border-radius:14px!important;overflow:hidden!important}
.profile-upgrade-row a{display:flex;align-items:center;gap:12px;padding:15px 16px;border-radius:16px;background:#fff7ed;color:#9a3412!important;text-decoration:none!important}.profile-upgrade-row>a>i{display:grid;place-items:center;width:38px;height:38px;border-radius:12px;background:#ffedd5}.profile-upgrade-row strong,.profile-upgrade-row small{display:block}.profile-upgrade-row small{margin-top:3px;opacity:.78}
@media(max-width:600px){.profile-block{width:calc(100% - 16px)!important;margin:12px auto 28px!important;border-radius:22px!important}.profile-block .panel{padding:23px 16px 18px!important}.profile-block .user-heading img{width:96px!important;height:96px!important}.aml-profile-content{padding:0 10px 14px;gap:12px}.aml-profile-section-head{padding:13px}.aml-profile-section-list{padding:5px!important}}

/* --- index-inline --- */
.profile-block .aml-profile-section-list .list-group-item,
.profile-block .aml-profile-section-list .list-group-item a,
.profile-block .aml-profile-section-list .aml-rich-card,
.profile-block .aml-profile-section-list .aml-rich-heading,
.profile-block .aml-profile-section-list .aml-rich-copy,
.profile-block .aml-profile-section-list .aml-rich-action,
.profile-block .aml-profile-section-list .aml-open-original {
  color:var(--aml-profile-link-text,inherit)!important;
}

/* --- index-inline id="aml-six-colour-profile-theme" --- */
/*
 * The public profile is controlled entirely by the six appearance values:
 * header background, header text, list background, list text,
 * list hover background and list hover text.
 */
.profile-block{
  background:var(--aml-theme-bg)!important;
  color:var(--aml-theme-text)!important;
  border-color:color-mix(in srgb,var(--aml-theme-text) 38%,transparent)!important;
}

.profile-block .panel,
.profile-block .user-heading,
.profile-block .aml-profile-content{
  background:transparent!important;
  color:var(--aml-theme-text)!important;
}

.profile-block .user-heading,
.profile-block .user-heading h1,
.profile-block .user-heading p,
.profile-block .user-heading small,
.profile-block .aml-profile-badges{
  color:var(--aml-theme-text)!important;
}

.profile-block .aml-profile-section{
  background:var(--aml-theme-bg)!important;
  color:var(--aml-theme-text)!important;
  border:1px solid color-mix(in srgb,var(--aml-theme-text) 42%,transparent)!important;
  box-shadow:0 12px 30px color-mix(in srgb,var(--aml-theme-bg) 72%,black 28%)!important;
}

.profile-block .aml-profile-section-head{
  background:color-mix(in srgb,var(--aml-theme-bg) 88%,var(--aml-theme-text) 12%)!important;
  color:var(--aml-theme-text)!important;
  border-bottom:1px solid color-mix(in srgb,var(--aml-theme-text) 34%,transparent)!important;
}

.profile-block .aml-profile-section-head h2,
.profile-block .aml-profile-section-head p{
  color:var(--aml-theme-text)!important;
  text-shadow:none!important;
}

.profile-block .aml-profile-section-head p{
  opacity:.82!important;
}

.profile-block .aml-profile-section-icon{
  color:var(--aml-theme-text)!important;
  background:color-mix(in srgb,var(--aml-theme-text) 15%,transparent)!important;
  border:1px solid color-mix(in srgb,var(--aml-theme-text) 30%,transparent)!important;
}

.profile-block .aml-profile-section-list{
  background:transparent!important;
}

.profile-block .aml-profile-section-list .list-group-item,
.profile-block .aml-rich-block,
.profile-block .aml-card-block,
.profile-block .aml-player-block{
  background:var(--aml-theme-link-bg)!important;
  color:var(--aml-theme-link-text)!important;
  border:1px solid color-mix(in srgb,var(--aml-theme-link-text) 32%,transparent)!important;
}

.profile-block .aml-profile-section-list .list-group-item *,
.profile-block .aml-rich-block *,
.profile-block .aml-card-block *,
.profile-block .aml-player-block *{
  color:inherit!important;
}

.profile-block .aml-profile-section-list .list-group-item:hover,
.profile-block .aml-profile-section-list .list-group-item:focus-within,
.profile-block .aml-rich-block:hover,
.profile-block .aml-card-block:hover{
  background:var(--aml-theme-hover-bg)!important;
  color:var(--aml-theme-hover-text)!important;
  border-color:color-mix(in srgb,var(--aml-theme-hover-text) 42%,transparent)!important;
}

.profile-block .aml-profile-section-list .list-group-item:hover *,
.profile-block .aml-profile-section-list .list-group-item:focus-within *,
.profile-block .aml-rich-block:hover *,
.profile-block .aml-card-block:hover *{
  color:var(--aml-theme-hover-text)!important;
}

.profile-block .aml-rich-icon{
  color:inherit!important;
  background:color-mix(in srgb,currentColor 15%,transparent)!important;
  border:1px solid color-mix(in srgb,currentColor 26%,transparent)!important;
}

.profile-block .aml-open-original{
  background:color-mix(in srgb,var(--aml-theme-link-bg) 82%,var(--aml-theme-link-text) 18%)!important;
  color:var(--aml-theme-link-text)!important;
  border:1px solid color-mix(in srgb,var(--aml-theme-link-text) 28%,transparent)!important;
}

.profile-block .aml-open-original:hover{
  background:var(--aml-theme-hover-bg)!important;
  color:var(--aml-theme-hover-text)!important;
}

.profile-block .aml-profile-utility{
  background:var(--aml-theme-link-bg)!important;
  color:var(--aml-theme-link-text)!important;
  border:1px solid color-mix(in srgb,var(--aml-theme-link-text) 32%,transparent)!important;
}

.profile-block .aml-profile-utility:hover,
.profile-block .aml-profile-utility:focus{
  background:var(--aml-theme-hover-bg)!important;
  color:var(--aml-theme-hover-text)!important;
}

.profile-block .profile-upgrade-row a{
  background:var(--aml-theme-link-bg)!important;
  color:var(--aml-theme-link-text)!important;
  border:1px solid color-mix(in srgb,var(--aml-theme-link-text) 32%,transparent)!important;
}

.profile-block .profile-upgrade-row a:hover{
  background:var(--aml-theme-hover-bg)!important;
  color:var(--aml-theme-hover-text)!important;
}

.profile-block .profile-upgrade-row a *{
  color:inherit!important;
}

.profile-block .aml-profile-founding-badge,
.profile-block .aml-profile-featured-badge{
  min-height:32px!important;
  height:32px!important;
  padding:0 12px!important;
  font-size:.78rem!important;
  line-height:1!important;
}

/* Sensible fallback where color-mix is unavailable. */
@supports not (background:color-mix(in srgb,white 50%,black)){
  .profile-block .aml-profile-section,
  .profile-block .aml-profile-section-head{
    background:var(--aml-theme-bg)!important;
    border-color:var(--aml-theme-text)!important;
  }
  .profile-block .aml-profile-section-icon,
  .profile-block .aml-rich-icon{
    background:transparent!important;
    border-color:currentColor!important;
  }
}

/* --- index-inline id="aml-public-live" --- */
.aml-profile-photo-wrap{position:relative;display:inline-grid;place-items:center;border-radius:50%}.aml-live-profile-photo:before,.aml-live-profile-photo:after{content:"";position:absolute;inset:-9px;border:4px solid #39ff14;border-radius:50%;animation:amlLivePulse 1.45s ease-out infinite;pointer-events:none}.aml-live-profile-photo:after{inset:-17px;opacity:.55;animation-delay:.45s}@keyframes amlLivePulse{0%{transform:scale(.88);opacity:.9}72%{transform:scale(1.12);opacity:0}100%{opacity:0}}.profile-block .aml-profile-live-badge{display:inline-flex!important;align-items:center!important;gap:6px!important;height:32px!important;padding:0 12px!important;border-radius:999px!important;background:#eb001b!important;color:#fff!important;font-size:.78rem!important;font-weight:900!important}.aml-profile-live-badge i{font-size:.6rem;animation:amlBlink 1s infinite}@keyframes amlBlink{50%{opacity:.3}}.profile-block .aml-profile-live-button{display:inline-flex;align-items:center;gap:7px;padding:9px 14px;border-radius:999px;background:#39ff14!important;color:#06210b!important;border:1px solid #1fca18!important;font-size:.82rem;font-weight:900;text-decoration:none!important}

/* --- index-inline id="aml-public-adult-gate" --- */
.aml-adult-restricted-body{min-height:100vh;background:radial-gradient(circle at 15% 10%,rgba(99,91,255,.18),transparent 34%),radial-gradient(circle at 85% 80%,rgba(220,38,63,.12),transparent 30%),#f4f6fb!important}
.aml-adult-gate{display:grid;place-items:center;min-height:calc(100vh - 150px);padding:80px 16px 42px}
.aml-adult-gate-card{width:min(620px,100%);padding:34px;border:1px solid #e1e6ef;border-radius:26px;background:#fff;color:#172033;text-align:center;box-shadow:0 28px 75px rgba(20,28,50,.16)}
.aml-adult-gate-icon{position:relative;display:grid;place-items:center;width:88px;height:88px;margin:0 auto 18px;border-radius:26px;background:linear-gradient(135deg,#22293a,#6d233d);color:#fff;box-shadow:0 15px 34px rgba(72,29,47,.25)}
.aml-adult-gate-icon i{font-size:2rem}.aml-adult-gate-icon strong{position:absolute;right:-8px;bottom:-8px;display:grid;place-items:center;width:40px;height:40px;border:4px solid #fff;border-radius:50%;background:#d91f3d;color:#fff;font-size:.78rem}
.aml-adult-gate-kicker{display:block;color:#a72d49;font-size:.72rem;font-weight:900;letter-spacing:.13em;text-transform:uppercase}
.aml-adult-gate h1{margin:9px 0 10px;color:#172033;font-size:clamp(2rem,6vw,3.1rem);font-weight:950;letter-spacing:-.045em}
.aml-adult-gate-card>p{margin:0 auto;max-width:510px;color:#687086;font-size:1rem;line-height:1.65}
.aml-adult-gate-notice{display:flex;align-items:flex-start;gap:10px;margin:20px 0;padding:13px 14px;border:1px solid #e4e9f2;border-radius:14px;background:#f7f9fc;color:#536076;text-align:left;font-size:.82rem;line-height:1.45}
.aml-adult-gate-notice i{margin-top:3px;color:#a72d49}.aml-adult-gate-actions{display:flex;justify-content:center;gap:9px;flex-wrap:wrap;margin:20px 0 14px}
.aml-adult-gate-actions form{display:grid;gap:12px;width:100%}.aml-adult-confirm{display:flex;align-items:flex-start;gap:9px;padding:13px 14px;border:1px solid #dfd5da;border-radius:13px;background:#fffafb;color:#59424b;text-align:left;font-size:.84rem;line-height:1.5}
.aml-adult-confirm input{margin-top:4px}.aml-adult-gate-card small{display:block;margin-top:12px;color:#8992a3;font-size:.72rem;line-height:1.5}
@media(max-width:560px){.aml-adult-gate{padding-top:58px}.aml-adult-gate-card{padding:25px 18px;border-radius:21px}.aml-adult-gate-actions{display:grid}.aml-adult-gate-actions .btn{width:100%}}

/* --- index-inline id="aml-profile-adult-badge-style" --- */
.profile-block .aml-profile-adult-badge{
  display:inline-flex!important;
  align-items:center!important;
  justify-content:center!important;
  gap:6px!important;
  min-height:32px!important;
  height:32px!important;
  padding:0 12px!important;
  border:1px solid rgba(255,255,255,.28)!important;
  border-radius:999px!important;
  background:#a31d3d!important;
  color:#fff!important;
  font-size:.78rem!important;
  line-height:1!important;
  font-weight:900!important;
  letter-spacing:.02em!important;
  box-shadow:0 7px 18px rgba(96,16,47,.2)!important;
}
.profile-block .aml-profile-adult-badge i{
  color:#fff!important;
  font-size:.76rem!important;
}

/* --- index-inline id="aml-home-live-now-restored" --- */
.aml-home-live-now{
  position:relative;
  background:
    radial-gradient(circle at 10% 15%,rgba(57,255,20,.08),transparent 28%),
    linear-gradient(180deg,#0b1020,#101829);
  color:#fff;
}
.aml-home-live-now .aml-home-heading h2{
  color:#fff;
}
.aml-home-live-now .aml-home-heading p{
  color:#aeb9ca;
}
.aml-live-profile-grid{
  align-items:stretch;
}
.aml-live-person-card{
  display:flex;
  flex-direction:column;
  border-color:#29364c;
  background:#111a2a;
  color:#fff;
  box-shadow:0 18px 45px rgba(0,0,0,.24);
}
.aml-live-person-card h3{
  color:#fff;
}
.aml-live-person-card p{
  flex:1;
  color:#aeb9ca;
}
.aml-live-card-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  margin-bottom:15px;
}
.aml-live-card-top .aml-person-label{
  margin:0;
}
.aml-live-card-top .aml-person-live{
  display:inline-flex;
  align-items:center;
  gap:6px;
}
.aml-live-card-top .aml-person-live i{
  font-size:.55rem;
  animation:amlHomepageLiveBlink 1s infinite;
}
@keyframes amlHomepageLiveBlink{
  50%{opacity:.3}
}
.aml-live-viewer-count{
  display:inline-flex;
  align-items:center;
  gap:6px;
  min-height:28px;
  padding:5px 9px;
  border:1px solid #34435d;
  border-radius:999px;
  background:#192438;
  color:#dce5f1;
  font-size:.72rem;
  font-weight:900;
}
.aml-live-avatar-link{
  display:inline-grid;
  place-items:center;
  width:max-content;
  margin:0 auto;
  text-decoration:none!important;
}
.aml-live-avatar-ring{
  position:relative;
  display:grid;
  place-items:center;
  width:92px;
  height:92px;
  border-radius:50%;
}
.aml-live-avatar-ring:before,
.aml-live-avatar-ring:after{
  content:"";
  position:absolute;
  inset:-5px;
  border:3px solid #39ff14;
  border-radius:50%;
  pointer-events:none;
  animation:amlHomepageLivePulse 1.55s ease-out infinite;
}
.aml-live-avatar-ring:after{
  inset:-12px;
  opacity:.55;
  animation-delay:.45s;
}
.aml-live-avatar-ring img{
  position:relative;
  z-index:2;
  width:82px!important;
  height:82px!important;
  border:3px solid #fff!important;
  border-radius:50%;
  object-fit:cover;
  box-shadow:none!important;
}
@keyframes amlHomepageLivePulse{
  0%{transform:scale(.9);opacity:.9}
  75%,100%{transform:scale(1.13);opacity:0}
}
.aml-live-stream-title{
  margin:0 0 13px;
  padding:8px 10px;
  border:1px solid #2d3b52;
  border-radius:10px;
  background:#192438;
  color:#dce5f1;
  font-size:.76rem;
  line-height:1.4;
}
.aml-live-person-card .aml-btn-live{
  align-self:center;
  min-width:130px;
}

/* --- index-inline id="aml-profile-qr-live-listener-v1" --- */
.aml-profile-qr-backdrop{position:fixed;inset:0;z-index:15000;background:rgba(3,8,18,.68);backdrop-filter:blur(5px)}
.aml-profile-qr-modal{position:fixed;z-index:15010;left:50%;top:50%;width:min(420px,calc(100vw - 28px));padding:18px;border:1px solid #e1e7ef;border-radius:24px;background:#fff;color:#172033;transform:translate(-50%,-50%);box-shadow:0 30px 100px rgba(0,0,0,.55)}
.aml-profile-qr-head{display:flex;align-items:flex-start;justify-content:space-between;gap:12px}.aml-profile-qr-head strong,.aml-profile-qr-head small{display:block}.aml-profile-qr-head strong{font-size:1.12rem;font-weight:950}.aml-profile-qr-head small{margin-top:4px;color:#687086;font-size:.74rem}
.aml-profile-qr-head button{display:grid;place-items:center;flex:0 0 40px;width:40px;height:40px;border:0;border-radius:13px;background:#f1f4f8;color:#334158}
.aml-profile-qr-code{display:grid;place-items:center;min-height:250px;margin:17px auto 12px;padding:14px;border:1px solid #e4e9f2;border-radius:18px;background:#fff}.aml-profile-qr-code canvas,.aml-profile-qr-code img{display:block;max-width:100%;height:auto}
.aml-profile-qr-url{padding:10px 12px;border:1px solid #e4e9f2;border-radius:12px;background:#f7f9fc;color:#536076;font-size:.74rem;text-align:center;overflow-wrap:anywhere}
.aml-profile-qr-actions{display:grid;grid-template-columns:1fr 1fr;gap:8px;margin-top:12px}.aml-profile-qr-actions .btn{min-height:44px;border-radius:12px;font-weight:850}
.aml-profile-live-button[hidden],.aml-profile-live-badge[hidden]{display:none!important}.aml-profile-live-flash{animation:amlProfileLiveFlash .85s ease}@keyframes amlProfileLiveFlash{0%{transform:scale(.92);opacity:.4}100%{transform:scale(1);opacity:1}}
@media(max-width:520px){.aml-profile-qr-modal{top:auto;right:0;bottom:0;left:0;width:100%;padding:15px 14px calc(18px + env(safe-area-inset-bottom));border-radius:25px 25px 0 0;transform:none}.aml-profile-qr-actions{grid-template-columns:1fr}}

/* --- index-inline id="aml-home-profile-polish-v1" --- */
/* Conversion, mobile and accessibility polish. Existing features and themes remain intact. */
.aml-home-hero-actions .btn,
.aml-home-final-actions .btn,
.aml-profile-utility,
.aml-profile-live-button{
  transition:transform .18s ease,box-shadow .18s ease,background-color .18s ease,color .18s ease;
}
.aml-home-hero-actions .btn:hover,
.aml-home-final-actions .btn:hover,
.aml-profile-utility:hover,
.aml-profile-live-button:hover{
  transform:translateY(-2px);
}
.aml-home-username-form:focus-within{
  border-color:rgba(99,91,255,.65);
  box-shadow:0 0 0 4px rgba(99,91,255,.11),0 15px 36px rgba(22,32,54,.08);
}
.aml-home-username-form input:invalid:not(:placeholder-shown){
  color:#b42318;
}
.aml-person-card,
.aml-feature-card,
.aml-theme-card,
.aml-offer-card,
.aml-business-action{
  transition:transform .2s ease,box-shadow .2s ease,border-color .2s ease;
}
.aml-person-card:hover,
.aml-feature-card:hover,
.aml-theme-card:hover,
.aml-offer-card:hover,
.aml-business-action:hover{
  transform:translateY(-3px);
  box-shadow:0 18px 46px rgba(20,30,55,.11);
}
.profile-block a:focus-visible,
.profile-block button:focus-visible,
.aml-homepage a:focus-visible,
.aml-homepage button:focus-visible,
.aml-homepage input:focus-visible{
  outline:3px solid #39ff14!important;
  outline-offset:3px!important;
}
.profile-block .user-heading p{
  overflow-wrap:anywhere;
}
.profile-block .aml-profile-section-head{
  align-items:flex-start;
}
.profile-block .aml-profile-section-head div{
  min-width:0;
}
.profile-block .aml-profile-section-head h2,
.profile-block .aml-profile-section-head p{
  overflow-wrap:anywhere;
}
.aml-bottom-ad iframe{
  border:0;
}
@media(max-width:1000px){
  .aml-product-preview{
    width:min(100%,620px);
    overflow:hidden;
  }
  .aml-preview-phone-main{
    left:46%;
  }
  .aml-preview-phone-live{
    right:0;
  }
}
@media(max-width:680px){
  .aml-home-hero-copy{
    font-size:1rem;
  }
  .aml-home-hero-actions{
    display:grid;
    grid-template-columns:1fr;
  }
  .aml-home-hero-actions .btn{
    width:100%;
    margin:0!important;
  }
  .aml-product-preview{
    min-height:470px;
  }
  .aml-preview-phone-main{
    left:40%;
    width:230px;
  }
  .aml-preview-phone-live{
    right:-42px;
    bottom:15px;
    width:190px;
  }
  .aml-preview-screen{
    min-height:455px;
  }
  .aml-live-preview-screen{
    min-height:390px;
  }
  .aml-preview-float{
    right:8px;
    left:8px;
    bottom:0;
    justify-content:center;
  }
  .aml-home-stat{
    text-align:left;
  }
  .aml-profile-utilities{
    display:grid!important;
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
  .aml-profile-utility,
  .aml-profile-live-button{
    justify-content:center;
    width:100%;
    min-height:44px;
  }
}
@media(max-width:420px){
  .aml-home-hero h1{
    font-size:2.35rem;
  }
  .aml-product-preview{
    min-height:430px;
  }
  .aml-preview-phone-main{
    left:35%;
    width:215px;
  }
  .aml-preview-phone-live{
    right:-58px;
    width:178px;
  }
  .aml-profile-utilities{
    grid-template-columns:1fr;
  }
}
@media(prefers-reduced-motion:reduce){
  .aml-preview-avatar-live:before,
  .aml-preview-avatar-live:after,
  .aml-live-profile-photo:before,
  .aml-live-profile-photo:after,
  .aml-live-avatar-ring:before,
  .aml-live-avatar-ring:after,
  .aml-profile-live-badge i,
  .aml-live-card-top .aml-person-live i{
    animation:none!important;
  }
}

/* --- index-inline id="aml-creator-lift-sitewide-style" --- */
.aml-lift-spotlight{
  --lift-ink:#172033;
  --lift-muted:#6c778b;
  --lift-line:#e2e7f0;
  --lift-purple:#635bff;
  position:relative;
  overflow:hidden;
  border:1px solid var(--lift-line);
  border-radius:20px;
  background:#fff;
  color:var(--lift-ink);
  box-shadow:0 12px 36px rgba(20,30,55,.07);
}
.aml-lift-spotlight:before{
  content:'';
  position:absolute;
  right:-75px;
  top:-85px;
  width:210px;
  height:210px;
  border-radius:50%;
  background:rgba(99,91,255,.08);
  pointer-events:none;
}
.aml-lift-head{
  position:relative;
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:16px;
  padding:20px 20px 14px;
}
.aml-lift-kicker{
  display:inline-flex;
  align-items:center;
  gap:6px;
  color:#5145cd;
  font-size:.68rem;
  font-weight:950;
  letter-spacing:.09em;
  text-transform:uppercase;
}
.aml-lift-head h2{
  margin:5px 0 4px;
  color:var(--lift-ink)!important;
  font-size:1.18rem;
  font-weight:950;
  letter-spacing:-.025em;
}
.aml-lift-head p{
  max-width:650px;
  margin:0;
  color:var(--lift-muted)!important;
  font-size:.79rem;
  line-height:1.48;
}
.aml-lift-order{
  flex:0 0 auto;
  padding:5px 8px;
  border-radius:999px;
  background:#eef2ff;
  color:#5145cd;
  font-size:.62rem;
  font-weight:900;
}
.aml-lift-list{
  position:relative;
  display:grid;
  gap:10px;
  padding:0 14px 14px;
}
.aml-lift-card{
  padding:12px;
  border:1px solid #e7ebf2;
  border-radius:15px;
  background:#fafbff;
}
.aml-lift-profile{
  display:grid;
  grid-template-columns:43px minmax(0,1fr) auto;
  align-items:center;
  gap:10px;
  color:var(--lift-ink)!important;
  text-decoration:none!important;
}
.aml-lift-profile img{
  width:43px;
  height:43px;
  border-radius:50%;
  object-fit:cover;
  background:#e8ecf4;
}
.aml-lift-profile strong,
.aml-lift-profile small{
  display:block;
  min-width:0;
  overflow:hidden;
  text-overflow:ellipsis;
  white-space:nowrap;
}
.aml-lift-profile strong{font-size:.84rem}
.aml-lift-profile small{
  margin-top:2px;
  color:#737e92;
  font-size:.66rem;
}
.aml-lift-profile>i{color:#1697f6}
.aml-lift-drop{
  display:-webkit-box;
  margin:10px 0 9px;
  overflow:hidden;
  color:#4d596d!important;
  font-size:.73rem;
  line-height:1.45;
  -webkit-line-clamp:3;
  -webkit-box-orient:vertical;
}
.aml-lift-actions{
  display:flex;
  gap:7px;
  flex-wrap:wrap;
}
.aml-lift-actions a{
  padding:6px 8px;
  border-radius:9px;
  background:#fff;
  color:#5145cd!important;
  font-size:.66rem;
  font-weight:850;
  text-decoration:none!important;
}
.aml-lift-actions a:first-child{
  background:#090909;
  color:#fff!important;
}
.aml-lift-empty{
  position:relative;
  display:grid;
  justify-items:center;
  padding:22px;
  text-align:center;
}
.aml-lift-empty>i{
  display:grid;
  place-items:center;
  width:46px;
  height:46px;
  margin-bottom:10px;
  border-radius:14px;
  background:#090909;
  color:#fff;
}
.aml-lift-empty strong,.aml-lift-empty span{display:block}
.aml-lift-empty span{
  max-width:430px;
  margin-top:5px;
  color:var(--lift-muted);
  font-size:.75rem;
}
.aml-lift-footer{
  position:relative;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:8px;
  padding:13px 14px 15px;
  border-top:1px solid #edf0f5;
  background:#fbfcfe;
}
.aml-lift-footer a{
  padding:9px 10px;
  border-radius:10px;
  font-size:.72rem;
  font-weight:900;
  text-align:center;
  text-decoration:none!important;
}
.aml-lift-primary{background:linear-gradient(135deg,#635bff,#1677ed);color:#fff!important}
.aml-lift-secondary{border:1px solid #dce2ec;background:#fff;color:#4f5a6d!important}
.aml-lift-home{
  width:min(1160px,calc(100% - 28px));
  margin:28px auto;
}
.aml-lift-home .aml-lift-list{
  grid-template-columns:repeat(3,minmax(0,1fr));
}
.aml-lift-home .aml-lift-head{
  padding:25px 26px 18px;
}
.aml-lift-home .aml-lift-head h2{font-size:clamp(1.6rem,3vw,2.25rem)}
.aml-lift-home .aml-lift-head p{font-size:.9rem}
.aml-lift-home .aml-lift-list{padding:0 20px 20px}
.aml-lift-home .aml-lift-footer{
  display:flex;
  justify-content:center;
  padding:16px;
}
.aml-lift-home .aml-lift-footer a{min-width:190px}
.aml-lift-rail{margin:0!important}
@media(max-width:850px){
  .aml-lift-home .aml-lift-list{grid-template-columns:1fr}
}
@media(max-width:540px){
  .aml-lift-head{flex-direction:column}
  .aml-lift-order{align-self:flex-start}
  .aml-lift-footer{grid-template-columns:1fr}
}

/* --- index-inline id="aml-social-usernames-and-emoji-v1" --- */
.profile-block .aml-social-profile-link{
  display:grid!important;
  grid-template-columns:24px minmax(0,1fr) 18px!important;
  align-items:center!important;
  gap:10px!important;
  min-height:54px!important;
  padding:9px 12px!important;
  text-align:left!important;
}
.profile-block .aml-social-profile-icon{
  display:block!important;
  width:20px!important;
  height:20px!important;
  max-width:20px!important;
  object-fit:contain!important;
  padding:0!important;
}
.profile-block .aml-social-profile-copy{
  display:block!important;
  min-width:0!important;
  padding:0!important;
}
.profile-block .aml-social-profile-copy strong,
.profile-block .aml-social-profile-copy small{
  display:block!important;
  padding:0!important;
  overflow:hidden!important;
  text-overflow:ellipsis!important;
  white-space:nowrap!important;
}
.profile-block .aml-social-profile-copy strong{
  font-size:.86rem!important;
  font-weight:900!important;
}
.profile-block .aml-social-profile-copy small{
  margin-top:2px!important;
  font-size:.72rem!important;
  font-weight:650!important;
  opacity:.76!important;
}
.profile-block .aml-social-profile-open{
  justify-self:end!important;
  font-size:.68rem!important;
  opacity:.62!important;
}
.profile-block .aml-profile-tagline{
  margin:6px auto!important;
  max-width:600px!important;
  overflow-wrap:anywhere!important;
}
.profile-block .aml-profile-bio{
  max-width:600px!important;
  margin:10px auto 12px!important;
  padding:10px 14px!important;
  border-radius:14px!important;
  background:color-mix(in srgb,var(--aml-theme-text) 8%,transparent)!important;
  color:var(--aml-theme-text)!important;
  font-size:.86rem!important;
  line-height:1.55!important;
  text-align:left!important;
  overflow-wrap:anywhere!important;
  white-space:normal!important;
}
@supports not (background:color-mix(in srgb,white 50%,black)){
  .profile-block .aml-profile-bio{
    background:rgba(255,255,255,.08)!important;
  }
}
\n/* --- public profile dynamic theme bridge --- */\nbody.aml-public-profile-page{\n  background-image:var(--aml-profile-page-bg);\n  background-repeat:no-repeat;\n  background-position:center center;\n  background-attachment:fixed;\n  background-size:cover;\n  padding-bottom:70px;\n}\n.profile-block{background-color:var(--aml-theme-bg);color:var(--aml-theme-text)}\n.profile-block .panel{color:var(--aml-theme-text)}\n.list-group.subNav{border-radius:0}\n.list-group .list-group{margin-bottom:0}\n.list-group.subNav .list-group-item{border-radius:0;padding:0;margin-bottom:-1px;border:1px solid #fff}\n.list-group.subNav .list-group-item a,.list-group.subNav .list-group-item span{display:block;padding:6px 10px}\n.list-group.subNav>.list-group-item a{background-color:var(--aml-theme-link-bg);color:var(--aml-theme-link-text)}\n.list-group.subNav>.list-group-item a:hover{text-decoration:none;color:var(--aml-theme-hover-text);background-color:var(--aml-theme-hover-bg)}\n.list-group.subNav .list-group-item.active .list-group{margin:0;padding:0}\n.list-group.subNav .list-group-item.active .list-group .list-group-item{border-left:none;border-right:none}\n.list-group.subNav .list-group .list-group-item a,.list-group.subNav .list-group .list-group-item span{font-weight:300;font-size:14px;padding-left:20px;background-color:var(--aml-theme-link-text);color:var(--aml-theme-link-bg)}\n.list-group.subNav .list-group .list-group-item span{font-weight:700}\n.list-group.subNav .list-group .list-group-item a:hover,.list-group.subNav .list-group .list-group-item.active a{color:var(--aml-theme-link-text)}\n
/* ===== CANONICAL PRICING CONVERSION UI ===== */
.aml-plan-pill{display:inline-flex;align-items:center;width:max-content;margin-bottom:10px;padding:6px 10px;border-radius:999px;background:#eeecff;color:#574ad8;font-size:.72rem;font-weight:900;letter-spacing:.04em;text-transform:uppercase}
.aml-offer-card-pro{border-color:#c9c4ff!important;box-shadow:0 18px 44px rgba(99,91,255,.14)!important}
.aml-offer-card-price small{font-size:.8rem;color:#6b7280;font-weight:700}
.aml-plan-saving{margin-top:-4px!important;color:#4b5563!important;font-size:.84rem!important}


/* ===== BILLING PAGE — consolidated 2026-08-08 ===== */

body.aml-billing-page{--b-ink:#172033;--b-muted:#687086;--b-line:#e3e8f1;--b-brand:#635bff;--b-side:240px}html body.aml-billing-page,body.aml-billing-page{margin:0!important;min-height:100%;background:#f5f7fb!important}body.aml-billing-page.aml-app{padding-left:var(--b-side)!important}body.aml-billing-page .aml-sidebar{position:fixed!important;top:44px!important;bottom:0!important;left:0!important;width:var(--b-side)!important;height:calc(100vh - 44px)!important}body.aml-billing-page .aml-main{padding:72px 22px 50px}body.aml-billing-page .bill-shell{max-width:1250px;margin:auto}body.aml-billing-page .bill-hero{padding:30px;border-radius:24px;background:linear-gradient(135deg,#171c31,#4138a0 62%,#1677ed);color:#fff}body.aml-billing-page .bill-hero h1{margin:6px 0;color:#fff;font-weight:950}body.aml-billing-page .bill-hero p{margin:0;color:rgba(255,255,255,.78)}body.aml-billing-page .bill-section{margin-top:18px;padding:22px;border:1px solid var(--b-line);border-radius:21px;background:#fff;box-shadow:0 10px 30px rgba(25,35,60,.055)}body.aml-billing-page .bill-head{display:flex;justify-content:space-between;gap:12px;align-items:flex-start;margin-bottom:15px}body.aml-billing-page .bill-head h2{margin:0;font-weight:950}body.aml-billing-page .bill-head p{margin:4px 0 0;color:var(--b-muted)}body.aml-billing-page .plan-grid,body.aml-billing-page .token-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:12px}body.aml-billing-page .token-grid{grid-template-columns:repeat(4,minmax(0,1fr))}body.aml-billing-page .choice{display:flex;flex-direction:column;padding:18px;border:1px solid var(--b-line);border-radius:17px;background:#fafbff}body.aml-billing-page .choice.best{border:2px solid var(--b-brand);background:#f6f4ff}body.aml-billing-page .choice .tag{width:max-content;padding:5px 8px;border-radius:999px;background:#ece9ff;color:#5145cd;font-size:.68rem;font-weight:900}body.aml-billing-page .choice h3{margin:11px 0 4px;font-weight:950}body.aml-billing-page .choice .price{font-size:1.75rem;font-weight:950}body.aml-billing-page .choice p{color:var(--b-muted);font-size:.82rem}body.aml-billing-page .choice ul{margin:10px 0 16px;padding:0;list-style:none;flex:1}body.aml-billing-page .choice li{position:relative;margin:7px 0;padding-left:22px;color:#435066;font-size:.8rem;line-height:1.4}body.aml-billing-page .choice li:before{content:"✓";position:absolute;left:0;color:#0f9f6e;font-weight:950}body.aml-billing-page .choice .saving{margin:8px 0;padding:8px 10px;border-radius:10px;background:#eaf8f1;color:#08784d;font-size:.76rem;font-weight:900}body.aml-billing-page .choice.current{border-color:#0f9f6e;background:#f1fbf6}body.aml-billing-page .choice button{min-height:44px;border-radius:11px;font-weight:850}body.aml-billing-page .notice{display:none;margin-top:14px;padding:12px;border-radius:12px}body.aml-billing-page .notice.show{display:block}body.aml-billing-page .notice.error{background:#fff0f2;color:#9d2440}body.aml-billing-page .notice.success{background:#ebfaf3;color:#08764d}body.aml-billing-page .history-table{font-size:.84rem}body.aml-billing-page .status-pill{display:inline-block;padding:4px 8px;border-radius:999px;background:#eef2f7;font-weight:800}body.aml-billing-page .disclosure{margin-top:14px;padding:12px;border:1px solid #e0e6ef;border-radius:12px;background:#f8faff;color:#5f6b7f;font-size:.78rem;line-height:1.5}@media (max-width:1000px){body.aml-billing-page .plan-grid,body.aml-billing-page .token-grid{grid-template-columns:1fr 1fr}}@media (max-width:991.98px){body.aml-billing-page.aml-app{padding-left:0!important}body.aml-billing-page .aml-sidebar{display:none!important}body.aml-billing-page .aml-main{padding:66px 12px 40px}}@media (max-width:620px){body.aml-billing-page .plan-grid,body.aml-billing-page .token-grid{grid-template-columns:1fr}body.aml-billing-page .bill-hero{padding:23px}body.aml-billing-page .bill-section{padding:16px}}


/* ===== PRICING PAGE — consolidated 2026-08-08 ===== */
body.aml-pricing-page{background:#f6f8fc;color:#172033}body.aml-pricing-page .price-main{padding:92px 12px 70px}body.aml-pricing-page .price-shell{max-width:1120px;margin:auto}body.aml-pricing-page .price-hero{text-align:center;max-width:780px;margin:0 auto 34px}body.aml-pricing-page .price-hero h1{font-size:clamp(2.3rem,5vw,4rem);font-weight:950;letter-spacing:-.055em}body.aml-pricing-page .price-hero p{color:#687086;font-size:1.06rem}body.aml-pricing-page .price-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:14px}body.aml-pricing-page .price-card{display:flex;flex-direction:column;padding:24px;border:1px solid #e3e8f1;border-radius:21px;background:#fff;box-shadow:0 12px 32px rgba(25,35,60,.06)}body.aml-pricing-page .price-card.best{border:2px solid #635bff}body.aml-pricing-page .tag{width:max-content;padding:5px 8px;border-radius:999px;background:#ece9ff;color:#5145cd;font-size:.7rem;font-weight:900}body.aml-pricing-page .price-card h2{margin:12px 0 4px;font-weight:950}body.aml-pricing-page .amount{font-size:2rem;font-weight:950}body.aml-pricing-page .price-card p{color:#687086}body.aml-pricing-page .price-card ul{padding:0;list-style:none;flex:1;color:#435066}body.aml-pricing-page .price-card li{position:relative;margin:8px 0;padding-left:22px;font-size:.85rem}body.aml-pricing-page .price-card li:before{content:"✓";position:absolute;left:0;color:#0f9f6e;font-weight:950}body.aml-pricing-page .saving{margin:8px 0;padding:9px;border-radius:10px;background:#eaf8f1;color:#08784d;font-size:.78rem;font-weight:900}body.aml-pricing-page .price-card .btn{min-height:45px;border-radius:12px;font-weight:850}body.aml-pricing-page .trust{margin-top:28px;padding:18px;border:1px solid #e3e8f1;border-radius:18px;background:#fff;text-align:center;color:#5d687a}@media (max-width:980px){body.aml-pricing-page .price-grid{grid-template-columns:1fr 1fr}}@media (max-width:600px){body.aml-pricing-page .price-grid{grid-template-columns:1fr}}

/* ===== POINTS PAGE — consolidated 2026-08-08 ===== */

body.aml-points-page{--wallet-ink:#172033;--wallet-muted:#687086;--wallet-line:#e4e9f1;--wallet-soft:#f6f8fc;--wallet-brand:#635bff;--wallet-gold:#f5b800;--wallet-success:#0f9f6e;--wallet-sidebar:240px}
html body.aml-points-page,body.aml-points-page{margin:0!important;padding:0!important;min-height:100%!important;background:#f5f7fb!important}
body.aml-points-page.aml-app{padding-left:var(--wallet-sidebar)!important;overflow:hidden!important;color:var(--wallet-ink)!important}
body.aml-points-page .aml-sidebar{position:fixed!important;top:44px!important;bottom:0!important;left:0!important;width:var(--wallet-sidebar)!important;height:calc(100vh - 44px)!important;z-index:1040!important}
body.aml-points-page .aml-main{position:fixed!important;top:44px!important;right:0!important;bottom:0!important;left:var(--wallet-sidebar)!important;width:auto!important;margin:0!important;overflow-y:auto!important;overflow-x:hidden!important;background:#f5f7fb!important}
body.aml-points-page .aml-main>.aml-topbar{display:none!important}body.aml-points-page .wallet-shell{width:100%;max-width:1500px;margin:0 auto;padding:18px 22px 40px}body.aml-points-page .wallet-layout{display:grid;grid-template-columns:minmax(0,1fr) 300px;gap:18px;align-items:start}body.aml-points-page .wallet-main{min-width:0}body.aml-points-page .wallet-rail{display:grid;gap:14px}
body.aml-points-page .wallet-hero{position:relative;overflow:hidden;padding:28px;border-radius:24px;background:linear-gradient(135deg,#171c2f 0%,#29235c 55%,#635bff 100%);color:#fff;box-shadow:0 24px 55px rgba(24,30,55,.18)}body.aml-points-page .wallet-hero:after{content:"";position:absolute;right:-80px;top:-110px;width:300px;height:300px;border-radius:50%;background:rgba(255,255,255,.08)}body.aml-points-page .wallet-kicker{text-transform:uppercase;letter-spacing:.13em;font-size:.72rem;font-weight:900;color:#c8c5ff}body.aml-points-page .wallet-hero-grid{position:relative;z-index:1;display:grid;grid-template-columns:minmax(0,1fr) auto;gap:22px;align-items:center}body.aml-points-page .wallet-hero h1{margin:.25rem 0 .35rem;color:#fff;font-size:clamp(1.9rem,4vw,3rem);font-weight:950;letter-spacing:-.045em}body.aml-points-page .wallet-hero p{max-width:720px;margin:0;color:rgba(255,255,255,.78)}body.aml-points-page .wallet-balance{text-align:right}body.aml-points-page .wallet-balance strong{display:block;color:#ffe26c;font-size:clamp(2.2rem,5vw,4rem);line-height:1;font-weight:950}body.aml-points-page .wallet-balance span{display:block;margin-top:6px;color:rgba(255,255,255,.8);font-weight:800}body.aml-points-page .wallet-actions{display:flex;gap:9px;flex-wrap:wrap;margin-top:18px}body.aml-points-page .wallet-actions .btn{border-radius:12px;font-weight:850}body.aml-points-page .wallet-actions .btn-light{color:#2c286b}
body.aml-points-page .wallet-metrics{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:12px;margin:14px 0}body.aml-points-page .wallet-metric,body.aml-points-page .wallet-card,body.aml-points-page .rail-card{border:1px solid var(--wallet-line);border-radius:20px;background:#fff;box-shadow:0 8px 28px rgba(28,39,67,.055)}body.aml-points-page .wallet-metric{padding:17px}body.aml-points-page .wallet-metric span{display:block;color:var(--wallet-muted);font-size:.76rem;font-weight:850;text-transform:uppercase;letter-spacing:.05em}body.aml-points-page .wallet-metric strong{display:block;margin-top:4px;color:var(--wallet-ink);font-size:1.55rem}body.aml-points-page .wallet-card{padding:21px;margin-bottom:14px}body.aml-points-page .wallet-section-head{display:flex;justify-content:space-between;align-items:flex-start;gap:14px;margin-bottom:16px}body.aml-points-page .wallet-section-head h2{margin:.2rem 0 .35rem;color:var(--wallet-ink);font-size:1.25rem;font-weight:950}body.aml-points-page .wallet-section-head p{margin:0;color:var(--wallet-muted)}
body.aml-points-page .token-package-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:10px}body.aml-points-page .token-package{position:relative;padding:16px;border:1px solid var(--wallet-line);border-radius:16px;background:var(--wallet-soft);overflow:hidden}body.aml-points-page .token-package.is-best{border-color:#bdb7ff;background:#f4f2ff}body.aml-points-page .token-package-badge{position:absolute;top:8px;right:8px;padding:4px 7px;border-radius:999px;background:#e8e5ff;color:#5145cd;font-size:.61rem;font-weight:950}body.aml-points-page .token-package strong,body.aml-points-page .token-package span,body.aml-points-page .token-package small{display:block}body.aml-points-page .token-package strong{font-size:1.18rem;color:var(--wallet-ink)}body.aml-points-page .token-package span{margin-top:3px;color:#5145cd;font-weight:900}body.aml-points-page .token-package small{min-height:34px;margin-top:6px;color:var(--wallet-muted)}body.aml-points-page .token-package .btn{width:100%;margin-top:12px;border-radius:11px;font-weight:850}
body.aml-points-page .way-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:10px}body.aml-points-page .way-card{display:grid;grid-template-columns:44px minmax(0,1fr);gap:11px;padding:14px;border:1px solid var(--wallet-line);border-radius:15px;background:#fff}body.aml-points-page .way-icon{display:grid;place-items:center;width:44px;height:44px;border-radius:13px;background:#eeecff;color:var(--wallet-brand)}body.aml-points-page .way-card strong,body.aml-points-page .way-card span,body.aml-points-page .way-card small{display:block}body.aml-points-page .way-card strong{color:var(--wallet-ink)}body.aml-points-page .way-card span{margin-top:2px;color:#0b8b5d;font-size:.76rem;font-weight:850}body.aml-points-page .way-card small{margin-top:4px;color:var(--wallet-muted);line-height:1.4}body.aml-points-page .way-card a{color:inherit;text-decoration:none}body.aml-points-page .reward-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:10px}body.aml-points-page .reward-card{padding:16px;border:1px solid var(--wallet-line);border-radius:16px;background:#fbfcff}body.aml-points-page .reward-card strong,body.aml-points-page .reward-card span,body.aml-points-page .reward-card small{display:block}body.aml-points-page .reward-card strong{color:var(--wallet-ink)}body.aml-points-page .reward-card span{margin-top:4px;color:#5145cd;font-weight:900}body.aml-points-page .reward-card small{min-height:40px;margin-top:5px;color:var(--wallet-muted)}body.aml-points-page .reward-card .btn{width:100%;margin-top:11px;border-radius:11px;font-weight:850}
body.aml-points-page .gift-form-grid{display:grid;grid-template-columns:1fr 160px;gap:12px}body.aml-points-page .gift-form-grid .full{grid-column:1/-1}body.aml-points-page .wallet-card label{display:block;margin-bottom:6px;color:#344158;font-weight:850}body.aml-points-page .wallet-card .form-control{min-height:46px;border:1px solid #d9e0eb;border-radius:12px;background:#fff!important;color:#172033!important;box-shadow:none}body.aml-points-page .wallet-card .form-control:focus{border-color:#8b85ff;box-shadow:0 0 0 4px rgba(99,91,255,.1)}body.aml-points-page .wallet-status{display:none;margin-top:12px;padding:11px 12px;border-radius:11px}body.aml-points-page .wallet-status.show{display:block}body.aml-points-page .wallet-status.success{background:#eefaf4;color:#0d744d}body.aml-points-page .wallet-status.error{background:#fff3f5;color:#9f2b42}
body.aml-points-page .activity-list{display:grid;gap:8px}body.aml-points-page .activity-row{display:grid;grid-template-columns:42px minmax(0,1fr) auto;gap:11px;align-items:center;padding:11px;border:1px solid #e8edf4;border-radius:14px}body.aml-points-page .activity-icon{display:grid;place-items:center;width:42px;height:42px;border-radius:12px;background:#f1f3f8;color:#687086}body.aml-points-page .activity-row.earn .activity-icon{background:#eaf8f1;color:#0b8b5d}body.aml-points-page .activity-row.spend .activity-icon{background:#fff1f2;color:#b4233b}body.aml-points-page .activity-copy{min-width:0}body.aml-points-page .activity-copy strong,body.aml-points-page .activity-copy small{display:block}body.aml-points-page .activity-copy strong{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}body.aml-points-page .activity-copy small{margin-top:3px;color:var(--wallet-muted)}body.aml-points-page .activity-amount{font-weight:950;white-space:nowrap}body.aml-points-page .activity-row.earn .activity-amount{color:#0b8b5d}body.aml-points-page .activity-row.spend .activity-amount{color:#b4233b}
body.aml-points-page .rail-card{padding:17px}body.aml-points-page .rail-card h3{margin:0 0 10px;font-size:1rem;font-weight:950}body.aml-points-page .goal-value{display:flex;justify-content:space-between;gap:10px;font-weight:850}body.aml-points-page .goal-track{height:10px;margin:10px 0;border-radius:999px;background:#edf0f6;overflow:hidden}body.aml-points-page .goal-track span{display:block;height:100%;border-radius:999px;background:linear-gradient(90deg,#635bff,#0ea5e9)}body.aml-points-page .rail-card p,body.aml-points-page .rail-card small{color:var(--wallet-muted)}body.aml-points-page .rail-links{display:grid;gap:7px}body.aml-points-page .rail-links a{display:flex;justify-content:space-between;align-items:center;padding:9px 10px;border-radius:10px;background:#f7f9fc;color:#4e46cb;text-decoration:none;font-weight:800}body.aml-points-page .wallet-disclosure{padding:14px;border:1px solid #e2e7f0;border-radius:14px;background:#f8faff;color:#5f6b7f;font-size:.78rem;line-height:1.5}body.aml-points-page .wallet-empty{padding:22px;border:1px dashed #d7dde8;border-radius:14px;text-align:center;color:var(--wallet-muted)}
body.aml-points-page .points-footer-wrap{margin-top:24px}body.aml-points-page .points-footer-wrap footer{position:relative!important;inset:auto!important;width:100%!important;margin:0!important}
body.aml-points-page .aml-points-mobile-nav,body.aml-points-page .aml-points-mobile-more,body.aml-points-page .aml-points-mobile-backdrop{display:none}
@media (max-width:1250px){body.aml-points-page .wallet-layout{grid-template-columns:1fr}body.aml-points-page .wallet-rail{grid-template-columns:repeat(3,minmax(0,1fr))}}
@media (max-width:991.98px){body.aml-points-page.aml-app{padding:0 0 calc(84px + env(safe-area-inset-bottom))!important;overflow:auto!important}body.aml-points-page.aml-app>.aml-sidebar{display:none!important}body.aml-points-page .aml-main{position:relative!important;inset:auto!important;width:100%!important;min-height:100vh!important;overflow:visible!important}body.aml-points-page .wallet-shell{padding:12px 12px 105px}body.aml-points-page .wallet-rail{display:none}body.aml-points-page .aml-points-mobile-nav{position:fixed;right:0;bottom:0;left:0;z-index:2147482000;display:grid;grid-template-columns:repeat(6,minmax(0,1fr));gap:2px;min-height:82px;padding:7px 7px calc(7px + env(safe-area-inset-bottom));border-top:1px solid #dbe4ef;background:rgba(255,255,255,.97);box-shadow:0 -12px 34px rgba(20,30,55,.12);backdrop-filter:blur(14px);align-items:end}body.aml-points-page .aml-points-mobile-nav a,body.aml-points-page .aml-points-mobile-nav button{appearance:none;display:flex;flex-direction:column;align-items:center;justify-content:center;gap:4px;min-width:0;min-height:64px;padding:4px 1px;border:0;border-radius:13px;background:transparent;color:#253148;font:inherit;font-size:.67rem;font-weight:850;text-align:center;text-decoration:none!important}body.aml-points-page .aml-points-mobile-nav i{font-size:1.22rem}body.aml-points-page .aml-points-mobile-nav span{width:100%;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}body.aml-points-page .aml-points-create,body.aml-points-page .aml-points-live{position:relative;margin-top:-22px!important}body.aml-points-page .aml-points-create i,body.aml-points-page .aml-points-live i{display:grid;place-items:center;width:54px;height:54px;margin:0 auto 1px;border:4px solid #fff;border-radius:50%;color:#fff!important;box-shadow:0 12px 28px rgba(28,39,67,.26)}body.aml-points-page .aml-points-create i{background:linear-gradient(135deg,#635bff,#1677ed)}body.aml-points-page .aml-points-live i{background:linear-gradient(135deg,#18df65,#00a96b)}body.aml-points-page .aml-points-wallet{color:#5145cd!important}body.aml-points-page .aml-points-wallet i{color:#635bff}body.aml-points-page .aml-points-mobile-backdrop{position:fixed;inset:0;z-index:2147482001;display:block;visibility:hidden;opacity:0;background:rgba(5,9,18,.64);transition:.2s}body.aml-points-page .aml-points-mobile-backdrop.open{visibility:visible;opacity:1}body.aml-points-page .aml-points-mobile-more{position:fixed;right:0;bottom:0;left:0;z-index:2147482002;display:block;max-height:82dvh;padding:8px 14px calc(18px + env(safe-area-inset-bottom));overflow:auto;border-radius:28px 28px 0 0;background:#fff;transform:translateY(110%);transition:transform .24s ease}body.aml-points-page .aml-points-mobile-more.open{transform:none}body.aml-points-page .mobile-more-head{display:flex;justify-content:space-between;align-items:center;padding:8px 4px 15px}body.aml-points-page .mobile-more-head button{display:grid;place-items:center;width:42px;height:42px;border:0;border-radius:50%;background:#eef2f7}body.aml-points-page .mobile-more-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:10px}body.aml-points-page .mobile-more-grid a{display:flex;align-items:center;gap:11px;min-height:72px;padding:13px;border:1px solid #e3e8f1;border-radius:17px;background:#f9fbff;color:#172033;text-decoration:none}body.aml-points-page .mobile-more-grid i{display:grid;place-items:center;width:42px;height:42px;border-radius:13px;background:#eeecff;color:#635bff}body.aml-points-page .mobile-more-grid strong,body.aml-points-page .mobile-more-grid small{display:block}body.aml-points-page .mobile-more-grid small{margin-top:3px;color:#707b8e;font-size:.68rem}}
@media (max-width:760px){body.aml-points-page .wallet-hero-grid{grid-template-columns:1fr}body.aml-points-page .wallet-balance{text-align:left}body.aml-points-page .wallet-metrics,body.aml-points-page .token-package-grid,body.aml-points-page .way-grid,body.aml-points-page .reward-grid{grid-template-columns:1fr 1fr}body.aml-points-page .gift-form-grid{grid-template-columns:1fr}body.aml-points-page .gift-form-grid .full{grid-column:auto}}
@media (max-width:520px){body.aml-points-page .wallet-metrics,body.aml-points-page .token-package-grid,body.aml-points-page .way-grid,body.aml-points-page .reward-grid{grid-template-columns:1fr}body.aml-points-page .wallet-hero{padding:22px}body.aml-points-page .wallet-card{padding:16px}body.aml-points-page .wallet-actions .btn{width:100%}body.aml-points-page .mobile-more-grid{grid-template-columns:1fr}}


/* ===== LOGIN PAGE — consolidated 2026-08-08 ===== */

        body.aml-login-page{
            --aml-ink: #111827;
            --aml-muted: #667085;
            --aml-line: #e4e7ec;
            --aml-soft: #f5f7fb;
            --aml-primary: #635bff;
            --aml-primary-dark: #4f46e5;
            --aml-success: #067647;
            --aml-card: rgba(255, 255, 255, .94);
            --aml-shadow: 0 24px 70px rgba(16, 24, 40, .14);
        }

        body.aml-login-page.aml-login-page{
            background:
                radial-gradient(circle at 12% 18%, rgba(99, 91, 255, .16), transparent 34rem),
                radial-gradient(circle at 92% 80%, rgba(26, 188, 156, .13), transparent 30rem),
                var(--aml-soft);
            color: var(--aml-ink);
            min-height: 100vh;
        }

        body.aml-login-page .aml-login-shell{
            padding: 56px 0 72px;
        }

        body.aml-login-page .aml-login-grid{
            display: grid;
            grid-template-columns: minmax(0, 1.1fr) minmax(360px, .9fr);
            gap: 52px;
            align-items: center;
        }

        body.aml-login-page .aml-login-copy{
            padding: 24px 0;
        }

        body.aml-login-page .aml-eyebrow{
            display: inline-flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 18px;
            padding: 7px 11px;
            border: 1px solid rgba(99, 91, 255, .22);
            border-radius: 999px;
            background: rgba(255, 255, 255, .72);
            color: var(--aml-primary-dark);
            font-size: .79rem;
            font-weight: 800;
            letter-spacing: .06em;
            text-transform: uppercase;
        }

        body.aml-login-page .aml-login-copy h1{
            max-width: 760px;
            margin: 0 0 18px;
            font-size: clamp(2.25rem, 5vw, 4.35rem);
            line-height: 1.02;
            letter-spacing: -.055em;
            font-weight: 850;
        }

        body.aml-login-page .aml-login-copy .lead{
            max-width: 650px;
            margin: 0 0 30px;
            color: var(--aml-muted);
            font-size: clamp(1.05rem, 2vw, 1.26rem);
            line-height: 1.65;
        }

        body.aml-login-page .aml-feature-list{
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 14px;
            max-width: 680px;
            margin: 0;
            padding: 0;
            list-style: none;
        }

        body.aml-login-page .aml-feature-list li{
            display: flex;
            gap: 12px;
            align-items: flex-start;
            padding: 16px;
            border: 1px solid rgba(228, 231, 236, .9);
            border-radius: 16px;
            background: rgba(255, 255, 255, .68);
            backdrop-filter: blur(8px);
        }

        body.aml-login-page .aml-feature-icon{
            display: inline-grid;
            place-items: center;
            width: 34px;
            height: 34px;
            flex: 0 0 34px;
            border-radius: 10px;
            background: rgba(99, 91, 255, .1);
            color: var(--aml-primary-dark);
        }

        body.aml-login-page .aml-feature-list strong{
            display: block;
            margin-bottom: 3px;
            font-size: .96rem;
        }

        body.aml-login-page .aml-feature-list span{
            color: var(--aml-muted);
            font-size: .86rem;
            line-height: 1.45;
        }

        body.aml-login-page .aml-login-card{
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(228, 231, 236, .9);
            border-radius: 26px;
            background: var(--aml-card);
            box-shadow: var(--aml-shadow);
        }

        body.aml-login-page .aml-login-card::before{
            content: "";
            position: absolute;
            inset: 0 0 auto;
            height: 5px;
            background: linear-gradient(90deg, var(--aml-primary), #7c3aed, #14b8a6);
        }

        body.aml-login-page .aml-login-card-body{
            padding: 36px;
        }

        body.aml-login-page .aml-login-card h2{
            margin: 0 0 8px;
            font-size: 1.72rem;
            font-weight: 800;
            letter-spacing: -.025em;
        }

        body.aml-login-page .aml-login-intro{
            margin: 0 0 25px;
            color: var(--aml-muted);
        }

        body.aml-login-page .aml-field-label{
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 8px;
            font-size: .9rem;
            font-weight: 700;
        }

        body.aml-login-page .aml-field{
            margin-bottom: 18px;
        }

        body.aml-login-page .aml-input-wrap{
            position: relative;
        }

        body.aml-login-page .aml-input-icon{
            position: absolute;
            left: 15px;
            top: 50%;
            transform: translateY(-50%);
            color: #98a2b3;
            pointer-events: none;
        }

        body.aml-login-page .aml-login-card .form-control{
            min-height: 52px;
            padding-left: 44px;
            border: 1px solid #d0d5dd;
            border-radius: 12px;
            background: #fff;
            color: var(--aml-ink);
            font-size: 1rem;
            transition: border-color .18s ease, box-shadow .18s ease;
        }

        body.aml-login-page .aml-login-card .form-control:focus{
            border-color: var(--aml-primary);
            box-shadow: 0 0 0 4px rgba(99, 91, 255, .13);
        }

        body.aml-login-page .aml-password-toggle{
            position: absolute;
            right: 10px;
            top: 50%;
            transform: translateY(-50%);
            border: 0;
            border-radius: 8px;
            background: transparent;
            color: var(--aml-muted);
            padding: 7px 9px;
            cursor: pointer;
        }

        body.aml-login-page .aml-password-toggle:hover,body.aml-login-page .aml-password-toggle:focus-visible{
            background: #f2f4f7;
            color: var(--aml-ink);
        }

        body.aml-login-page .aml-login-button{
            min-height: 52px;
            border: 0;
            border-radius: 12px;
            background: linear-gradient(135deg, var(--aml-primary), var(--aml-primary-dark));
            box-shadow: 0 10px 24px rgba(99, 91, 255, .24);
            font-size: 1rem;
            font-weight: 800;
        }

        body.aml-login-page .aml-login-button:hover,body.aml-login-page .aml-login-button:focus{
            background: linear-gradient(135deg, #554cf2, #4338ca);
        }

        body.aml-login-page .aml-login-button[disabled]{
            opacity: .65;
            cursor: wait;
        }

        body.aml-login-page .aml-auth-links{
            display: flex;
            justify-content: space-between;
            gap: 14px;
            margin-top: 18px;
            font-size: .91rem;
        }

        body.aml-login-page .aml-auth-links a,body.aml-login-page .aml-field-label a,body.aml-login-page .aml-legal a{
            color: var(--aml-primary-dark);
            font-weight: 700;
        }

        body.aml-login-page .aml-legal{
            margin: 22px 0 0;
            padding-top: 18px;
            border-top: 1px solid var(--aml-line);
            color: var(--aml-muted);
            font-size: .78rem;
            line-height: 1.55;
            text-align: center;
        }

        body.aml-login-page .aml-trust-row{
            display: flex;
            justify-content: center;
            gap: 16px;
            flex-wrap: wrap;
            margin-top: 19px;
            color: var(--aml-muted);
            font-size: .8rem;
        }

        body.aml-login-page .aml-trust-row span{
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }

        body.aml-login-page #loginResult{
            border-radius: 12px;
            font-size: .9rem;
        }

        body.aml-login-page .aml-seo-links{
            margin-top: 44px;
            padding-top: 26px;
            border-top: 1px solid rgba(208, 213, 221, .8);
        }

        body.aml-login-page .aml-seo-links p{
            margin: 0 0 10px;
            color: var(--aml-muted);
            font-size: .9rem;
        }

        body.aml-login-page .aml-seo-links nav{
            display: flex;
            flex-wrap: wrap;
            gap: 10px 18px;
        }

        body.aml-login-page .aml-seo-links a{
            color: var(--aml-ink);
            font-size: .88rem;
            font-weight: 700;
        }

        @media (max-width: 991.98px){
            body.aml-login-page .aml-login-shell{ padding-top: 34px; }
            body.aml-login-page .aml-login-grid{ grid-template-columns: 1fr; gap: 30px; }
            body.aml-login-page .aml-login-copy{ text-align: center; padding-bottom: 0; }
            body.aml-login-page .aml-login-copy .lead,body.aml-login-page .aml-feature-list{ margin-left: auto; margin-right: auto; }
            body.aml-login-page .aml-login-card{ max-width: 560px; width: 100%; margin: 0 auto; }
            body.aml-login-page .aml-seo-links nav{ justify-content: center; }
            body.aml-login-page .aml-seo-links{ text-align: center; }
        }

        @media (max-width: 575.98px){
            body.aml-login-page .aml-login-shell{ padding: 22px 0 46px; }
            body.aml-login-page .aml-feature-list{ grid-template-columns: 1fr; }
            body.aml-login-page .aml-login-card-body{ padding: 28px 21px; }
            body.aml-login-page .aml-auth-links{ flex-direction: column; align-items: center; }
        }

        @media (prefers-reduced-motion: reduce){
            body.aml-login-page *,body.aml-login-page *::before,body.aml-login-page *::after{
                scroll-behavior: auto !important;
                transition-duration: .01ms !important;
                animation-duration: .01ms !important;
                animation-iteration-count: 1 !important;
            }
        }

        body.aml-login-page .aml-social-auth{margin-bottom:22px}
        body.aml-login-page .aml-social-grid{display:grid;gap:9px}
        body.aml-login-page .aml-social-button{display:flex;align-items:center;justify-content:center;gap:10px;min-height:48px;padding:10px 14px;border:1px solid #d6dbe5;border-radius:12px;background:#fff;color:#172033!important;font-weight:800;text-decoration:none!important;transition:.18s}
        body.aml-login-page .aml-social-button:hover{transform:translateY(-1px);box-shadow:0 9px 22px rgba(20,30,55,.08)}
        body.aml-login-page .aml-social-button i{width:20px;text-align:center;font-size:1.08rem}
        body.aml-login-page .aml-social-google i{color:#4285f4}
        body.aml-login-page .aml-auth-divider{display:flex;align-items:center;gap:10px;margin:18px 0;color:#8a94a7;font-size:.75rem;font-weight:800;text-transform:uppercase;letter-spacing:.08em}body.aml-login-page .aml-auth-divider:before,body.aml-login-page .aml-auth-divider:after{content:"";height:1px;flex:1;background:#e3e7ee}
        body.aml-login-page .aml-social-notice{margin-bottom:14px;padding:11px 12px;border-radius:12px;background:#fff4e6;color:#8a4d00;font-size:.82rem}

    

/* ===== REGISTER PAGE — consolidated 2026-08-08 ===== */

        body.aml-register-page{
            --reg-ink:#162033;
            --reg-muted:#6b7487;
            --reg-line:#e4e9f2;
            --reg-brand:#0a67ff;
            --reg-brand-dark:#0753cf;
            --reg-soft:#f6f9ff;
            --reg-success:#138a5b;
            --reg-danger:#c93645;
        }
        html body.aml-register-page,body.aml-register-page{margin:0;padding:0;min-height:100%;background:#f7f9fc;color:var(--reg-ink)}
        body.aml-register-page{padding-top:0!important}
        body.aml-register-page .register-page{min-height:calc(100vh - 72px);display:grid;grid-template-columns:minmax(0,1.05fr) minmax(420px,.95fr);background:linear-gradient(135deg,#edf5ff 0%,#f9fbff 48%,#fff 100%)}
        body.aml-register-page .register-pitch{display:flex;align-items:center;padding:64px clamp(28px,6vw,90px);background:radial-gradient(circle at top left,rgba(10,103,255,.18),transparent 38rem)}
        body.aml-register-page .register-pitch-inner{max-width:650px}
        body.aml-register-page .register-kicker{display:inline-flex;align-items:center;gap:8px;padding:8px 12px;border:1px solid rgba(10,103,255,.18);border-radius:999px;background:rgba(255,255,255,.72);color:var(--reg-brand);font-size:.78rem;font-weight:800;letter-spacing:.08em;text-transform:uppercase}
        body.aml-register-page .register-pitch h1{margin:20px 0 16px;font-size:clamp(2.5rem,6vw,5rem);line-height:.98;letter-spacing:-.055em;color:var(--reg-ink)}
        body.aml-register-page .register-pitch p{max-width:600px;margin:0;color:var(--reg-muted);font-size:1.12rem;line-height:1.7}
        body.aml-register-page .register-benefits{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:14px;margin-top:28px}
        body.aml-register-page .register-benefit{padding:18px;border:1px solid rgba(10,103,255,.12);border-radius:18px;background:rgba(255,255,255,.82);box-shadow:0 12px 30px rgba(29,52,90,.06)}
        body.aml-register-page .register-benefit i{color:var(--reg-brand);font-size:1.15rem;margin-bottom:10px}
        body.aml-register-page .register-benefit strong,body.aml-register-page .register-benefit small{display:block}body.aml-register-page .register-benefit strong{color:var(--reg-ink)}body.aml-register-page .register-benefit small{margin-top:4px;color:var(--reg-muted);line-height:1.45}
        body.aml-register-page .register-panel{display:flex;align-items:center;justify-content:center;padding:38px clamp(20px,5vw,64px);background:#fff}
        body.aml-register-page .register-card{width:100%;max-width:510px}
        body.aml-register-page .register-card-header{margin-bottom:24px}body.aml-register-page .register-card-header h2{margin:0 0 8px;color:var(--reg-ink);font-size:2rem;letter-spacing:-.035em}body.aml-register-page .register-card-header p{margin:0;color:var(--reg-muted)}
        body.aml-register-page .referral-banner{display:flex;align-items:center;gap:10px;margin-bottom:18px;padding:12px 14px;border:1px solid #bdebd5;border-radius:14px;background:#effcf6;color:#0f714b;font-weight:700}
        body.aml-register-page .field-group{margin-bottom:16px}body.aml-register-page .field-group label{display:block;margin-bottom:7px;color:var(--reg-ink);font-size:.88rem;font-weight:750}body.aml-register-page .field-control{position:relative}body.aml-register-page .field-control i.field-icon{position:absolute;left:15px;top:50%;transform:translateY(-50%);color:#8a94a7;pointer-events:none}body.aml-register-page .field-control input{width:100%;min-height:50px;padding:12px 46px 12px 44px;border:1px solid var(--reg-line);border-radius:14px;background:#fff;color:var(--reg-ink);outline:0;transition:.2s}body.aml-register-page .field-control input:focus{border-color:rgba(10,103,255,.65);box-shadow:0 0 0 4px rgba(10,103,255,.1)}
        body.aml-register-page .field-control input.is-invalid{border-color:var(--reg-danger);box-shadow:0 0 0 4px rgba(201,54,69,.08)}
        body.aml-register-page .toggle-password{position:absolute;right:8px;top:50%;transform:translateY(-50%);width:36px;height:36px;border:0;background:transparent;color:#6f7890;border-radius:9px}body.aml-register-page .toggle-password:hover{background:#f2f5fa}
        body.aml-register-page .field-help{display:flex;justify-content:space-between;gap:10px;margin-top:7px;color:var(--reg-muted);font-size:.78rem}body.aml-register-page .field-error{color:var(--reg-danger);font-weight:700}
        body.aml-register-page .password-meter{display:grid;grid-template-columns:repeat(4,1fr);gap:5px;margin-top:9px}body.aml-register-page .password-meter span{height:5px;border-radius:999px;background:#e6eaf1}body.aml-register-page .password-meter[data-strength="1"] span:nth-child(-n/**/+1),body.aml-register-page .password-meter[data-strength="2"] span:nth-child(-n/**/+2),body.aml-register-page .password-meter[data-strength="3"] span:nth-child(-n/**/+3),body.aml-register-page .password-meter[data-strength="4"] span:nth-child(-n/**/+4){background:var(--reg-brand)}
        body.aml-register-page .terms-box{display:flex;gap:10px;align-items:flex-start;margin:18px 0;padding:14px;border:1px solid var(--reg-line);border-radius:14px;background:var(--reg-soft)}body.aml-register-page .terms-box input{margin-top:4px}body.aml-register-page .terms-box label{margin:0;color:#4f596d;font-size:.88rem;line-height:1.5}body.aml-register-page .terms-box a{font-weight:700}
        body.aml-register-page .register-submit{width:100%;min-height:52px;border:0;border-radius:14px;background:var(--reg-brand);color:#fff;font-weight:850;font-size:1rem;box-shadow:0 14px 28px rgba(10,103,255,.23);transition:.2s}body.aml-register-page .register-submit:hover:not(:disabled){background:var(--reg-brand-dark);transform:translateY(-1px)}body.aml-register-page .register-submit:disabled{opacity:.48;cursor:not-allowed;box-shadow:none}
        body.aml-register-page .register-login{text-align:center;margin:18px 0 0;color:var(--reg-muted)}body.aml-register-page .register-login a{font-weight:800}
        body.aml-register-page .free-note{display:flex;gap:8px;align-items:center;justify-content:center;margin-top:14px;color:var(--reg-muted);font-size:.82rem}body.aml-register-page .free-note i{color:var(--reg-success)}
        body.aml-register-page #_ThisRegResult:empty{display:none}body.aml-register-page .register-result{margin-bottom:16px}
        body.aml-register-page .registration-status .modal-content{border:0;border-radius:20px;box-shadow:0 28px 80px rgba(20,31,52,.22)}body.aml-register-page .registration-status .modal-body{text-align:center;padding:30px}body.aml-register-page .status-icon{width:68px;height:68px;margin:0 auto 14px;border-radius:50%;display:grid;place-items:center;font-size:1.7rem}body.aml-register-page .status-icon.success{background:#e9faf2;color:var(--reg-success)}body.aml-register-page .status-icon.error{background:#fff0f2;color:var(--reg-danger)}
        @media (max-width:980px){body.aml-register-page .register-page{grid-template-columns:1fr}body.aml-register-page .register-pitch{padding:42px 24px}body.aml-register-page .register-pitch h1{font-size:clamp(2.3rem,10vw,4rem)}body.aml-register-page .register-panel{padding:34px 20px}body.aml-register-page .register-benefits{grid-template-columns:1fr 1fr}}
        @media (max-width:600px){body.aml-register-page .register-benefits{grid-template-columns:1fr}body.aml-register-page .register-pitch{padding-top:30px}body.aml-register-page .register-panel{align-items:flex-start}body.aml-register-page .register-card-header h2{font-size:1.65rem}}

        body.aml-register-page .social-register{margin-bottom:20px}body.aml-register-page .social-register-grid{display:grid;gap:9px}body.aml-register-page .social-register-button{display:flex;align-items:center;justify-content:center;gap:10px;min-height:48px;padding:10px 14px;border:1px solid #d6dbe5;border-radius:13px;background:#fff;color:#172033!important;font-weight:800;text-decoration:none!important}body.aml-register-page .social-register-divider{display:flex;align-items:center;gap:10px;margin:17px 0;color:#8a94a7;font-size:.72rem;font-weight:850;text-transform:uppercase;letter-spacing:.08em}body.aml-register-page .social-register-divider:before,body.aml-register-page .social-register-divider:after{content:"";height:1px;flex:1;background:#e3e7ee}body.aml-register-page .social-pending-banner{display:flex;gap:10px;align-items:flex-start;margin-bottom:16px;padding:13px;border:1px solid #c9d8ff;border-radius:14px;background:#eef4ff;color:#284b8a}body.aml-register-page .social-pending-banner strong,body.aml-register-page .social-pending-banner small{display:block}body.aml-register-page .social-pending-banner small{margin-top:3px}

    
/* Canonical pricing tier presentation - 2026-08-08 */
body.aml-pricing-page .price-actions,body.aml-app .billing-plan-actions{display:grid;gap:9px;margin-top:auto}body.aml-pricing-page .founding-card,body.aml-app .founding-choice{border-color:#d7b861;background:linear-gradient(180deg,#fffdf6,#fff)}body.aml-pricing-page .founding-card .tag,body.aml-app .founding-choice .tag{background:#fff3c4;color:#7a5900}body.aml-app .canonical-plan-grid{grid-template-columns:repeat(3,minmax(0,1fr))}@media(max-width:1000px){body.aml-app .canonical-plan-grid{grid-template-columns:1fr 1fr}}@media(max-width:620px){body.aml-app .canonical-plan-grid{grid-template-columns:1fr}}


/* ===== feed page consolidated 2026-08-08 ===== */

/* feed-inline-block-1 scoped */
body.aml-feed-page{--feed-ink:#172033;--feed-muted:#687086;--feed-line:#e7eaf0;--feed-soft:#f6f8fc;--feed-brand:#635bff;--feed-brand2:#8b5cf6;--feed-success:#0f9f6e}
body.aml-feed-page, body.aml-feed-page{margin:0!important;padding:0!important;background:#f5f7fb!important}
body.aml-feed-page.aml-app{padding-top:0!important;overflow-x:hidden}

body.aml-feed-page .aml-main>.aml-topbar{position:sticky!important;top:0!important;z-index:20!important;min-height:64px!important;height:64px!important;background:rgba(255,255,255,.96)!important;border-bottom:1px solid var(--feed-line)!important;backdrop-filter:blur(12px)}
body.aml-feed-page .aml-content.feed-layout{max-width:none!important;margin:0!important;padding:18px 24px 42px!important;background:#f5f7fb!important}
body.aml-feed-page .aml-three-col{display:grid!important;grid-template-columns:minmax(0,1fr) 300px!important;gap:18px!important;width:100%!important;max-width:1450px!important;margin:0 auto!important;align-items:start!important}
body.aml-feed-page .feed-main{min-width:0}
body.aml-feed-page .feed-intro{display:flex;justify-content:space-between;align-items:center;gap:18px;margin-bottom:16px;padding:24px 26px;border-radius:22px;background:linear-gradient(135deg,#171c2f 0%,#29235c 55%,#635bff 100%);color:#fff;box-shadow:0 20px 45px rgba(31,35,78,.18)}
body.aml-feed-page .feed-intro h1{margin:4px 0 6px;color:#fff;font-size:clamp(1.65rem,3vw,2.45rem);font-weight:900;letter-spacing:-.035em}body.aml-feed-page .feed-intro p{margin:0;color:rgba(255,255,255,.78)}body.aml-feed-page .feed-kicker{text-transform:uppercase;letter-spacing:.13em;font-size:.72rem;font-weight:800;color:#c7c5ff}body.aml-feed-page .feed-intro-actions{display:flex;gap:10px;flex-wrap:wrap}body.aml-feed-page .feed-intro .btn{border-radius:12px;font-weight:800}body.aml-feed-page .feed-intro .btn-light{color:#2c286b}
body.aml-feed-page #_Message:empty{display:none!important}body.aml-feed-page .composer-card, body.aml-feed-page .feed-card, body.aml-feed-page .reply-card, body.aml-feed-page .rail-panel{border:1px solid var(--feed-line)!important;border-radius:20px!important;background:#fff!important;box-shadow:0 9px 28px rgba(28,39,67,.06)!important;overflow:hidden}
body.aml-feed-page .composer-card .card-header{padding:18px 20px!important;border-bottom:1px solid var(--feed-line)!important;background:#fff!important}body.aml-feed-page .composer-card .card-header h5{color:var(--feed-ink);font-weight:850}body.aml-feed-page .composer-card .card-body{padding:18px 20px}body.aml-feed-page .composer-avatar-row{display:flex;gap:12px;align-items:flex-start}body.aml-feed-page .composer-avatar{width:48px;height:48px;border-radius:50%;object-fit:cover;border:3px solid #fff;box-shadow:0 0 0 1px var(--feed-line)}body.aml-feed-page .composer-input-wrap{flex:1;min-width:0}body.aml-feed-page .composer-card textarea{min-height:120px!important;border:1px solid #dbe2ed!important;border-radius:16px!important;padding:14px 16px!important;background:#fafbfe!important;resize:vertical!important;box-shadow:none!important}body.aml-feed-page .composer-card textarea:focus{border-color:#8b85ff!important;box-shadow:0 0 0 4px rgba(99,91,255,.11)!important;background:#fff!important}body.aml-feed-page .composer-meta{display:flex;justify-content:space-between;gap:10px;align-items:center;margin-top:9px}body.aml-feed-page .composer-tools{display:flex!important;gap:9px!important;align-items:center!important;flex-wrap:wrap!important;margin:16px 0 0!important;padding-top:16px;border-top:1px solid #eef1f6}body.aml-feed-page .composer-tools .btn{border-radius:12px;font-weight:750}body.aml-feed-page .composer-tools #_PostToFeed{margin-left:auto!important;min-width:115px}body.aml-feed-page .emoji-bar{display:flex;gap:7px;flex-wrap:wrap}body.aml-feed-page .emoji-btn{width:34px;height:34px;border:1px solid var(--feed-line);border-radius:10px;background:#fff;font-size:1rem;transition:.16s}body.aml-feed-page .emoji-btn:hover{transform:translateY(-1px);border-color:#bcb8ff;background:#f1efff}
body.aml-feed-page .feed-card{margin-bottom:16px!important}body.aml-feed-page .feed-card .card-header{padding:14px 16px!important;background:#fff!important;border-bottom:1px solid #eef1f6!important}body.aml-feed-page .feed-card .card-body{padding:18px 18px 14px!important}body.aml-feed-page .feed-card .card-text{color:#26384d!important;font-size:1rem!important;line-height:1.65!important}body.aml-feed-page .feed-card .card-footer{padding:12px 16px!important;background:#fbfcfe!important;border-top:1px solid #eef1f6!important}body.aml-feed-page .feed-card img.rounded-circle, body.aml-feed-page .reply-card img.rounded-circle{object-fit:cover;box-shadow:0 0 0 1px var(--feed-line)}body.aml-feed-page .feed-card h6, body.aml-feed-page .reply-card h6{font-weight:800}body.aml-feed-page .feed-actions{display:flex!important;gap:8px!important;align-items:center!important;flex-wrap:wrap!important}body.aml-feed-page .feed-actions .btn{margin:0!important;border-radius:10px!important;font-weight:700!important}body.aml-feed-page .feed-carousel{border-radius:16px!important;overflow:hidden;background:#101827}body.aml-feed-page .feed-carousel img{max-height:580px!important;object-fit:contain!important;background:#101827}body.aml-feed-page .ReplyPanel{width:100%!important;margin:0!important;padding:0 14px 14px!important}body.aml-feed-page .reply-card{margin-left:34px!important;border-radius:16px!important;box-shadow:none!important;background:#fafbfe!important}body.aml-feed-page .reply-card .card-header, body.aml-feed-page .reply-card .card-footer{background:#fafbfe!important}body.aml-feed-page .reply-card .card-body{padding:14px 16px!important}
body.aml-feed-page .aml-right-rail{display:grid!important;gap:14px!important;align-content:start!important}body.aml-feed-page .rail-panel{padding:18px!important;border-radius:18px!important}body.aml-feed-page .rail-panel h3{font-size:1rem!important;color:var(--feed-ink)!important;font-weight:850!important}body.aml-feed-page .rail-list{display:grid;gap:8px}body.aml-feed-page .rail-list a{padding:9px 10px;border-radius:10px;background:#f6f7fb;color:#4e46cb!important;font-weight:700;text-decoration:none}body.aml-feed-page .rail-list a:hover{background:#eceaff;text-decoration:none}body.aml-feed-page .feed-status-modal .modal-content{border:0!important;border-radius:20px!important;box-shadow:0 24px 60px rgba(18,26,45,.22)!important}body.aml-feed-page .feed-status-body{text-align:center;padding:28px}body.aml-feed-page .feed-status-icon{width:66px;height:66px;border-radius:50%;display:grid;place-items:center;margin:0 auto 14px;font-size:1.6rem}body.aml-feed-page .feed-status-icon.success{background:#eafaf3;color:#159a62}body.aml-feed-page .feed-status-icon.error{background:#fff1f2;color:#dc2626}body.aml-feed-page .feed-status-icon.info{background:#eef2ff;color:#4338ca}body.aml-feed-page .loading-image{width:42px;height:42px}body.aml-feed-page .end-record-info{padding:16px;border:1px solid var(--feed-line);border-radius:14px;background:#fff;color:var(--feed-muted);text-align:center}
@media(max-width:1250px){body.aml-feed-page .aml-three-col{grid-template-columns:minmax(0,1fr)!important}body.aml-feed-page .aml-right-rail{grid-template-columns:repeat(3,minmax(0,1fr))!important}body.aml-feed-page .feed-intro{align-items:flex-start}}
@media(max-width:991px){body.aml-feed-page .aml-main{margin-left:0!important;width:100%!important;padding-bottom:76px}body.aml-feed-page .aml-main>.aml-topbar{display:none!important}body.aml-feed-page .aml-content.feed-layout{padding:12px!important}body.aml-feed-page .aml-right-rail{display:none!important}body.aml-feed-page .feed-intro{padding:20px;flex-direction:column}body.aml-feed-page .composer-tools #_PostToFeed{margin-left:0!important;width:100%}body.aml-feed-page .composer-tools .btn{flex:1 1 auto}body.aml-feed-page .reply-card{margin-left:12px!important}}

body.aml-feed-page .single-post-head{display:flex;align-items:center;justify-content:space-between;gap:18px;padding:22px 24px;border:1px solid var(--feed-line);border-radius:20px;background:#fff;box-shadow:0 9px 28px rgba(28,39,67,.06)}
body.aml-feed-page .single-post-head h1{color:var(--feed-ink);font-weight:900;letter-spacing:-.03em}body.aml-feed-page .single-post-head p{color:var(--feed-muted)}
body.aml-feed-page .single-post-reply-box{display:flex;justify-content:center;padding:18px;border:1px dashed #cbc7ff;border-radius:18px;background:#f8f7ff}
body.aml-feed-page .feed-card .reply-list.show{display:block!important}body.aml-feed-page .feed-card .reply-list{border-top:1px solid #edf1f6;background:#fafbfe;padding-top:8px}
body.aml-feed-page .feed-upload-note{display:flex;align-items:flex-start;gap:8px;margin-top:10px;padding:10px 12px;border-radius:12px;background:#f6f8fc;color:#667287;font-size:.78rem;line-height:1.45}
@media(max-width:700px){body.aml-feed-page .single-post-head{align-items:stretch;flex-direction:column;padding:18px}body.aml-feed-page .single-post-head .btn{width:100%}}
@media(max-width:576px){body.aml-feed-page .composer-avatar{display:none}body.aml-feed-page .composer-card .card-body{padding:14px}body.aml-feed-page .feed-card .card-header, body.aml-feed-page .feed-card .card-body, body.aml-feed-page .feed-card .card-footer{padding-left:13px!important;padding-right:13px!important}body.aml-feed-page .feed-actions .btn{flex:1 1 calc(50% - 8px)}body.aml-feed-page .feed-intro-actions{width:100%}body.aml-feed-page .feed-intro-actions .btn{flex:1 1 auto}}
/* feed-inline-block-2 scoped */
body.aml-feed-page, body.aml-feed-page{margin:0!important;padding:0!important;min-height:100%!important}

body.aml-feed-page .aml-sidebar{position:fixed!important;top:0!important;bottom:0!important;left:0!important;width:272px!important;height:100vh!important;overflow-y:auto!important}
body.aml-feed-page .aml-main{position:fixed!important;top:0!important;right:0!important;bottom:0!important;left:272px!important;width:auto!important;height:auto!important;margin:0!important;padding:0!important;overflow-y:auto!important;overflow-x:hidden!important}
body.aml-feed-page .aml-main>.aml-topbar{display:none!important}
body.aml-feed-page .aml-content.feed-layout{padding:18px 22px 36px!important}
body.aml-feed-page .feed-footer-wrap{margin-top:28px;width:100%}
body.aml-feed-page .feed-footer-wrap footer{position:relative!important;inset:auto!important;width:100%!important;margin:0!important}
body.aml-feed-page .feed-plan-badge{display:inline-flex;align-items:center;padding:.55rem .8rem;border:1px solid rgba(255,255,255,.25);border-radius:999px;background:rgba(255,255,255,.12);font-weight:800;color:#fff}
body.aml-feed-page .feed-ad-panel iframe{display:block;width:100%!important;min-height:250px;border:0}
@media(max-width:991.98px){
 body.aml-feed-page.aml-app{padding:0 0 70px!important;overflow:auto!important}
 body.aml-feed-page .aml-sidebar{top:auto!important;right:0!important;width:auto!important;height:70px!important;bottom:0!important;overflow:hidden!important}
 body.aml-feed-page .aml-main{position:relative!important;inset:auto!important;width:100%!important;min-height:calc(100vh - 70px)!important;overflow:visible!important}
 body.aml-feed-page .aml-content.feed-layout{padding:12px!important}
}
/* feed-inline-block-3 scoped */
body.aml-feed-page .feed-intro{position:relative;overflow:hidden}body.aml-feed-page .feed-intro:after{content:"";position:absolute;right:-80px;bottom:-110px;width:270px;height:270px;border-radius:50%;background:rgba(255,255,255,.07);pointer-events:none}body.aml-feed-page .feed-intro>*{position:relative;z-index:1}
body.aml-feed-page .feed-filter-bar{display:flex;align-items:center;justify-content:space-between;gap:12px;margin-bottom:15px;padding:12px 14px;border:1px solid #ddd9ff;border-radius:15px;background:#f6f4ff;color:#41389b}body.aml-feed-page .feed-filter-bar strong{font-weight:900}
body.aml-feed-page .feed-discovery-controls{display:grid;grid-template-columns:auto minmax(0,1fr) auto;gap:12px;align-items:center;margin-bottom:16px;padding:14px 16px;border:1px solid var(--feed-line);border-radius:18px;background:#fff;box-shadow:0 8px 24px rgba(28,39,67,.05)}body.aml-feed-page .feed-discovery-title strong, body.aml-feed-page .feed-discovery-title small{display:block}body.aml-feed-page .feed-discovery-title strong{color:var(--feed-ink);font-weight:900}body.aml-feed-page .feed-discovery-title small{margin-top:2px;color:var(--feed-muted);font-size:.76rem}body.aml-feed-page .feed-filter-groups{display:flex;flex-wrap:wrap;gap:8px;align-items:center}body.aml-feed-page .feed-filter-group{display:flex;gap:6px;align-items:center;padding:4px;border:1px solid #e5e9f1;border-radius:12px;background:#f7f9fc}body.aml-feed-page .feed-filter-chip{display:inline-flex;align-items:center;gap:6px;min-height:36px;padding:8px 11px;border:0;border-radius:9px;background:transparent;color:#536076;font-size:.78rem;font-weight:850;text-decoration:none!important;white-space:nowrap}body.aml-feed-page .feed-filter-chip:hover{background:#fff;color:#5145cd}body.aml-feed-page .feed-filter-chip.is-active{background:#635bff;color:#fff;box-shadow:0 6px 14px rgba(99,91,255,.2)}body.aml-feed-page .feed-filter-reset{white-space:nowrap;border-radius:11px!important;font-weight:800!important}body.aml-feed-page .feed-upload-note{display:none!important}@media(max-width:900px){body.aml-feed-page .feed-discovery-controls{grid-template-columns:1fr}body.aml-feed-page .feed-filter-groups{overflow-x:auto;flex-wrap:nowrap;padding-bottom:3px}body.aml-feed-page .feed-filter-group{flex:0 0 auto}body.aml-feed-page .feed-filter-reset{width:100%}}
body.aml-feed-page .composer-head{display:flex;align-items:center;justify-content:space-between;gap:12px}body.aml-feed-page .composer-head small{color:var(--feed-muted)}
body.aml-feed-page .feed-image-preview{display:none;grid-template-columns:repeat(6,minmax(0,1fr));gap:8px;margin-top:12px}body.aml-feed-page .feed-image-preview.is-visible{display:grid}body.aml-feed-page .feed-image-preview-item{position:relative;aspect-ratio:1;border-radius:12px;overflow:hidden;background:#e9edf4}body.aml-feed-page .feed-image-preview-item img{width:100%;height:100%;object-fit:cover}body.aml-feed-page .feed-image-preview-item span{position:absolute;right:6px;top:6px;display:grid;place-items:center;width:23px;height:23px;border-radius:50%;background:rgba(8,12,20,.78);color:#fff;font-size:.7rem}
body.aml-feed-page .feed-card{transition:transform .18s ease,box-shadow .18s ease}body.aml-feed-page .feed-card:hover{transform:translateY(-1px);box-shadow:0 15px 38px rgba(28,39,67,.09)!important}body.aml-feed-page .feed-user-link{min-width:0}body.aml-feed-page .feed-user-copy{min-width:0}body.aml-feed-page .feed-user-copy h6{max-width:min(46vw,420px);overflow:hidden;text-overflow:ellipsis;white-space:nowrap}body.aml-feed-page .feed-date{font-size:.74rem}body.aml-feed-page .feed-post-content{overflow-wrap:anywhere}body.aml-feed-page .feed-actions .btn{border-color:#dde3ed!important;color:#49566d!important;background:#fff!important}body.aml-feed-page .feed-actions .btn:hover{border-color:#c8c2ff!important;color:#5145cd!important;background:#f3f1ff!important}body.aml-feed-page .feed-actions .is-active{border-color:#cbc6ff!important;background:#efedff!important;color:#5145cd!important}body.aml-feed-page .feed-reply-toggle{margin-left:auto!important}body.aml-feed-page .feed-carousel-count{position:absolute;right:12px;top:12px;z-index:4;padding:5px 9px;border-radius:999px;background:rgba(7,11,20,.72);color:#fff;font-size:.72rem;font-weight:850;backdrop-filter:blur(8px)}
body.aml-feed-page .reply-list{padding:4px 14px 14px;background:#fbfcff}body.aml-feed-page .reply-card{margin:10px 0 0 34px!important}body.aml-feed-page .reply-card .card-text{font-size:.92rem!important}body.aml-feed-page .feed-empty-card{padding:35px 22px;text-align:center;border:1px solid var(--feed-line);border-radius:20px;background:#fff}body.aml-feed-page .feed-empty-card i{font-size:2rem;color:#635bff}body.aml-feed-page .feed-empty-card h3{margin:12px 0 6px;color:var(--feed-ink)}
body.aml-feed-page .feed-sidebar-spotlight{overflow:hidden}body.aml-feed-page .feed-sidebar-spotlight-head{display:flex;align-items:center;justify-content:space-between;gap:8px;margin-bottom:12px}body.aml-feed-page .feed-sidebar-spotlight-head span{padding:4px 7px;border-radius:999px;background:#fff4d7;color:#805900;font-size:.66rem;font-weight:900}body.aml-feed-page .feed-spotlight-list{display:grid;gap:9px}body.aml-feed-page .feed-spotlight-card{display:grid;grid-template-columns:44px minmax(0,1fr);align-items:center;gap:10px;padding:10px;border:1px solid #e5e9f1;border-radius:13px;background:#fafbff;color:#172033!important;text-decoration:none!important}body.aml-feed-page .feed-spotlight-card:hover{border-color:#cbc6ff;background:#f5f3ff}body.aml-feed-page .feed-spotlight-card img{width:44px;height:44px;border-radius:50%;object-fit:cover}body.aml-feed-page .feed-spotlight-card strong, body.aml-feed-page .feed-spotlight-card small{display:block;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}body.aml-feed-page .feed-spotlight-card small{margin-top:2px;color:#778196;font-size:.68rem}body.aml-feed-page .feed-spotlight-cta{display:block;margin-top:11px;padding:10px;border:1px dashed #cfc9ff;border-radius:12px;text-align:center;color:#5145cd!important;font-size:.78rem;font-weight:850;text-decoration:none!important}
body.aml-feed-page .feed-ad-frame{position:relative;overflow:hidden;width:100%;min-height:250px;border-radius:12px;background:#f3f5f8}body.aml-feed-page .feed-ad-frame iframe{position:absolute;inset:0;width:100%!important;height:100%!important;min-height:250px!important}body.aml-feed-page .feed-ad-panel .rail-list{position:relative;z-index:2;margin-top:10px}
body.aml-feed-page .feed-toast{position:fixed;right:18px;bottom:24px;z-index:2147482500;display:flex;align-items:center;gap:10px;max-width:min(420px,calc(100vw - 28px));padding:13px 15px;border-radius:14px;background:#172033;color:#fff;box-shadow:0 18px 45px rgba(15,23,42,.28);transform:translateY(120px);opacity:0;transition:.22s}body.aml-feed-page .feed-toast.is-visible{transform:none;opacity:1}body.aml-feed-page .feed-toast.success i{color:#39e58c}body.aml-feed-page .feed-toast.error i{color:#ff7d8c}
@media(max-width:991.98px){body.aml-feed-page .feed-intro{margin-top:0;border-radius:20px}body.aml-feed-page .feed-image-preview{grid-template-columns:repeat(3,1fr)}body.aml-feed-page .feed-toast{right:14px;bottom:100px}body.aml-feed-page .feed-user-copy h6{max-width:52vw}body.aml-feed-page .feed-reply-toggle{margin-left:0!important}}
@media(max-width:576px){body.aml-feed-page .feed-intro h1{font-size:2rem}body.aml-feed-page .feed-intro-actions .feed-plan-badge{width:100%;justify-content:center}body.aml-feed-page .composer-head{align-items:flex-start;flex-direction:column}body.aml-feed-page .composer-meta{align-items:flex-start;flex-direction:column}body.aml-feed-page .feed-actions{display:grid!important;grid-template-columns:repeat(2,minmax(0,1fr))}body.aml-feed-page .feed-actions>*{width:100%}body.aml-feed-page .feed-actions .btn{width:100%;min-height:42px}body.aml-feed-page .reply-card{margin-left:8px!important}body.aml-feed-page .feed-image-preview{grid-template-columns:repeat(3,1fr)}}
/* feed-inline-block-4 scoped */
body.aml-feed-page .feed-mode-bar{display:flex;align-items:center;justify-content:space-between;gap:14px;margin-bottom:16px;padding:13px 15px;border:1px solid var(--feed-line);border-radius:17px;background:#fff;box-shadow:0 8px 24px rgba(28,39,67,.05)}body.aml-feed-page .feed-mode-copy strong, body.aml-feed-page .feed-mode-copy small{display:block}body.aml-feed-page .feed-mode-copy strong{color:var(--feed-ink);font-weight:900}body.aml-feed-page .feed-mode-copy small{margin-top:2px;color:var(--feed-muted)}body.aml-feed-page .feed-mode-controls{display:flex;align-items:center;gap:8px}body.aml-feed-page .feed-mode-controls select{min-width:180px;border-radius:11px}body.aml-feed-page .feed-reason{display:inline-flex;align-items:center;gap:6px;margin:0 18px 12px;padding:6px 9px;border-radius:999px;background:#f0efff;color:#5145cd;font-size:.72rem;font-weight:800}body.aml-feed-page .feed-reason i{font-size:.7rem}@media(max-width:650px){body.aml-feed-page .feed-mode-bar{align-items:stretch;flex-direction:column}body.aml-feed-page .feed-mode-controls{display:grid;grid-template-columns:1fr auto}body.aml-feed-page .feed-mode-controls select{min-width:0}body.aml-feed-page .feed-mode-controls .btn{white-space:nowrap}}
/* feed-inline-block-5 scoped */
body.aml-feed-page .feed-publish-options{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:10px;margin-top:14px}body.aml-feed-page .feed-publish-options label{margin:0}body.aml-feed-page .feed-publish-options label>span{display:block;margin-bottom:6px;color:#455268;font-size:.75rem;font-weight:850}body.aml-feed-page .feed-publish-options .form-control{min-height:42px;border-radius:11px}body.aml-feed-page .feed-series-chip{display:inline-flex;align-items:center;gap:6px;margin-bottom:10px;padding:6px 9px;border-radius:999px;background:#eeecff;color:#5145cd;font-size:.75rem;font-weight:850}body.aml-feed-page .feed-session-nudge{position:fixed;right:20px;bottom:98px;z-index:2147482500;max-width:340px;padding:16px;border:1px solid #dcd8ff;border-radius:18px;background:#fff;box-shadow:0 20px 55px rgba(15,23,42,.24)}body.aml-feed-page .feed-session-nudge strong, body.aml-feed-page .feed-session-nudge span{display:block}body.aml-feed-page .feed-session-nudge span{margin:5px 0 12px;color:#687086;font-size:.82rem}body.aml-feed-page .feed-session-nudge button{border:0;border-radius:10px;padding:9px 12px;background:#635bff;color:#fff;font-weight:850}body.aml-feed-page .insight-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:9px}body.aml-feed-page .insight-tile{padding:12px;border:1px solid #e4e8f1;border-radius:13px;background:#f9fbff}body.aml-feed-page .insight-tile strong, body.aml-feed-page .insight-tile span{display:block}body.aml-feed-page .insight-tile strong{font-size:1.35rem}body.aml-feed-page .insight-tile span{color:#687086;font-size:.75rem}body.aml-feed-page .insight-diagnosis{margin-top:12px;padding:13px;border-radius:13px;background:#f2f0ff;color:#352f7d}body.aml-feed-page .edit-history-item{padding:11px 0;border-bottom:1px solid #edf1f6}body.aml-feed-page .edit-history-item:last-child{border-bottom:0}body.aml-feed-page .edit-history-item small{display:block;margin-bottom:5px;color:#687086}@media(max-width:700px){body.aml-feed-page .feed-publish-options{grid-template-columns:1fr 1fr}body.aml-feed-page .feed-session-nudge{right:12px;bottom:94px;left:12px;max-width:none}}@media(max-width:420px){body.aml-feed-page .feed-publish-options{grid-template-columns:1fr}}
/* feed-inline-block-6 scoped */
body.aml-feed-page .aml-lift-spotlight{
  --lift-ink:#172033;
  --lift-muted:#6c778b;
  --lift-line:#e2e7f0;
  --lift-purple:#635bff;
  position:relative;
  overflow:hidden;
  border:1px solid var(--lift-line);
  border-radius:20px;
  background:#fff;
  color:var(--lift-ink);
  box-shadow:0 12px 36px rgba(20,30,55,.07);
}
body.aml-feed-page .aml-lift-spotlight:before{
  content:"";
  position:absolute;
  right:-75px;
  top:-85px;
  width:210px;
  height:210px;
  border-radius:50%;
  background:rgba(99,91,255,.08);
  pointer-events:none;
}
body.aml-feed-page .aml-lift-head{
  position:relative;
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:16px;
  padding:20px 20px 14px;
}
body.aml-feed-page .aml-lift-kicker{
  display:inline-flex;
  align-items:center;
  gap:6px;
  color:#5145cd;
  font-size:.68rem;
  font-weight:950;
  letter-spacing:.09em;
  text-transform:uppercase;
}
body.aml-feed-page .aml-lift-head h2{
  margin:5px 0 4px;
  color:var(--lift-ink)!important;
  font-size:1.18rem;
  font-weight:950;
  letter-spacing:-.025em;
}
body.aml-feed-page .aml-lift-head p{
  max-width:650px;
  margin:0;
  color:var(--lift-muted)!important;
  font-size:.79rem;
  line-height:1.48;
}
body.aml-feed-page .aml-lift-order{
  flex:0 0 auto;
  padding:5px 8px;
  border-radius:999px;
  background:#eef2ff;
  color:#5145cd;
  font-size:.62rem;
  font-weight:900;
}
body.aml-feed-page .aml-lift-list{
  position:relative;
  display:grid;
  gap:10px;
  padding:0 14px 14px;
}
body.aml-feed-page .aml-lift-card{
  padding:12px;
  border:1px solid #e7ebf2;
  border-radius:15px;
  background:#fafbff;
}
body.aml-feed-page .aml-lift-profile{
  display:grid;
  grid-template-columns:43px minmax(0,1fr) auto;
  align-items:center;
  gap:10px;
  color:var(--lift-ink)!important;
  text-decoration:none!important;
}
body.aml-feed-page .aml-lift-profile img{
  width:43px;
  height:43px;
  border-radius:50%;
  object-fit:cover;
  background:#e8ecf4;
}
body.aml-feed-page .aml-lift-profile strong, body.aml-feed-page .aml-lift-profile small{
  display:block;
  min-width:0;
  overflow:hidden;
  text-overflow:ellipsis;
  white-space:nowrap;
}
body.aml-feed-page .aml-lift-profile strong{font-size:.84rem}
body.aml-feed-page .aml-lift-profile small{
  margin-top:2px;
  color:#737e92;
  font-size:.66rem;
}
body.aml-feed-page .aml-lift-profile>i{color:#1697f6}
body.aml-feed-page .aml-lift-drop{
  display:-webkit-box;
  margin:10px 0 9px;
  overflow:hidden;
  color:#4d596d!important;
  font-size:.73rem;
  line-height:1.45;
  -webkit-line-clamp:3;
  -webkit-box-orient:vertical;
}
body.aml-feed-page .aml-lift-actions{
  display:flex;
  gap:7px;
  flex-wrap:wrap;
}
body.aml-feed-page .aml-lift-actions a{
  padding:6px 8px;
  border-radius:9px;
  background:#fff;
  color:#5145cd!important;
  font-size:.66rem;
  font-weight:850;
  text-decoration:none!important;
}
body.aml-feed-page .aml-lift-actions a:first-child{
  background:#090909;
  color:#fff!important;
}
body.aml-feed-page .aml-lift-empty{
  position:relative;
  display:grid;
  justify-items:center;
  padding:22px;
  text-align:center;
}
body.aml-feed-page .aml-lift-empty>i{
  display:grid;
  place-items:center;
  width:46px;
  height:46px;
  margin-bottom:10px;
  border-radius:14px;
  background:#090909;
  color:#fff;
}
body.aml-feed-page .aml-lift-empty strong, body.aml-feed-page .aml-lift-empty span{display:block}
body.aml-feed-page .aml-lift-empty span{
  max-width:430px;
  margin-top:5px;
  color:var(--lift-muted);
  font-size:.75rem;
}
body.aml-feed-page .aml-lift-footer{
  position:relative;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:8px;
  padding:13px 14px 15px;
  border-top:1px solid #edf0f5;
  background:#fbfcfe;
}
body.aml-feed-page .aml-lift-footer a{
  padding:9px 10px;
  border-radius:10px;
  font-size:.72rem;
  font-weight:900;
  text-align:center;
  text-decoration:none!important;
}
body.aml-feed-page .aml-lift-primary{background:linear-gradient(135deg,#635bff,#1677ed);color:#fff!important}
body.aml-feed-page .aml-lift-secondary{border:1px solid #dce2ec;background:#fff;color:#4f5a6d!important}
body.aml-feed-page .aml-lift-home{
  width:min(1160px,calc(100% - 28px));
  margin:28px auto;
}
body.aml-feed-page .aml-lift-home .aml-lift-list{
  grid-template-columns:repeat(3,minmax(0,1fr));
}
body.aml-feed-page .aml-lift-home .aml-lift-head{
  padding:25px 26px 18px;
}
body.aml-feed-page .aml-lift-home .aml-lift-head h2{font-size:clamp(1.6rem,3vw,2.25rem)}
body.aml-feed-page .aml-lift-home .aml-lift-head p{font-size:.9rem}
body.aml-feed-page .aml-lift-home .aml-lift-list{padding:0 20px 20px}
body.aml-feed-page .aml-lift-home .aml-lift-footer{
  display:flex;
  justify-content:center;
  padding:16px;
}
body.aml-feed-page .aml-lift-home .aml-lift-footer a{min-width:190px}
body.aml-feed-page .aml-lift-rail{margin:0!important}
@media(max-width:850px){
  body.aml-feed-page .aml-lift-home .aml-lift-list{grid-template-columns:1fr}
}
@media(max-width:540px){
  body.aml-feed-page .aml-lift-head{flex-direction:column}
  body.aml-feed-page .aml-lift-order{align-self:flex-start}
  body.aml-feed-page .aml-lift-footer{grid-template-columns:1fr}
}

/* Canonical feed monetisation and limits */
body.aml-feed-page .feed-chronological-notice{
  display:flex;align-items:center;gap:12px;margin-bottom:16px;padding:13px 15px;
  border:1px solid #d9e2ef;border-radius:16px;background:#fff;box-shadow:0 8px 24px rgba(28,39,67,.05)
}
body.aml-feed-page .feed-chronological-notice>i{
  display:grid;place-items:center;width:40px;height:40px;flex:0 0 40px;border-radius:12px;background:#eeecff;color:#635bff
}
body.aml-feed-page .feed-chronological-notice strong,
body.aml-feed-page .feed-chronological-notice small{display:block}
body.aml-feed-page .feed-chronological-notice strong{color:#172033;font-weight:900}
body.aml-feed-page .feed-chronological-notice small{margin-top:2px;color:#687086}
body.aml-feed-page .feed-free-upgrade-note{
  display:flex;gap:9px;align-items:flex-start;padding:10px 18px;border-bottom:1px solid #e9e5ff;background:#f7f5ff;color:#4b4581;font-size:.78rem
}
body.aml-feed-page .feed-free-upgrade-note i{margin-top:2px;color:#635bff}
body.aml-feed-page .feed-free-upgrade-note a{font-weight:900}
body.aml-feed-page .feed-sponsored-card{
  margin:0 0 16px;padding:14px;border:1px solid #dfe5ee;border-radius:20px;background:#fff;box-shadow:0 9px 28px rgba(28,39,67,.06)
}
body.aml-feed-page .feed-sponsored-label{
  display:flex;align-items:center;justify-content:space-between;gap:12px;margin-bottom:10px;color:#778196;font-size:.72rem
}
body.aml-feed-page .feed-sponsored-label span{
  display:inline-flex;padding:4px 8px;border-radius:999px;background:#f1f3f7;color:#5f6878;font-size:.66rem;font-weight:900;letter-spacing:.06em;text-transform:uppercase
}
body.aml-feed-page .feed-sponsored-label a{color:#5145cd;font-weight:850;text-decoration:none}
body.aml-feed-page .feed-sponsored-frame{overflow:hidden;min-height:250px;border-radius:13px;background:#f3f5f8}
body.aml-feed-page .feed-sponsored-frame iframe{display:block;width:100%!important;min-height:250px;border:0}
body.aml-feed-page .feed-sentinel{height:1px}
body.aml-feed-page .rail-list a.is-current{background:#e8e5ff}
body.aml-feed-page .feed-hashtag-count{float:right;opacity:.72}
body.aml-feed-page .feed-publish-options{grid-template-columns:repeat(3,minmax(0,1fr))}
@media(max-width:700px){body.aml-feed-page .feed-publish-options{grid-template-columns:1fr 1fr}}
@media(max-width:420px){body.aml-feed-page .feed-publish-options{grid-template-columns:1fr}}
