a{
   text-decoration: none;
}

input,
optgroup,
select,
textarea {
    margin-bottom: 15px;
	font-family: inherit;
	font-size: inherit
}

input:not([type=checkbox]):not([type=radio]):not([type=submit]),
select {
	border: 1px solid #ddd;
	border-radius: 3px;
	color: #5a5a5a;
	font-size: .85rem;
	letter-spacing: .02rem;
	transition: .3s;
	outline: 0;
	padding: .85rem 1.1rem
}

    /* Make the input fill the screen width without overflowing */
        .responsive-input {
            width: 100%;                  /* Takes full width of its container */
            max-width: 100%;              /* Prevents it from ever exceeding screen width */
            box-sizing: border-box;       /* Includes padding + border in the width */
            padding: 12px 15px;           /* Nice padding without making it too wide */
            font-size: 16px;              /* Good mobile-friendly size */
            border: 2px solid #ccc;
            border-radius: 8px;
            outline: none;
        }

        .responsive-input:focus {
            border-color: #007bff;
        }

        /* Optional: container to add some breathing room on large screens */
        .input-wrapper {
            max-width: 100%;
            padding: 0 15px;              /* Small margin on sides so it doesn't touch screen edges */
            margin: 20px auto;            /* Centers it nicely */
        }


/* input[type=search] {
	-webkit-appearance: none
} */

textarea,
textarea[type=text] {
	width: 100%;
	border: 1px solid #ddd;
	border-radius: 3px;
	font-size: .85rem;
	letter-spacing: .02rem;
	transition: .3s;
	outline: 0;
	resize: vertical;
    /* color:black; */
}

input[type=color] {
	box-shadow: inset 0 1px 2px rgba(0, 0, 0, .05);
	box-sizing: border-box;
	transition: .3s;
	outline: 0;
	position: relative;
	height: 3rem;
	background-color: #fff;
	padding: .55rem .8rem!important
}

.input-focused,
input:not([type=checkbox]):not([type=radio]):not([type=submit]):focus,
input[type=text].input-focused,
select:focus,
textarea:focus,
textarea[type=text]:focus {
	border-color: #3dabf0;
	box-shadow: 0 0 0 .2rem rgba(61, 171, 240, .4), inset 0 1px 8px rgba(0, 0, 0, .07)
}

.btn,
[type=submit],
button {
	display: inline-block;
	overflow: hidden;
    padding:5px;
	border: 1px solid transparent;
	border-radius: .15rem;
	cursor: pointer;
	text-align: center;
	transition: all 0 .2s;
	font-size: 1.25rem;
	letter-spacing: .03rem;
	min-width: 2rem;
	user-select: none;
	outline: 0;
}

.btn-primary {
	--button-colour-bg: grey;
	--button-colour-fg: white;
	--button-colour-border: darkgray
}
.btn-primary:hover {
	--button-colour-bg: rgb(102, 224, 65)
}

.btn-secondary {
	--button-colour-bg: lightgrey;
	--button-colour-fg: black;
	--button-colour-border: grey
}
.btn-secondary:hover {
	--button-colour-border: rgb(102, 224, 65);
}

.btn-success {
	--button-colour-bg: green;
	--button-colour-fg: white;
	--button-colour-border: lightgreen
}

.btn-warning {
	--button-colour-bg: #fab633;
	--button-colour-fg: black;
	--button-colour-border: gold
}
.btn-warning:hover {
	--button-colour-bg: rgb(102, 224, 65);
}

.btn-danger {
	--button-colour-bg: #fb4143;
	--button-colour-fg: white;
	--button-colour-border: darkrred
}
.btn-danger:hover {
	--button-colour-bg: rgb(102, 224, 65)
}

.btn-info {
	--button-colour-bg: blueviolet;
	--button-colour-fg: white;
	--button-colour-border: #2972fa
}
.btn-info:hover {
	--button-colour-bg: rgb(102, 224, 65)
}

.btn-special {
	--button-colour-bg: rgb(48, 10, 53);
	--button-colour-fg: rgb(194, 118, 163);
	--button-colour-border: rgb(231, 27, 143);
}
.btn-special:hover {
	--button-colour-bg: black
}

[class*=" btn-"],
[class^=btn-] {
	background-color: var(--button-colour-bg);
	border: 1px solid var(--button-colour-border);
	color: var(--button-colour-fg);
	transition: all .2s
}

[class*=" btn-"]:hover,
[class^=btn-]:hover {
	background-color: lightgreen;
	transition: all .2s
}

[class*=" btn-"].outline,
[class^=btn-].outline {
	background-color: transparent;
	color: red
}

[class*=" btn-"].outline:hover,
[class^=btn-].outline:hover {
	background-color: red;
	color: green;
	transition: all .2s
}

.table {
	margin-bottom: 1.5rem;
	width: 100%;
	border-collapse: collapse;
	border-spacing: 0;
	text-align: left
}

.table td {
	border: 1px solid rgba(219, 219, 219, .5);
	border-width: 0 0 1px;
	padding: .75rem;
	vertical-align: top;
	text-align: inherit;
	margin: 0
}

.table th {
	border: 1px solid rgba(219, 219, 219, .5);
	border-width: 0 0 1px;
	padding: .75rem;
	vertical-align: top;
	text-align: inherit;
	margin: 0
}

.table tr {
	transition: .3s
}

.bannerTitle {
    color: var(--banner-title-colour);
}

.Copyright {
    text-align: center;
    color: grey;
    background: black;
    font-size: 0.8em;
}

.btn-close {
    background: url('https://ania.ai/library/Ania/btn-close.png');
    float: right;
    width:100px;
    height:100px;
}

.toast--error {
    background: red;
}

.toast--success {
    background: green;
}

.toast--working {
    background: yellow;
}

.toastTitleSuccess {
    color: white;
    padding:5px;

}

.toastTitleError {
    color: white;
    padding:5px;
}

.toastTitleWorking {
    color: black;
    padding:5px;
}

.containerCB {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 22px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.containerCB input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmarkCB {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: lightblue;
}

.containerCB:hover input ~ .checkmarkCB {
    background-color:cyan;
}

.containerCB input:checked ~ .checkmarkCB {
    background-color: #2196F3;
}

.checkmarkCB:after {
    content: "";
    position: absolute;
    display: none;
}

.containerCB input:checked ~ .checkmarkCB:after {
    display: block;
}

.containerCB .checkmarkCB:after {
    left: 9px;
    top: 5px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.containerR {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.containerR input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.checkmarkR {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: lightblue;
  border-radius: 50%;
}

.containerR:hover input ~ .checkmarkR {
  background-color: cyan;
}

.containerR input:checked ~ .checkmarkR {
  background-color: #2196F3;
}

.checkmarkR:after {
  content: "";
  position: absolute;
  display: none;
}

.containerR input:checked ~ .checkmarkR:after {
  display: block;
}

.containerR .checkmarkR:after {
 	top: 9px;
	left: 9px;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: white;
}

.ui-dialog-titlebar { background:red; color:white}

.banner {
    background: rgb(28, 2, 25);
}

.frame__body {
    padding-left: 30px;
}

.fade-in-title {
    line-height: 1em;
    color: rgb(90, 59, 0);
    animation: fadeIn linear 2s;
    -webkit-animation: fadeIn linear 2s;
    -moz-animation: fadeIn linear 2s;
    -o-animation: fadeIn linear 2s;
    -ms-animation: fadeIn linear 2s;
}

.fade-in-text {
    line-height: 1em;
    font-size: 5em;
    color: rgb(90, 59, 0);
    animation: fadeIn linear 2s;
    -webkit-animation: fadeIn linear 2s;
    -moz-animation: fadeIn linear 2s;
    -o-animation: fadeIn linear 2s;
    -ms-animation: fadeIn linear 2s;
}

@keyframes fadeIn {
  0% {opacity:0;}
  100% {opacity:1;}
}

@-moz-keyframes fadeIn {
  0% {opacity:0;}
  100% {opacity:1;}
}

@-webkit-keyframes fadeIn {
  0% {opacity:0;}
  100% {opacity:1;}
}

@-o-keyframes fadeIn {
  0% {opacity:0;}
  100% {opacity:1;}
}

@-ms-keyframes fadeIn {
  0% {opacity:0;}
  100% {opacity:1;}
}

.TitleText {
    font-size: 3em;
    color: rgb(138, 70, 7);
    padding-left: 5px;
    /* text-decoration: none; */
}

.SiteLink {
    color: blueviolet;
    cursor:pointer
}

.aniaStoreButton {
    font-family: Helvetica Neue, sans-serif;
    font-weight: normal;
    font-size: 1.3em;
    margin-top: 15px;
    margin-bottom: 15px;
    color: #000000;
    background-color: #78b657;
    border-radius: 3px;
    padding: 15px 40px 15px 40px;
}

/* * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
} */
/*
footer {
    background: var(--dark-blue);
    padding:30px;
    text-align:center;
    border-top:2px solid var(--gold);
    font-family:'Special Elite',monospace;
    color:var(--gold-light);
}
footer a {color:var(--gold);text-decoration:none;margin:0 10px;transition:color .3s;}
footer a:hover {color:var(--gold-light);} */

/* Mobile styles */
/* @media (max-width:768px) {
    header h1 {font-size:2.5em;}
    .logo {width:80px;}
    .hamburger {display:flex;}
    nav ul {
        display:none;
        flex-direction:column;
        position:absolute;
        top:100%; left:0;
        width:100%;
        background:var(--noir-shadow);
        border-top:2px solid var(--gold);
        padding:10px 0;
    }
    nav ul.active {display:flex;}
    nav li {margin:5px 0;}
    nav a {padding:10px 20px;}
    section {grid-template-columns:1fr;}
    .card {padding:20px;}
    .placeholder-img {font-size:1em;padding:10px;}
    .story-grid, .music-grid, .books-grid {justify-content:center;} */



    /* .navcontainer {
      display: flex;
      justify-content: space-between;
      align-items: center;

      width: 100%;
      box-sizing: border-box;
    } */

        /* } */

/* Styling for the popup */
    #popup {
      right: 20px;
      background-color: red;
      color: white;
      padding: 15px 25px;
      border-radius: 8px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
      font-family: Arial, sans-serif;
      font-size: 16px;
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.4s ease, transform 0.4s ease;
      transform: translateY(20px);
      z-index: 1000;
      cursor: pointer;
      text-align: center;
    }

    /* Visible state */
    #popup.show {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }

    :root {
            --text: #1a1a1a;
            --gray: #666666;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', system-ui, -apple-system, sans-serif;
            color: var(--text);
            background-color: #f9f7f2;
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            line-height: 1.6;
            font-size: 18px;
            font-weight: 400;
        }

        body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(249, 247, 242, 0.92);
            background-image: url('https://ania.ai/library/Ania/System/AniaSumieBG.jpg');
            background-repeat: repeat;
            z-index: -1;
            pointer-events: none;
        }

        h1, h2, h3 {
            font-family: 'Playfair Display', sans-serif;
            font-weight: 700;
            line-height: 1.1;
            letter-spacing: -0.03em;
        }

        .container {
            max-width: 1080px;
            margin: 0 auto;
            padding: 0 40px;
        }

        /* NAVBAR */
        nav {
            border-bottom: 1px solid #e8e4dc;
            position: sticky;
            top: 0;
            background: rgba(106, 106, 103, 0.95);
            backdrop-filter: blur(8px);
            z-index: 100;
        }

        .nav-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 28px 0;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
            color: var(--text);
        }

        .logo-text {
            font-size: 26px;
            font-weight: 600;
            letter-spacing: -1px;
        }

        .nav-menu {
            display: flex;
            gap: 42px;
            font-size: 13px;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 1.5px;
        }

        .nav-menu a {
            color: var(--text);
            text-decoration: none;
            position: relative;
        }

        .nav-menu a:after {
            content: '';
            position: absolute;
            width: 0;
            height: 1px;
            bottom: -3px;
            left: 0;
            background: var(--text);
        }

        .nav-menu a:hover:after {
            width: 100%;
        }

        /* HAMBURGER */
        .hamburger {
            display: none;
            font-size: 28px;
            cursor: pointer;
            background: none;
            border: none;
            padding: 0;
            color: var(--text);
        }

        .mobile-menu {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            background: #f9f7f2;
            border-top: 1px solid #e8e4dc;
            padding: 30px 40px;
            box-shadow: 0 10px 20px rgba(0,0,0,0.08);
        }

        .mobile-menu a {
            display: block;
            padding: 14px 0;
            font-size: 15px;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            color: var(--text);
            text-decoration: none;
            border-bottom: 1px solid #e8e4dc;
        }

        .hero {
            padding: 140px 0 100px;
        }

        .hero-badge {
            display: inline-block;
            font-size: 13px;
            font-weight: 500;
            letter-spacing: 2px;
            text-transform: uppercase;
            border: 1px solid #1a1a1a;
            padding: 6px 18px;
            border-radius: 9999px;
            margin-bottom: 24px;
        }

        .hero-title {
            font-size: clamp(42px, 7vw, 78px);
            max-width: 920px;
                     padding: 6px 18px;

        }

        .hero-subtitle {
            font-size: 24px;
            max-width: 680px;
            margin-top: 32px;
            /* color: var(--darkgray); */
            line-height: 1.4;
                     padding: 6px 18px;

        }

        .ink-divider {
            height: 2px;
            background: linear-gradient(to right, transparent, #9ca3af 20%, #9ca3af 80%, transparent);
            opacity: 0.15;
            margin: 120px 0 80px;
        }

        /* SECTION HEADING */
        .section-header {
            font-size: 32px;
            margin-bottom: 60px;
            position: relative;
        }

        .section-header:after {
            content: '';
            position: absolute;
            bottom: -12px;
            left: 0;
            width: 60px;
            height: 2px;
            background: #1a1a1a;
        }

        .evidence {
            background: rgba(240, 237, 230, 0.92);
            padding: 80px 0;
        }

        .evidence-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }

        .ania-text {
           font-size: 24px;
            max-width: 680px;
            margin-top: 32px;
            line-height: 1.4;
            padding: 6px 18px;
        }

        .ania-text {
            font-size: 21px;
            max-width: 820px;
            line-height: 1.65;
        }

footer {
    padding: 80px 0 60px;
    border-top: 1px solid #e8e4dc;
    font-size: 14px;
    text-align: center;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

@media (max-width: 768px) {
    .container { padding: 0 24px; }
    .nav-menu { display: none; }
    .hamburger { display: block; }
    .hero { padding: 100px 0 80px; }
    .evidence-grid { grid-template-columns: 1fr; }
}