
.fb-fixed ul {
	background: white;
    box-shadow: 0 0 0 10px white;
    border-radius: 10px;
    margin: 10px;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body .container{
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    color: #ffffff;
    min-height: 100vh;
    padding: 20px;
    border-radius: 10px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.header {
    text-align: center;
    margin-bottom: 40px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.header h1 {
    font-size: 3rem;
    margin-bottom: 10px;
    background: linear-gradient(45deg, #ff006e, #8338ec, #3a86ff);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: glow 2s ease-in-out infinite alternate;
}



@keyframes glow {
    from { filter: drop-shadow(0 0 5px rgba(255, 0, 110, 0.5)); }
    to { filter: drop-shadow(0 0 20px rgba(131, 56, 236, 0.8)); }
}

.main-content {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 30px;
    margin-bottom: 30px;
}

.input-section, .output-section {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.section-title {
    font-size: 1.4rem;
    margin-bottom: 20px;
    color: #8338ec;
    border-bottom: 2px solid #8338ec;
    padding-bottom: 10px;
}

.input-text {
    width: 100%;
    height: 120px;
    background: rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    padding: 15px;
    color: #ffffff;
    font-size: 16px;
    resize: vertical;
    transition: border-color 0.3s;
}

.input-text:focus {
    outline: none;
    border-color: #8338ec;
}

.controls {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.control-group {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.control-title {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: #ff006e;
}

.slider-container {
    margin-bottom: 15px;
}

.slider-label {
    display: flex;
    justify-content: space-between;
    margin-bottom: 5px;
    font-size: 0.9rem;
    color: #cccccc;
}

.slider {
    width: 100%;
    height: 6px;
    border-radius: 3px;
    background: rgba(255, 255, 255, 0.2);
    outline: none;
    -webkit-appearance: none;
}

.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: linear-gradient(45deg, #ff006e, #8338ec);
    cursor: pointer;
}

.checkbox-group {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.checkbox-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 12px;
    border-radius: 20px;
    cursor: pointer;
    transition: background 0.3s;
}

.checkbox-item:hover {
    background: rgba(255, 255, 255, 0.2);
}

.checkbox-item input[type="checkbox"] {
    accent-color: #8338ec;
}

.output-area {
    background: rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    padding:70px 20px;
    min-height: 150px;
    font-family: arial,monospace;
    font-size: 18px;
    line-height: 1.6;
    word-break: break-all;
    position: relative;
    overflow-y: auto;
    max-height: 300px;
}

.preset-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 20px 0;
}

.preset-btn {
    background: linear-gradient(45deg, #ff006e, #8338ec);
    border: none;
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: bold;
    transition: transform 0.2s, box-shadow 0.2s;
}

.preset-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 0, 110, 0.4);
}

.preset-btn.share{
	background: linear-gradient(45deg, #00ff88, #38ec83);
	color: #444;
}

.preset-btn.share:hover{
	box-shadow: 0 5px 15px rgba(0, 255, 136, 0.4);
}

.action-buttons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.action-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 12px 24px;
    border-radius: 30px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s;
    flex: 1;
}

.action-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: #8338ec;
}

.animated-preview {
    background: rgba(0, 0, 0, 0.6);
    border-radius: 10px;
    padding: 20px;
    margin-top: 20px;
    text-align: center;
    font-size: 24px;
    font-family: monospace;
    min-height: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.animated-preview canvas{
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16'%3E%3Crect width='8' height='8' fill='%23ccc'/%3E%3Crect x='8' y='8' width='8' height='8' fill='%23ccc'/%3E%3C/svg%3E");
    background-repeat: repeat;
}

.glitch-animation {
    animation: glitch 0.5s infinite;
}

@keyframes glitch {
    0% { transform: translate(0); }
    20% { transform: translate(-2px, 2px); }
    40% { transform: translate(-2px, -2px); }
    60% { transform: translate(2px, 2px); }
    80% { transform: translate(2px, -2px); }
    100% { transform: translate(0); }
}

.zalgo-animation {
    animation: zalgo 1s infinite;
}

@keyframes zalgo {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; text-shadow: 0 0 10px #ff006e; }
}

@media (max-width: 768px) {
    .main-content {
        grid-template-columns: 1fr;
    }
    
    .header h1 {
        font-size: 2rem;
    }
    
    .controls {
        grid-template-columns: 1fr;
    }
}

.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: linear-gradient(45deg, #28a745, #20c997);
    color: white;
    padding: 15px 25px;
    border-radius: 30px;
    font-weight: bold;
    transform: translateX(400px);
    transition: transform 0.3s;
    z-index: 1000;
}

.notification.show {
    transform: translateX(0);
}

#animationDurationValue:after{
    content:" sec";
}

.page-content{
    padding:1.5em!important;
    font-size: 20px;
}

.page-content h2 {
  
  font-size: 2.25rem;
}

.page-content h3 {
    margin-top: 1em;
  font-size: 1.75rem;
}

.page-content h4 {
    margin-top: 1em;
  font-size: 1.25rem;
}



.page-content p{
    padding: 0.5em 0;
}

.page-content ul,.page-content ol{
    margin-left: 2em;
    line-height: 1.5em;
}

.page-content li{
    margin-bottom: 0.5em;
}