/* CSS Document */
body {
    margin: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: #0b0c10;
    color: #eaeaea;
}

.wt-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.wt-header {
    text-align: center;
    margin-bottom: 30px;
}

.wt-header h1 {
    font-size: 2.5rem;
    margin-bottom: 0.3rem;
    color: #66fcf1;
}

.wt-header p {
    color: #c5c6c7;
}

.wt-upload-section {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 25px;
}

.wt-upload-column {
    flex: 1 1 300px;
    background: #1f2833;
    padding: 15px;
    border-radius: 8px;
    border: 1px solid #45a29e;
}

.wt-dropzone {
    margin-top: 10px;
    border: 2px dashed #45a29e;
    border-radius: 8px;
    padding: 25px;
    text-align: center;
    color: #c5c6c7;
    cursor: pointer;
    position: relative;
}

.wt-dropzone input[type="file"] {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
}

.wt-dropzone.dragover {
    background: rgba(102, 252, 241, 0.08);
    border-color: #66fcf1;
}

.wt-media-preview {
    margin-top: 10px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.wt-media-preview img,
.wt-media-preview video {
    max-width: 80px;
    max-height: 80px;
    border-radius: 4px;
    border: 1px solid #45a29e;
}

.wt-controls {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    background: #1f2833;
    padding: 10px 15px;
    border-radius: 8px;
    border: 1px solid #45a29e;
}

.wt-control-group {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #c5c6c7;
}

.wt-button {
    padding: 8px 16px;
    border-radius: 6px;
    border: 1px solid #45a29e;
    background: #0b0c10;
    color: #eaeaea;
    cursor: pointer;
    transition: background 0.2s, transform 0.1s;
}

.wt-button:hover {
    background: #1f2833;
    transform: translateY(-1px);
}

.wt-button-primary {
    background: #45a29e;
    color: #0b0c10;
}

.wt-button-primary:hover {
    background: #66fcf1;
}

.wt-towers-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.wt-card {
    background: #1f2833;
    border-radius: 10px;
    border: 1px solid #45a29e;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.wt-card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-bottom: 1px solid #45a29e;
}

.wt-card-header img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid #66fcf1;
}

.wt-card-header h3 {
    margin: 0;
    font-size: 1.1rem;
    color: #66fcf1;
}

.wt-card-header small {
    display: block;
    color: #c5c6c7;
}

.wt-card-body {
    padding: 10px 12px;
    color: #c5c6c7;
    font-size: 0.9rem;
}

.wt-card-body a {
    color: #66fcf1;
    text-decoration: none;
}

.wt-card-body a:hover {
    text-decoration: underline;
}

.wt-card-iframe {
    border: none;
    width: 100%;
}

.wt-footer {
    margin-top: 30px;
    text-align: center;
    color: #c5c6c7;
    font-size: 0.85rem;
}
