body{

margin:0;
background:#050505;
color:white;
font-family:Poppins;

}


.header{

display:flex;
justify-content:space-between;
align-items:center;
padding:25px 10%;
border-bottom:1px solid #222;

}


.logo{

font-family:Cinzel;
color:#d4af37;
letter-spacing:2px;

}


.nav a{

color:#ccc;
margin-left:25px;
text-decoration:none;

}

.nav a:hover{

color:#d4af37;

}



/* HERO */

.hero{

padding:40px 10%;

}


.hero-grid{

display:grid;
grid-template-columns:2fr 1fr;
grid-template-rows:1fr 1fr;
gap:20px;

}


.hero-big{

grid-row:1/3;
position:relative;

}

.hero-big img{

width:100%;
border:2px solid #d4af37;
border-radius:6px;

}

.hero-text{

position:absolute;
bottom:20px;
left:20px;

}

.hero-text h2{

font-family:Cinzel;
font-size:32px;
color:#f5d37a;

}



.hero-small{

position:relative;

}

.hero-small img{

width:100%;
border:2px solid #d4af37;
border-radius:6px;

}

.hero-text-small{

position:absolute;
bottom:10px;
left:15px;

font-family:Cinzel;
color:#f5d37a;

}



/* CARDS */

.section-title{

text-align:center;
font-family:Cinzel;
color:#d4af37;
margin-top:60px;

}


.card-grid{

display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
padding:40px 10%;

}


.card{

background:#0b0b0b;
border:1px solid #333;
border-radius:10px;
padding:20px;
text-align:center;

}

.card img{

width:100%;
border-radius:8px;

}


.card:hover{

border-color:#d4af37;
box-shadow:0 0 15px #d4af37;

}



/* BUTTON */

.btn{

background:linear-gradient(45deg,#d4af37,#f5d37a);
border:none;
padding:10px 20px;
border-radius:30px;
cursor:pointer;
font-weight:600;
margin-top:10px;

}

.btn:hover{

box-shadow:0 0 15px gold;
transform:scale(1.05);

}



/* RELATIONSHIP */

.relationship{

background:url(images/relationship.jpg) center/cover;
padding:120px 10%;
text-align:center;

}

.relationship h2{

font-family:Cinzel;
font-size:36px;
color:#f5d37a;

}



/* TRENDING + SUBSCRIBE */

.extras{

padding:60px 10%;

}


.extras-container{

display:grid;
grid-template-columns:1fr 1fr;
gap:60px;

}

.trending ul{

list-style:none;
padding:0;

}

.trending li{

margin-bottom:12px;

}

.trending a{

color:#ccc;
text-decoration:none;

}

.trending a:hover{

color:#d4af37;

}

.subscribe input{

padding:12px;
width:60%;
border-radius:5px;
border:none;

}



/* FOOTER */

.footer{

background:#020202;
padding:60px 10%;
border-top:1px solid #222;

}


.footer-container{

display:grid;
grid-template-columns:2fr 1fr 1fr 1fr;
gap:40px;

}


.footer h2{

font-family:Cinzel;
color:#d4af37;

}


.footer h4{

font-family:Cinzel;
color:#f5d37a;

}


.footer a{

display:block;
color:#aaa;
margin:8px 0;
text-decoration:none;

}

.footer a:hover{

color:#d4af37;

}


.copyright{

text-align:center;
margin-top:40px;
color:#777;

}

.light-mode{

background:white;
color:black;

}

.light-mode .card{

background:#f5f5f5;

}

.animate{

opacity:0;
transform:translateY(40px);
transition:1s;

}

.animate.show{

opacity:1;
transform:translateY(0);

}

.menu-btn{
display:none;
}

.search-bar{
text-align:center;
margin:20px;
}

.light-mode{
background:white;
color:black;
}

.animate{
opacity:0;
transform:translateY(40px);
transition:1s;
}

.animate.show{
opacity:1;
transform:translateY(0);
}

.slider{
width:80%;
margin:40px auto;
text-align:center;
}

.slide{
width:100%;
display:none;
}

/* BLOG PAGE */

.blog-hero{
padding:120px 20px;
text-align:center;
background:#0b0b0b;
}

.blog-hero h1{
font-family:'Playfair Display',serif;
font-size:48px;
color:#e6c36a;
}

.blog-hero p{
color:#bbb;
margin-top:10px;
}



.blog-container{
display:flex;
gap:50px;
padding:80px 10%;
}



.blog-main{
flex:3;
}



.featured-post{
display:flex;
gap:30px;
margin-bottom:60px;
}

.featured-post img{
width:50%;
border-radius:10px;
}

.featured-text h2{
font-family:'Playfair Display';
color:#e6c36a;
font-size:32px;
}



.read-btn{
display:inline-block;
margin-top:20px;
padding:10px 20px;
background:#e6c36a;
color:black;
text-decoration:none;
}



.blog-grid{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:30px;
}



.blog-card img{
width:100%;
border-radius:10px;
}

.blog-card h3{
margin-top:10px;
font-family:'Playfair Display';
}

body{

font-family:Poppins;
margin:0;
background:#0b0b0b;
color:white;

}


/* PAGE GRID */

.page-container{

display:grid;
grid-template-columns:220px 700px 260px;
gap:40px;

max-width:1200px;
margin:auto;

padding:40px 20px;

}



/* ARTICLE */

.article-container{

background:#111;

padding:40px;

border-radius:10px;

}


.hero-img{

width:100%;
border-radius:8px;

}


.post-title{

font-family:'Playfair Display';
font-size:38px;
margin-top:20px;

}


.post-meta{

color:#aaa;
margin-bottom:25px;

}


.post-content p{

line-height:1.8;
margin-bottom:20px;
font-size:17px;

}


.post-content h2{

font-family:'Playfair Display';
margin-top:40px;

}



/* SIDEBARS */

.sidebar-left,
.sidebar-right{

position:sticky;
top:100px;
height:max-content;

}


.side-box{

background:#111;

padding:20px;

border-radius:8px;

margin-bottom:25px;

}


.side-box img{

width:100%;
border-radius:6px;

}


.quote-box{

font-style:italic;

border-left:3px solid gold;

}



/* SHARE */

.share-section{

margin-top:40px;

}

.share-section button{

margin-right:10px;

padding:8px 14px;

background:#222;

color:rgb(225, 196, 30);

border:none;

border-radius:5px;

}



/* COMMENTS */

.comments{

margin-top:50px;

}

.comments input,
.comments textarea{

width:100%;

padding:10px;

margin-bottom:10px;

border-radius:5px;

border:none;

}



/* FOOTER */

.footer{

text-align:center;

padding:30px;

color:hsla(52, 86%, 42%, 0.627);

}

/* SIDEBAR POST LIST */

.sidebar-title{

font-family:'Playfair Display';
margin-bottom:20px;
font-size:20px;

}


/* POST ROW */

.sidebar-post{

display:flex;

gap:12px;

margin-bottom:18px;

align-items:center;

}


/* THUMBNAIL */

.sidebar-post img{

width:70px;

height:70px;

object-fit:cover;

border-radius:6px;

}


/* TEXT */

.sidebar-post-text{

font-size:14px;

}


/* POST TITLE */

.sidebar-post-text a{

color:white;

text-decoration:none;

font-weight:500;

display:block;

margin-bottom:4px;

}


/* META */

.sidebar-post-text span{

color:#888;

font-size:12px;

}

.share-buttons{

display:flex;

gap:10px;

margin-top:10px;

}

.share-btn{

padding:8px 14px;

border-radius:5px;

background:#222;

color:white;

text-decoration:none;

font-size:14px;

cursor:pointer;

border:none;

}

.share-btn:hover{

background:#444;

}

/* SUBSCRIBE SECTION */

.subscribe-section{

margin-top:60px;
display:flex;
justify-content:center;

}


/* BOX */

.subscribe-box{

max-width:700px;
width:100%;

background:#111;
border:1px solid #2c2c2c;

padding:40px;

border-radius:12px;

text-align:center;

}


/* TITLE */

.subscribe-box h2{

font-family:'Playfair Display';
font-size:28px;
margin-bottom:10px;

}


/* TEXT */

.subscribe-box p{

color:#bbb;
margin-bottom:25px;

}


/* FORM */

.subscribe-form{

display:flex;
justify-content:center;
gap:10px;

flex-wrap:wrap;

}


/* INPUT */

.subscribe-form input{

padding:12px 15px;

border-radius:6px;

border:none;

width:260px;

font-size:15px;

}


/* BUTTON */

.subscribe-form button{

padding:12px 20px;

background:#d4af37;

border:none;

border-radius:6px;

color:#000;

font-weight:600;

cursor:pointer;

transition:0.3s;

}


/* HOVER EFFECT */

.subscribe-form button:hover{

background:#f1d267;

}

.logo img{
height:40px;
}

/* Default link color */
a {
  color: rgb(202, 228, 168);
}

/* When the link is hovered */
a:hover {
  color: red;
}

/* When the link is clicked (active) */
a:active {
  color: green;
}

/* When the link has been visited */
a:visited {
  color: rgb(214, 228, 196);
}

.menu {
  display: flex;
  list-style: none;
  padding: 0;
  gap: 20px; /* space between items */
}

.menu a {
  text-decoration: none;
  color: black;
}

.menu a:hover {
  color: orange;
}

.logo-img {
  height: 60px;
  width: auto;
  display: block;
}

/* Navbar container */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px;
  background-color: black;
  color: white;
}

/* Logo section */
.logo-container {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Logo image */
.logo-img {
  height: 50px;
  width: auto;
}

/* Logo text */
.logo-text {
  font-size: 22px;
  font-weight: bold;
}

/* Menu links */
.menu a {
  color: white;
  text-decoration: none;
  margin-left: 25px;
  font-size: 16px;
  transition: 0.3s;
}

/* Hover effect */
.menu a:hover {
  color: #00ffff;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #000;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 16px;
}

.btn:hover {
    background-color: #444;
}

/* Sidebar Box */
.sidebar-test-box {
    background: linear-gradient(135deg, #000000, #1a1a1a);
    color: #ffffff;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    margin: 20px 0;
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
}

.sidebar-test-box:hover {
    transform: translateY(-5px);
}

/* Heading */
.sidebar-test-box h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

/* Paragraph */
.sidebar-test-box p {
    font-size: 14px;
    color: #ccc;
    margin-bottom: 20px;
}

/* Button */
.test-btn {
    display: inline-block;
    padding: 12px 20px;
    background: #ffcc00;
    color: #000;
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    transition: all 0.3s ease;
}

/* Button Hover */
.test-btn:hover {
    background: #ffaa00;
    transform: scale(1.05);
}

body {
    margin: 0;
    font-family: 'Segoe UI';
    background: #0b0f0f;
    color: #eee;
}

/* NAVBAR */
.navbar {
    display: flex;
    justify-content: space-between;
    padding: 15px 40px;
    background: #000;
}

.menu a {
    margin: 0 15px;
    color: #ccc;
    text-decoration: none;
}

.menu a:hover {
    color: gold;
}

/* LAYOUT */
.main {
    display: flex;
    padding: 40px;
}

.content { width: 70%; }
.sidebar { width: 30%; padding-left: 30px; }

/* TITLE */
.title {
    color: gold;
    text-align: center;
}

.subtitle {
    text-align: center;
    color: #aaa;
    margin-bottom: 30px;
}

/* SECTION BOX */
.section-box {
    background: #111;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 25px;
    border: 1px solid #222;
}

.highlight { color: gold; }

/* FEATURES */
.features {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.feature-box {
    flex: 1;
    background: #111;
    padding: 20px;
    text-align: center;
    border-radius: 10px;
    border: 1px solid #222;
}

.feature-box img {
    width: 50px;
}

/* MISSION */
.mission-box {
    background: linear-gradient(45deg, #111, #1a1a1a);
    padding: 25px;
    border-left: 4px solid gold;
    margin-bottom: 30px;
    font-style: italic;
}

/* JOURNEY */
.journey {
    display: flex;
    gap: 20px;
}

.journey-box {
    flex: 1;
    background: #111;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid #222;
}

.journey-box img {
    width: 50px;
}

/* SUBSCRIBE */
.subscribe-box {
    background: #111;
    padding: 25px;
    margin-top: 40px;
    text-align: center;
    border-radius: 10px;
}

.subscribe-box input {
    padding: 10px;
    width: 60%;
    margin: 10px;
}

.subscribe-box button {
    padding: 10px 20px;
    background: gold;
    border: none;
}

/* SIDEBAR */
.card {
    background: #111;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 10px;
}

.card a {
    display: block;
    margin: 8px 0;
    color: gold;
}

.glow {
    box-shadow: 0 0 15px rgba(255,215,0,0.3);
}

.btn-green {
    background: #00c853;
    color: white;
    padding: 10px;
}

.btn-outline {
    border: 1px solid gold;
    color: gold;
    background: transparent;
    padding: 10px;
}

/* FOOTER */
.footer {
    text-align: center;
    padding: 20px;
    background: black;
    margin-top: 40px;
}

/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* BODY */
body {
    font-family: 'Segoe UI', sans-serif;
    background: #0b0f0f;
    color: #eaeaea;
}

/* NAVBAR */
.navbar {
    display: flex;
    justify-content: space-between;
    padding: 18px 40px;
    background: linear-gradient(to right, #000000, #111111);
    border-bottom: 1px solid #333;
}

.logo {
    color: #ffd700;
    font-size: 22px;
    font-weight: bold;
}

.menu a {
    margin: 0 15px;
    color: #bbb;
    text-decoration: none;
    transition: 0.3s;
}

.menu a:hover {
    color: #ffd700;
}

/* /* LAYOUT */
.main {
    display: flex;
    padding: 50px 60px;
    gap: 40px;
    max-width: 1200px;
    margin: auto; /* center whole section */
}

/* CONTENT & SIDEBAR */
.content {
    width: 70%;
}

.sidebar {
    width: 30%;
}

/* TITLE BLOCK (IMPORTANT FIX) */
.title,
.subtitle {
    text-align: center;
    width: 100%;
}

/* TITLE */
.title {
    font-size: 36px;
    color: #ffd700;
    margin-bottom: 12px;
    letter-spacing: 1px;
    font-weight: 600;
}

/* GOLD LINE UNDER TITLE (premium touch) */
.title::after {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    background: #ffd700;
    margin: 12px auto 0;
    border-radius: 2px;
}

/* SUBTITLE */
.subtitle {
    color: #aaa;
    margin-bottom: 40px;
    font-size: 16px;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
}

/* SECTION BOX (DEPTH ADDED) */
.section-box {
    background: linear-gradient(145deg, #111, #1a1a1a);
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 30px;
    border: 1px solid #222;
    box-shadow: 0 10px 25px rgba(0,0,0,0.6);
}

/* HIGHLIGHT */
.highlight {
    color: #ffd700;
}

/* FEATURES */
.features {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.feature-box {
    flex: 1;
    background: linear-gradient(145deg, #111, #1c1c1c);
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #222;
    transition: 0.3s;
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(255,215,0,0.2);
}

.feature-box img {
    width: 45px;
    margin-bottom: 10px;
}

/* MISSION */
.mission-box {
    background: linear-gradient(to right, #111, #1a1a1a);
    padding: 25px;
    border-left: 4px solid #ffd700;
    margin-bottom: 40px;
    font-style: italic;
}

/* JOURNEY */
.section-title {
    color: #ffd700;
    margin-bottom: 20px;
}

.journey {
    display: flex;
    gap: 20px;
}

.journey-box {
    flex: 1;
    background: linear-gradient(145deg, #111, #1c1c1c);
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #222;
    transition: 0.3s;
}

.journey-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(255,215,0,0.2);
}

.journey-box img {
    width: 45px;
    margin-bottom: 10px;
}

/* SUBSCRIBE */
.subscribe-box {
    background: linear-gradient(145deg, #111, #1a1a1a);
    padding: 25px;
    text-align: center;
    margin-top: 40px;
    border-radius: 12px;
    border: 1px solid #222;
}

.subscribe-box input {
    padding: 10px;
    width: 60%;
    margin: 10px;
    border: none;
    border-radius: 5px;
}

.subscribe-box button {
    padding: 10px 20px;
    background: linear-gradient(45deg, #ffd700, #ffb700);
    border: none;
    border-radius: 20px;
    font-weight: bold;
}

/* SIDEBAR */
.card {
    background: linear-gradient(145deg, #111, #1a1a1a);
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 20px;
    border: 1px solid #222;
    box-shadow: 0 8px 20px rgba(0,0,0,0.5);
}

.card h3 {
    color: #ffd700;
}

.card a {
    display: block;
    margin: 10px 0;
    color: #ffd700;
}

/* BUTTONS */
.btn-green {
    width: 100%;
    padding: 10px;
    background: linear-gradient(45deg, #00c853, #00ff95);
    border: none;
    border-radius: 20px;
    color: white;
}

.btn-outline {
    width: 100%;
    padding: 10px;
    border: 1px solid #ffd700;
    color: #ffd700;
    background: transparent;
    border-radius: 20px;
}

/* FOOTER */
.footer {
    text-align: center;
    padding: 20px;
    background: #000;
    margin-top: 40px;
    border-top: 1px solid #222;
}

/* HOMEPAGE SECTIONS */
.section {
  padding: 60px 8%;
}

/* CARD IMAGE */
.card img {
  width: 50%;
  height: 400px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 10px;
}

/* HOVER EFFECT */
.card {
  transition: 0.4s;
}

.card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 15px 30px rgba(255,215,0,0.2);
}

/* HERO IMPROVE */
.hero h1 {
  font-size: 48px;
  color: rgb(215, 194, 73);
}

.hero p {
  margin-top: 10px;
  color: #aaa;
}

/* BUTTON IMPROVE */
.btn {
  background: linear-gradient(45deg, gold, #ffb700);
  color: black;
  font-weight: bold;
}

.btn:hover {
  box-shadow: 0 0 20px gold;
  transform: scale(1.08);
}

/* ABOUT SECTION CENTER */
.about-section {
  text-align: center;
  padding: 40px 20px;
}

.hero h1 {
    font-size: 60px;
    color: #ffd700; /* yellow accent */
    letter-spacing: 2px;
}

.hero p {
    font-size: 20px;
    margin: 15px 0;
    color: #ccc;
}

.hero-btn {
    display: inline-block;
    padding: 12px 30px;
    background: #ffd700;
    color: #000;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

.hero-btn:hover {
    background: #fff;
}

/* HEADER (THIS FIXES CENTERING) */
.page-header {
    text-align: center;
    margin: 50px auto 30px;
    max-width: 800px;
}

.title {
    font-size: 36px;
    color: #ffd700;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

/* premium underline */
.title::after {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    background: #ffd700;
    margin: 12px auto 0;
}

.subtitle {
    color: #aaa;
    font-size: 16px;
    line-height: 1.6;
}

/* MAIN LAYOUT */
.main {
    display: flex;
    padding: 40px;
    gap: 30px;
    max-width: 1200px;
    margin: auto;
}

.content { width: 70%; }
.sidebar { width: 30%; }

.card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}


.card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.cta-box {
    margin-top: 60px;
    padding: 30px;
    background: #111;
    border: 1px solid #ffd700;
    text-align: center;
    border-radius: 10px;
}

.email-form {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.email-form input {
    padding: 12px;
    width: 260px;
    border: none;
    border-radius: 5px;
    outline: none;
}

.email-form button {
    padding: 12px 20px;
    background: #ffd700;
    color: black;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
}

.email-form button:hover {
    background: #e6c200;
}

.small-text {
    font-size: 12px;
    color: #aaa;
    margin-top: 10px;
}

/* BLOG SECTION */
.blog-section {
    padding: 60px 20px;
    text-align: center;
}

.section-title {
    font-size: 28px;
    color: #ffd700;
    margin-bottom: 30px;
}

.blog-grid {
    display: flex;
    justify-content: center;
}

/* BLOG SECTION */
.blog-section {
    padding: 60px 20px;
}

.section-title {
    font-size: 28px;
    color: #ffd700;
    margin-bottom: 30px;
    text-align: center;
}

/* GRID */
.blog-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* FULL WIDTH CARD */
.blog-card.horizontal {
    display: flex;
    width: 100%;
    background: #111;
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    color: white;
    border: 1px solid #222;
    transition: 0.3s;
}

.blog-card.horizontal:hover {
    transform: scale(1.01);
    border-color: #ffd700;
}

/* IMAGE SIDE */
.blog-image {
    width: 40%;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* CONTENT SIDE */
.blog-content {
    width: 60%;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.blog-content h3 {
    color: #ffd700;
    font-size: 22px;
    margin-bottom: 10px;
}

.blog-content p {
    color: #ccc;
    margin-bottom: 15px;
}

.read-more {
    color: #ffd700;
    font-weight: bold;
}

.popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 999;
}

.popup-box {
    background: #111;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid #ffd700;
    width: 300px;
}

.popup-box input {
    width: 100%;
    padding: 10px;
    margin-top: 10px;
}

.popup-box button {
    margin-top: 10px;
    background: #ffd700;
    border: none;
    padding: 10px;
    width: 100%;
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    cursor: pointer;
    font-size: 20px;
}

.section ul {
    padding-left: 20px;
}

.section li {
    margin-bottom: 10px;
    line-height: 1.6;
}

/* TOOL CARD */
.heart-tool {
    max-width: 420px;
    margin: 40px auto;
    padding: 25px 20px;
    background: #111;
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(255, 77, 77, 0.15);
    text-align: center;
}

/* TITLE */
.heart-tool h2 {
    color: #ff4d4d;
    font-size: 20px;
    margin-bottom: 15px;
}

/* LABELS */
.heart-tool label {
    display: block;
    text-align: left;
    font-size: 13px;
    margin-top: 10px;
    color: #bbb;
}

/* INPUTS */
.heart-tool input,
.heart-tool select {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border-radius: 6px;
    border: none;
    font-size: 14px;
}

/* BUTTON */
.heart-tool button {
    width: 100%;
    margin-top: 15px;
    padding: 10px;
    background: #ff4d4d;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.heart-tool button:hover {
    background: #e63b3b;
}

/* RESULT */
#result {
    margin-top: 15px;
    font-size: 16px;
}

/* NOTE BOX */
.note-box {
    max-width: 500px;
    margin: 20px auto;
    padding: 15px;
    background: #111;
    border-left: 4px solid #ff4d4d;
    border-radius: 8px;
    color: #ccc;
    font-size: 14px;
}

/* DISCLAIMER */
.disclaimer {
    text-align: center;
    font-size: 12px;
    color: #888;
    margin-top: 20px;
}

/* WRAPPER (FORCE CENTER + WIDTH) */
.tool-wrapper {
    display: flex;
    justify-content: center;
    width: 100%;
}

/* TOOL CARD */
.heart-tool {
    width: 100%;
    max-width: 380px !important;   /* FORCE SMALL SIZE */
    margin: 30px 0;
    padding: 20px;
    background: #111;
    border-radius: 12px;
    box-shadow: 0 0 15px rgba(255, 77, 77, 0.15);
}

/* PREVENT STRETCH FROM OTHER CSS */
.section .heart-tool {
    width: auto !important;
    max-width: 380px !important;
}

/* INPUT FIX */
.heart-tool input,
.heart-tool select,
.heart-tool button {
    width: 100%;
    box-sizing: border-box;
}

.brain-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 12px;
    padding: 2px;
    background: linear-gradient(45deg, #ffd700, transparent, #ffd700);
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;
}

/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* BODY */
body {
    font-family: 'Segoe UI', system-ui, sans-serif;
    background: #0b0b0b;
    color: #eaeaea;
    line-height: 1.7;
}

/* CONTAINER */
.container {
    max-width: 900px;
    margin: auto;
    padding: 50px 20px;
}

/* HEADINGS */
h1 {
    text-align: center;
    color: #ffd700;
    font-size: 36px;
    margin-bottom: 10px;
}

h2 {
    color: #ffd700;
    margin-top: 40px;
    font-size: 24px;
}

h3 {
    margin-top: 20px;
}

/* TEXT */
.meta {
    text-align: center;
    color: #888;
    font-size: 14px;
}

.subtitle {
    text-align: center;
    color: #bbb;
    margin-bottom: 30px;
}

/* CONTENT BOX */
.section {
    background: #111;
    padding: 22px;
    border-radius: 12px;
    margin-top: 20px;
    border: 1px solid rgba(255, 215, 0, 0.08);
}

/* LIST */
ul {
    padding-left: 20px;
}

/* INPUTS */
input, select, button {
    width: 100%;
    padding: 12px;
    margin-top: 10px;
    border-radius: 8px;
    border: none;
    font-size: 15px;
}

input, select {
    background: #1a1a1a;
    color: #fff;
}

/* BUTTON */
button {
    background: #ffd700;
    color: #000;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s ease;
}

button:hover {
    background: #e6c200;
}

/* TOOL BOX */
.tool-box {
    max-width: 380px;
    margin: 40px auto;
    background: #111;
    padding: 25px;
    border-radius: 14px;
    border: 1px solid rgba(255, 215, 0, 0.15);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.08);
}

/* RESULT TEXT */
#result {
    margin-top: 15px;
    text-align: center;
}

/* CTA GOLD BOX */
.brain-cta {
    background: #111;
    border: 2px solid #ffd700;
    border-radius: 14px;
    padding: 30px;
    margin: 50px 0;
    text-align: center;
    box-shadow: 0 0 25px rgba(255, 215, 0, 0.25);
}

.brain-cta h2 {
    color: #ffd700;
}

.brain-cta p {
    color: #ccc;
    margin: 15px 0;
}

/* CTA BUTTON */
.brain-btn {
    display: inline-block;
    padding: 12px 28px;
    background: #ffd700;
    color: #000;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.brain-btn:hover {
    background: #e6c200;
    transform: scale(1.05);
}

/* NOTE */
.note-box {
    margin-top: 30px;
    color: #bbb;
    text-align: center;
}

/* DISCLAIMER */
.disclaimer {
    font-size: 12px;
    color: #777;
    text-align: center;
    margin-top: 10px;
}

/* MOBILE */
@media (max-width: 600px) {
    h1 {
        font-size: 28px;
    }

    h2 {
        font-size: 20px;
    }

    .container {
        padding: 25px 15px;
    }

    .brain-cta {
        padding: 20px;
    }
}

/* PAGE BACKGROUND */
body {
    background: #0a0f1c;
    color: #e5e7eb;
    font-family: 'Segoe UI', sans-serif;
}

/* MAIN CONTAINER */
.container {
    max-width: 700px;
    margin: 40px auto;
    background: #111827;
    padding: 25px;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.6);
}

/* TITLE */
.container h2 {
    text-align: center;
    color: #00ffd5;
    margin-bottom: 20px;
}

/* TOGGLE BUTTONS */
.container button {
    background: #1f2937;
    color: #fff;
    border: none;
    padding: 10px;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
}

.container button:hover {
    background: #00ffd5;
    color: #000;
}

/* QUESTION BLOCK */
.question {
    margin-bottom: 20px;
}

/* LABEL */
.question label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

/* SELECT DROPDOWN */
select {
    width: 100%;
    padding: 10px;
    border-radius: 8px;
    border: none;
    background: #020617;
    color: #fff;
    outline: none;
}

/* ACTION BUTTON */
button[onclick] {
    width: 100%;
    margin-top: 15px;
    background: #00ffd5;
    color: #000;
    font-weight: bold;
}

/* RESULT BOX */
.result {
    margin-top: 25px;
    padding: 20px;
    background: #020617;
    border-radius: 12px;
    border: 1px solid #1f2937;
    display: none;
}

/* SCORE TEXT */
.score {
    font-size: 28px;
    text-align: center;
    color: #00ffd5;
    margin-bottom: 10px;
}

/* RESULT TEXT */
#type {
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 10px;
}

#solution {
    text-align: center;
    color: #9ca3af;
}

/* MOBILE */
@media (max-width: 600px) {
    .container {
        padding: 18px;
    }
}

.section-title {
    font-size: 28px;
    margin-bottom: 20px;
    color: #ffd700;
}

.analyze-btn {
  width: 100%;
  background: #22c55e;
  color: black;
  padding: 14px;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  font-weight: bold;
  margin-top: 20px;
  cursor: pointer;
}

.analyze-btn:hover {
  opacity: 0.9;
}