/*
Theme Name: Site Deleted
Theme URI: https://example.com/
Author: Admin
Author URI: https://example.com/
Description: Тема для отображения сообщения об удалении сайта
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: site-deleted
*/

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    overflow: hidden;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
}

/* Main Container */
.deleted-container {
    text-align: center;
    padding: 20px;
    max-width: 600px;
    width: 90%;
    animation: fadeIn 1.5s ease-in-out;
}

/* Fade In Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Sad Emoji Animation */
.sad-emoji {
    font-size: 120px;
    display: inline-block;
    animation: sadBounce 2s ease-in-out infinite, tears 3s ease-in-out infinite;
    margin-bottom: 30px;
}

@keyframes sadBounce {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-20px) rotate(-5deg);
    }
    50% {
        transform: translateY(0) rotate(0deg);
    }
    75% {
        transform: translateY(-10px) rotate(5deg);
    }
}

@keyframes tears {
    0%, 100% {
        filter: blur(0px);
    }
    50% {
        filter: blur(1px);
    }
}

/* Tear Drops */
.tears {
    position: relative;
    display: inline-block;
}

.tear {
    position: absolute;
    width: 10px;
    height: 10px;
    background: rgba(135, 206, 250, 0.8);
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
    animation: falling 2s ease-in infinite;
    opacity: 0;
}

.tear:nth-child(1) {
    left: -30px;
    top: 60px;
    animation-delay: 0s;
}

.tear:nth-child(2) {
    left: 30px;
    top: 60px;
    animation-delay: 0.5s;
}

.tear:nth-child(3) {
    left: -25px;
    top: 65px;
    animation-delay: 1s;
}

.tear:nth-child(4) {
    left: 25px;
    top: 65px;
    animation-delay: 1.5s;
}

@keyframes falling {
    0% {
        opacity: 0;
        transform: translateY(0) rotate(-45deg) scale(0);
    }
    10% {
        opacity: 1;
        transform: translateY(0) rotate(-45deg) scale(1);
    }
    100% {
        opacity: 0;
        transform: translateY(100px) rotate(-45deg) scale(0.5);
    }
}

/* Main Message */
h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.8;
    }
}

/* Subtitle */
.subtitle {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.9;
    line-height: 1.6;
}

/* Broken Heart Animation */
.broken-heart {
    font-size: 60px;
    display: inline-block;
    position: relative;
    animation: heartbreak 3s ease-in-out infinite;
}

@keyframes heartbreak {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

/* Floating Particles */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
    z-index: -1;
}

.particle {
    position: absolute;
    width: 5px;
    height: 5px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    animation: float 15s linear infinite;
}

.particle:nth-child(1) { left: 10%; animation-delay: 0s; }
.particle:nth-child(2) { left: 20%; animation-delay: 2s; }
.particle:nth-child(3) { left: 30%; animation-delay: 4s; }
.particle:nth-child(4) { left: 40%; animation-delay: 1s; }
.particle:nth-child(5) { left: 50%; animation-delay: 3s; }
.particle:nth-child(6) { left: 60%; animation-delay: 5s; }
.particle:nth-child(7) { left: 70%; animation-delay: 2.5s; }
.particle:nth-child(8) { left: 80%; animation-delay: 4.5s; }
.particle:nth-child(9) { left: 90%; animation-delay: 1.5s; }

@keyframes float {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) rotate(360deg);
        opacity: 0;
    }
}

/* Responsive Design */

/* Tablets and smaller desktops */
@media screen and (max-width: 1024px) {
    h1 {
        font-size: 42px;
    }

    .sad-emoji {
        font-size: 100px;
    }

    .subtitle {
        font-size: 18px;
    }

    .broken-heart {
        font-size: 50px;
    }
}

/* Mobile devices (landscape) */
@media screen and (max-width: 768px) {
    h1 {
        font-size: 36px;
    }

    .sad-emoji {
        font-size: 80px;
    }

    .subtitle {
        font-size: 16px;
    }

    .broken-heart {
        font-size: 40px;
    }

    .deleted-container {
        width: 95%;
        padding: 15px;
    }
}

/* Mobile devices (portrait) */
@media screen and (max-width: 480px) {
    h1 {
        font-size: 28px;
        margin-bottom: 15px;
    }

    .sad-emoji {
        font-size: 60px;
        margin-bottom: 20px;
    }

    .subtitle {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .broken-heart {
        font-size: 35px;
    }

    .deleted-container {
        width: 95%;
        padding: 10px;
    }

    .tear {
        width: 8px;
        height: 8px;
    }
}

/* Small mobile devices */
@media screen and (max-width: 360px) {
    h1 {
        font-size: 24px;
    }

    .sad-emoji {
        font-size: 50px;
    }

    .subtitle {
        font-size: 13px;
    }

    .broken-heart {
        font-size: 30px;
    }
}

/* Landscape orientation adjustments */
@media screen and (max-height: 500px) and (orientation: landscape) {
    .sad-emoji {
        font-size: 50px;
        margin-bottom: 10px;
    }

    h1 {
        font-size: 24px;
        margin-bottom: 10px;
    }

    .subtitle {
        font-size: 12px;
        margin-bottom: 15px;
    }

    .broken-heart {
        font-size: 25px;
    }

    .deleted-container {
        padding: 10px;
    }
}
