/* ════════════════════════════════════════════════════════
   TULIO PAINT
   ════════════════════════════════════════════════════════ */
.xp-paint {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #c0c0c0;
}

.xp-paint-toolbar {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 4px 8px;
    background: #d4d0c8;
    border-bottom: 1px solid #999;
    flex-shrink: 0;
    flex-wrap: wrap;
}

.xp-paint-tool {
    width: 28px;
    height: 28px;
    font-size: 14px;
    background: #d4d0c8;
    border: 1px solid #888;
    border-radius: 2px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.xp-paint-tool:hover {
    background: #b8d4f8;
}

.xp-paint-tool.active {
    background: #b8c8e8;
    border-color: #336;
    box-shadow: inset 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.xp-paint-label {
    font-size: 11px;
    font-family: 'Tahoma', sans-serif;
    margin-left: 4px;
}

.xp-paint-range {
    width: 70px;
    cursor: pointer;
}

.xp-paint-canvas {
    display: block;
    cursor: crosshair;
    max-width: 100%;
    border: 2px inset #888;
    background: #fff;
    flex: 1;
    min-height: 0;
}

.xp-paint-palette {
    display: flex;
    flex-wrap: wrap;
    gap: 2px;
    padding: 4px 8px;
    background: #d4d0c8;
    border-top: 1px solid #999;
    flex-shrink: 0;
}

.xp-paint-swatch {
    width: 18px;
    height: 18px;
    border: 1px solid #555;
    cursor: pointer;
    flex-shrink: 0;
}

.xp-paint-swatch:hover {
    transform: scale(1.2);
}

/* ════════════════════════════════════════════════════════
   TULIO EARTH
   ════════════════════════════════════════════════════════ */
.xp-earth {
    display: flex;
    height: 100%;
    background: #0a0a18;
    min-height: 300px;
}

.xp-earth-sidebar {
    width: 170px;
    flex-shrink: 0;
    background: #111827;
    border-right: 1px solid #334;
    padding: 10px 8px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    overflow-y: auto;
    font-family: 'Tahoma', sans-serif;
    font-size: 11px;
    color: #aaccff;
}

.xp-earth-title {
    font-size: 12px;
    font-weight: bold;
    color: #4af;
    margin-bottom: 4px;
}

.xp-earth-search-label {
    color: #8a9;
    font-size: 10px;
}

.xp-earth-search {
    width: 100%;
    padding: 3px 5px;
    font-size: 11px;
    background: #1a2233;
    border: 1px solid #336;
    color: #aef;
    box-sizing: border-box;
}

.xp-earth-btn {
    font-size: 10px;
    padding: 3px 8px;
    background: linear-gradient(180deg, #2a4a8a 0%, #1a2a6a 100%);
    border: 1px solid #446;
    color: #aef;
    cursor: pointer;
    border-radius: 2px;
    margin-right: 4px;
}

.xp-earth-btn:hover {
    background: linear-gradient(180deg, #3a5aa0 0%, #2a3a7a 100%);
}

.xp-earth-coords {
    font-size: 10px;
    color: #7a9;
    line-height: 1.8;
}

.xp-earth-zoom {
    display: flex;
    gap: 4px;
    flex-wrap: wrap;
}

.xp-earth-layers {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.xp-earth-chk {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    cursor: pointer;
}

.xp-earth-globe-wrap {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(ellipse at center, #0c1a3a 0%, #050a12 100%);
    overflow: hidden;
    position: relative;
}

/* Stars background */
.xp-earth-globe-wrap::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(1px 1px at 10% 20%, rgba(255, 255, 255, 0.8) 0%, transparent 100%),
        radial-gradient(1px 1px at 30% 50%, rgba(255, 255, 255, 0.6) 0%, transparent 100%),
        radial-gradient(1px 1px at 70% 15%, rgba(255, 255, 255, 0.9) 0%, transparent 100%),
        radial-gradient(1px 1px at 85% 70%, rgba(255, 255, 255, 0.7) 0%, transparent 100%),
        radial-gradient(1px 1px at 50% 80%, rgba(255, 255, 255, 0.5) 0%, transparent 100%),
        radial-gradient(1px 1px at 20% 85%, rgba(255, 255, 255, 0.6) 0%, transparent 100%),
        radial-gradient(1px 1px at 60% 40%, rgba(255, 255, 255, 0.4) 0%, transparent 100%),
        radial-gradient(1px 1px at 90% 30%, rgba(255, 255, 255, 0.7) 0%, transparent 100%);
}

.xp-earth-globe {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    position: relative;
    overflow: hidden;
    box-shadow:
        -20px -10px 40px rgba(0, 80, 200, 0.3) inset,
        20px 10px 40px rgba(0, 0, 0, 0.8) inset,
        0 0 40px rgba(60, 120, 255, 0.4);
    animation: earthRotateFloat 12s linear infinite;
}

@keyframes earthRotateFloat {
    0% {
        transform: rotateY(0deg) translateY(0);
    }

    50% {
        transform: rotateY(180deg) translateY(-6px);
    }

    100% {
        transform: rotateY(360deg) translateY(0);
    }
}

.xp-earth-globe-inner {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background:
        radial-gradient(ellipse at 40% 35%, rgba(255, 255, 255, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 35% 60%, #2d6a3f 0%, #2d6a3f 18%, transparent 20%),
        radial-gradient(ellipse at 60% 40%, #1a4da0 0%, transparent 30%),
        radial-gradient(ellipse at 70% 65%, #2d6a3f 0%, #2d6a3f 22%, transparent 24%),
        radial-gradient(ellipse at 50% 30%, #2d6a3f 0%, #2d6a3f 12%, transparent 14%),
        radial-gradient(ellipse at 80% 25%, #2d6a3f 0%, #2d6a3f 8%, transparent 10%),
        linear-gradient(180deg, #1a4da0 0%, #0e3580 50%, #0a2060 100%);
    animation: earthSpin 12s linear infinite;
}

@keyframes earthSpin {
    from {
        background-position: 0 0;
    }

    to {
        background-position: 400px 0;
    }
}

.xp-earth-grid {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background:
        repeating-linear-gradient(0deg, transparent, transparent 30px, rgba(100, 160, 255, 0.08) 30px, rgba(100, 160, 255, 0.08) 31px),
        repeating-linear-gradient(90deg, transparent, transparent 30px, rgba(100, 160, 255, 0.08) 30px, rgba(100, 160, 255, 0.08) 31px);
    animation: earthSpin 12s linear infinite;
}

.xp-earth-clouds {
    position: absolute;
    inset: -10%;
    border-radius: 50%;
    background:
        radial-gradient(ellipse at 20% 30%, rgba(255, 255, 255, 0.25) 0%, transparent 30%),
        radial-gradient(ellipse at 70% 20%, rgba(255, 255, 255, 0.2) 0%, transparent 25%),
        radial-gradient(ellipse at 50% 75%, rgba(255, 255, 255, 0.15) 0%, transparent 20%);
    animation: earthCloudSpin 18s linear infinite;
}

@keyframes earthCloudSpin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* ════════════════════════════════════════════════════════
   TULIO BURNING ROM
   ════════════════════════════════════════════════════════ */
.xp-burn {
    display: flex;
    flex-direction: column;
    background: #1a1a1a;
    color: #ddd;
    font-family: 'Tahoma', sans-serif;
    font-size: 12px;
    height: 100%;
    min-height: 280px;
    padding: 0;
}

.xp-burn-header {
    background: linear-gradient(180deg, #2a0000 0%, #1a0000 100%);
    padding: 8px 12px;
    border-bottom: 1px solid #440000;
}

.xp-burn-logo {
    font-size: 13px;
    font-weight: bold;
    color: #ff8800;
    letter-spacing: 1px;
}

.xp-burn-config {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: #222;
    border-bottom: 1px solid #333;
    flex-wrap: wrap;
}

.xp-burn-select {
    background: #111;
    color: #ddd;
    border: 1px solid #555;
    padding: 2px 4px;
    font-size: 11px;
}

.xp-burn-tracklist {
    flex: 1;
    overflow-y: auto;
    background: #111;
    border: 1px solid #333;
    margin: 6px 12px;
    scrollbar-width: thin;
    scrollbar-color: #555 #222;
}

.xp-burn-track {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 4px 8px;
    border-bottom: 1px solid #222;
    cursor: default;
}

.xp-burn-track:hover {
    background: #1a2a1a;
}

.xp-burn-tracknum {
    color: #666;
    width: 20px;
    flex-shrink: 0;
}

.xp-burn-trackname {
    flex: 1;
    color: #adf;
    font-size: 11px;
}

.xp-burn-tracksize {
    color: #777;
    font-size: 10px;
    white-space: nowrap;
}

.xp-burn-total {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 4px 12px;
    font-size: 11px;
    color: #aaa;
}

.xp-burn-usage-bar {
    height: 8px;
    background: #333;
    border: 1px solid #555;
}

.xp-burn-usage-fill {
    height: 100%;
    background: linear-gradient(90deg, #0080ff, #00c8ff);
    transition: width 0.3s;
}

.xp-burn-progress-label {
    padding: 4px 12px;
    font-size: 11px;
    color: #8cf;
    min-height: 18px;
}

.xp-burn-prog-bar {
    height: 14px;
    background: #222;
    border: 1px solid #444;
    margin: 0 12px;
}

.xp-burn-prog-fill {
    height: 100%;
    background: linear-gradient(90deg, #ff4400, #ff8800, #ffcc00);
    box-shadow: 0 0 6px rgba(255, 136, 0, 0.6);
    transition: width 0.15s linear;
}

.xp-burn-btn {
    margin: 8px 12px;
    padding: 7px 18px;
    background: linear-gradient(180deg, #cc4400 0%, #882200 100%);
    border: 1px solid #aa3300;
    color: #fff;
    font-weight: bold;
    font-size: 12px;
    cursor: pointer;
    border-radius: 3px;
    letter-spacing: 1px;
    width: calc(100% - 24px);
    box-sizing: border-box;
}

.xp-burn-btn:hover:not(:disabled) {
    background: linear-gradient(180deg, #dd5500 0%, #992200 100%);
}

.xp-burn-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* ════════════════════════════════════════════════════════
   TULIO MESSENGER
   ════════════════════════════════════════════════════════ */
.xp-msn {
    display: flex;
    height: 100%;
    min-height: 280px;
    font-family: 'Tahoma', sans-serif;
    font-size: 12px;
    background: #e8e8f5;
}

.xp-msn-contacts {
    width: 170px;
    flex-shrink: 0;
    background: linear-gradient(180deg, #e0e8ff 0%, #d0d8f0 100%);
    border-right: 1px solid #aaa;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.xp-msn-my-status {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px;
    background: linear-gradient(180deg, #4a78e0 0%, #2a58c0 100%);
    color: #fff;
    border-bottom: 1px solid #1a3890;
    flex-shrink: 0;
}

.xp-msn-me {
    font-weight: bold;
    font-size: 11px;
    flex: 1;
}

.xp-msn-status-label {
    font-size: 9px;
    color: #b8d8ff;
}

.xp-msn-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #aaa;
    border: 1px solid #888;
    flex-shrink: 0;
}

.xp-msn-dot.online {
    background: #22cc44;
    border-color: #118822;
}

.xp-msn-group-label {
    font-size: 10px;
    color: #336;
    background: #d0d8ec;
    padding: 4px 8px;
    border-bottom: 1px solid #b8c4e0;
    font-weight: bold;
}

.xp-msn-contact {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 8px;
    cursor: pointer;
    border-bottom: 1px solid #c8d0e8;
}

.xp-msn-contact:hover {
    background: #c8d8f8;
}

.xp-msn-contact.offline {
    cursor: default;
    opacity: 0.5;
}

.xp-msn-avatar {
    width: 28px;
    height: 28px;
    border-radius: 3px;
    border: 1px solid #aaa;
    object-fit: cover;
    flex-shrink: 0;
}

.xp-msn-contact-info {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.xp-msn-contact-name {
    font-size: 11px;
    font-weight: bold;
    color: #224;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.xp-msn-contact-name.offline {
    font-weight: normal;
    color: #778;
}

.xp-msn-contact-status {
    font-size: 9px;
    color: #556;
    font-style: italic;
}

/* Chat panel */
.xp-msn-chat {
    flex: 1;
    display: flex;
    flex-direction: column;
    background: #f0f4ff;
    min-width: 0;
}

.xp-msn-chat-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 6px 10px;
    background: linear-gradient(180deg, #4a78e0 0%, #2a58c0 100%);
    color: #fff;
    font-size: 11px;
    font-weight: bold;
    flex-shrink: 0;
}

.xp-msn-close-chat {
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    font-size: 16px;
    line-height: 1;
    padding: 0 2px;
}

.xp-msn-close-chat:hover {
    color: #ffaaaa;
}

.xp-msn-messages {
    flex: 1;
    overflow-y: auto;
    padding: 8px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    scrollbar-width: thin;
    scrollbar-color: #aaa #eef;
}

.xp-msn-msg {
    display: flex;
    flex-direction: column;
    max-width: 85%;
}

.xp-msn-msg--me {
    align-self: flex-end;
    align-items: flex-end;
}

.xp-msn-msg--tulio {
    align-self: flex-start;
    align-items: flex-start;
}

.xp-msn-msg-author {
    font-size: 9px;
    color: #778;
    margin-bottom: 2px;
    font-weight: bold;
}

.xp-msn-msg--tulio .xp-msn-msg-author {
    color: #3060c0;
}

.xp-msn-msg-text {
    font-size: 12px;
    padding: 5px 10px;
    border-radius: 10px;
    line-height: 1.4;
    word-break: break-word;
}

.xp-msn-msg--me .xp-msn-msg-text {
    background: #4a78e0;
    color: #fff;
    border-bottom-right-radius: 2px;
}

.xp-msn-msg--tulio .xp-msn-msg-text {
    background: #fff;
    color: #222;
    border: 1px solid #c8d0e8;
    border-bottom-left-radius: 2px;
}

.xp-msn-input-area {
    display: flex;
    gap: 4px;
    padding: 6px;
    background: #e0e8ff;
    border-top: 1px solid #b8c4e0;
    flex-shrink: 0;
}

.xp-msn-input {
    flex: 1;
    padding: 5px 8px;
    font-size: 12px;
    border: 1px solid #99aad0;
    background: #fff;
    color: #222;
    font-family: 'Tahoma', sans-serif;
}

.xp-msn-send {
    padding: 5px 14px;
    background: linear-gradient(180deg, #4a78e0 0%, #2a58c0 100%);
    border: 1px solid #1a3890;
    color: #fff;
    font-size: 11px;
    cursor: pointer;
    border-radius: 2px;
    white-space: nowrap;
}

.xp-msn-send:hover {
    background: linear-gradient(180deg, #5a88f0 0%, #3a68d0 100%);
}

/* README Position Fix */
.xp-icon--readme {
    position: absolute !important;
    top: 20px;
    right: 20px;
}

/* CLIPPY */
#xpClippy {
    position: fixed;
    bottom: 40px;
    right: 20px;
    z-index: 999999;
    display: none;
    flex-direction: column;
    align-items: center;
    pointer-events: none;
    font-family: 'Tahoma', sans-serif;
}

.clippy-bubble {
    background: #ffffcc;
    border: 1px solid #000;
    border-radius: 8px;
    padding: 10px;
    font-size: 11px;
    color: #000;
    margin-bottom: 10px;
    max-width: 150px;
    box-shadow: 2px 2px 0 rgba(0, 0, 0, 0.2);
    position: relative;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.clippy-bubble.speaking {
    opacity: 1;
    transform: translateY(0);
}

.clippy-bubble::after {
    content: '';
    position: absolute;
    bottom: -8px;
    right: 30px;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid #000;
}

.clippy-icon {
    font-size: 40px;
    filter: drop-shadow(2px 2px 2px rgba(0, 0, 0, 0.3));
    animation: clippyFloat 3s ease-in-out infinite;
}

@keyframes clippyFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

/* UNLIMITED VOID EFFECT (BLUE HUE) */
.xp-void-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999999;
    background: rgba(0, 191, 255, 0.25);
    pointer-events: none;
    animation: voidPulse 4s ease-in-out infinite, voidFlicker 0.3s ease-in-out infinite alternate;
    mix-blend-mode: screen;
}

@keyframes voidPulse {

    0%,
    100% {
        background: rgba(0, 160, 255, 0.2);
    }

    50% {
        background: rgba(0, 220, 255, 0.45);
    }
}

@keyframes voidFlicker {
    from {
        opacity: 0.8;
    }

    to {
        opacity: 1;
    }
}

@keyframes voidFlicker {
    from {
        opacity: 0.8;
    }

    to {
        opacity: 1;
    }
}

/* ════════════════════════════════════════════════════════
   ORKUT & FLOGÃO MOCKUPS (IE CONTENT)
   ════════════════════════════════════════════════════════ */
.xp-orkut-wrap {
    display: flex;
    flex-direction: column;
    width: 100%;
    min-height: 100%;
    background: #BFD0EA;
    font-family: 'Tahoma', 'Verdana', sans-serif;
    color: #333;
}

.xp-orkut-header {
    background: #BFD0EA;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid #5d7cae;
}

.xp-orkut-logo {
    font-size: 24px;
    font-weight: bold;
    color: #ed2c91;
    text-shadow: 1px 1px 0 #fff;
    font-family: 'Arial Black', sans-serif;
}

.xp-orkut-main {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 15px;
    padding: 15px;
}

.xp-orkut-sidebar {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.xp-orkut-content {
    background: #fff;
    border: 1px solid #5d7cae;
    border-radius: 8px;
    padding: 15px;
}

.xp-orkut-box {
    background: #fff;
    border: 1px solid #5d7cae;
    border-radius: 8px;
    padding: 10px;
    margin-bottom: 10px;
}

.xp-orkut-box h4 {
    margin: 0 0 8px 0;
    color: #5d7cae;
    font-size: 11px;
    border-bottom: 1px solid #d8e4f5;
    display: flex;
    padding-bottom: 2px;
    font-weight: bold;
    justify-content: space-between;
}

.xp-orkut-box h4 span {
    color: #999;
    font-weight: normal;
}

.xp-orkut-profile-pic {
    width: 100%;
    border: 1px solid #5d7cae;
    padding: 2px;
    background: #fff;
    box-sizing: border-box;
}

.xp-orkut-info-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 11px;
    margin-top: 10px;
}

.xp-orkut-info-table tr td:first-child {
    width: 160px;
    text-align: right;
    padding: 4px 8px;
    color: #5d7cae;
    background: #eef2f9;
}

.xp-orkut-info-table tr td:last-child {
    padding: 4px 10px;
    background: #fff;
}

.xp-orkut-info-table tr:nth-child(even) td:last-child {
    background: #f8fafd;
}

.xp-orkut-social-tab {
    background: #5d7cae;
    color: #fff;
    padding: 4px 12px;
    font-size: 11px;
    font-weight: bold;
    display: inline-block;
}

.xp-orkut-name-header {
    font-size: 20px;
    color: #333;
    margin: 0 0 10px 0;
    font-family: 'Verdana', sans-serif;
}

.xp-orkut-stats {
    display: flex;
    gap: 15px;
    font-size: 10px;
    margin-bottom: 10px;
    color: #666;
}

.xp-orkut-stat-item {
    display: flex;
    align-items: center;
    gap: 3px;
    cursor: pointer;
}

.xp-orkut-stat-item:hover {
    text-decoration: underline;
}

.xp-orkut-grid-9 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-top: 10px;
}

.xp-orkut-grid-item {
    text-align: center;
    font-size: 9px;
    color: #5d7cae;
    overflow: hidden;
    text-overflow: ellipsis;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.xp-orkut-grid-img {
    width: 100%;
    aspect-ratio: 1;
    background: #ddd;
    border: 1px solid #5d7cae;
    display: block;
    object-fit: cover;
    border-radius: 4px;
    /* Xbox 360 style */
    box-shadow: inset 0 0 4px rgba(0, 0, 0, 0.2);
}

.xp-orkut-top-meta {
    font-size: 11px;
    color: #fff;
    display: flex;
    gap: 15px;
}

.xp-orkut-search-bar {
    display: flex;
    align-items: center;
    background: #fff;
    border: 1px solid #5d7cae;
    padding: 1px 4px;
}

.xp-orkut-search-input {
    border: none;
    font-size: 11px;
    width: 100px;
    outline: none;
}

.xp-orkut-profile-left-links {
    font-size: 11px;
    color: #5d7cae;
    margin-top: 10px;
    border-top: 1px solid #eee;
    padding-top: 10px;
}

.xp-orkut-profile-left-links div {
    padding: 3px 0;
    cursor: pointer;
}

.xp-orkut-profile-left-links div:hover {
    text-decoration: underline;
}

.xp-orkut-profile-pic {
    width: 100%;
    border: 1px solid #ccc;
    background: #eee;
}

.xp-orkut-badge-row {
    display: flex;
    gap: 4px;
    margin-top: 5px;
}

.xp-orkut-badge {
    height: 14px;
    filter: drop-shadow(0 1px 0 #fff);
}

.xp-orkut-lucky {
    background: #FEEFB3;
    border: 1px solid #999;
    padding: 5px;
    font-size: 10px;
    color: #666;
    margin-top: 10px;
}

.xp-orkut-h1 {
    font-size: 16px;
    color: #5d7cae;
    margin: 0 0 10px 0;
}

.xp-orkut-nav {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 11px;
}

.xp-orkut-nav li {
    padding: 3px 0;
    color: #5d7cae;
    cursor: pointer;
}

.xp-orkut-nav li:hover {
    text-decoration: underline;
}

/* FLOGÃO */
.xp-flogao-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    min-height: 100%;
    background: #f0f0f0;
    font-family: 'Trebuchet MS', sans-serif;
}

.xp-flogao-header {
    width: 100%;
    background: #333;
    color: #fff;
    padding: 10px;
    text-align: center;
    font-size: 20px;
    font-weight: bold;
}

.xp-flogao-photo-box {
    background: #fff;
    border: 1px solid #999;
    padding: 10px;
    margin-top: 20px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
}

.xp-flogao-img {
    max-width: 400px;
    display: block;
    border: 1px solid #eee;
}

.xp-flogao-comments {
    width: 420px;
    margin-top: 15px;
    background: #fff;
    border: 1px solid #ccc;
    padding: 10px;
}

.xp-flogao-comment {
    border-bottom: 1px dotted #ccc;
    padding: 5px 0;
    font-size: 11px;
}

.xp-flogao-comment b {
    color: #d11;
}