/*==========================
        RESET
==========================*/

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

html,
body {
    width: 100%;
    height: 100%;
    overflow: hidden;
    font-family: Georgia, serif;
    background: #000;
}

/*==========================
      DASHBOARD
==========================*/

.dashboard {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

/*==========================
      HEADER
==========================*/

.top-title {
    position: absolute;
    top: 45px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 20;
}

.top-title h1 {
    font-size: 42px;
    letter-spacing: 6px;
    color: #7c2335;
    text-shadow:
        3px 3px 0 rgba(255, 255, 255, .9),
        0 0 15px rgba(255, 255, 255, .8),
        2px 2px 8px rgba(0, 0, 0, .7);
    margin-bottom: 6px;
}

.top-title p {
    font-size: 14px;
    letter-spacing: 2px;
    color: #1a1a1a;
    font-style: italic;
    text-shadow:
        2px 2px 0 rgba(255, 255, 255, .9),
        0 0 10px rgba(255, 255, 255, .8),
        1px 1px 4px rgba(0, 0, 0, .6);
}

/*==========================
      WINDOW
==========================*/

.window {
    position: absolute;
    background: rgba(10, 10, 15, .92);
    border: 2px solid #6b5b7a;
    border-radius: 8px;
    overflow: hidden;
    backdrop-filter: blur(8px);
    box-shadow: 0 0 40px rgba(100, 70, 150, .5);
    z-index: 12;
}

.titlebar {
    background: rgba(255, 255, 255, .12);
    padding: 10px 14px;
    font-family: monospace;
    font-size: 14px;
    font-weight: bold;
    color: #ddd;
    border-bottom: 1px solid rgba(255, 255, 255, .15);
}

.content {
    padding: 18px;
    color: #fff;
    font-size: 15px;
    line-height: 1.8;
    text-shadow: 0 0 12px rgba(0, 0, 0, .9);
}

/*==========================
      WELCOME
==========================*/

.welcome {
    left: 30px;
    top: 225px;
    width: 300px;
}

.welcome .content {
    font-size: 13px;
    line-height: 1.6;
}

.welcome .content h2 {
    font-size: 20px;
}

/*==========================
      DIRECTORY
==========================*/

.directory {
    position: absolute;
    right: 60px;
    top: 215px;
    width: 220px;
    background: rgba(255, 255, 255, 0.20);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 8px;
    padding: 18px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
    z-index: 15;
}

.directory h3 {
    font-family: monospace;
    font-size: 15px;
    margin-bottom: 15px;
    color: #222;
}

.directory a {
    display: block;
    margin: 10px 0;
    text-decoration: none;
    color: #f7f2ea;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.9);
    transition: .3s;
}

.directory a:hover {
    padding-left: 8px;
    color: #cfa8ff;
}

/*==========================
      NOTEPAD
==========================*/

.notepad {
    position: absolute;
    right: 20px;
    bottom: 20px;
    width: 290px;
    z-index: 5;
}

/*==========================
      KAISER
==========================*/

.kaiser {
    position: absolute;
    left: 10px;
    bottom: 70px;
    width: 200px;
    animation: float 3s ease-in-out infinite;
    z-index: 6;
}

@keyframes float {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-12px);
    }
}

/*==========================
      BOOKMARKS
==========================*/

.bookmarks {
    position: absolute;
    left: 30px;
    top: 170px;
    width: 370px;
    max-height: 70vh;
    overflow-y: auto;
}

.bookmarks-content {
    padding: 18px;
}

.back-home {
    display: inline-block;
    margin-bottom: 20px;
    text-decoration: none;
    color: #d8bfd8;
    font-family: monospace;
    font-size: 14px;
    transition: .3s;
}

.back-home:hover {
    color: #ffffff;
    padding-left: 6px;
}

.bookmark-item {
    margin-bottom: 18px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.bookmark-item:last-child {
    border-bottom: none;
}

.bookmark-item a {
    display: block;
    text-decoration: none;
    font-size: 17px;
    font-weight: bold;
    color: #f4e8ff;
    transition: .3s;
}

.bookmark-item a:hover {
    padding-left: 8px;
    color: #cfa8ff;
}

.bookmark-item p {
    margin-top: 5px;
    font-size: 13px;
    color: #b4a8bd;
    font-style: italic;
    line-height: 1.5;
}

/*==========================
      SCROLLBAR
==========================*/

.bookmarks::-webkit-scrollbar {
    width: 6px;
}

.bookmarks::-webkit-scrollbar-thumb {
    background: #7c2335;
    border-radius: 10px;
}

.bookmarks::-webkit-scrollbar-track {
    background: transparent;
}

/*==========================
      ABOUT (صفحة التعريف)
==========================*/

.about {
    position: absolute;
    left: 30px;
    top: 170px;
    width: 380px;
    max-height: 75vh;
    overflow-y: auto;
    background: rgba(10, 10, 15, 0.92) !important;
    border: 2px solid #6b5b7a !important;
    box-shadow: 0 0 50px rgba(100, 70, 150, 0.6) !important;
    z-index: 12 !important;
}

.about-content {
    padding: 20px !important;
    color: #f0e8f0 !important;
    font-size: 14px;
    line-height: 1.8;
    text-shadow: 0 0 15px rgba(0, 0, 0, 0.95) !important;
}

.about-content h2 {
    font-size: 24px;
    color: #e8d8f0;
    text-align: center;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.about-content h3 {
    font-size: 17px;
    color: #c8b8d8;
    letter-spacing: 1px;
    margin: 10px 0 6px 0;
}

.about-content .divider {
    border: none;
    border-top: 1px solid rgba(180, 160, 200, 0.15);
    margin: 16px 0;
}

.about-content p {
    margin: 6px 0;
    line-height: 1.6;
}

.about-content strong {
    color: #d8c8e8;
    letter-spacing: 0.5px;
}

.about-content .interests-list {
    list-style: none;
    padding: 0;
    margin: 6px 0 0 0;
}

.about-content .interests-list li {
    padding: 3px 0 3px 20px;
    position: relative;
    color: #d8d0e0;
    font-size: 13.5px;
}

.about-content .interests-list li::before {
    content: "✦";
    position: absolute;
    left: 0;
    color: #7c5b8a;
    font-size: 12px;
}

.about-content blockquote {
    font-style: italic;
    color: #d0c8d8;
    font-size: 15px;
    padding: 6px 0 6px 18px;
    border-left: 2px solid #6b5b7a;
    margin: 6px 0;
    letter-spacing: 0.3px;
}

.about-content .thanks {
    text-align: center;
    font-size: 13px;
    color: #b0a8b8;
    letter-spacing: 2px;
    margin-top: 10px;
}

/* صورة Choba في صفحة about */
.about-image {
    display: block;
    margin: 10px auto;
    max-width: 150px;
    border-radius: 8px;
    border: 1px solid rgba(180, 160, 200, 0.2);
    box-shadow: 0 0 30px rgba(100, 70, 150, 0.3);
}

/* سكرول مخصص لصفحة about */
.about::-webkit-scrollbar {
    width: 5px;
}

.about::-webkit-scrollbar-thumb {
    background: #6b5b7a;
    border-radius: 10px;
}

.about::-webkit-scrollbar-track {
    background: transparent;
}

/* رابط العودة للرئيسية في صفحة about */
.about .back-home {
    display: inline-block;
    margin-bottom: 14px;
    color: #b8a8c8;
    text-decoration: none;
    font-family: monospace;
    font-size: 13px;
    transition: 0.3s;
    border-bottom: 1px solid transparent;
}

.about .back-home:hover {
    color: #e8d8f0;
    border-bottom-color: #6b5b7a;
    padding-left: 4px;
}

/*==========================
      MUSIC PLAYER
==========================*/

.music-player {
    position: absolute;
    right: 60px;
    top: 495px;
    width: 165px;
    background: rgba(10, 10, 15, 0.92) !important;
    border: 2px solid #6b5b7a !important;
    border-radius: 8px;
    box-shadow: 0 0 40px rgba(100, 70, 150, 0.5) !important;
    z-index: 16 !important;
    backdrop-filter: blur(8px);
}

.music-player .titlebar {
    background: rgba(255, 255, 255, 0.08);
    padding: 5px 10px;
    font-family: monospace;
    font-size: 10.5px;
    color: #bbb;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.music-player .content {
    padding: 10px !important;
    text-align: center;
}

.music-player button {
    background: rgba(20, 15, 30, 0.85);
    border: 1px solid #6b5b7a;
    color: #f4e8ff;
    padding: 6px 18px;
    font-family: monospace;
    font-size: 11.5px;
    border-radius: 4px;
    cursor: pointer;
    width: 100%;
    transition: 0.3s;
}

.music-player button:hover {
    background: #7c2335;
    color: #fff;
    transform: translateY(-1px);
}

.music-player p {
    font-size: 9.5px !important;
    margin: 6px 0 0 0 !important;
    opacity: 0.85;
}

/*==========================
      MOBILE
==========================*/

@media (max-width: 900px) {
    .top-title {
        top: 35px;
    }
    .top-title h1 {
        font-size: 28px;
        letter-spacing: 3px;
    }
    .top-title p {
        font-size: 10px;
    }
    .welcome {
        left: 15px;
        top: 185px;
        width: 220px;
    }
    .welcome .content {
        font-size: 11px;
        line-height: 1.5;
    }
    .welcome .content h2 {
        font-size: 17px;
    }
    .directory {
        right: 15px;
        top: 175px;
        width: 150px;
        padding: 12px;
    }
    .directory h3 {
        font-size: 13px;
        color: #222;
    }
    .directory a {
        font-size: 12px;
        color: #f7f2ea;
        text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.9);
    }
    .bookmarks {
        left: 15px;
        top: 140px;
        width: 280px;
        max-height: 65vh;
    }
    .bookmark-item a {
        font-size: 14px;
    }
    .bookmark-item p {
        font-size: 11px;
    }
    .notepad {
        width: 190px;
        right: 10px;
        bottom: 15px;
    }
    .kaiser {
        width: 130px;
        left: 5px;
        bottom: 40px;
    }
    .music-player {
        right: 15px;
        top: 380px;
        width: 135px;
    }
    .music-player .titlebar {
        padding: 4px 9px;
        font-size: 9.5px;
    }

    /* صفحة about في الجوال */
    .about {
        left: 15px;
        top: 140px;
        width: 280px;
        max-height: 70vh;
    }
    .about-content {
        font-size: 12.5px;
        padding: 14px !important;
    }
    .about-content h2 {
        font-size: 19px;
    }
    .about-content h3 {
        font-size: 15px;
    }
    .about-content .interests-list li {
        font-size: 12px;
    }
    .about-content blockquote {
        font-size: 13px;
    }
    .about-image {
      animation: shake 2s ease-in-out infinite;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}
/*==========================
      GUESTBOOK (مدمج)
==========================*/

.guestbook-window {
    left: 30px;
    top: 170px;
    width: 500px;
    max-height: 75vh;
    overflow-y: auto;
    background: rgba(10, 10, 15, 0.92) !important;
    border: 2px solid #6b5b7a !important;
    box-shadow: 0 0 50px rgba(100, 70, 150, 0.6) !important;
    z-index: 12 !important;
}

.guestbook-content {
    padding: 18px 20px !important;
    color: #f0e8f0 !important;
    font-size: 13px;
    line-height: 1.6;
    text-shadow: 0 0 15px rgba(0, 0, 0, 0.95) !important;
}

.guestbook-window .back-home {
    display: inline-block;
    margin-bottom: 12px;
    color: #b8a8c8;
    text-decoration: none;
    font-family: monospace;
    font-size: 12px;
    transition: 0.3s;
    border-bottom: 1px solid transparent;
}

.guestbook-window .back-home:hover {
    color: #e8d8f0;
    border-bottom-color: #6b5b7a;
    padding-left: 4px;
}

.guestbook-intro {
    font-style: italic;
    color: #c8c0d0;
    text-align: center;
    font-size: 14px;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(180, 160, 200, 0.08);
}

.guestbook-form {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.guestbook-form input,
.guestbook-form textarea {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(180, 160, 200, 0.15);
    border-radius: 6px;
    padding: 8px 12px;
    color: #e0d8e8;
    font-family: monospace;
    font-size: 12px;
    transition: 0.3s ease;
    resize: vertical;
}

.guestbook-form input:focus,
.guestbook-form textarea:focus {
    outline: none;
    border-color: #6b5b7a;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 20px rgba(100, 70, 150, 0.1);
}

.guestbook-form input::placeholder,
.guestbook-form textarea::placeholder {
    color: #6a6070;
}

#guest-submit {
    background: transparent;
    border: 1px solid rgba(180, 160, 200, 0.2);
    color: #c8c0d0;
    padding: 6px 16px;
    font-family: monospace;
    font-size: 12px;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.3s ease;
    align-self: flex-end;
}

#guest-submit:hover {
    background: rgba(120, 90, 160, 0.2);
    border-color: #6b5b7a;
    color: #f0e8f0;
}

#guestbook-entries {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 4px;
}

.entry {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(180, 160, 200, 0.06);
    border-radius: 8px;
    padding: 10px 14px;
    animation: fadeIn 0.3s ease;
}

.entry .entry-name {
    font-size: 12px;
    font-weight: bold;
    color: #d0c8d8;
    font-family: monospace;
    letter-spacing: 0.3px;
}

.entry .entry-message {
    font-size: 13px;
    color: #c0b8c8;
    margin-top: 4px;
    font-style: italic;
    line-height: 1.5;
}

.entry .entry-date {
    font-size: 9px;
    color: #6a6070;
    margin-top: 6px;
    font-family: monospace;
    text-align: right;
}

.empty-message {
    text-align: center;
    color: #6a6070;
    font-style: italic;
    font-size: 13px;
    padding: 20px 0;
}

.guestbook-window::-webkit-scrollbar {
    width: 5px;
}

.guestbook-window::-webkit-scrollbar-thumb {
    background: #6b5b7a;
    border-radius: 10px;
}

.guestbook-window::-webkit-scrollbar-track {
    background: transparent;
}

@keyframes fadeIn {
    0% { opacity: 0; transform: translateY(6px); }
    100% { opacity: 1; transform: translateY(0); }
}

/*==========================
      MOBILE
==========================*/

@media (max-width: 900px) {

    .guestbook-window {
        left: 15px;
        top: 140px;
        width: 280px;
        max-height: 70vh;
    }

    .guestbook-content {
        font-size: 11px;
        padding: 12px !important;
    }

    .guestbook-form input,
    .guestbook-form textarea {
        font-size: 10px;
        padding: 6px 10px;
    }

    #guest-submit {
        font-size: 10px;
        padding: 4px 12px;
    }

    .entry .entry-name {
        font-size: 10px;
    }

    .entry .entry-message {
        font-size: 11px;
    }

}
        max-width: 120px;
    }
}