:root {
  --color-content-white: #ffffff;
  --font-secondary: 'Inter', sans-serif;
}

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

body {
  font-family: var(--font-secondary);
  background: #050816;
  color: var(--color-content-white);
}

/* Layout */
.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

.page-banner10 {
  position: relative;
  background-image: url("Images/404page.png");
  background-repeat: no-repeat;
  background-size: cover;
  margin: 15px;
  border-radius: 28px;
  height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Content */
.page-content10 {
  text-align: center;
}

.page-content10 img {
  margin-bottom: 73px;
  width: 100px;
}

.page-content10 .title {
  font-size: 200px;
  line-height: 200px;
  font-weight: 700;
  margin-bottom: 9px;
  color: transparent;
  letter-spacing: -0.03em;
  -webkit-text-stroke: 1px #ffffff;
}

.page-content10 .title2 {
  font-size: 80px;
  line-height: 90px;
  margin-bottom: 20px;
  font-weight: 400;
}

.page-content10 p {
  font-size: 16px;
  line-height: 30px;
  font-weight: 500;
  max-width: 585px;
  margin: 0 auto 33px;
}

/* Button */
.btn-404-home {
  display: inline-flex !important;
  align-items: center;
  gap: 10px;
  padding: 14px 36px;
  border: 1px solid #ffffff;
  color: #ffffff;
  font-weight: 500;
  border-radius: 40px;
  transition: 0.3s ease;
  margin-bottom: 104px;
  text-decoration: none;
}

.btn-404-home:hover {
  background: #ffffff;
  color: #000;
}

/* Social */
.social-icon {
  display: flex;
  justify-content: center;
  gap: 20px;
  list-style: none;
}

.social-icon a {
  color: #ffffff;
  font-size: 16px;
  opacity: 0.8;
}

.social-icon a:hover {
  opacity: 1;
}

/* Shapes */
.shape2 {
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #ffffff;
  border-radius: 0 25px 0 25px;
  width: 295px;
  height: 88px;
}

.shape2::before,
.shape2::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  background-size: cover;
}

.shape2::before {
  top: -20px;
  left: 0;
  background-image: url("../images/layers/shape2-3.png");
}

.shape2::after {
  bottom: 0;
  right: -20px;
  background-image: url("../images/layers/shape2-2.png");
}

.shape4 {
  position: absolute;
  bottom: 0;
  right: 0;
  background-color: #ffffff;
  border-radius: 25px 0 25px 0;
  width: 90px;
  height: 14.21vw;
}

.shape4::before,
.shape4::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  background-size: cover;
  transform: rotate(-90deg);
}

.shape4::before {
  top: -20px;
  right: 0;
  background-image: url("../images/layers/shape2-3.png");
}

.shape4::after {
  bottom: 0;
  left: -20px;
  background-image: url("../images/layers/shape2-2.png");
}

/* Responsive */
@media (max-width: 577px) {
  .page-content10 img { margin-bottom: 30px; }
  .page-content10 .title { font-size: 137px; line-height: 126px; }
  .page-content10 .title2 { font-size: 40px; line-height: 44px; }
}

@media (max-width: 390px) {
  .page-content10 .title { font-size: 88px; line-height: 78px; }
  .page-content10 img { width: 120px; }
}

/* ==========================================
   CTA SECTION
   ========================================== */
.cta-section {
    padding: 100px 0;
    background: var(--bg-dark);
    color: white;
    text-align: center;
}

@media (max-width: 768px) {
    .cta-section {
        padding: 80px 0;
    }
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 20px;
}

.cta-badge {
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    display: inline-block;
    margin-bottom: 20px;
}

.cta-content h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.2;
}

@media (max-width: 768px) {
    .cta-content h2 {
        font-size: 32px;
    }
}

.cta-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .cta-content p {
        font-size: 16px;
        margin-bottom: 32px;
    }
}


/* Email Form Styling */
.cta-form {
    max-width: 500px;
    margin: 0 auto;
}

.cta-form .form-group {
    display: flex;
    flex-direction: row;
    gap: 12px;
    align-items: center;
    width: auto;
}

.email-input-wrapper {
    position: relative;
    flex: 1;
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.email-input-wrapper:focus-within {
    background: #ffffff;
    border-color: #8b5cf6;
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
}

.email-icon {
    position: absolute;
    left: 20px;
    color: #9ca3af;
    pointer-events: none;
    flex-shrink: 0;
}

.cta-form .email-input {
    width: 100%;
    padding: 14px 20px 14px 52px ;
    border-radius: 50px;
    border: none;
    background: transparent;
    color: #1f2937;
    font-size: 16px;
    outline: none;
}

.email-input::placeholder {
    color: #9ca3af;
}

.btn-submit {
    padding: 14px 32px;
    background: linear-gradient(135deg, #ff6b6b 0%, #ff8e53 100%);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    flex-shrink: 0;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 107, 107, 0.4);
}

.btn-submit:active {
    transform: translateY(0);
}

/* Responsive adjustments - keep inline but adjust sizing */
@media (max-width: 640px) {
    .cta-form {
        max-width: 100%;
    }
    
    .form-group {
        gap: 8px;
    }
    
    .email-input {
        padding: 12px 16px 12px 44px;
        font-size: 14px;
    }
    
    .email-icon {
        left: 16px;
        width: 18px;
        height: 18px;
    }
    
    .btn-submit {
        padding: 12px 20px;
        font-size: 14px;
    }
}


/*FOOTER*/
.footer {
    padding: 100px 0 60px;
    background: #0A0B0F;
    color: white;
    position: relative;
    overflow: hidden;
}

/*Gradient blur effects like reference*/
.footer::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(131, 231, 238, 0.35) 0%, transparent 70%);
    bottom: -300px;
    left: -200px;
    pointer-events: none;
}

.footer::after {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(134, 79, 254, 0.50) 0%, transparent 70%);
    top: -200px;
    right: -100px;
    pointer-events: none;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.footer-logo {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
    color: white;
}

.footer p {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 24px;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-links a:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.social-links a svg {
    width: 18px;
    height: 18px;
    fill: rgba(255, 255, 255, 0.7);
}

.social-links a:hover svg {
    fill: white;
}

.footer-col h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    color: white;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s;
    font-size: 15px;
}

.footer-col ul li a:hover {
    color: white;
}

.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    position: relative;
    z-index: 1;
    font-size: 14px;
}

/*LEGAL PAGES (Privacy Policy, Terms)*/
.legal-section {
    padding: 140px 0 80px;
    background: var(--bg-light);
    min-height: 100vh;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 48px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

@media (max-width: 768px) {
    .legal-content {
        padding: 24px;
        border-radius: 12px;
    }
    
    .legal-section {
        padding: 120px 0 60px;
    }
}

.legal-content h1 {
    font-size: 40px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

@media (max-width: 768px) {
    .legal-content h1 {
        font-size: 28px;
    }
}

.legal-updated {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border-light);
}

.legal-content h2 {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-primary);
    margin-top: 40px;
    margin-bottom: 16px;
}

.legal-content h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin-top: 24px;
    margin-bottom: 12px;
}

.legal-content p {
    color: var(--text-secondary);
    margin-bottom: 16px;
    line-height: 1.7;
}

.legal-content ul {
    margin-bottom: 16px;
    padding-left: 24px;
}

.legal-content ul li {
    color: var(--text-secondary);
    margin-bottom: 8px;
    line-height: 1.6;
}

.legal-content a {
    color: var(--primary-purple);
    text-decoration: none;
}

.legal-content a:hover {
    text-decoration: underline;
}

.legal-contact {
    background: var(--bg-gray);
    padding: 24px;
    border-radius: 12px;
    margin-top: 24px;
}

.legal-contact p {
    margin-bottom: 8px;
}

.legal-contact p:last-child {
    margin-bottom: 0;
}
