/* Results */
.result {
 margin-top: 2.5rem;
 animation: fadeIn 0.5s ease;
}
.result h2 {
 text-align: center;
 margin-bottom: 1.5rem;
 font-size: 1.8rem;
 background: linear-gradient(135deg, var(--accent-primary), var(--accent-tertiary));
 -webkit-background-clip: text;
 -webkit-text-fill-color: transparent;
 background-clip: text;
}
.timestamp-grid {
 display: grid;
 grid-template-columns: 1fr;
 gap: 1rem;
}
.timestamp-item {
 background: var(--code-bg);
 border: 1px solid var(--border-light);
 border-radius: 12px;
 padding: 1.5rem;
 transition: all 0.3s ease;
}
.timestamp-item:hover {
 border-color: var(--border-accent);
 transform: translateY(-2px);
 box-shadow: var(--shadow-accent);
}
.timestamp-label {
 display: block;
 font-size: 0.9rem;
 color: var(--text-secondary);
 margin-bottom: 0.5rem;
 font-weight: 600;
}
.timestamp-code {
 display: block;
 background: rgba(0, 0, 0, 0.4);
 padding: 1rem;
 border-radius: 8px;
 font-family: "Courier New", Courier, monospace;
 color: var(--success-color);
 font-size: 1.1rem;
 font-weight: 600;
 border: 1px solid rgba(16, 185, 129, 0.2);
 word-break: break-all;
 position: relative;
 transition: all 0.3s ease;
}
.timestamp-code:hover {
 background: rgba(0, 0, 0, 0.5);
 border-color: rgba(16, 185, 129, 0.4);
}
.copy-btn {
 position: absolute;
 top: 0.5rem;
 right: 0.5rem;
 background: rgba(99, 102, 241, 0.2);
 border: 1px solid var(--border-accent);
 border-radius: 6px;
 color: var(--text-primary);
 padding: 0.3rem 0.6rem;
 font-size: 0.8rem;
 cursor: pointer;
 transition: all 0.3s ease;
 opacity: 0;
}
.timestamp-item:hover .copy-btn {
 opacity: 1;
}
.copy-btn:hover {
 background: rgba(99, 102, 241, 0.3);
 transform: scale(1.05);
}
.copy-btn.copied {
 background: rgba(16, 185, 129, 0.3);
 border-color: rgba(16, 185, 129, 0.5);
 color: var(--success-color);
}
/* Style Info Section */
.style-info {
 margin-top: 2rem;
 padding: 1.5rem;
 background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.1));
 border: 1px solid var(--border-accent);
 border-radius: 12px;
}
.style-info h3 {
 margin-bottom: 1rem;
 color: var(--text-primary);
 font-size: 1.2rem;
}
.style-list {
 list-style: none;
}
.style-list li {
 margin-bottom: 0.5rem;
 color: var(--text-secondary);
 font-size: 0.9rem;
}
.style-list strong {
 color: var(--accent-primary);
}
/* Responsive Design */
@media (max-width: 480px) {
 .timestamp-code {
  font-size: 1rem;
  padding: 0.8rem;
 }
}
