/* GENERAL SETUP */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #0f0f0f;
    color: white;
}

/* TOP NAVIGATION */
.topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #000;
    padding: 12px 25px;
    border-bottom: 1px solid #222;
}

.left-side {
    display: flex;
    align-items: center;
    gap: 10px;
}

.profile-pic {
    width: 38px;
    height: 38px;
    border-radius: 50%;
}

.creator-name {
    font-size: 18px;
    font-weight: bold;
}

.menu a {
    color: #fff;
    text-decoration: none;
    margin-left: 20px;
    font-size: 15px;
}

.menu a:hover {
    text-decoration: underline;
}

.join-btn {
    background-color: #6a5acd;
    padding: 7px 16px;
    border-radius: 20px;
}
.join-btn:hover {
    background-color: #5639d9;
    transform: scale(1.05);
}
/* BANNER SECTION */
.banner {
    position: relative;
    height: 420px;
    background-image: url("banner.jpg"); 
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    padding-left: 50px;
}
/* About / Short Description */
.about-cage {
  background: linear-gradient(180deg, rgba(10,10,10,0.95), rgba(6,6,6,0.98));
  color: #e6e6e6;
  padding: 40px 20px;
  border-top: 1px solid #161616;
  border-bottom: 1px solid #161616;
}

/* container */
.about-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 30px;
  align-items: center;
}

/* left text */
.about-text h3 {
  font-size: 26px;
  margin: 0 0 10px 0;
  color: #fff;
  letter-spacing: 0.2px;
}

.about-text p {
  color: #bfbfbf;
  line-height: 1.6;
  max-width: 720px;
  margin-bottom: 18px;
  font-size: 15px;
}

/* actions */
.about-actions {
  display: flex;
  gap: 12px;
  align-items: center;
}

.btn-primary {
  background: #6a52f7;           /* purple */
  color: #fff;
  padding: 10px 18px;
  border-radius: 26px;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 4px 18px rgba(106,82,247,0.12);
  transition: transform .12s ease, box-shadow .12s ease;
}

.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(106,82,247,0.18); }

.btn-ghost {
  color: #d1d1d1;
  background: transparent;
  padding: 10px 16px;
  border-radius: 20px;
  text-decoration: none;
  font-weight: 600;
  border: 1px solid rgba(255,255,255,0.04);
}

.about-image {
  height: 160px;
  border-radius: 12px;
  background-image: url(C:\Users\www46\OneDrive\Desktop\my web\about me.jpg); 
  background-size: cover;
  background-position: center;
  filter: grayscale(50%) contrast(85%);
  box-shadow: inset 0 0 0 1000px rgba(0,0,0,0.35);
}

/* responsive */
@media (max-width: 880px) {
  .about-inner { grid-template-columns: 1fr; text-align: left; }
  .about-image { width: 100%; height: 220px; margin-top: 8px; }
  .about-actions { justify-content: flex-start; flex-wrap: wrap; }
}

.overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0,0,0,0.55);
}

.banner-content {
    position: relative;
    max-width: 550px;
}

.main-title {
    font-size: 55px;
    margin-bottom: 10px;
    font-weight: bold;
}

.stats {
    font-size: 16px;
    color: #ccc;
    margin-bottom: 15px;
}

.description {
    color: #ddd;
    line-height: 1.6;
    font-size: 15px;
    margin-bottom: 20px;
}

.member-btn {
    display: inline-block;
    background-color: #6a5acd;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    color: white;
    font-size: 16px;
	    background-color: #6a4df5;
    
    cursor: pointer;
    transition: 0.3s ease;
	
}
.member-btn:hover {
    background-color: #5639d9;
    transform: scale(1.05);

}


/* COLLECTIONS SECTION */
.collections {
    padding: 40px;
}

.collections h2 {
    font-size: 28px;
    margin-bottom: 25px;
}

.collection-box {
    display: grid;
	grid-template-columns:repeat(3,1fr); 
    gap: 20px;
}

.collection-item {
    background-color: #1a1a1a;
    padding: 15px;
    border-radius: 12px;
    text-align: center;
    flex: 1;
}

.collection-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
}

.collection-item h3 {
    margin-top: 12px;
    font-size: 18px;
}

/* Learn More Button Section */
.learn-more-section {
    text-align: center;
    margin-top: 30px;
}
.about-actions {
    display: flex;
    justify-content: center;   /* centers the button */
    gap: 12px;
    align-items: center;
}

.learn-more-btn {
    background-color: #6a4df5;
    color: #fff;
    padding: 12px 30px;
    border: none;
    border-radius: 25px;
    font-size: 18px;
    cursor: pointer;
    transition: 0.3s ease;
}

.learn-more-btn:hover {
    background-color: #5639d9;
    transform: scale(1.05);
}

/* Page Ending Section */
.ending-section {
    margin-top: 60px;
    padding: 40px 20px;
    background: linear-gradient(to bottom, #111, #000);
    text-align: center;
    border-top: 1px solid #222;
    color: #e0e0e0;
}

.ending-section h2 {
    font-size: 28px;
    color: #ffffff;
    margin-bottom: 15px;
}

.ending-section p {
    font-size: 16px;
    max-width: 700px;
    margin: 10px auto;
    color: #bdbdbd;
}

.footer-note {
    font-size: 14px;
    margin-top: 30px;
    color: #777;
}
   /*web deb1 page*/
    <style>
        body {
            margin: 0;
            padding: 0;
            background-color: #0e0e0e;
            color: white;
            font-family: Arial, sans-serif;
        }

        h1, h2 {
            text-align: center;
        }

        h1 {
            margin-top: 40px;
            font-size: 36px;
        }

        h2 {
            margin-top: 30px;
            font-size: 24px;
        }

        p {
            max-width: 800px;
            margin: 10px auto;
            font-size: 17px;
            opacity: 0.9;
            line-height: 1.6;
            text-align: center;
        }

        .section-box {
            max-width: 900px;
            margin: 40px auto;
            background: #1a1a1a;
            padding: 25px;
            border-radius: 18px;
            box-shadow: 0 0 20px rgba(255, 255, 255, 0.05);
        }

        pre {
            background: #111;
            padding: 15px;
            border-radius: 10px;
            color: #8d8dff;
            overflow-x: auto;
            font-size: 15px;
        }

        .back-btn {
            display: block;
            width: fit-content;
            margin: 40px auto;
            background: #6a4dff;
            padding: 12px 24px;
            color: white;
            border-radius: 30px;
            text-decoration: none;
            font-size: 17px;
            transition: 0.3s;
        }

        .back-btn:hover {
            background: #593ee0;
            transform: translateY(-3px);
        }

        footer {
            text-align: center;
            margin: 40px 0;
            opacity: 0.8;
        }
    </style>
	.prototype-note {
    margin-top: 40px;
    padding: 30px 20px;
    background: #111;
    text-align: center;
    color: #bababa;
    font-size: 15px;
    line-height: 1.6;
    border-top: 1px solid #222;
}
