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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    background: #1b1b1b;
    min-height: 100vh;
    color: #ffffff;
}

.test-mode-banner {
    background: #ff9800;
    color: white;
    text-align: center;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 500;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid #f57c00;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.header {
    text-align: center;
    margin-bottom: 40px;
    color: white;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 10px;
}

.logo i {
    font-size: 2.5rem;
    color: #66cc22;
}

.logo h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0;
}

.logo-link {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.logo-link:hover {
    text-decoration: none;
    color: #66cc22;
    transform: scale(1.02);
}

.logo-link:visited {
    color: inherit;
}

.subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
    margin: 0;
}

.main-content {
    flex: 1;
}

.input-section {
    background: #2a2a2a;
    border: 1px solid #404040;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    margin-bottom: 30px;
}

.input-container {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.url-input {
    flex: 1;
    padding: 15px 20px;
    border: 2px solid #404040;
    border-radius: 6px;
    font-size: 1rem;
    transition: all 0.3s ease;
    outline: none;
    background: #1a1a1a;
    color: #ffffff;
}

.url-input:focus {
    border-color: #66cc22;
    box-shadow: 0 0 0 3px rgba(102, 204, 34, 0.1);
}

.url-input::placeholder {
    color: #888;
}

.analyze-btn {
    background: #66cc22;
    color: white;
    border: none;
    padding: 15px 25px;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 120px;
    justify-content: center;
}

.analyze-btn:hover {
    background: #5ab81f;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(102, 204, 34, 0.3);
}

.analyze-btn:disabled {
    background: #555;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.url-example {
    text-align: center;
    color: #666;
}

.loading-section {
    text-align: center;
    padding: 40px 20px;
    background: #2a2a2a;
    border: 1px solid #404040;
    border-radius: 8px;
    margin-bottom: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.loading-spinner i {
    font-size: 3rem;
    color: #66cc22;
    margin-bottom: 15px;
}

.error-section, .download-error {
    background: #fff5f5;
    border: 1px solid #feb2b2;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 30px;
}

.error-message {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #c53030;
}

.error-message i {
    font-size: 1.2rem;
}

.video-section {
    background: #2a2a2a;
    border: 1px solid #404040;
    border-radius: 8px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.video-info {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.video-thumbnail {
    flex-shrink: 0;
    width: 200px;
}

.video-thumbnail img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.video-details {
    flex: 1;
}

.video-details h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: #ffffff;
}

.video-details p {
    color: #ccc;
    margin-bottom: 20px;
    word-break: break-all;
}

.download-btn {
    background: #66cc22;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.download-btn:hover {
    background: #5ab81f;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(102, 204, 34, 0.3);
}

.download-btn:disabled {
    background: #555;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.download-section {
    background: #2a2a2a;
    border: 1px solid #404040;
    border-radius: 8px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.download-progress h4 {
    margin-bottom: 20px;
    color: #ffffff;
}

.progress-bar {
    width: 100%;
    height: 12px;
    background: #404040;
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 15px;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #66cc22, #5ab81f);
    transition: width 0.3s ease;
    width: 0%;
}

.progress-info {
    display: flex;
    justify-content: space-between;
    color: #ccc;
    font-size: 0.9rem;
}

.download-complete {
    text-align: center;
    padding: 30px 0;
}

.success-message {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #66cc22;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.success-message i {
    font-size: 1.5rem;
}

.download-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #66cc22;
    color: white;
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.download-link:hover {
    background: #5ab81f;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(102, 204, 34, 0.3);
}

.footer {
    margin-top: 50px;
    text-align: center;
    color: white;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
    background: rgba(42, 42, 42, 0.8);
    border: 1px solid #404040;
    padding: 30px;
    border-radius: 8px;
}

.feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.feature i {
    font-size: 2rem;
    color: #66cc22;
}

.feature span {
    font-weight: 500;
}

.disclaimer {
    opacity: 0.8;
}

.hidden {
    display: none !important;
}

/* Rules and Information Section */
.info-section {
    background: #2a2a2a;
    border: 1px solid #404040;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.rules-container h3 {
    color: #ffffff;
    margin-bottom: 15px;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.rules-container h3 i {
    color: #66cc22;
}

.rules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    margin-bottom: 20px;
}

.rule-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 15px;
    background: #1a1a1a;
    border-radius: 8px;
    border-left: 3px solid #66cc22;
    transition: all 0.3s ease;
}

.rule-item:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(102, 204, 34, 0.1);
    background: #202020;
}

.rule-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    background: #66cc22;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.rule-icon i {
    font-size: 0.9rem;
}

.rule-content h4 {
    color: #ffffff;
    margin-bottom: 5px;
    font-size: 1rem;
}

.rule-content p {
    color: #ccc;
    margin: 0;
    line-height: 1.4;
    font-size: 0.9rem;
}

.additional-info {
    margin-top: 20px;
}

.info-box {
    background: #1a1a1a;
    border: 1px solid #404040;
    border-radius: 8px;
    padding: 18px;
}

.info-box h4 {
    color: #ffffff;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 1rem;
}

.info-box h4 i {
    color: #66cc22;
}

.info-box ol {
    margin: 0;
    padding-left: 18px;
    color: #ccc;
    font-size: 0.9rem;
}

.info-box ol li {
    margin-bottom: 5px;
    line-height: 1.4;
}

.info-box ol li:last-child {
    margin-bottom: 0;
}

/* Bookmarklet Styles */
.bookmarklet-box {
    background: linear-gradient(135deg, #1a1a1a, #252525);
    border: 2px solid #66cc22;
    margin-top: 15px;
}

.bookmarklet-container {
    text-align: center;
    margin: 15px 0;
}

.bookmarklet-btn {
    display: inline-block;
    background: linear-gradient(135deg, #66cc22, #5ab81f);
    color: white;
    text-decoration: none;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: bold;
    font-size: 1rem;
    box-shadow: 0 4px 15px rgba(102, 204, 34, 0.3);
    transition: all 0.3s ease;
    cursor: grab;
    border: 2px solid transparent;
}

.bookmarklet-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 204, 34, 0.4);
    text-decoration: none;
    color: white;
    background: linear-gradient(135deg, #5ab81f, #4a9b1a);
}

.bookmarklet-btn:active {
    cursor: grabbing;
}

.bookmarklet-btn i {
    margin-right: 8px;
}

.bookmarklet-instructions {
    text-align: center;
    color: #ccc;
    font-style: italic;
    padding: 15px;
    background: rgba(102, 204, 34, 0.05);
    border-radius: 8px;
    margin-top: 15px;
}

.bookmarklet-instructions strong {
    color: #66cc22;
}

/* Sponsor Section */
.sponsor-section {
    margin: 25px 0;
    text-align: center;
}

.content-container {
    background: #1a1a1a;
    border: 1px solid #404040;
    border-radius: 8px;
    padding: 15px;
    margin: 20px 0;
}

.content-label {
    font-size: 0.8rem;
    color: #888;
    text-transform: uppercase;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.content-area {
    min-height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.content-placeholder {
    width: 100%;
    max-width: 728px;
    min-height: 90px;
    background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
    border: 2px dashed #404040;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    padding: 15px;
    box-sizing: border-box;
}

.content-placeholder:hover {
    border-color: #66cc22;
    background: linear-gradient(135deg, #2a2a2a, #252525);
}

.clickable-banner {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.clickable-banner:hover {
    text-decoration: none;
    color: inherit;
}

.clickable-banner:hover .content-placeholder {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 204, 34, 0.2);
}

.active-banner {
    display: block;
    padding: 0;
    background: none;
    color: white;
    text-decoration: none;
    border-radius: 0;
    transition: none;
    box-shadow: none;
}

.active-banner:hover {
    transform: none;
    box-shadow: none;
    text-decoration: none;
    color: white;
}

.banner-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.live-indicator {
    background: #ff4444;
    color: white;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: bold;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.7; }
    100% { opacity: 1; }
}

.banner-text {
    flex: 1;
}

.banner-text p {
    margin: 0;
    font-size: 16px;
    font-weight: bold;
}

.banner-text small {
    opacity: 0.9;
    font-size: 12px;
}

.banner-image {
    width: 728px;
    max-width: 100%;
    height: 90px;
    object-fit: contain;
    border-radius: 0;
    display: block;
}

.placeholder-content {
    text-align: center;
    color: #888;
    width: 100%;
}

.placeholder-content i {
    font-size: 2rem;
    color: #66cc22;
    margin-bottom: 8px;
    display: block;
}

.placeholder-content p {
    margin: 5px 0;
    font-size: 1rem;
    color: #ccc;
}

.placeholder-content small {
    color: #777;
    font-size: 0.8rem;
    display: block;
    margin-top: 5px;
    line-height: 1.2;
}

/* Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    backdrop-filter: blur(5px);
}

.modal-container {
    background: #2a2a2a;
    border: 1px solid #404040;
    border-radius: 12px;
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-header {
    background: #1a1a1a;
    padding: 20px;
    border-bottom: 1px solid #404040;
    border-radius: 12px 12px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h2 {
    color: #ffffff;
    margin: 0;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.modal-header h2 i {
    color: #66cc22;
}

.modal-close {
    background: none;
    border: none;
    color: #ccc;
    font-size: 2rem;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: #404040;
    color: #ffffff;
}

.modal-content {
    padding: 25px;
}

.rules-list {
    margin-bottom: 25px;
}

.rule-item-modal {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    margin-bottom: 15px;
    background: #1a1a1a;
    border-radius: 10px;
    border-left: 4px solid #66cc22;
    transition: all 0.3s ease;
}

.rule-item-modal:hover {
    background: #202020;
    transform: translateX(5px);
}

.rule-number {
    background: #66cc22;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.rule-text h4 {
    color: #ffffff;
    margin: 0 0 8px 0;
    font-size: 1.1rem;
}

.rule-text p {
    color: #ccc;
    margin: 0;
    line-height: 1.5;
    font-size: 0.95rem;
}

.modal-footer {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #404040;
}

.contact-btn {
    background: linear-gradient(135deg, #66cc22, #5ab81f);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(102, 204, 34, 0.3);
}

.contact-btn:hover {
    background: linear-gradient(135deg, #5ab81f, #4a9b1a);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 204, 34, 0.4);
}

/* Upload Modal Styles */
.upload-modal {
    max-width: 700px;
    max-height: 90vh;
}

.upload-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-section {
    background: #1a1a1a;
    border-radius: 10px;
    padding: 20px;
    border: 1px solid #404040;
}

.form-label {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 12px;
    font-size: 1.1rem;
}

.form-label i {
    color: #66cc22;
}

/* File Upload Area */
.file-upload-area {
    border: 2px dashed #404040;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.file-upload-area:hover {
    border-color: #66cc22;
    background: rgba(102, 204, 34, 0.05);
}

.file-upload-area.dragover {
    border-color: #66cc22;
    background: rgba(102, 204, 34, 0.1);
}

.upload-placeholder i {
    font-size: 3rem;
    color: #66cc22;
    margin-bottom: 15px;
}

.upload-placeholder p {
    color: #ccc;
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.upload-placeholder small {
    color: #888;
    font-size: 0.9rem;
}

/* Image Preview */
.image-preview {
    position: relative;
    display: inline-block;
    max-width: 100%;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid #66cc22;
}

.image-preview img {
    max-width: 100%;
    height: auto;
    display: block;
}

.remove-btn {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #ff4757;
    color: white;
    border: none;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    transition: all 0.3s ease;
}

.remove-btn:hover {
    background: #ff3742;
    transform: scale(1.1);
}

/* Form Input */
.form-input {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #404040;
    border-radius: 6px;
    background: #2a2a2a;
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.form-input:focus {
    outline: none;
    border-color: #66cc22;
    box-shadow: 0 0 0 3px rgba(102, 204, 34, 0.1);
}

.form-help {
    color: #888;
    font-size: 0.85rem;
    margin-top: 5px;
    display: block;
}

/* Duration Options */
.duration-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 12px;
}

.duration-option {
    cursor: pointer;
    position: relative;
}

.duration-option input[type="radio"] {
    position: absolute;
    opacity: 0;
}

.option-content {
    background: #2a2a2a;
    border: 2px solid #404040;
    border-radius: 8px;
    padding: 15px;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.duration-option input[type="radio"]:checked + .option-content {
    border-color: #66cc22;
    background: rgba(102, 204, 34, 0.1);
}

.option-content:hover {
    border-color: #66cc22;
    background: rgba(102, 204, 34, 0.05);
}

.duration {
    color: #ffffff;
    font-weight: 600;
    font-size: 0.95rem;
}

.price {
    color: #66cc22;
    font-weight: bold;
    font-size: 1.1rem;
}

/* Payment Summary */
.payment-summary {
    background: linear-gradient(135deg, #1a1a1a, #252525);
    border: 2px solid #66cc22;
}

.summary-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #ccc;
    font-size: 1rem;
}

.summary-item.total {
    font-size: 1.2rem;
    font-weight: bold;
    color: #ffffff;
    padding-top: 8px;
    border-top: 1px solid #404040;
}

.summary-item.total span:last-child {
    color: #66cc22;
}

/* Form Actions */
.form-actions {
    display: flex;
    gap: 15px;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
}

.btn-secondary {
    background: #404040;
    color: #ffffff;
    border: none;
    padding: 12px 20px;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-secondary:hover {
    background: #505050;
    transform: translateY(-1px);
}

.btn-primary {
    background: linear-gradient(135deg, #66cc22, #5ab81f);
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(102, 204, 34, 0.3);
}

.btn-primary:hover:not(:disabled) {
    background: linear-gradient(135deg, #5ab81f, #4a9b1a);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(102, 204, 34, 0.4);
}

.btn-primary:disabled {
    background: #555;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.btn-success {
    background: linear-gradient(135deg, #28a745, #218838);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(40, 167, 69, 0.3);
}

.btn-success:hover {
    background: linear-gradient(135deg, #218838, #1e7e34);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(40, 167, 69, 0.4);
}

/* Payment Modal Styles */
.payment-modal {
    max-width: 800px;
    max-height: 90vh;
}

.payment-section {
    background: #1a1a1a;
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 20px;
    border: 1px solid #404040;
}

.payment-section h3 {
    color: #ffffff;
    font-size: 1.2rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.payment-section h3 i {
    color: #66cc22;
}

/* Order Summary */
.order-summary {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.order-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
}

.order-item.total-row {
    border-top: 1px solid #404040;
    padding-top: 15px;
    margin-top: 10px;
    font-size: 1.1rem;
    font-weight: bold;
}

.item-label {
    color: #ccc;
}

.item-value {
    color: #ffffff;
    font-weight: 600;
}

.item-value.price {
    color: #66cc22;
    font-size: 1.2rem;
    font-weight: bold;
}

/* Payment Methods */
.payment-methods {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.payment-method {
    cursor: pointer;
    position: relative;
}

.payment-method input[type="radio"] {
    position: absolute;
    opacity: 0;
}

.method-content {
    background: #2a2a2a;
    border: 2px solid #404040;
    border-radius: 10px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
}

.payment-method input[type="radio"]:checked + .method-content {
    border-color: #66cc22;
    background: rgba(102, 204, 34, 0.1);
}

.method-content:hover {
    border-color: #66cc22;
    background: rgba(102, 204, 34, 0.05);
}

.crypto-icon {
    font-size: 2rem;
    width: 40px;
    text-align: center;
}

.crypto-icon.bitcoin { color: #f7931a; }
.crypto-icon.ethereum { color: #627eea; }
.crypto-icon.monero { color: #ff6600; }
.crypto-icon.litecoin { color: #345d9d; }
.crypto-icon.dogecoin { color: #c2a633; }

.method-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.method-name {
    color: #ffffff;
    font-weight: 600;
    font-size: 1rem;
}

.method-symbol {
    color: #ccc;
    font-size: 0.9rem;
}

/* Payment Details */
.payment-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.payment-amount {
    text-align: center;
    background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
    padding: 20px;
    border-radius: 10px;
    border: 2px solid #66cc22;
}

.crypto-amount {
    font-size: 2rem;
    font-weight: bold;
    color: #66cc22;
    margin-right: 10px;
}

.crypto-symbol {
    font-size: 1.2rem;
    color: #ffffff;
    font-weight: 600;
}

.payment-address-section {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.address-label {
    color: #ccc;
    font-size: 0.95rem;
}

.address-container {
    display: flex;
    gap: 10px;
}

.payment-address {
    flex: 1;
    padding: 15px;
    background: #2a2a2a;
    border: 2px solid #404040;
    border-radius: 8px;
    color: #ffffff;
    font-family: monospace;
    font-size: 0.9rem;
    word-break: break-all;
}

.copy-btn {
    background: #66cc22;
    color: white;
    border: none;
    padding: 15px 20px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 60px;
}

.copy-btn:hover {
    background: #5ab81f;
    transform: translateY(-1px);
}

.qr-code-section {
    display: flex;
    justify-content: center;
}

.qr-placeholder {
    width: 200px;
    height: 200px;
    background: #2a2a2a;
    border: 2px dashed #404040;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.qr-placeholder i {
    font-size: 3rem;
    color: #66cc22;
}

.qr-placeholder p {
    color: #ccc;
    margin: 0;
    text-align: center;
}

.payment-warning {
    background: rgba(255, 193, 7, 0.1);
    border: 1px solid #ffc107;
    border-radius: 8px;
    padding: 15px;
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.payment-warning i {
    color: #ffc107;
    font-size: 1.2rem;
    margin-top: 2px;
}

.warning-text {
    color: #ffffff;
    line-height: 1.4;
}

.warning-text strong {
    color: #ffc107;
}

/* Payment Status */
.status-container {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.status-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #2a2a2a;
}

.status-icon i {
    font-size: 1.5rem;
}

.status-pending { color: #ffc107; }
.status-success { color: #28a745; }
.status-error { color: #dc3545; }

.status-info h4 {
    color: #ffffff;
    margin: 0 0 8px 0;
    font-size: 1.3rem;
}

.status-info p {
    color: #ccc;
    margin: 0;
    line-height: 1.4;
}

.payment-timer {
    background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
    border: 1px solid #404040;
    border-radius: 8px;
    padding: 20px;
}

.timer-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    color: #ffffff;
}

.timer-countdown {
    font-family: monospace;
    font-size: 1.2rem;
    font-weight: bold;
    color: #66cc22;
}

.timer-bar {
    width: 100%;
    height: 8px;
    background: #404040;
    border-radius: 4px;
    overflow: hidden;
}

.timer-progress {
    height: 100%;
    background: linear-gradient(90deg, #66cc22, #5ab81f);
    transition: width 0.5s ease;
    width: 100%;
}

/* Payment Actions */
.payment-actions {
    display: flex;
    gap: 15px;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .container {
        padding: 15px;
    }
    
    .logo {
        flex-direction: column;
        gap: 10px;
    }
    
    .logo h1 {
        font-size: 2rem;
    }
    
    .input-container {
        flex-direction: column;
    }
    
    .video-info {
        flex-direction: column;
        text-align: center;
    }
    
    .video-thumbnail {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .features {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .rules-grid {
        grid-template-columns: 1fr;
    }
    
    .rule-item {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
}