/* Phoenix Arizona Time - Professional Clock Application Styles */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Phoenix App Container */
.phoenix-app {
	font-family: 'Poppins', sans-serif;
	background: linear-gradient(135deg, #0f0f23 0%, #1a1a3e 50%, #2d2d5f 100%);
	min-height: 100vh;
	color: #ffffff;
	overflow-x: hidden;
	position: relative;
	margin: 40px 0;
	border-radius: 16px;
}

/* Phoenix Header Styles */
.phoenix-header {
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(15px);
    border-bottom: 2px solid rgba(255, 215, 0, 0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.2);
}

.phoenix-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.phoenix-logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.phoenix-icon {
    font-size: 2.5rem;
    background: linear-gradient(45deg, #ff6b35, #ff8e53, #ffd700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: phoenixIconGlow 3s ease-in-out infinite alternate;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.6));
}

.phoenix-title {
    font-size: 1.8rem;
    font-weight: 900;
    background: linear-gradient(45deg, #ffd700, #ff8e53, #ff6b35);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.phoenix-menu {
    display: flex;
    gap: 2.5rem;
}

.phoenix-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 1rem;
    border-radius: 8px;
}

.phoenix-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(45deg, #ff6b35, #ffd700);
    transition: width 0.3s ease;
    border-radius: 2px;
}

.phoenix-link:hover {
    color: #ffd700;
    background: rgba(255, 107, 53, 0.1);
    transform: translateY(-2px);
}

.phoenix-link:hover::after {
    width: 100%;
}

/* Phoenix Clock Section */
.phoenix-clock-section {
    padding: 5rem 2rem;
    background: radial-gradient(circle at center, rgba(255, 107, 53, 0.15) 0%, transparent 70%);
    position: relative;
}

.phoenix-clock-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="stars" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23ffd700" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23stars)"/></svg>');
    opacity: 0.1;
    pointer-events: none;
}

.phoenix-clock-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
}

.phoenix-clock-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4rem;
}

/* Phoenix SVG Clock Styles */
.phoenix-analog-clock {
    position: relative;
    width: 450px;
    height: 450px;
    filter: drop-shadow(0 25px 50px rgba(255, 107, 53, 0.4));
    background: radial-gradient(circle, rgba(255, 215, 0, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    padding: 1rem;
}

.phoenix-svg-clock {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
    transition: all 0.3s ease;
}

.phoenix-clock-outer {
    fill: none;
    stroke: url(#phoenixGradient);
    stroke-width: 4;
    filter: drop-shadow(0 0 25px rgba(255, 215, 0, 0.6));
    animation: phoenixRingPulse 4s ease-in-out infinite alternate;
}

.phoenix-clock-inner {
    fill: rgba(255, 107, 53, 0.08);
    stroke: rgba(255, 215, 0, 0.4);
    stroke-width: 2;
    filter: drop-shadow(0 0 15px rgba(255, 142, 83, 0.3));
}

.phoenix-hour-hand {
    stroke: #ffd700;
    stroke-width: 8;
    stroke-linecap: round;
    filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.8));
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: 200px 200px;
}

.phoenix-minute-hand {
    stroke: #ff8e53;
    stroke-width: 6;
    stroke-linecap: round;
    filter: drop-shadow(0 0 12px rgba(255, 142, 83, 0.8));
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: 200px 200px;
}

.phoenix-second-hand {
    stroke: #ff6b35;
    stroke-width: 3;
    stroke-linecap: round;
    filter: drop-shadow(0 0 10px rgba(255, 107, 53, 0.8));
    transition: transform 0.1s ease-out;
    transform-origin: 200px 200px;
    animation: phoenixSecondGlow 1s ease-in-out infinite alternate;
}

.phoenix-center-dot {
    fill: #ffd700;
    filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.9));
    animation: phoenixCenterPulse 2s ease-in-out infinite alternate;
}

/* Phoenix Digital Time Display */
.phoenix-digital-time {
    text-align: center;
    background: linear-gradient(145deg, rgba(26, 26, 62, 0.4), rgba(45, 45, 95, 0.2));
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 25px;
    padding: 2rem;
    backdrop-filter: blur(20px);
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.3),
        inset 0 2px 0 rgba(255, 255, 255, 0.1);
}

.phoenix-time-display {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.phoenix-time-box {
    background: linear-gradient(145deg, rgba(255, 107, 53, 0.25), rgba(255, 215, 0, 0.15));
    border: 3px solid rgba(255, 215, 0, 0.4);
    border-radius: 20px;
    padding: 1.5rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    backdrop-filter: blur(15px);
    box-shadow: 
        0 10px 30px rgba(255, 107, 53, 0.3),
        inset 0 2px 0 rgba(255, 255, 255, 0.15),
        0 0 20px rgba(255, 215, 0, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.phoenix-time-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.2), transparent);
    transition: left 0.5s ease;
}

.phoenix-time-box:hover::before {
    left: 100%;
}

.phoenix-time-box:hover {
    transform: translateY(-3px) scale(1.02);
    border-color: rgba(255, 215, 0, 0.6);
    box-shadow: 
        0 15px 40px rgba(255, 107, 53, 0.4),
        inset 0 2px 0 rgba(255, 255, 255, 0.2),
        0 0 30px rgba(255, 215, 0, 0.4);
}

.phoenix-time-value {
    font-family: 'Orbitron', monospace !important;
    font-size: 3rem !important;
    font-weight: 900 !important;
    background: linear-gradient(45deg, #ffd700 0%, #ff8e53 50%, #ff6b35 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    text-shadow: 0 0 25px rgba(255, 215, 0, 0.6) !important;
    animation: phoenixDigitalPulse 3s ease-in-out infinite alternate !important;
    position: relative !important;
    z-index: 2 !important;
}

.phoenix-time-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
    margin-top: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    z-index: 2;
}

.phoenix-time-separator {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    font-weight: 900;
    color: #ffd700;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.8);
    animation: phoenixSeparatorBlink 1.5s ease-in-out infinite;
}

.phoenix-date-display {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
    font-weight: 600;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.phoenix-timezone-display {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    font-size: 1.1rem;
    color: #ff8e53;
    font-weight: 700;
    background: rgba(255, 142, 83, 0.1);
    padding: 0.8rem 1.5rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 142, 83, 0.3);
}

/* Phoenix Section Styles */
.phoenix-tools-section,
.phoenix-content-section {
    padding: 5rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

.phoenix-section-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 4rem;
    text-align: center;
}

.phoenix-section-icon {
    font-size: 2.5rem;
    color: #ffd700;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.6));
    animation: phoenixIconFloat 3s ease-in-out infinite alternate;
}

.phoenix-section-title {
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(45deg, #ffd700, #ff8e53, #ff6b35);
    -webkit-background-clip: text;
/*     -webkit-text-fill-color: transparent; */
    background-clip: text;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.4);
}

/* Phoenix Tools Grid */
.phoenix-tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.phoenix-tool-card {
    background: linear-gradient(145deg, rgba(255, 107, 53, 0.12), rgba(45, 45, 95, 0.25));
    border: 2px solid rgba(255, 215, 0, 0.25);
    border-radius: 25px;
    padding: 2.5rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    backdrop-filter: blur(15px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.phoenix-tool-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 107, 53, 0.05), rgba(255, 215, 0, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.phoenix-tool-card:hover::before {
    opacity: 1;
}

.phoenix-tool-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(255, 215, 0, 0.5);
    box-shadow: 0 20px 50px rgba(255, 107, 53, 0.3);
}

.phoenix-card-icon {
    font-size: 3rem;
    color: #ffd700;
    min-width: 80px;
    filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.6));
    animation: phoenixCardIconSpin 8s linear infinite;
}

.phoenix-card-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex: 1;
}

.phoenix-card-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: #ffffff;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.phoenix-card-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    font-size: 1rem;
}

/* Phoenix Content Grid */
.phoenix-content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
}

.phoenix-content-card {
    background: linear-gradient(145deg, rgba(26, 26, 62, 0.9), rgba(45, 45, 95, 0.5));
    border: 2px solid rgba(255, 215, 0, 0.15);
    border-radius: 25px;
    padding: 3rem;
    display: flex;
    gap: 2.5rem;
    backdrop-filter: blur(20px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.phoenix-content-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ff6b35, #ffd700, #ff8e53);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.phoenix-content-card:hover::after {
    opacity: 1;
}

.phoenix-content-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 215, 0, 0.4);
    box-shadow: 0 25px 55px rgba(255, 107, 53, 0.2);
}

.phoenix-content-icon {
    font-size: 3.5rem;
    color: #ff8e53;
    min-width: 100px;
    filter: drop-shadow(0 0 20px rgba(255, 142, 83, 0.6));
}

.phoenix-content-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    flex: 1;
}

.phoenix-content-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: #ffd700;
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.4);
}

.phoenix-content-description {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    font-size: 1.05rem;
}

/* Phoenix Features Grid */
.phoenix-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2.5rem;
}

.phoenix-feature-card {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.18), rgba(255, 215, 0, 0.08));
    border: 2px solid rgba(255, 142, 83, 0.35);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    backdrop-filter: blur(15px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    cursor: pointer;
}

.phoenix-feature-card:hover {
    transform: translateY(-8px) scale(1.03);
    border-color: rgba(255, 215, 0, 0.6);
    box-shadow: 0 18px 45px rgba(255, 107, 53, 0.3);
}

.phoenix-feature-icon {
    font-size: 3rem;
    color: #ff8e53;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 15px rgba(255, 142, 83, 0.6));
}

.phoenix-feature-title {
    font-size: 1.4rem;
    font-weight: 800;
    color: #ffd700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.4);
}

.phoenix-feature-desc {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    line-height: 1.6;
}

/* Phoenix Footer */
.phoenix-footer {
    background: linear-gradient(135deg, rgba(15, 15, 35, 0.95), rgba(26, 26, 62, 0.8));
    border-top: 2px solid rgba(255, 215, 0, 0.3);
    padding: 4rem 2rem;
    margin-top: 5rem;
    backdrop-filter: blur(15px);
}

.phoenix-footer-content {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.phoenix-footer-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    font-size: 1.8rem;
    font-weight: 800;
    color: #ffd700;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.5));
}

.phoenix-footer-text {
    color: rgba(255, 255, 255, 0.7);
    font-style: italic;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
    font-size: 1.1rem;
}

/* Phoenix Animations */
@keyframes phoenixIconGlow {
    0% { 
        filter: brightness(1) drop-shadow(0 0 10px rgba(255, 107, 53, 0.5)); 
        transform: scale(1);
    }
    100% { 
        filter: brightness(1.3) drop-shadow(0 0 20px rgba(255, 215, 0, 0.8)); 
        transform: scale(1.05);
    }
}

@keyframes phoenixRingPulse {
    0% { 
        stroke-width: 4; 
        filter: drop-shadow(0 0 25px rgba(255, 215, 0, 0.6));
    }
    100% { 
        stroke-width: 6; 
        filter: drop-shadow(0 0 35px rgba(255, 215, 0, 0.9));
    }
}

@keyframes phoenixDigitalPulse {
    0% { 
        transform: scale(1); 
        text-shadow: 0 0 25px rgba(255, 215, 0, 0.6);
    }
    100% { 
        transform: scale(1.02); 
        text-shadow: 0 0 35px rgba(255, 107, 53, 0.8);
    }
}

@keyframes phoenixSeparatorBlink {
    0%, 50% { 
        opacity: 1; 
        text-shadow: 0 0 20px rgba(255, 215, 0, 0.8);
    }
    51%, 100% { 
        opacity: 0.3; 
        text-shadow: 0 0 5px rgba(255, 215, 0, 0.3);
    }
}

@keyframes phoenixSecondGlow {
    0% { filter: drop-shadow(0 0 10px rgba(255, 107, 53, 0.8)); }
    100% { filter: drop-shadow(0 0 15px rgba(255, 107, 53, 1)); }
}

@keyframes phoenixCenterPulse {
    0% { 
        r: 10; 
        filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.9));
    }
    100% { 
        r: 12; 
        filter: drop-shadow(0 0 25px rgba(255, 215, 0, 1));
    }
}

@keyframes phoenixIconFloat {
    0% { transform: translateY(0px); }
    100% { transform: translateY(-5px); }
}

@keyframes phoenixCardIconSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Phoenix Responsive Design */
@media (max-width: 1200px) {
    .phoenix-nav {
        padding: 1.2rem 1.5rem;
    }
    
    .phoenix-section-title {
        font-size: 2.5rem;
    }
    
    .phoenix-analog-clock {
        width: 400px;
        height: 400px;
    }
    
    .phoenix-time-value {
        font-size: 2.5rem;
    }
}

@media (max-width: 992px) {
    .phoenix-nav {
        padding: 1rem;
    }
    
    .phoenix-section-title {
        font-size: 2.2rem;
    }
    
    .phoenix-analog-clock {
        width: 350px;
        height: 350px;
    }
    
    .phoenix-time-value {
        font-size: 2.2rem;
    }
    
    .phoenix-tools-grid,
    .phoenix-content-grid {
        grid-template-columns: 1fr;
    }
    
    .phoenix-features-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .phoenix-nav {
        flex-direction: column;
        gap: 1.5rem;
        padding: 1.5rem 1rem;
    }
    
    .phoenix-menu {
        gap: 1.5rem;
    }
    
    .phoenix-clock-section {
        padding: 3rem 1rem;
    }
    
    .phoenix-analog-clock {
        width: 300px;
        height: 300px;
    }
    
    .phoenix-time-display {
        flex-direction: column;
        gap: 1rem;
    }
    
    .phoenix-time-box {
        padding: 1.2rem 1.8rem;
        width: 100%;
        max-width: 180px;
    }
    
    .phoenix-time-value {
        font-size: 2rem;
    }
    
    .phoenix-time-separator {
        display: none;
    }
    
    .phoenix-section-header {
        flex-direction: column;
        gap: 1rem;
    }
    
    .phoenix-section-title {
        font-size: 2rem;
    }
    
    .phoenix-tool-card,
    .phoenix-content-card {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
    }
    
    .phoenix-features-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    }
}

@media (max-width: 600px) {
    .phoenix-analog-clock {
        width: 260px;
        height: 260px;
    }
    
    .phoenix-time-value {
        font-size: 1.8rem;
    }
    
    .phoenix-section-title {
        font-size: 1.8rem;
    }
    
    .phoenix-content-card {
        padding: 1.8rem;
    }
    
    .phoenix-content-title {
        font-size: 1.5rem;
    }
    
    .phoenix-features-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 400px) {
    .phoenix-app {
        font-size: 14px;
    }
    
    .phoenix-title {
        font-size: 1.4rem;
    }
    
    .phoenix-analog-clock {
        width: 220px;
        height: 220px;
    }
    
    .phoenix-time-value {
        font-size: 1.5rem;
    }
    
    .phoenix-time-box {
        padding: 1rem 1.5rem;
    }
    
    .phoenix-section-title {
        font-size: 1.5rem;
    }
    
    .phoenix-tools-section,
    .phoenix-content-section {
        padding: 3rem 1rem;
    }
    
    .phoenix-tool-card,
    .phoenix-content-card,
    .phoenix-feature-card {
        padding: 1.5rem;
    }
}

/* Phoenix Custom Elements Styles */
phoenix-body {
    display: block;
    margin: 0;
    padding: 0;
}

phoenix-app, phoenix-header, phoenix-nav, phoenix-logo, phoenix-brand,
phoenix-menu, phoenix-nav-link, phoenix-clock-section, phoenix-clock-container,
phoenix-clock-wrapper, phoenix-analog-clock, phoenix-digital-time,
phoenix-time-display, phoenix-time-box, phoenix-time-value, phoenix-time-label,
phoenix-time-separator, phoenix-date-display, phoenix-date-text,
phoenix-timezone-display, phoenix-timezone-text, phoenix-tools-section,
phoenix-section-header, phoenix-section-title, phoenix-tools-grid,
phoenix-tool-card, phoenix-card-icon, phoenix-card-content, phoenix-card-title,
phoenix-card-description, phoenix-content-section, phoenix-content-grid,
phoenix-content-card, phoenix-content-icon, phoenix-content-text,
phoenix-content-title, phoenix-content-description, phoenix-features-grid,
phoenix-feature-card, phoenix-feature-title, phoenix-feature-desc,
phoenix-footer, phoenix-footer-content, phoenix-footer-brand,
phoenix-footer-description {
    display: block;
}

/* Phoenix SVG Gradients Definition */
.phoenix-svg-clock defs {
    display: block;
}

/* Phoenix Particle Effects */
.phoenix-particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.phoenix-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: radial-gradient(circle, #ffd700, #ff8e53);
    border-radius: 50%;
    opacity: 0.6;
}

/* Phoenix Loading States */
.phoenix-loaded .phoenix-analog-clock {
    animation: phoenixClockEntry 1s ease-out;
}

@keyframes phoenixClockEntry {
    0% {
        opacity: 0;
        transform: scale(0.8) rotate(180deg);
    }
    100% {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
}