/* INDO350 Template HERE ATZY*/


:root {
    --indo350-primary: #e60023;
    --indo350-secondary: #111;
    --indo350-bg: #ffffff;
    --indo350-border: #efefef;
    --indo350-shadow: rgba(0,0,0,0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: var(--indo350-bg);
    color: #333;
    line-height: 1.6;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--indo350-border);
    z-index: 1000;
    padding: 8px 16px;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: var(--indo350-primary);
    text-decoration: none;
    cursor: pointer;
}

.auth-buttons {
    display: flex;
    gap: 8px;
}

.btn {
    padding: 8px 16px;
    border-radius: 24px;
    border: none;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-login {
    background-color: transparent;
    color: var(--indo350-secondary);
    border: 1px solid #dadce0;
}

.btn-login:hover {
    background-color: #f1f3f4;
}

.btn-signup {
    background-color: var(--indo350-primary);
    color: white;
}

.btn-signup:hover {
    background-color: #ad081b;
}
.main-content {
    margin-top: 80px;
    padding: 0 16px;
    max-width: 476px;
    margin-left: auto;
    margin-right: auto;
}
.pin-actions {
    position: static;
    background-color: transparent;
    padding: 16px 0;
    margin: 16px 0;
    z-index: 100;
}

.action-buttons {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.action-left {
    display: flex;
    gap: 8px;
}

.action-right {
    display: flex;
    gap: 8px;
}

.action-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: none;
    background-color: #f1f3f4;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.action-btn:hover {
    background-color: #e8eaed;
    transform: scale(1.05);
}

.btn-visit {
    background-color: #efefef;
    color: var(--indo350-secondary);
    padding: 12px 24px;
    border-radius: 24px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-visit:hover {
    background-color: #dadce0;
}

.btn-save {
    background-color: var(--indo350-primary);
    color: white;
    padding: 12px 24px;
    border-radius: 24px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-save:hover {
    background-color: #ad081b;
    transform: translateY(-1px);
}
.domain-link {
    text-align: center;
    margin: 16px 0;
}

.domain-link a {
    color: var(--indo350-secondary);
    text-decoration: underline;
    font-size: 14px;
    transition: color 0.2s ease;
}

.domain-link a:hover {
    color: var(--indo350-primary);
}
.pin-image {
    width: 100%;
    border-radius: 16px;
    margin-bottom: 16px;
    box-shadow: 0 2px 8px var(--indo350-shadow);
    overflow: hidden;
    position: relative;
}

.pin-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    display: block;
    transition: transform 0.3s ease;
    pointer-events: none;
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    user-drag: none;
}

.pin-image:hover img {
    transform: scale(1.02);
}

.pin-title {
    margin: 16px 0;
}

.pin-title h1 {
    font-size: 28px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--indo350-secondary);
    margin-bottom: 8px;
}

.pin-description {
    margin: 16px 0;
    font-size: 16px;
    line-height: 1.5;
    color: #333;
}

.pin-description ul {
    list-style: none;
    padding-left: 0;
}

.pin-description li {
    margin: 8px 0;
    padding-left: 20px;
    position: relative;
}
.user-profile {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 24px 0;
    padding: 16px 0;
    border-top: 1px solid var(--indo350-border);
}

.user-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 2px 8px var(--indo350-shadow);
}

.user-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
    -webkit-user-drag: none;
}

.user-info {
    flex: 1;
}

.user-name {
    font-weight: 600;
    font-size: 16px;
    color: var(--indo350-secondary);
    text-decoration: none;
    transition: color 0.2s ease;
}

.user-name:hover {
    color: var(--indo350-primary);
}
.comments-section {
    margin: 32px 0;
    padding-top: 24px;
    border-top: 1px solid var(--indo350-border);
}

.comments-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--indo350-secondary);
    margin-bottom: 16px;
}
.footer {
    margin-top: 48px;
    padding: 32px 16px;
    background-color: #f7f7f7;
    text-align: center;
    color: #666;
    font-size: 14px;
    border-top: 1px solid var(--indo350-border);
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #666;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: var(--indo350-primary);
}
@media (max-width: 768px) {
    .header-content {
        padding: 0 8px;
    }
    
    .main-content {
        padding: 0 8px;
    }
    
    .pin-title h1 {
        font-size: 24px;
    }
    
    .auth-buttons {
        gap: 4px;
    }
    
    .btn {
        padding: 6px 12px;
        font-size: 12px;
    }
    
    .footer-links {
        gap: 16px;
    }
}
@keyframes fadeIn {
    from { 
        opacity: 0; 
        transform: translateY(20px); 
    }
    to { 
        opacity: 1; 
        transform: translateY(0); 
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.fade-in {
    animation: fadeIn 0.6s ease-out;
}

.slide-in {
    animation: slideIn 0.5s ease-out;
}
.icon {
    width: 24px;
    height: 24px;
    fill: currentColor;
    transition: all 0.2s ease;
}

.action-btn:hover .icon {
    transform: scale(1.1);
}
::selection {
    background: transparent;
}

::-moz-selection {
    background: transparent;
}
@media print {
    body {
        display: none !important;
    }
}
.pin-title, .pin-description, .user-name {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
body::after {
    content: "INDO350";
    position: absolute;
    left: -9999px;
    opacity: 0;
}