/* ============================================
   RESET & BASE - ORANGE METALIK BERKILAU
   ============================================ */
* { margin: 0; padding: 0; box-sizing: border-box; }

html, body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    min-height: 100vh;
    color: #fff;
    position: relative;
    overflow-x: hidden;
    background: linear-gradient(135deg, #ff6b00 0%, #ff8c00 25%, #ffa500 50%, #ffb347 75%, #ff6b00 100%);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* ============================================
   ANIMASI BOLA-BOLA BACKGROUND
   ============================================ */
.ball-animation {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.ball {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, #fff5cc, #ffd700 30%, #ff8c00 60%, #8b4513 100%);
    box-shadow: 
        inset -8px -8px 20px rgba(0,0,0,0.4),
        inset 5px 5px 15px rgba(255,255,255,0.5),
        0 0 30px rgba(255,165,0,0.6),
        0 0 60px rgba(255,215,0,0.3);
    opacity: 0.6;
    animation: float 20s infinite ease-in-out;
}

.ball::before {
    content: '';
    position: absolute;
    top: 15%; left: 20%;
    width: 30%; height: 30%;
    background: radial-gradient(circle, rgba(255,255,255,0.8), transparent);
    border-radius: 50%;
    filter: blur(3px);
}

.ball-1 { width: 100px; height: 100px; top: 10%; left: 10%; animation-duration: 18s; }
.ball-2 { width: 150px; height: 150px; top: 60%; left: 80%; animation-duration: 22s; animation-delay: -5s; }
.ball-3 { width: 80px; height: 80px; top: 30%; left: 70%; animation-duration: 25s; animation-delay: -10s; }
.ball-4 { width: 120px; height: 120px; top: 80%; left: 20%; animation-duration: 20s; animation-delay: -3s; }
.ball-5 { width: 60px; height: 60px; top: 50%; left: 50%; animation-duration: 28s; animation-delay: -7s; }
.ball-6 { width: 90px; height: 90px; top: 20%; left: 40%; animation-duration: 23s; animation-delay: -12s; }
.ball-7 { width: 70px; height: 70px; top: 70%; left: 60%; animation-duration: 26s; animation-delay: -2s; }
.ball-8 { width: 110px; height: 110px; top: 40%; left: 90%; animation-duration: 19s; animation-delay: -8s; }

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg) scale(1); }
    25% { transform: translate(100px, -100px) rotate(90deg) scale(1.1); }
    50% { transform: translate(-50px, 150px) rotate(180deg) scale(0.9); }
    75% { transform: translate(-100px, -50px) rotate(270deg) scale(1.05); }
}

/* ============================================
   HEADER STICKY
   ============================================ */
.main-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: linear-gradient(135deg, rgba(139,69,19,0.95), rgba(255,140,0,0.95));
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    border-bottom: 3px solid #ffd700;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 2;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #fff;
}

.logo-icon {
    font-size: 2rem;
    filter: drop-shadow(0 0 10px #ffd700);
}

.logo-text {
    font-size: 1.3rem;
    font-weight: bold;
    background: linear-gradient(45deg, #ffd700, #fff, #ffd700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 20px rgba(255,215,0,0.5);
}

.header-buttons {
    display: flex;
    gap: 10px;
}

.btn {
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    display: inline-block;
    text-align: center;
}

.btn-daftar {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #8b4513;
    box-shadow: 0 4px 15px rgba(255,215,0,0.4);
}

.btn-login {
    background: linear-gradient(135deg, #fff, #ffe4b3);
    color: #8b4513;
    box-shadow: 0 4px 15px rgba(255,255,255,0.3);
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255,215,0,0.6);
}

/* ============================================
   SEARCH BAR
   ============================================ */
.search-bar-container {
    background: rgba(139,69,19,0.8);
    padding: 15px 20px;
    position: sticky;
    top: 70px;
    z-index: 999;
    backdrop-filter: blur(10px);
}

.global-search {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    gap: 10px;
    position: relative;
    z-index: 2;
}

.global-search input {
    flex: 1;
    padding: 12px 20px;
    border: 2px solid #ffd700;
    border-radius: 25px;
    background: rgba(255,255,255,0.95);
    color: #333;
    font-size: 1rem;
    outline: none;
}

.global-search button {
    padding: 12px 30px;
    background: linear-gradient(135deg, #ffd700, #ff8c00);
    color: #fff;
    border: none;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
}

.global-search button:hover {
    transform: scale(1.05);
}

/* ============================================
   MAIN CONTENT
   ============================================ */
.main-content {
    position: relative;
    z-index: 1;
    min-height: calc(100vh - 200px);
    padding: 20px;
}

.content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.content-wrapper.with-sidebar {
    grid-template-columns: 1fr 320px;
}

.page-title {
    font-size: 2.2rem;
    color: #ffd700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    margin-bottom: 10px;
    text-align: center;
}

.page-subtitle {
    text-align: center;
    color: #fff;
    margin-bottom: 30px;
    font-size: 1.1rem;
}

/* ============================================
   POSTS GRID
   ============================================ */
.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
}

.post-card {
    background: linear-gradient(135deg, rgba(139,69,19,0.9), rgba(255,140,0,0.85));
    border: 2px solid #ffd700;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.post-card::before {
    content: '';
    position: absolute;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,215,0,0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.6s;
    opacity: 0;
}

.post-card:hover::before {
    opacity: 1;
    animation: shine 1.5s;
}

@keyframes shine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(255,215,0,0.4);
}

.post-category-badge {
    display: inline-block;
    background: linear-gradient(135deg, #ffd700, #ff8c00);
    color: #8b4513;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.post-title {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.post-title a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

.post-title a:hover {
    color: #ffd700;
}

.post-meta {
    color: #ffe4b3;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.post-preview {
    background: rgba(0,0,0,0.3);
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 15px;
}

.preview-label {
    color: #ffd700;
    font-weight: bold;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.prediction-balls {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-bottom: 10px;
}

.ball-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, #fff5cc, #ffd700 30%, #ff8c00 60%, #8b4513 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: bold;
    font-size: 1.1rem;
    box-shadow: 
        inset -3px -3px 8px rgba(0,0,0,0.4),
        inset 2px 2px 5px rgba(255,255,255,0.5),
        0 3px 10px rgba(0,0,0,0.3);
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.preview-info {
    display: flex;
    justify-content: space-around;
    color: #fff;
    font-size: 0.9rem;
}

.btn-readmore {
    display: block;
    text-align: center;
    padding: 10px;
    background: linear-gradient(135deg, #ffd700, #ff8c00);
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    transition: all 0.3s;
}

.btn-readmore:hover {
    transform: scale(1.02);
    box-shadow: 0 5px 15px rgba(255,215,0,0.5);
}

/* ============================================
   SINGLE POST
   ============================================ */
.breadcrumb {
    background: rgba(0,0,0,0.3);
    padding: 10px 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: #ffd700;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.single-post {
    background: linear-gradient(135deg, rgba(139,69,19,0.9), rgba(255,140,0,0.85));
    border: 2px solid #ffd700;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.post-title-main {
    font-size: 2rem;
    color: #ffd700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    margin-bottom: 15px;
}

.post-meta-main {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    color: #ffe4b3;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(255,215,0,0.3);
}

.post-meta-main a {
    color: #ffd700;
    text-decoration: none;
}

.prediction-section, .shio-section, .bbfs-section {
    margin-bottom: 30px;
}

.prediction-section h2, .shio-section h2, .bbfs-section h2 {
    color: #ffd700;
    margin-bottom: 15px;
    font-size: 1.5rem;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

.prediction-table, .shio-table, .bbfs-table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(0,0,0,0.3);
    border-radius: 10px;
    overflow: hidden;
}

.prediction-table th, .shio-table th, .bbfs-table th {
    background: linear-gradient(135deg, #ffd700, #ff8c00);
    color: #8b4513;
    padding: 12px;
    font-weight: bold;
    text-align: center;
}

.prediction-table td, .shio-table td, .bbfs-table td {
    padding: 20px;
    text-align: center;
    border: 1px solid rgba(255,215,0,0.3);
}

.billiard-ball {
    display: inline-block;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, #fff5cc, #ffd700 30%, #ff8c00 60%, #8b4513 100%);
    line-height: 60px;
    color: #fff;
    font-weight: bold;
    font-size: 1.8rem;
    box-shadow: 
        inset -5px -5px 15px rgba(0,0,0,0.4),
        inset 3px 3px 8px rgba(255,255,255,0.5),
        0 5px 15px rgba(0,0,0,0.4);
    text-shadow: 1px 1px 3px rgba(0,0,0,0.6);
    position: relative;
}

.billiard-ball::before {
    content: '';
    position: absolute;
    top: 15%; left: 20%;
    width: 30%; height: 30%;
    background: radial-gradient(circle, rgba(255,255,255,0.8), transparent);
    border-radius: 50%;
    filter: blur(2px);
}

.bbfs-ball {
    background: radial-gradient(circle at 30% 30%, #fff, #ff6b6b 30%, #c92a2a 60%, #5a0000 100%);
}

.shio-badge {
    display: inline-block;
    background: linear-gradient(135deg, #ffd700, #ff8c00);
    color: #8b4513;
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: bold;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(255,215,0,0.4);
}

.bbfs-note {
    color: #ffe4b3;
    font-style: italic;
    margin-top: 10px;
    font-size: 0.9rem;
}

.share-section {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 2px solid rgba(255,215,0,0.3);
}

.share-section h3 {
    color: #ffd700;
    margin-bottom: 15px;
}

.share-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.btn-share {
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    color: #fff;
    font-weight: bold;
    transition: all 0.3s;
}

.btn-share.fb { background: #1877f2; }
.btn-share.tw { background: #1da1f2; }
.btn-share.wa { background: #25d366; }
.btn-share.tg { background: #0088cc; }

.btn-share:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

/* ============================================
   SIDEBAR
   ============================================ */
.sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sidebar > div {
    background: linear-gradient(135deg, rgba(139,69,19,0.9), rgba(255,140,0,0.85));
    border: 2px solid #ffd700;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

.sidebar h3 {
    color: #ffd700;
    margin-bottom: 15px;
    font-size: 1.2rem;
    border-bottom: 2px solid rgba(255,215,0,0.3);
    padding-bottom: 10px;
}

.sidebar-search form {
    display: flex;
    gap: 8px;
}

.sidebar-search input {
    flex: 1;
    padding: 8px 12px;
    border: 2px solid #ffd700;
    border-radius: 20px;
    background: rgba(255,255,255,0.95);
    color: #333;
    outline: none;
}

.sidebar-search button {
    padding: 8px 15px;
    background: linear-gradient(135deg, #ffd700, #ff8c00);
    color: #fff;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    font-weight: bold;
}

.sidebar-posts ul, .sidebar-categories ul {
    list-style: none;
}

.sidebar-posts li, .sidebar-categories li {
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255,215,0,0.2);
}

.sidebar-posts li:last-child, .sidebar-categories li:last-child {
    border-bottom: none;
}

.sidebar-posts a {
    color: #fff;
    text-decoration: none;
    display: block;
    transition: color 0.3s;
}

.sidebar-posts a:hover {
    color: #ffd700;
}

.sidebar-posts a strong {
    display: block;
    font-size: 0.95rem;
    margin-bottom: 3px;
}

.sidebar-posts a small {
    color: #ffe4b3;
    font-size: 0.8rem;
}

.sidebar-categories a {
    color: #fff;
    text-decoration: none;
    display: block;
    padding: 5px 0;
    transition: all 0.3s;
}

.sidebar-categories a:hover {
    color: #ffd700;
    padding-left: 10px;
}

/* ============================================
   FOOTER
   ============================================ */
.main-footer {
    background: linear-gradient(135deg, rgba(90,40,10,0.95), rgba(139,69,19,0.95));
    padding: 40px 20px 20px;
    margin-top: 50px;
    border-top: 3px solid #ffd700;
    position: relative;
    z-index: 1;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.footer-section h3 {
    color: #ffd700;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 8px;
}

.footer-section a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #ffd700;
}

.footer-section p {
    color: #ffe4b3;
    line-height: 1.6;
}

/* ============================================
   ADMIN PANEL
   ============================================ */
.login-body, .admin-body {
    background: linear-gradient(135deg, #ff6b00, #ffa500);
    min-height: 100vh;
    position: relative;
}

.login-container {
    max-width: 400px;
    margin: 100px auto;
    background: rgba(139,69,19,0.95);
    padding: 40px;
    border-radius: 15px;
    border: 2px solid #ffd700;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
    position: relative;
    z-index: 2;
}

.login-container h1 {
    color: #ffd700;
    text-align: center;
    margin-bottom: 30px;
}

.login-container label {
    display: block;
    color: #ffd700;
    margin-bottom: 5px;
    font-weight: bold;
}

.login-container input {
    width: 100%;
    padding: 12px;
    border: 2px solid #ffd700;
    border-radius: 8px;
    background: rgba(255,255,255,0.95);
    color: #333;
    margin-bottom: 15px;
    font-size: 1rem;
}

.login-container .btn-login {
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, #ffd700, #ff8c00);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    cursor: pointer;
    font-weight: bold;
}

.alert-error {
    background: #dc3545;
    color: #fff;
    padding: 10px;
    border-radius: 8px;
    margin-bottom: 15px;
}

.alert-success {
    background: #28a745;
    color: #fff;
    padding: 10px;
    border-radius: 8px;
    margin-bottom: 15px;
}

.admin-header {
    background: linear-gradient(135deg, rgba(90,40,10,0.95), rgba(139,69,19,0.95));
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    border-bottom: 3px solid #ffd700;
    position: relative;
    z-index: 2;
}

.admin-header h1 {
    color: #ffd700;
    font-size: 1.5rem;
}

.admin-header .btn {
    margin-left: 10px;
}

.admin-container {
    max-width: 1400px;
    margin: 30px auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.stat-card {
    background: linear-gradient(135deg, rgba(139,69,19,0.9), rgba(255,140,0,0.85));
    border: 2px solid #ffd700;
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: #ffd700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.stat-label {
    color: #fff;
    font-size: 1rem;
    margin-top: 5px;
}

.admin-container h2 {
    color: #ffd700;
    margin-bottom: 20px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

.table-responsive {
    overflow-x: auto;
    background: rgba(139,69,19,0.9);
    border-radius: 15px;
    border: 2px solid #ffd700;
    padding: 15px;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    color: #fff;
}

.admin-table th {
    background: linear-gradient(135deg, #ffd700, #ff8c00);
    color: #8b4513;
    padding: 12px;
    text-align: left;
    font-weight: bold;
}

.admin-table td {
    padding: 12px;
    border-bottom: 1px solid rgba(255,215,0,0.2);
}

.admin-table tr:hover {
    background: rgba(255,215,0,0.1);
}

.admin-table a {
    color: #ffd700;
    text-decoration: none;
}

.btn-small {
    padding: 6px 12px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 0.85rem;
    display: inline-block;
    margin: 2px;
    color: #fff;
}

.btn-edit {
    background: #17a2b8;
}

.btn-delete {
    background: #dc3545;
}

.btn-danger {
    background: #dc3545;
    color: #fff;
}

.edit-form, .settings-form {
    background: rgba(139,69,19,0.9);
    border: 2px solid #ffd700;
    border-radius: 15px;
    padding: 30px;
    max-width: 700px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    color: #ffd700;
    margin-bottom: 8px;
    font-weight: bold;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #ffd700;
    border-radius: 8px;
    background: rgba(255,255,255,0.95);
    color: #333;
    font-size: 1rem;
}

.form-group small {
    display: block;
    color: #ffe4b3;
    margin-top: 5px;
    font-size: 0.85rem;
}

.bbfs-inputs {
    display: flex;
    gap: 10px;
}

.bbfs-inputs input {
    width: 70px;
    text-align: center;
}

.no-results {
    text-align: center;
    padding: 50px;
    background: rgba(139,69,19,0.9);
    border-radius: 15px;
    border: 2px solid #ffd700;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 992px) {
    .content-wrapper.with-sidebar {
        grid-template-columns: 1fr;
    }
    
    .sidebar {
        order: -1;
    }
}

@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        gap: 15px;
    }
    
    .logo-text {
        font-size: 1.1rem;
    }
    
    .page-title {
        font-size: 1.6rem;
    }
    
    .post-title-main {
        font-size: 1.4rem;
    }
    
    .posts-grid {
        grid-template-columns: 1fr;
    }
    
    .billiard-ball {
        width: 50px;
        height: 50px;
        line-height: 50px;
        font-size: 1.5rem;
    }
    
    .ball-number {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .admin-header {
        flex-direction: column;
        text-align: center;
    }
    
    .admin-header h1 {
        font-size: 1.2rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .search-bar-container {
        top: 110px;
    }
    
    .ball {
        opacity: 0.4;
    }
}

@media (max-width: 480px) {
    .main-content {
        padding: 10px;
    }
    
    .single-post {
        padding: 15px;
    }
    
    .post-card {
        padding: 15px;
    }
    
    .billiard-ball {
        width: 40px;
        height: 40px;
        line-height: 40px;
        font-size: 1.2rem;
    }
    
    .bbfs-inputs {
        flex-wrap: wrap;
    }
    
    .bbfs-inputs input {
        width: calc(33% - 10px);
    }
}

.animate-in {
    animation: fadeInUp 0.6s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}