* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #1e3c78 0%, #2a5298 100%);
    min-height: 100vh;
    color: #96c8ff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

header {
    text-align: center;
    padding: 60px 20px;
}

header h1 {
    font-size: 4rem;
    font-weight: bold;
    text-shadow: 0 4px 20px rgba(0,0,0,0.5);
    margin-bottom: 10px;
    color: #96c8ff;
}

.subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
    color: #64b4ff;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.feature {
    background: rgba(30, 60, 120, 0.6);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s;
    border: 2px solid rgba(150, 200, 255, 0.3);
}

.feature:hover {
    transform: translateY(-5px);
    border-color: #64b4ff;
    box-shadow: 0 10px 30px rgba(100, 180, 255, 0.3);
}

.icon {
    font-size: 3.5rem;
    display: block;
    margin-bottom: 15px;
    filter: drop-shadow(0 0 10px rgba(100, 180, 255, 0.5));
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.feature h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #96c8ff;
}

.feature p {
    color: #96c8ff;
    opacity: 0.8;
}

.script-section {
    margin: 60px 0;
}

.script-section h2, .info h2, .features-list h2, .warning h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    text-align: center;
    color: #96c8ff;
}

.script-box {
    background: rgba(36, 36, 36, 0.8);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 15px;
    position: relative;
    border: 2px solid rgba(150, 200, 255, 0.3);
}

#script-code {
    display: block;
    background: rgba(22, 22, 22, 0.9);
    padding: 20px;
    border-radius: 10px;
    font-family: 'Courier New', monospace;
    font-size: 0.95rem;
    word-wrap: break-word;
    margin-bottom: 20px;
    color: #96c8ff;
    border: 1px solid rgba(150, 200, 255, 0.2);
}

.copy-btn {
    background: #64b4ff;
    color: #1e3c78;
    border: none;
    padding: 15px 40px;
    font-size: 1rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    display: block;
    margin: 0 auto;
    font-weight: bold;
}

.copy-btn:hover {
    background: #96c8ff;
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(100, 180, 255, 0.5);
}

.copy-btn.copied {
    background: #4CAF50;
    color: white;
}

.info, .warning {
    background: rgba(30, 60, 120, 0.6);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 15px;
    margin: 40px 0;
    border: 2px solid rgba(150, 200, 255, 0.3);
}

.info ol, .warning ul {
    list-style-position: inside;
    font-size: 1.2rem;
    line-height: 2.5;
    color: #96c8ff;
}

.warning {
    border-color: rgba(255, 100, 100, 0.5);
}

.warning h2 {
    color: #ff6464;
}

.warning ul li {
    color: #ffb4b4;
}

.features-list {
    margin: 60px 0;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.feature-item {
    background: rgba(30, 60, 120, 0.6);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 15px;
    border: 2px solid rgba(150, 200, 255, 0.3);
    transition: all 0.3s;
}

.feature-item:hover {
    transform: translateY(-5px);
    border-color: #64b4ff;
    box-shadow: 0 10px 30px rgba(100, 180, 255, 0.3);
}

.feature-item h3 {
    color: #96c8ff;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.feature-item ul {
    list-style: none;
    padding: 0;
}

.feature-item ul li {
    color: #96c8ff;
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
}

.feature-item ul li:before {
    content: "▸";
    position: absolute;
    left: 0;
    color: #64b4ff;
}

footer {
    text-align: center;
    padding: 40px 20px;
    opacity: 0.8;
    color: #96c8ff;
}

.credits {
    margin-top: 10px;
    font-size: 0.9rem;
    opacity: 0.7;
}

@media (max-width: 768px) {
    header h1 {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
    }
}
