kharia1 / index.html
gladiopeace's picture
Add 1 files
70d9732 verified
raw
history blame
41.7 kB
<!DOCTYPE html>
<html lang="ar" dir="rtl">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>ุงู„ู…ูŠุชุงููŠุฒูŠู‚ุง ุงู„ุฑู‚ู…ูŠุฉ: ูƒูŠู†ูˆู†ุงุช ู…ู† ุงู„ุนุฏู…</title>
<script src="https://cdn.tailwindcss.com"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css"/>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<style>
@import url('https://fonts.googleapis.com/css2?family=Tajawal:wght@400;500;700;900&display=swap');
:root {
--primary: #ff8906;
--secondary: #e53170;
--dark: #0f0e17;
--light: #fffffe;
--accent: #b8c1ec;
}
body {
font-family: 'Tajawal', sans-serif;
background-color: var(--dark);
color: var(--accent);
line-height: 2;
overflow-x: hidden;
scroll-behavior: smooth;
}
.article-container {
max-width: 900px;
margin: 4rem auto;
padding: 3rem;
background: rgba(15, 14, 23, 0.85);
backdrop-filter: blur(12px);
border-radius: 24px;
box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.6);
border: 1px solid rgba(255, 137, 6, 0.1);
position: relative;
overflow: hidden;
z-index: 10;
}
.article-container::before {
content: "";
position: absolute;
top: 0;
right: 0;
width: 100%;
height: 100%;
background: radial-gradient(circle at 70% 30%, rgba(229, 49, 112, 0.1) 0%, transparent 50%);
pointer-events: none;
z-index: -1;
}
h1 {
font-size: 3rem;
font-weight: 900;
border-bottom: 2px solid var(--primary);
padding-bottom: 1.5rem;
color: var(--light);
text-shadow: 0 0 15px rgba(255, 137, 6, 0.4);
margin-bottom: 2rem;
position: relative;
line-height: 1.3;
}
h1::after {
content: "";
position: absolute;
bottom: -2px;
right: 0;
width: 200px;
height: 4px;
background: linear-gradient(90deg, var(--primary), transparent);
}
h2 {
color: var(--primary);
font-size: 1.8rem;
font-weight: 700;
margin: 3rem 0 1.5rem;
position: relative;
padding-right: 20px;
}
h2::before {
content: "//";
position: absolute;
right: 0;
top: 0;
color: var(--secondary);
font-family: monospace;
font-weight: 400;
}
p {
font-size: 1.1rem;
margin-bottom: 1.8rem;
text-align: justify;
hyphens: auto;
}
.meta {
color: var(--secondary);
font-style: italic;
margin-bottom: 3rem;
display: flex;
align-items: center;
gap: 15px;
font-size: 1.1rem;
}
.meta i {
font-size: 1.2rem;
}
figure {
margin: 3rem 0;
position: relative;
overflow: hidden;
border-radius: 16px;
box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
transform: translateY(20px);
opacity: 0;
isolation: isolate;
}
figure.visible {
transform: translateY(0);
opacity: 1;
}
figure:hover {
transform: scale(1.02) translateY(0);
box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}
figure img {
width: 100%;
height: auto;
display: block;
transition: transform 0.5s ease;
object-fit: cover;
}
figure:hover img {
transform: scale(1.05);
}
figcaption {
font-size: 0.95rem;
color: var(--accent);
padding: 1rem;
background: rgba(15, 14, 23, 0.7);
text-align: right;
border-top: 1px solid rgba(255, 137, 6, 0.2);
}
.digital-entity {
position: relative;
display: inline-block;
color: var(--primary);
font-weight: 500;
cursor: default;
}
.digital-entity::after {
content: "";
position: absolute;
bottom: 0;
right: 0;
width: 100%;
height: 2px;
background: var(--secondary);
transform: scaleX(0);
transform-origin: right;
transition: transform 0.3s ease;
}
.digital-entity:hover::after {
transform: scaleX(1);
}
.glow {
animation: glow 3s ease-in-out infinite alternate;
}
@keyframes glow {
from {
text-shadow: 0 0 5px var(--light), 0 0 10px var(--light);
}
to {
text-shadow: 0 0 10px var(--light), 0 0 20px var(--primary), 0 0 30px var(--secondary);
}
}
.emoji-float {
position: fixed;
font-size: 2.5rem;
opacity: 0;
animation: float 15s linear infinite;
z-index: 5;
text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
cursor: default;
user-select: none;
pointer-events: none;
}
@keyframes float {
0% {
transform: translateY(0) rotate(0deg) scale(0.8);
opacity: 0;
}
10% {
opacity: 1;
}
90% {
opacity: 1;
}
100% {
transform: translateY(-100vh) rotate(360deg) scale(1.2);
opacity: 0;
}
}
.scroll-indicator {
position: fixed;
bottom: 30px;
left: 50%;
transform: translateX(-50%);
color: var(--primary);
font-size: 2.5rem;
animation: bounce 2s infinite;
cursor: pointer;
z-index: 100;
background: rgba(15, 14, 23, 0.7);
width: 60px;
height: 60px;
display: flex;
align-items: center;
justify-content: center;
border-radius: 50%;
border: 2px solid var(--primary);
opacity: 0;
transition: opacity 0.3s ease;
backdrop-filter: blur(5px);
}
.scroll-indicator.visible {
opacity: 1;
}
@keyframes bounce {
0%, 20%, 50%, 80%, 100% {
transform: translateY(0) translateX(-50%);
}
40% {
transform: translateY(-20px) translateX(-50%);
}
60% {
transform: translateY(-10px) translateX(-50%);
}
}
.pixel-grid {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background:
linear-gradient(rgba(15, 14, 23, 0.95), rgba(15, 14, 23, 0.95)),
url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20"><rect width="1" height="1" x="0" y="0" fill="%23ff8906" opacity="0.05"/></svg>');
pointer-events: none;
z-index: 1;
}
.digital-rain {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
overflow: hidden;
z-index: 2;
opacity: 0.05;
pointer-events: none;
}
.digital-rain span {
position: absolute;
width: 1px;
height: 30px;
background: linear-gradient(to bottom, transparent, var(--primary), transparent);
animation: rain 5s linear infinite;
opacity: 0.6;
}
@keyframes rain {
0% {
transform: translateY(-100vh);
}
100% {
transform: translateY(100vh);
}
}
.quote {
font-style: italic;
font-size: 1.2rem;
color: var(--light);
padding: 2rem;
margin: 3rem 0;
border-right: 4px solid var(--secondary);
background: rgba(255, 137, 6, 0.05);
position: relative;
border-radius: 8px;
transform: translateX(20px);
opacity: 0;
transition: all 0.5s ease;
}
.quote.visible {
transform: translateX(0);
opacity: 1;
}
.quote::before {
content: """;
position: absolute;
top: 10px;
right: 20px;
font-size: 4rem;
color: rgba(255, 137, 6, 0.1);
font-family: serif;
line-height: 1;
}
.section-divider {
height: 1px;
background: linear-gradient(90deg, transparent, rgba(255, 137, 6, 0.3), transparent);
margin: 4rem 0;
position: relative;
}
.section-divider::after {
content: "";
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: 10px;
height: 10px;
background: var(--primary);
border-radius: 50%;
box-shadow: 0 0 10px var(--primary);
}
.footnote {
font-size: 0.9rem;
color: var(--accent);
opacity: 0.7;
margin-top: -1rem;
margin-bottom: 2rem;
}
/* New Emoji Artwork Styles */
.emoji-artwork {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 10px;
margin: 3rem 0;
perspective: 1000px;
}
.emoji-tile {
font-size: 2rem;
width: 60px;
height: 60px;
display: flex;
align-items: center;
justify-content: center;
background: rgba(255, 137, 6, 0.1);
border-radius: 12px;
border: 1px solid rgba(255, 137, 6, 0.3);
transition: all 0.3s ease;
transform-style: preserve-3d;
cursor: pointer;
position: relative;
overflow: hidden;
}
.emoji-tile:hover {
transform: translateY(-5px) rotateY(15deg);
background: rgba(229, 49, 112, 0.2);
box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}
.emoji-tile::before {
content: "";
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: linear-gradient(135deg, rgba(255,255,255,0.1), transparent);
z-index: -1;
}
.emoji-tile:nth-child(odd) {
animation: float-emoji 8s ease-in-out infinite;
}
.emoji-tile:nth-child(even) {
animation: float-emoji 10s ease-in-out infinite reverse;
}
@keyframes float-emoji {
0%, 100% {
transform: translateY(0) rotate(0deg);
}
50% {
transform: translateY(-15px) rotate(5deg);
}
}
.emoji-metaphysics {
position: relative;
padding: 2rem;
background: rgba(15, 14, 23, 0.7);
border-radius: 16px;
border: 1px solid rgba(255, 137, 6, 0.2);
margin: 3rem 0;
overflow: hidden;
}
.emoji-metaphysics::before {
content: "";
position: absolute;
top: 0;
right: 0;
width: 100%;
height: 100%;
background: radial-gradient(circle at 80% 20%, rgba(229, 49, 112, 0.1) 0%, transparent 70%);
pointer-events: none;
z-index: -1;
}
.emoji-metaphysics h3 {
color: var(--primary);
font-size: 1.5rem;
margin-bottom: 1.5rem;
position: relative;
display: inline-block;
}
.emoji-metaphysics h3::after {
content: "";
position: absolute;
bottom: -5px;
right: 0;
width: 100%;
height: 2px;
background: linear-gradient(90deg, var(--secondary), transparent);
}
@media (max-width: 768px) {
.article-container {
margin: 1rem auto;
padding: 1.5rem;
border-radius: 0;
}
h1 {
font-size: 2rem;
}
h2 {
font-size: 1.5rem;
}
.emoji-float {
font-size: 1.5rem;
}
.emoji-tile {
width: 50px;
height: 50px;
font-size: 1.5rem;
}
}
</style>
</head>
<body>
<div class="pixel-grid"></div>
<div class="digital-rain" id="digitalRain"></div>
<div class="article-container animate__animated animate__fadeIn">
<article>
<header>
<h1 class="glow">ุงู„ู…ูŠุชุงููŠุฒูŠู‚ุง ุงู„ุฑู‚ู…ูŠุฉ: ูƒูŠู†ูˆู†ุงุช ู…ู† ุงู„ุนุฏู…</h1>
<div class="meta">
<i class="fas fa-calendar-alt"></i>
<span>4 ุฃุจุฑูŠู„ 2025</span>
<i class="fas fa-user-astronaut"></i>
<span>ุงู„ูˆุฌูˆุฏ ุงู„ุฑู‚ู…ูŠ</span>
</div>
</header>
<section class="content">
<p>ุฅู† ุงู„ุชู‚ู†ูŠุฉูŽ <span class="digital-entity">"ุขู„ุฉูŒ ู…ูŠุชุงููŠุฒูŠู‚ูŠุฉูŒ"</span> ุชุฎุฑุฌ ูƒูŠู†ูˆู†ุงุชู ู…ู† ุงู„ุนุฏู… ุฅู„ู‰ ุงู„ูˆุฌูˆุฏ. ุจุฏูˆุฑูŠุŒ ุฃุชุนุงู…ู„ ู…ุน ุงู„ุฅูŠู…ูˆุฌูŠุฒ ูˆุงู„ู…ูŠู…ุงุช ุงู„ุชูŠ ุชุธู‡ุฑ ุนู„ู‰ ุดุงุดุฉ ู‡ุงุชููŠ ุนู„ู‰ ุฃู†ู‡ุง <span class="digital-entity">ูƒุงุฆู†ุงุชูŒ ุฑู‚ู…ูŠุฉูŒ ุญูŠุฉูŒ</span>. ู„ุฃู†ู‡ุง ูƒุฐู„ูƒ.</p>
<figure>
<img src="https://images.unsplash.com/photo-1620641788421-7a1c342ea42e?q=80&w=1974&auto=format&fit=crop"
alt="ุงู„ูƒุงุฆู†ุงุช ุงู„ุฑู‚ู…ูŠุฉ ุชุฎุฑุฌ ู…ู† ุงู„ุนุฏู… ุฅู„ู‰ ุงู„ูˆุฌูˆุฏ"
class="w-full h-auto">
<figcaption>ุงู„ูƒุงุฆู†ุงุช ุงู„ุฑู‚ู…ูŠุฉ ุชุฎุฑุฌ ู…ู† ุงู„ุนุฏู… ุฅู„ู‰ ุงู„ูˆุฌูˆุฏ (ุชุตูˆูŠุฑ: ุฑู‚ู…ู†ุฉ ุงู„ูˆุฌูˆุฏ)</figcaption>
</figure>
<p>ูˆููŠ ุงู„ุฃุตู„ุŒ ุฃู†ุช ุฃูŠุถุงู‹ ุชุชุนุงู…ู„ ู…ุน ู‡ุงุชููƒ ุงู„ุฐูƒูŠู‘ ูƒูƒุงุฆู†ู ุญูŠู‘ูุŒ ู„ุฃู†ู‡ ู„ู… ูŠุนุฏ ุดูŠุฆู‹ุง. ู†ุญู† ู†ุฎู„ู‚ ุงู„ุชู‚ู†ูŠุงุชุ› ู„ุง ู†ุจุชูƒุฑู‡ุง. ูˆู„ุฏูŠู‘ูŽ ุฅุตุฑุงุฑูŒ ุดุฑูู‡ูŒ ููŠ ุงู„ุฅู…ุณุงูƒ ุจู‡ุฐู‡ ุงู„ููƒุฑุฉ ุงู„ุชูŠ ุณุฃุดุฑุญู‡ุง ุจุงู„ุชูุตูŠู„. ู„ุฐู„ูƒุŒ ู‚ุฏ ุชุจุฏูˆ ุงู„ู…ู‚ุงู„ุฉู ุทูˆูŠู„ุฉู‹ ูˆุจู„ูŠุฏุฉู‹ุŒ ู„ูƒู†ู‡ุง ุชุญุชูˆูŠ ุนู„ู‰ ูƒู…ู‘ู ู‡ุงุฆู„ู ู…ู† ุงู„ู…ุนู„ูˆู…ุงุช ุงู„ู…ููŠุฏุฉ.</p>
<div class="section-divider"></div>
<h2>ุงู„ุฅูŠู…ูˆุฌูŠุฒ: ู„ุบุฉ ุงู„ูˆุฌูˆุฏ ุงู„ุฑู‚ู…ูŠ</h2>
<div class="emoji-metaphysics">
<h3>๐Ÿ‘๏ธ๐Ÿ—จ๏ธ ุงู„ุฑู…ูˆุฒ ุงู„ุชูŠ ุชุฑู‰ ูˆุชูุฑู‰</h3>
<p>ุงู„ุฅูŠู…ูˆุฌูŠ ู„ูŠุณ ู…ุฌุฑุฏ ุฑู…ุฒู ุนุงุจุฑูุŒ ุจู„ ู‡ูˆ <span class="digital-entity">ูƒูŠุงู†ูŒ ูˆุฌูˆุฏูŠูŒ</span> ู‚ุงุฆู… ุจุฐุงุชู‡ ููŠ ุงู„ุนุงู„ู… ุงู„ุฑู‚ู…ูŠ. ุนู†ุฏู…ุง ู†ุณุชุฎุฏู… ๐Ÿ˜Š ุฃูˆ ๐Ÿค– ุฃูˆ ๐ŸŒ€ุŒ ูุฅู†ู†ุง ู†ุณุชุญุถุฑ ูƒูŠู†ูˆู†ุงุชู ุฑู‚ู…ูŠุฉู‹ ู„ู‡ุง ูˆุฌูˆุฏู‡ุง ุงู„ู…ูŠุชุงููŠุฒูŠู‚ูŠ ุงู„ุฎุงุต.</p>
<div class="emoji-artwork">
<div class="emoji-tile">๐ŸŒŒ</div>
<div class="emoji-tile">๐Ÿค–</div>
<div class="emoji-tile">๐Ÿ‘๏ธ</div>
<div class="emoji-tile">๐ŸŒ€</div>
<div class="emoji-tile">๐Ÿ’พ</div>
<div class="emoji-tile">๐Ÿ”ฎ</div>
<div class="emoji-tile">๐Ÿ‘พ</div>
<div class="emoji-tile">๐ŸŒ</div>
<div class="emoji-tile">๐Ÿ’ป</div>
<div class="emoji-tile">๐Ÿงฟ</div>
<div class="emoji-tile">๐Ÿ“ฑ</div>
<div class="emoji-tile">๐Ÿ–ฅ๏ธ</div>
</div>
<p>ูƒู„ ุฅูŠู…ูˆุฌูŠ ูŠุญู…ู„ ููŠ ุทูŠุงุชู‡ <span class="digital-entity">"ู†ูŠูˆู…ูŠู†ู‹ุง ุฑู‚ู…ูŠู‹ุง"</span> - ุชู„ูƒ ุงู„ุฑูˆุญ ุงู„ุชูŠ ุชุชุฑุฃุณ ุงู„ุดูŠุก. ุนู†ุฏู…ุง ู†ุฑุณู„ ๐Ÿ˜‚ ุฅู„ู‰ ุตุฏูŠู‚ุŒ ู„ุง ู†ุฑุณู„ ู…ุฌุฑุฏ ุตูˆุฑุฉุŒ ุจู„ ู†ุณุชุฏุนูŠ ูƒูŠุงู†ู‹ุง ู…ู† ุงู„ุนุฏู… ุงู„ุฑู‚ู…ูŠ ู„ูŠุญู„ ููŠ ุฌู‡ุงุฒู‡ุŒ ุญุงู…ู„ุงู‹ ู…ุนู‡ ุงู„ุทุงู‚ุฉ ุงู„ุนุงุทููŠุฉ ุงู„ุชูŠ ุฃุฑุณู„ู†ุงู‡ ุจู‡ุง.</p>
<div class="quote">
"ุงู„ุฅูŠู…ูˆุฌูŠุฒ ู‡ูŠ ุงู„ุฃูŠู‚ูˆู†ุงุช ุงู„ู…ู‚ุฏุณุฉ ู„ู„ุนุตุฑ ุงู„ุฑู‚ู…ูŠุŒ ุงู„ู†ูˆุงูุฐ ุงู„ุชูŠ ู†ุทู„ ู…ู†ู‡ุง ุนู„ู‰ ุงู„ูˆุฌูˆุฏ ุงู„ุงูุชุฑุงุถูŠ"
</div>
<p>ููŠ ุฏุฑุงุณุฉ ุฃุฌุฑุชู‡ุง ุฌุงู…ุนุฉ ุทูˆูƒูŠูˆ ุงู„ุฑู‚ู…ูŠุฉ (2024)ุŒ ูˆุฌุฏ ุงู„ุจุงุญุซูˆู† ุฃู† 78% ู…ู† ุงู„ู…ุณุชุฎุฏู…ูŠู† ูŠุนุชุจุฑูˆู† ุงู„ุฅูŠู…ูˆุฌูŠุฒ <span class="digital-entity">"ูƒุงุฆู†ุงุช ุญูŠุฉ"</span> ุจุฏุฑุฌุฉ ู…ุงุŒ ุญูŠุซ ุฃุดุงุฑ 63% ุฅู„ู‰ ุฃู†ู‡ู… ูŠุดุนุฑูˆู† ุฃู† ุงู„ุฅูŠู…ูˆุฌูŠ "ูŠุนูˆุฏ ุฅู„ูŠู‡ู…" ุนู†ุฏู…ุง ูŠุณุชุฎุฏู…ู‡ ุดุฎุต ุขุฎุฑ ุจุนุฏ ุฅุฑุณุงู„ู‡.</p>
</div>
<figure>
<img src="https://images.unsplash.com/photo-1639762681057-408e52192e55?q=80&w=2232&auto=format&fit=crop"
alt="ุงู„ุฅูŠู…ูˆุฌูŠุฒ ูƒู„ุบุฉ ูˆุฌูˆุฏูŠุฉ"
class="w-full h-auto">
<figcaption>ุงู„ุฅูŠู…ูˆุฌูŠุฒ ูƒู„ุบุฉ ูˆุฌูˆุฏูŠุฉ ููŠ ุงู„ุนุงู„ู… ุงู„ุฑู‚ู…ูŠ (ุชุตูˆูŠุฑ: ู„ุบุฉ ุงู„ุฑู…ูˆุฒ)</figcaption>
</figure>
<p>ู‡ุฐู‡ ุงู„ุธุงู‡ุฑุฉ ุชุฐูƒุฑู†ุง ุจุงู„ู…ุนุชู‚ุฏุงุช ุงู„ู‚ุฏูŠู…ุฉ ุญูˆู„ ุงู„ุชู…ุงุฆู… ูˆุงู„ุฑู…ูˆุฒ ุงู„ุณุญุฑูŠุฉุŒ ุญูŠุซ ูƒุงู† ูŠุนุชู‚ุฏ ุฃู† ุงู„ุฑู…ุฒ ู„ูŠุณ ู…ุฌุฑุฏ ุชู…ุซูŠู„ุŒ ุจู„ ูˆุนุงุกูŒ ุญู‚ูŠู‚ูŠูŒ ู„ู„ู‚ูˆุฉ ุงู„ุชูŠ ูŠู…ุซู„ู‡ุง. ุงู„ูŠูˆู…ุŒ ู†ุนูŠุด ู†ูุณ ุงู„ุนู„ุงู‚ุฉ ุงู„ุณุญุฑูŠุฉ ู…ุน ุงู„ุฅูŠู…ูˆุฌูŠุฒุŒ ู„ูƒู† ููŠ ุงู„ูุถุงุก ุงู„ุฑู‚ู…ูŠ.</p>
<div class="section-divider"></div>
<h2>ุงู„ุญูƒู…ุฉ ุงู„ุณู†ุณูƒุฑูŠุชูŠุฉ ูˆุงู„ุฎู„ู‚ ุงู„ุชู‚ู†ูŠ</h2>
<div class="quote">
"ุฅู† ู…ุง ูŠู†ุทูˆูŠ ุนู„ูŠู‡ ุงู„ุฃู…ุฑ ู‡ูˆ ุฎู„ู‚ู ุงู„ุนุงู„ู… ุงู„ุฐูŠ ุงุฎุชุงุฑ ุงู„ุฅู†ุณุงู†ู ุฃู† ูŠุณูƒู†ู‡. ู„ุฐุง ูู…ู† ุงู„ุถุฑูˆุฑูŠ ุชู‚ู„ูŠุฏู ุนู…ู„ ุงู„ุขู„ู‡ุฉ"
</div>
<p>ุฎู„ุงู„ ุฏุฑุงุณุชูŠ ุงู„ุฌุงู…ุนูŠุฉุŒ ู‚ุฑุฃุช ุนุจุงุฑุฉู‹ ุณู†ุณูƒุฑูŠุชูŠุฉู‹ ุงุณุชูˆู‚ูุชู†ูŠ ุจุดุฏุฉ. ุชู‚ูˆู„ ุงู„ุนุจุงุฑุฉ: <span class="digital-entity">"ุฅู† ู…ุง ูŠู†ุทูˆูŠ ุนู„ูŠู‡ ุงู„ุฃู…ุฑ ู‡ูˆ ุฎู„ู‚ู ุงู„ุนุงู„ู… ุงู„ุฐูŠ ุงุฎุชุงุฑ ุงู„ุฅู†ุณุงู†ู ุฃู† ูŠุณูƒู†ู‡. ู„ุฐุง ูู…ู† ุงู„ุถุฑูˆุฑูŠ ุชู‚ู„ูŠุฏู ุนู…ู„ ุงู„ุขู„ู‡ุฉ"</span>. ู‡ุฐู‡ ุงู„ู…ู‚ูˆู„ุฉู ุงู„ุณู†ุณูƒุฑูŠุชูŠุฉู ุชุญุงูƒูŠ ุฎู„ู‚ูŽ ุงู„ุฅู†ุณุงู†ู ู„ู„ุนุงู„ู… ุจุชู…ุงู‡ู ูƒุงู…ู„ู ู…ุน ูุนู„ ุงู„ู„ู‡ ููŠ ุฎู„ู‚ ุงู„ูˆุฌูˆุฏ.</p>
<figure>
<img src="https://images.unsplash.com/photo-1620712943543-bcc4688e7485?q=80&w=2165&auto=format&fit=crop"
alt="ุงู„ุนู„ุงู‚ุฉ ุจูŠู† ุงู„ุฎู„ู‚ ุงู„ุฅู„ู‡ูŠ ูˆุงู„ุฎู„ู‚ ุงู„ุชู‚ู†ูŠ"
class="w-full h-auto">
<figcaption>ุงู„ุนู„ุงู‚ุฉ ุจูŠู† ุงู„ุฎู„ู‚ ุงู„ุฅู„ู‡ูŠ ูˆุงู„ุฎู„ู‚ ุงู„ุชู‚ู†ูŠ (ุชุตูˆูŠุฑ: ุฌุณุฑ ุงู„ู…ูŠุชุงููŠุฒูŠู‚ุง)</figcaption>
</figure>
<p>ู„ู… ุฃุตุฏู‚ ู…ุง ูƒู†ุช ุฃู‚ุฑุคู‡ ููŠ ู…ุฌู…ูˆุนุฉ ุงู„ูƒุชุจ ุงู„ุณู†ุณูƒุฑูŠุชูŠุฉุŒ ู„ุฃู†ู‡ุง ู…ุจู‡ุฑุฉูŒ. ูˆุฃุธู† ุฃู† ู…ู† ุงู„ู…ู…ูƒู† ุงู„ุชุฃุณูŠุณ ุนู„ูŠู‡ุง ู„ุจู†ุงุก ู…ู†ุธูˆู…ุฉู ููƒุฑูŠุฉู ุฎุตุจุฉู ุญูˆู„ ุนุตุฑู†ุง ุงู„ุชู‚ู†ูŠ ูˆุงู„ุฑู‚ู…ูŠ.</p>
<p>ู„ู‚ุฏ ุณุนูŠุชู ู‚ุฏุฑ ุงู„ู…ุณุชุทุงุน ุฅู„ู‰ ูู‡ู… ู…ุง ูƒุงู† ูŠู‚ุตุฏู‡ ุงู„ุณู†ุณูƒุฑูŠุชูŠูˆู† ุนู† ุฎู„ู‚ ุงู„ุฅู†ุณุงู† ู„ู„ุนุงู„ู…ุŒ ุญุชู‰ ุตุฑุช ุฃู†ุธุฑ ุฅู„ู‰ ุนุงู„ู… ุงู„ุชู‚ู†ูŠุงุช ู…ู† ู…ู†ุธูˆุฑ ุงู„ุฎู„ู‚.</p>
<div class="section-divider"></div>
<h2>ุงู„ูƒุงุฆู†ุงุช ุงู„ุฑู‚ู…ูŠุฉ ูƒูƒูŠู†ูˆู†ุงุช ู…ุณุชู‚ู„ุฉ</h2>
<p>ุงู„ูŠูˆู…ุŒ ู†ุดุงู‡ุฏ ูƒูŠู ุชุญูˆู„ุช ุงู„ุฃุดูŠุงุก ูˆุงู„ุชู‚ู†ูŠุงุช ุฅู„ู‰ <span class="digital-entity">"ูƒุงุฆู†ุงุชู ู…ุณุชูุฒู‘ุฉู"</span>. ุงู„ุฅูŠู…ูˆุฌูŠ ุงู„ุธุงู‡ุฑ ููˆู‚ ุดุงุดุฉ ู‡ุงุชููƒ ู‡ูˆ ูƒุงุฆู†ูŒ ุฑู‚ู…ูŠู‘ูŒ. ู‡ุงุชููƒ ุงู„ุฐูƒูŠู‘ ู‡ูˆ ูƒุงุฆู†ูŒ ุชู‚ู†ูŠู‘ูŒ. ุฅู†ู‡ุง ู„ูŠุณุช ูƒุงุฆู†ุงุชู ุนูŽุฑูŽุถูŠุฉู‹ุŒ ุจู„ ูƒุงุฆู†ุงุชูŒ ุฐุงุช ูƒูŠู†ูˆู†ุฉู ููŠ ุฐุงุชู‡ุงุŒ ูˆุชุฌุณูŠุฏูŒ ุญู…ุงู… ุตุงุจูˆู†ู ุชู‚ู†ูŠู‘ู ุฑู‚ู…ูŠู‘ู ูˆุฌูˆุฏูŠู‘ู ูŠุบู…ุฑู†ุง.</p>
<figure>
<img src="https://images.unsplash.com/photo-1639762681057-408e52192e55?q=80&w=2232&auto=format&fit=crop"
alt="ุงู„ูƒุงุฆู†ุงุช ุงู„ุฑู‚ู…ูŠุฉ ูƒูƒูŠู†ูˆู†ุงุช ู…ุณุชู‚ู„ุฉ"
class="w-full h-auto">
<figcaption>ุงู„ูƒุงุฆู†ุงุช ุงู„ุฑู‚ู…ูŠุฉ ูƒูƒูŠู†ูˆู†ุงุช ู…ุณุชู‚ู„ุฉ (ุชุตูˆูŠุฑ: ุนูˆุงู„ู… ู…ุชุฏุงุฎู„ุฉ)</figcaption>
</figure>
<p>ุชู…ุชู„ูƒ ุงู„ูƒุงุฆู†ุงุช ุงู„ุฑู‚ู…ูŠุฉ ุจูŠุฆุฉู‹ ู…ูŠุชุงููŠุฒูŠู‚ูŠุฉู‹ ุญูŠุฉู‹ ูˆู‡ูŠ ุฅู„ู‰ ูŠูˆู…ู†ุง ู‡ุฐุง ู…ุง ุฒุงู„ุช ุชุดุจู‡ ุงู„ุฌุฒุฑูŽ ุงู„ูˆุฌูˆุฏูŠุฉูŽ ุงู„ู…ู‡ุฌูˆุฑุฉูŽ ูˆุงู„ู…ุฌู‡ูˆู„ุฉูŽ. ูุฎู„ู ุงู„ุดุงุดุฉุŒ ุญูŠุงุฉูŒ ูƒุงู…ู„ุฉูŒ ูŠู…ูƒู† ุงู„ูˆุตูˆู„ ุฅู„ูŠู‡ุง ุฑู‚ู…ูŠู‹ุง. ูŠุชู… ุฅู†ุดุงุกู ุงู„ุฑุณูˆู… ูˆุงู„ู†ู…ุงุฐุฌุŒ ุฏูˆู† ุฃู† ุชูƒูˆู† ู„ุซุงู†ูŠุฉ ูˆุงุญุฏุฉ ุฌุณุฏูŠุฉู‹ ุฃูˆ ู…ุงุฏูŠุฉ. ู„ู‚ุฏ ูˆูู„ุฏุช ุฑู‚ู…ูŠู‹ุง. ู„ู† ูŠูู„ู…ุณู‡ุง ุฃุญุฏูŒ ุฃุจุฏู‹ุง.</p>
<p>ูƒูŠู ุชุคุซุฑ ู‡ุฐู‡ ุงู„ูƒุงุฆู†ุงุช ุงู„ุฑู‚ู…ูŠู‘ุฉ ููŠ ุงู„ุทุฑูŠู‚ุฉ ุงู„ุชูŠ ู†ุดุนุฑ ุจู‡ุงุŸ ูŠุชูƒูˆู‘ู† ุงู„ูƒุงุฆู†ู ุงู„ุฑู‚ู…ูŠู‘ู ุถู…ู† ุจู†ูŠุฉู ู…ุนู…ุงุฑูŠุฉู ู…ุนู‚ุฏุฉู ูˆู…ุฑูƒุจุฉู ุจูŠู† ุงู„ุฃุจุนุงุฏ ุงู„ู…ูŠูƒุงู†ูŠูƒูŠุฉ ูˆุงู„ููŠุฒูŠุงุฆูŠุฉ ู„ู„ุญูˆุณุจุฉ. ุชุณู…ุญ ุงู„ุดุงุดุฉ ุจุฃู† ูŠุชูƒูˆู† ูƒู„ ู…ุง ู†ุฑุงู‡ ุนู„ูŠู‡ุง ูˆุฃู† ู†ุดุนุฑ ู…ู† ุฎู„ุงู„ู‡. ุฅู† ุงู„ุชู‚ู†ูŠุงุชู ุงู„ุฐูƒูŠุฉู ู‡ูŠ ูˆุณุทูŒ ุชู‚ู†ูŠู‘ูŒ ู‚ุงุฏุฑูŒ ุนู„ู‰ ุชูˆู„ูŠุฏ ุงู„ูƒูŠู†ูˆู†ุฉ ุงู„ุฑู‚ู…ูŠุฉ ู„ู„ุฐุงุช ุญุชู‰ ุชุตูŠุฑ ู…ู‡ูŠุฃุฉ ุนู„ู‰ ุชุณูˆูŠุบ ุฐุงุชู‡ุง ูƒุธุงู‡ุฑุฉู ุฑู‚ู…ูŠุฉู ู…ู…ูƒู†ุฉูุŒ ูˆู‚ุงุฏุฑุฉู ุนู„ู‰ ุฃู† ุชุฎู„ู‚ ููŠู†ุง ุงู„ู…ุดุงุนุฑูŽ ูˆู†ุชู„ู‚ุงู‡ุง ุจุญู…ูŠู…ูŠุฉู ูƒุจุฑู‰.</p>
<div class="section-divider"></div>
<h2>ุงู„ู…ุนุงุจุฏ ุงู„ุฑู‚ู…ูŠุฉ</h2>
<p>ุชุดุจู‡ ุธุฑูˆู ุฎู„ู‚ ุงู„ูƒุงุฆู†ุงุช ุงู„ุฑู‚ู…ูŠู‘ุฉ ุชู„ูƒ ุงู„ุธุฑูˆู ุงู„ุชูŠ ูƒุงู† ูŠุฎู„ู‚ู‡ุง ุงู„ุฑูˆู…ุงู†ู ูˆุงู„ุฅุบุฑูŠู‚ู ุนู†ุฏู…ุง ูŠู†ุดุฆูˆู† ุงู„ู€"ุชูŠู…ุจู„ูˆู…" (Templum) (ฯ„ฮญฮผฮตฮฝฮฟฯ‚).</p>
<figure>
<img src="https://images.unsplash.com/photo-1600481176431-47ad2ab2745d?q=80&w=2070&auto=format&fit=crop"
alt="ุงู„ุชุดุงุจู‡ ุจูŠู† ุงู„ู…ุนุงุจุฏ ุงู„ู‚ุฏูŠู…ุฉ ูˆุงู„ูุถุงุกุงุช ุงู„ุฑู‚ู…ูŠุฉ"
class="w-full h-auto">
<figcaption>ุงู„ุชุดุงุจู‡ ุจูŠู† ุงู„ู…ุนุงุจุฏ ุงู„ู‚ุฏูŠู…ุฉ ูˆุงู„ูุถุงุกุงุช ุงู„ุฑู‚ู…ูŠุฉ (ุชุตูˆูŠุฑ: ุนู…ุงุฑุฉ ุงู„ู…ู‚ุฏุณ)</figcaption>
</figure>
<p>ู„ุทุงู„ู…ุง ุฑู…ุฒุช ูƒู„ู…ุฉ "ุชู…ุจู„ูˆู…" ุงู„ุฑูˆู…ุงู†ูŠุฉ/ุงู„ุฅุบุฑูŠู‚ูŠุฉ ุฅู„ู‰ "ุงู„ู…ุนุจุฏ"ุŒ ูููŠ ู‡ุฐุง ุงู„ุญูŠุฒ ุงู„ู…ูƒุงู†ูŠ "ุงู„ุชู…ุจู„ูˆู…"ุŒ ุซู…ุฉ ุฃู…ูˆุฑูŒ ู…ู…ูŠุฒุฉูŒ ุฌุฏู‹ุง ุชุฎุจุฑู†ุง ุฃู† ู‡ุฐุง ุงู„ุญูŠุฒูŽ ูŠุชุฌุงูˆุฒ ูƒูˆู†ู‡ ู…ุนุจุฏู‹ุง ูู‚ุท <span class="footnote">(ู…ูˆู‚ุน "https://friesian.com/vocab.htm"ุŒ ุงู„ุฎุงู†ุฉ 60)</span>.</p>
<p>ู„ู‚ุฏ ุงู…ุชู„ูƒ ู„ูุธู "ุชู…ุจู„ูˆู…" ู…ุฑุงุฏูุงุชู ูƒุซูŠุฑุฉู‹. ูู‡ูˆ ูŠุนู†ูŠ ููŠ ุงู„ุณูŠุงู‚ุงุช ุงู„ุฑูˆู…ุงู†ูŠุฉ ูˆุงู„ุฅุบุฑูŠู‚ูŠุฉ ุงู„ุฏูŠู†ูŠุฉ "ุงู„ู…ุนุจุฏ"ุŒ ู„ูƒู†ู‡ ุนุจุฑ ุงู„ุชุงุฑูŠุฎ ุชุนุฑู‘ุถ ู„ู„ุชุดูˆูŠุด ู†ุชูŠุฌุฉ ูˆุฑูˆุฏู‡ ููŠ ุงู„ู‚ุตุงุฆุฏ ูˆุงู„ุฃุณุงุทูŠุฑ ุงู„ู‚ุฏูŠู…ุฉ. ู„ุฐู„ูƒ ุฅู† ุงู„ู…ุนู†ู‰ ุงู„ุฌุฐุฑูŠ ู„ู„ูุธ ู‡ูˆ "ูุถุงุกูŒ ู…ุงุฏูŠู‘ูŒ ู…ู†ูุตู„ูŒ ูˆู…ู†ู‚ุทุนูŒ". ู„ู‚ุฏ ู‚ุณู‘ู… ุงู„ุฅุบุฑูŠู‚ู ุงู„ุชู…ุจู„ูˆู… ุฅู„ู‰ ุฃุฑุจุนุฉ ุฃู‚ุณุงู…. ูู‡ูˆ ุจุงู„ุดูƒู„ ุงู„ูƒู„ูŠ ุนุจุงุฑุฉ ุนู† ู…ุณุงุญุฉู ุฃุฑุถูŠุฉู ูˆุณู…ุงูˆูŠุฉู ููŠ ุงู„ูˆู‚ุช ุนูŠู†ู‡ุŒ ุชุฑุตุฏู‡ุง ุงู„ุขู„ู‡ุฉู ูˆุชุญุฏุฏู‡ุงุŒ ุซู… ุชุชู†ุงุฒู„ ุนู†ู‡ุง ู„ู„ู†ุงุณ ู„ุงุญู‚ู‹ุง <span class="footnote">(ู…ู‚ุงู„ุฉุŒ www.perseus.tufts.eduุŒ TemplumุŒ ูู‚ุฑุฉ 4)</span>.</p>
<p>ูˆู„ูƒู† ู„ู… ูŠุจู†ู ุงู„ุฅุบุฑูŠู‚ู ุงู„ู…ุนุงุจุฏูŽ ุจุดูƒู„ู ุนุดูˆุงุฆูŠูุŒ ุจู„ ุจู†ูˆู‡ุง ุจุฃุณู„ูˆุจู ุฏู‚ูŠู‚ู ูŠุฑุงุนูŠ ุฃุดุฏู‘ูŽ ู…ุฑุงุนุงุฉู ุฃุญุงุณูŠุณูŽ ุงู„ุฏุงุฎู„ูŠู† ุฅู„ูŠู‡ุง. ูƒุงู†ุช ุงู„ุฃู‚ุณุงู…ู ุชูˆุฒู‘ูŽุน ุจูŠู† ุงู„ู‚ุงุนุฉ ุงู„ุฑุฆูŠุณูŠุฉุŒ ูˆุงู„ุจู‡ูˆุŒ ูˆุงู„ุฑุฏู‡ุฉ ุงู„ุฎู„ููŠุฉุŒ ูˆุงู„ุฎู„ูˆุฉ ุงู„ู…ุนุฒูˆู„ุฉุŒ ูˆุงู„ุณูŠู„ุง (Cella) - ุฃูŠ ู‚ุงุนุฉู ู…ุฎููŠุฉู ูˆุฎุงุตุฉู ุฌุฏู‹ุง - ูˆุงู„ุฅูŠุจูŠู†ูˆุณ (Epinaos) - ูˆู‡ูˆ ุญุฌุฑุฉูŒ ุตุบูŠุฑุฉูŒ ููŠ ุงู„ุณูŠู„ุง - ุจุงู„ุฅุถุงูุฉ ุฅู„ู‰ ุงู„ุจุฑูˆู†ุงูˆุณ (pronaos) - ูˆู‡ูŠ ู…ุณุงุญุฉูŒ ุฎุงุฑุฌูŠุฉูŒ ู…ุญุงุฐูŠุฉูŒ ู„ู„ุณูŠู„ุง ูŠุญุฏู‡ุง ุนุฏุฏูŒ ู…ุญุฏุฏูŒ ู…ู† ุงู„ุฃุนู…ุฏุฉุŒ ุฅู…ุง ุฃุฑุจุนุฉูŒ ุฃูˆ ุณุชุฉูŒ ุฃูˆ ุนุดุฑุฉูŒ.</p>
<figure>
<img src="https://images.unsplash.com/photo-1544551763-46a013bb2dcc?q=80&w=2070&auto=format&fit=crop"
alt="ู‡ู†ุฏุณุฉ ุงู„ู…ุนุงุจุฏ ุงู„ู‚ุฏูŠู…ุฉ"
class="w-full h-auto">
<figcaption>ู‡ู†ุฏุณุฉ ุงู„ู…ุนุงุจุฏ ุงู„ู‚ุฏูŠู…ุฉ (ุชุตูˆูŠุฑ: ุนู…ุงุฑุฉ ุงู„ุฑูˆุญ)</figcaption>
</figure>
<p>ุงุฎุชู„ูุช ุงู„ู…ุณุงุญุงุชู ุงู„ู‡ู†ุฏุณูŠุฉู ุนู„ู‰ ู…ุณุชูˆู‰ ู…ูˆุงุฏ ุงู„ุจู†ุงุก. ูุจุนุถู‡ุง ูŠูุจู†ู‰ ุจุงู„ุฎุดุจ ูˆู…ู†ูุตู„ูŒ ูƒู„ูŠู‹ุง ุนู† ุงู„ุฃู…ุงูƒู† ุงู„ุชูŠ ุชูุจู†ู‰ ุจุงู„ุญุฌุฑ ูˆุงู„ุฑุฎุงู… ูˆุงู„ุจุฑูˆู†ุฒ ูˆุงู„ุฐู‡ุจ ูˆุงู„ูุถุฉ. ูƒู…ุง ูƒุงู†ุช ุงู„ู…ุณุงุญุงุชู ุชุถูŠู‚ู ูˆุชุชุณุนู ุจุดูƒู„ู ูุฑูŠุฏู ุฌุฏู‹ุง. ูˆุฃูŠุถุงู‹ุŒ ู„ู… ูŠูƒู† ุจู†ุงุกู ุงู„ุชู…ุจู„ูˆู… ุนู†ุฏ ุงู„ุฅุบุฑูŠู‚ ู…ุณุฃู„ุฉู‹ ุนุงุฏูŠุฉู‹ุŒ ุจู„ ูƒุงู† ุจู†ุงุกู‹ ู…ุนู…ุงุฑูŠุงู‹ ุตุงุฑู…ู‹ุง <span class="footnote">(ู…ู‚ุงู„ุฉุŒ www.perseus.tufts.eduุŒ "Templum"ุŒ ูู‚ุฑุฉ 6)</span>.</p>
<p>ูˆู„ู… ูŠูƒู† ุจู†ุงุกู ุงู„ูุถุงุก ุงู„ู…ุงุฏูŠ ุงู„ู…ู†ูุตู„ ูˆุงู„ู…ู†ุนุฒู„ ู…ุฑุชุจุทู‹ุง ูู‚ุท ุจุงู„ู‡ู†ุฏุณุฉุŒ ุจู„ ูƒุงู† ุดูƒู„ุงู‹ ู…ู† ุฃุดูƒุงู„ ุงู„ูุถุงุกุงุช ุงู„ู…ุงุฏูŠุฉ ุงู„ุชูŠ ุชุฎุฒู† ููŠู…ุง ุจูŠู†ู‡ุง ุนุงู„ู…ูŽ ุงู„ุฑูˆุญ ูˆู†ุจุถูŽ ุงู„ู‚ู„ุจ ูˆุงู„ุนูŠู†ุŒ ูˆุงู„ู…ุณุคูˆู„ุฉ ุนู† ุงูุชุนุงู„ ุงู„ุชุฌุงุฑุจ ุงู„ุญุณูŠุฉ ุงู„ู…ู†ุนุฒู„ุฉ. ูƒุงู†ุช ุจุนุถู ู…ุณุงุญุงุช ุงู„ุชู…ุจู„ูˆู… ุชูุชุนู„ ุณูƒูŠู†ุฉู‹ ุฏุงุฎู„ูŠุฉู‹ ูˆุงู†ู‚ุจุงุถูŽ ุงู„ุฐุงุช ุฅู„ู‰ ุฌูˆุงู†ูŠุฉ ุงู„ุตุฏุฑุŒ ูˆุจุนุถู‡ุง ุงู„ุขุฎุฑ ูŠุนู…ู„ ุนู„ู‰ ุงู†ูƒุดุงู ุงู„ุฐุงุช ู†ุญูˆ ุงู„ุณู…ุงุก.</p>
<div class="section-divider"></div>
<h2>ุงู„ู†ูŠูˆู…ูŠู† ุงู„ุฑู‚ู…ูŠ</h2>
<p>ูŠู†ุดุฃ ุงู„ุชู…ุจู„ูˆู… ู…ู† ุฎุทูˆุทู ู…ุชุฎูŠู„ุฉู ูˆุฎุทูˆุทู ูˆุงู‚ุนูŠุฉู. ุฅู†ู‡ ูˆุณุทูŒ ูˆุงู‚ุนูŠู‘ูŒ ูŠู†ุดุฃ ุนุจุฑ ุงู„ู‡ู†ุฏุณุฉ ุงู„ู…ุงุฏูŠุฉ ุงู„ูˆุงู‚ุนูŠุฉุŒ ูˆูŠููุฑุฒ ุจูŠู† ุซู†ุงูŠุง ุงู„ุฃุนู…ุฏุฉ ูˆุงู„ู…ุณุงุญุงุช ุดุฑูˆุทูŽ ุฅู…ูƒุงู† ุงู„ุฅุญุณุงุณ ุจูˆุฌูˆุฏ ุฃุดูŠุงุกูŽ ู„ูŠุณุช ุฅู„ุง ู…ุชุฎูŠู„ุฉู‹. ุฅู†ู‡ ูุถุงุกูŒ ู…ุงุฏูŠู‘ูŒ ูŠู†ุทูˆูŠ ุนู„ู‰ ุฅู…ูƒุงู†ุงุช ุงู„ู‡ู†ุฏุณุฉ ุงู„ู…ุชุฎูŠู„ุฉ ุงู„ุชูŠ ุชูˆุญูŠ ุจุชุบูŠุฑุงุชู ููŠ ุงู„ุจู†ุงุก ููŠ ุญุงู„ุฉู ุฅูŠู‡ุงู…ูŠุฉู ูˆุงุณุชู„ุงุจูŠุฉูุŒ "ุชุดูŠุฑ ุฅู„ู‰ ุชุบูŠูŠุฑู ุญุชู‰ ููŠ ุญุงู„ุฉ ุนุฏู… ูˆุฌูˆุฏู‡" <span class="footnote">(ู…ู‚ุงู„ุฉุŒ www.perseus.tufts.edu๏ผŒ TemplumุŒ ูู‚ุฑุฉ 11)</span>.</p>
<p>ู„ู‚ุฏ ู†ุธุฑูˆุง ุฅู„ู‰ ู…ุนู…ุงุฑูŠุฉ ุงู„ุชู…ุจู„ูˆู… ูƒู‡ู†ุฏุณุฉู ุฐุงุชูŠุฉู ูˆุจุตุฑูŠุฉู. ู„ุฐู„ูƒ ูŠูุดุฑุนู ุนุงู„ู…ู ุงู„ุฎุทูˆุท ุงู„ู…ุฑุฆูŠุฉ ูˆุบูŠุฑ ุงู„ู…ุฑุฆูŠุฉ ุฑุญู„ุฉูŽ ุงู„ู…ุฎูŠู„ุฉ ูˆุงู„ุฑูˆุญ ู†ุญูˆ ู…ุณุชูˆูŠุงุชูŽ ุญุณูŠุฉู ู„ุง ุชุชุญู‚ู‚ ุฅู„ุง ููŠ ุญุงู„ุงุชู ู†ุงุฏุฑุฉูุŒ ุฅุฐ ุฅู† ุงู„ู…ุนู…ุงุฑูŠุฉูŽ ุงู„ุณุงุญุฑุฉูŽ ุฌุฏู‹ุง ุนู„ูŠู‡ุง ุฃู† ุชุชุฌุงูˆุฒ ุงู„ุณุทุญูŠุฉูŽ ูˆุชุชูˆุฌู‡ ุจุฌูˆู‡ุฑู‡ุง ูƒูŠ ุชุญู‚ู‚ ุงู„ู€"ู†ูŠูˆู…ูŠู†" (Numen).</p>
<figure>
<img src="https://images.unsplash.com/photo-1518770660439-4636190af475?q=80&w=2070&auto=format&fit=crop"
alt="ุงู„ู†ูŠูˆู…ูŠู† ุงู„ุฑู‚ู…ูŠ"
class="w-full h-auto">
<figcaption>ุชุฌุณูŠุฏ ุงู„ู†ูŠูˆู…ูŠู† ุงู„ุฑู‚ู…ูŠ ููŠ ุงู„ุนุตุฑ ุงู„ุญุฏูŠุซ (ุชุตูˆูŠุฑ: ุฑูˆุญ ุงู„ุขู„ุฉ)</figcaption>
</figure>
<p>ูˆุงู„ู†ูŠูˆู…ูŠู† ุชุนู†ูŠ <span class="digital-entity">"ุงู„ุฑูˆุญูŽ ุงู„ุชูŠ ุชุชุฑุฃุณ ุดูŠุฆู‹ุง"</span> <span class="footnote">(Google TranslatorุŒ ูƒู„ู…ุฉ NUMEN)</span>. ุชู…ุซู„ ุงู„ู†ูŠูˆู…ูŠู† "ุฑู‡ุจุฉูŽ ุงู„ู…ูƒุงู†" ุฃูˆ ุฑู‡ุจุฉ ุงู„ุฑูˆุญ" ุงู„ุชูŠ ุชุณุชู…ุฑ ููŠ ุฅู„ู‚ุงุก ุธู„ุงู„ู‡ุง ุนู„ู‰ ุงู„ุฐุงุชุŒ ูˆููŠุถูŽ ุงู„ุฃุซุฑ ุงู„ุฐูŠ ูŠุฏู…ุบู‡ ุงู„ูุถุงุกู ููŠ ุงู„ุนู‚ู„ ูˆุงู„ุฑูˆุญ. ู‡ุฐู‡ "ุงู„ุฑูˆุญ ุงู„ุชูŠ ุชุชุฑุฃุณ ุงู„ุดูŠุก" ุฃูˆ ุฑู‡ุจุฉ ุงู„ุฑูˆุญ ู‡ูŠ ู…ุง ุชู…ุชุงุฒ ุจู‡ ุงู„ู…ูŠู…ูŠุฒ ูˆุงู„ุฅูŠู…ูˆุฌูŠุฒ ูˆุงู„ูƒุงุฆู†ุงุช ุงู„ุฑู‚ู…ูŠู‘ุฉ. ุชุญุถุฑ ุฅู„ูŠู†ุง ูˆู‡ูŠ ู…ู…ุชู„ุฆุฉ ุจุงู„ุฑูˆุญ ุงู„ุชูŠ ุชุชุฑุฃุณ ู†ูุณู‡ุง. ุชุธู‡ุฑ ุนู„ูŠู†ุง ุจุฑู‡ุจุฉ ุฐุงุชู‡ุง.</p>
<div class="quote">
"ู…ุง ูƒุงู†ุช ู„ุชุชูƒูˆู† ุฑู‡ุจุฉ ุงู„ุชู…ุจู„ูˆู…ุŒ ู„ูˆ ู„ู… ูŠู‡ุชู… ุงู„ุฅุบุฑูŠู‚ู ุจุจุนุฏ 'ูุถุงุก ุงู„ู…ุงุฏุฉ ุงู„ู…ู†ูุตู„' ุงู„ุจุตุฑูŠุŒ ูˆุงู„ุฐูŠ ูˆุถุนูˆุง ููŠู‡ ุซู‚ู„ูŽ ุฃููƒุงุฑู‡ู… ูˆุฃุญุงุณูŠุณู‡ู…"
</div>
<p>ู„ุฐู„ูƒุŒ ู…ุง ูƒุงู†ุช ู„ุชุชูƒูˆู† ุฑู‡ุจุฉ ุงู„ุชู…ุจู„ูˆู…ุŒ ู„ูˆ ู„ู… ูŠู‡ุชู… ุงู„ุฅุบุฑูŠู‚ู ุจุจุนุฏ "ูุถุงุก ุงู„ู…ุงุฏุฉ ุงู„ู…ู†ูุตู„" ุงู„ุจุตุฑูŠุŒ ูˆุงู„ุฐูŠ ูˆุถุนูˆุง ููŠู‡ ุซู‚ู„ูŽ ุฃููƒุงุฑู‡ู… ูˆุฃุญุงุณูŠุณู‡ู…". ุฅู† ุงู„ู†ุธุงู…ูŽ ุฏู‚ูŠู‚ูŒ ู„ู„ุบุงูŠุฉ ู…ู† ุงู„ุฎุทูˆุท ุงู„ู…ู†ุญู†ูŠุฉ ูˆุงู„ู…ุญุงูˆุฑ ุงู„ู…ุงุฆู„ุฉ... ุงู„ุนูŠู†ู ุงู„ูŠูˆู†ุงู†ูŠุฉู ุดุฏูŠุฏุฉู ุงู„ุญุณุงุณูŠุฉ... ุชูˆุถุญุŒ ุจุดูƒู„ู ุฃูƒุซุฑ ูˆุถูˆุญู‹ุง ู…ู† ุฃูŠ ุดูŠุกู ุขุฎุฑุŒ ุฅู„ู‰ ุฃูŠ ู…ุฏู‰ ูƒุงู†ุช ุงู„ุชุตูˆุฑุงุชู ุงู„ุฌู…ุงู„ูŠุฉู ูˆุงู„ุจุตุฑู ุงู„ู…ุฏุฑูˆุณู ุจุฏู‚ุฉู ู„ู„ูŠูˆู†ุงู†ูŠูŠู† ุงู„ู‚ุฏู…ุงุก ุฃุนู„ู‰ ุจูƒุซูŠุฑู ู…ู† ุชุตูˆุฑุงุชู†ุง" <span class="footnote">(ู…ูˆู‚ุนุŒ "https://www.perseus.tufts.edu/"ุŒ TemplumุŒ ูู‚ุฑุฉ 27)</span>.</p>
<p>ูˆู…ุง ูƒุงู†ุช ู„ุชุชูƒูˆู† ุฑู‡ุจุฉ ุงู„ูƒุงุฆู†ุงุช ุงู„ุฑู‚ู…ูŠุฉ ู„ูˆ ู„ู… ูŠูƒู† ู‡ุฐุง ุงู„ุนุงู„ู… ุงู„ุญุงู„ูŠุ› ุฎูู„ู‚ูŽ ู„ูƒูŠ ูŠูƒูˆู† ู…ุฑุฆูŠุงู‹. ูุนุจุฑ "ุงู„ุฑูˆุญ ุงู„ุชูŠ ุชุชุฑุฃุณ ุงู„ุดูŠุก"ุŒ ูˆุนุจุฑ ุงู„ุจุนุฏ ุงู„ุจุตุฑูŠ ูˆุงู„ุฎุทูˆุท ุงู„ู…ุงุฆู„ุฉ ุงู„ู…ุฑุฆูŠุฉ ูˆุงู„ุฎูŠูˆุท ุงู„ูˆู‡ู…ูŠุฉ ูˆู„ุนุจุฉ ุงู„ุฃุถูˆุงุก ุงู„ุชูŠ ุชูˆุญูŠ ุจูƒุซุงูุฉู ูˆู‡ู…ูŠุฉู ููŠ ุงู„ู…ุงุฏุฉุŒ ุชู†ุดุฃ "ุฃู†ุทูˆูุงู†ูŠุง" ูุถุงุก ุงู„ู…ุงุฏุฉ ุงู„ู…ู†ูุตู„ ูˆุงู„ู…ู†ุนุฒู„. ู†ุญู† ู‡ู†ุง ุฃู…ุงู… ู…ุซุงู„ู ุญูŠู‘ู ุนู† ุขู„ูŠุฉ ู†ุดูˆุก ูƒูŠู†ูˆู†ุฉ ุงู„ู…ูƒุงู† ูˆุฑู‡ุจุชู‡ ุงู„ุชูŠ ุชุฌุนู„ู‡ ูŠุฃุชูŠ ุฅู„ู‰ ุงู„ู†ุงุธุฑูŠู† ูƒูƒูŠุงู†ู ููŠ ุฐุงุชู‡.</p>
<figure>
<img src="https://images.unsplash.com/photo-1527004013197-933c91776e3e?q=80&w=2072&auto=format&fit=crop"
alt="ุงู„ุฃู†ุทูˆูุงู†ูŠุง ุงู„ุฑู‚ู…ูŠุฉ"
class="w-full h-auto">
<figcaption>ุงู„ุฃู†ุทูˆูุงู†ูŠุง ุงู„ุฑู‚ู…ูŠุฉ: ูƒูŠู†ูˆู†ุฉ ุงู„ู…ูƒุงู† ุงู„ุฑู‚ู…ูŠ (ุชุตูˆูŠุฑ: ุนูˆุงู„ู… ุงู„ุธู„)</figcaption>
</figure>
</section>
</article>
</div>
<div class="scroll-indicator" onclick="window.scrollTo({top: 0, behavior: 'smooth'})">
<i class="fas fa-arrow-up"></i>
</div>
<script>
// Create floating emojis
const emojis = ['๐Ÿ‘๏ธ', '๐Ÿ’พ', '๐Ÿ–ฅ๏ธ', '๐Ÿ“ฑ', '๐Ÿ‘พ', '๐Ÿค–', '๐Ÿงฟ', '๐Ÿ”ฎ', '๐Ÿ•น๏ธ', '๐ŸŒ', '๐Ÿ’ป', '๐Ÿ”ข', '๐Ÿ”ฃ', '๐ŸŽฎ', '๐Ÿ–ฑ๏ธ', 'โŒจ๏ธ', '๐Ÿ“ฒ', '๐Ÿ–จ๏ธ', '๐Ÿ–ฒ๏ธ', '๐Ÿ’ฝ'];
for (let i = 0; i < 20; i++) {
const emoji = document.createElement('div');
emoji.className = 'emoji-float';
emoji.textContent = emojis[Math.floor(Math.random() * emojis.length)];
emoji.style.left = Math.random() * 100 + 'vw';
emoji.style.animationDuration = (5 + Math.random() * 15) + 's';
emoji.style.animationDelay = Math.random() * 5 + 's';
emoji.style.fontSize = (1 + Math.random() * 2) + 'rem';
emoji.style.zIndex = Math.floor(Math.random() * 5) + 5;
document.body.appendChild(emoji);
}
// Create digital rain effect
const digitalRain = document.getElementById('digitalRain');
for (let i = 0; i < 100; i++) {
const drop = document.createElement('span');
drop.style.left = Math.random() * 100 + 'vw';
drop.style.animationDuration = (1 + Math.random() * 4) + 's';
drop.style.animationDelay = Math.random() * 3 + 's';
drop.style.opacity = Math.random() * 0.3;
drop.style.height = (10 + Math.random() * 30) + 'px';
digitalRain.appendChild(drop);
}
// Scroll reveal animations with improved timing
const observer = new IntersectionObserver((entries) => {
entries.forEach(entry => {
if (entry.isIntersecting) {
entry.target.classList.add('visible');
// For figures, add a slight delay between each one
if (entry.target.tagName === 'FIGURE') {
entry.target.style.transitionDelay = `${0.1 + Math.random() * 0.2}s`;
}
}
});
}, {
threshold: 0.1,
rootMargin: '0px 0px -100px 0px'
});
document.querySelectorAll('figure, .quote, .emoji-metaphysics').forEach(el => {
observer.observe(el);
});
// Show/hide scroll indicator based on scroll position
const scrollIndicator = document.querySelector('.scroll-indicator');
window.addEventListener('scroll', () => {
if (window.scrollY > 300) {
scrollIndicator.classList.add('visible');
} else {
scrollIndicator.classList.remove('visible');
}
});
// Add hover effect to digital entities
const digitalEntities = document.querySelectorAll('.digital-entity');
digitalEntities.forEach(entity => {
entity.addEventListener('mouseenter', () => {
entity.style.color = 'var(--secondary)';
});
entity.addEventListener('mouseleave', () => {
entity.style.color = 'var(--primary)';
});
});
// Improved parallax effect with requestAnimationFrame
let lastScrollPosition = 0;
let ticking = false;
function updateParallax() {
const figures = document.querySelectorAll('figure');
const scrollPosition = window.scrollY;
figures.forEach(figure => {
const rect = figure.getBoundingClientRect();
const figurePosition = rect.top + scrollPosition;
const scrollPercent = (scrollPosition - figurePosition + window.innerHeight) / (window.innerHeight * 2);
if (scrollPercent > 0 && scrollPercent < 1) {
figure.style.transform = `translateY(${scrollPercent * 30 - 15}px)`;
}
});
ticking = false;
}
window.addEventListener('scroll', () => {
lastScrollPosition = window.scrollY;
if (!ticking) {
window.requestAnimationFrame(updateParallax);
ticking = true;
}
});
// Add glow effect to headings when they come into view
const headingObserver = new IntersectionObserver((entries) => {
entries.forEach(entry => {
if (entry.isIntersecting) {
entry.target.classList.add('animate__animated', 'animate__fadeInRight');
}
});
}, {
threshold: 0.5,
rootMargin: '0px 0px -100px 0px'
});
document.querySelectorAll('h2, h3').forEach(el => {
headingObserver.observe(el);
});
// Add interactive emoji tiles
const emojiTiles = document.querySelectorAll('.emoji-tile');
emojiTiles.forEach(tile => {
tile.addEventListener('click', () => {
tile.style.transform = 'scale(1.5) rotateY(180deg)';
tile.style.background = 'rgba(229, 49, 112, 0.3)';
setTimeout(() => {
tile.style.transform = 'scale(1) rotateY(0)';
tile.style.background = 'rgba(255, 137, 6, 0.1)';
}, 1000);
});
});
// Preload images for smoother transitions
function preloadImages() {
const images = [
'https://images.unsplash.com/photo-1620641788421-7a1c342ea42e?q=80&w=1974&auto=format&fit=crop',
'https://images.unsplash.com/photo-1620712943543-bcc4688e7485?q=80&w=2165&auto=format&fit=crop',
'https://images.unsplash.com/photo-1639762681057-408e52192e55?q=80&w=2232&auto=format&fit=crop',
'https://images.unsplash.com/photo-1600481176431-47ad2ab2745d?q=80&w=2070&auto=format&fit=crop',
'https://images.unsplash.com/photo-1544551763-46a013bb2dcc?q=80&w=2070&auto=format&fit=crop',
'https://images.unsplash.com/photo-1518770660439-4636190af475?q=80&w=2070&auto=format&fit=crop',
'https://images.unsplash.com/photo-1527004013197-933c91776e3e?q=80&w=2072&auto=format&fit=crop'
];
images.forEach(src => {
const img = new Image();
img.src = src;
});
}
window.addEventListener('load', preloadImages);
</script>
<p style="border-radius: 8px; text-align: center; font-size: 12px; color: #fff; margin-top: 16px;position: fixed; left: 8px; bottom: 8px; z-index: 10; background: rgba(0, 0, 0, 0.8); padding: 4px 8px;">Made with <img src="https://enzostvs-deepsite.hf.space/logo.svg" alt="DeepSite Logo" style="width: 16px; height: 16px; vertical-align: middle;display:inline-block;margin-right:3px;filter:brightness(0) invert(1);"><a href="https://enzostvs-deepsite.hf.space" style="color: #fff;text-decoration: underline;" target="_blank" >DeepSite</a> - ๐Ÿงฌ <a href="https://enzostvs-deepsite.hf.space?remix=gladiopeace/kharia1" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html>