.unsubscribe-container {
    min-height: calc(100vh - 120px);
    padding: 100px 20px 40px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.unsubscribe-content {
    max-width: 800px;
    width: 100%;
    background: rgba(0, 0, 0, 0.8);
    border-radius: 8px;
    padding: 40px;
    border: 1px solid var(--primary-brass);
}

.unsubscribe-content h1 {
    font-size: 2.5rem;
    color: var(--accent-gold);
    margin-bottom: 20px;
    text-align: center;
    text-shadow: 0 0 10px var(--primary-brass);
}

.unsubscribe-intro {
    font-size: 1.1rem;
    color: #e4e4e7;
    text-align: center;
    margin-bottom: 40px;
    line-height: 1.6;
}

/* Steps Container */
.steps-container {
    margin-bottom: 40px;
}

.step-card {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    padding: 25px;
    background: rgba(181, 166, 66, 0.1);
    border-radius: 8px;
    border: 1px solid var(--primary-brass);
    transition: all 0.3s ease;
}

.step-card:hover {
    border-color: var(--accent-gold);
    background: rgba(181, 166, 66, 0.15);
}

.step-number {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: var(--primary-brass);
    color: var(--bg-purple);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: bold;
    margin-right: 20px;
}

.step-content {
    flex: 1;
}

.step-content h3 {
    font-size: 1.3rem;
    color: var(--accent-gold);
    margin-bottom: 10px;
}

.step-content p {
    color: #fff;
    line-height: 1.6;
    margin-bottom: 15px;
}

/* Bot Links */
.bot-link {
    margin-top: 15px;
}

.bot-button {
    display: inline-flex;
    align-items: center;
    padding: 12px 24px;
    background: var(--primary-brass);
    color: var(--bg-purple);
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    transition: all 0.3s ease;
    gap: 10px;
}

.bot-button:hover {
    background: var(--accent-gold);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(181, 166, 66, 0.4);
}

.bot-button.discord {
    background: var(--primary-brass);
    color: var(--bg-purple);
}

.bot-button.discord:hover {
    background: var(--accent-gold);
    color: var(--bg-purple);
}

.bot-button.telegram {
    background: var(--primary-brass);
    color: var(--bg-purple);
}

.bot-button.telegram:hover {
    background: var(--accent-gold);
    color: var(--bg-purple);
}

.bot-icon {
    width: 20px;
    height: 20px;
}

/* Command Box */
.command-box {
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid var(--primary-brass);
    border-radius: 4px;
    padding: 12px 20px;
    display: inline-block;
    margin-top: 10px;
}

.command-box code {
    color: var(--accent-gold);
    font-family: 'Courier New', monospace;
    font-size: 1.1rem;
    font-weight: 500;
}

/* Notes Section */
.notes-section {
    background: rgba(181, 166, 66, 0.1);
    border: 1px solid var(--primary-brass);
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 30px;
}

.notes-section h3 {
    color: var(--accent-gold);
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.notes-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.notes-section li {
    color: #fff;
    line-height: 1.8;
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.notes-section li:before {
    content: "•";
    color: var(--primary-brass);
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: -3px;
}

/* Help Section */
.help-section {
    background: rgba(181, 166, 66, 0.1);
    border: 1px solid var(--primary-brass);
    border-radius: 8px;
    padding: 25px;
    text-align: center;
    margin-bottom: 30px;
}

.help-section h3 {
    color: var(--accent-gold);
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.help-section p {
    color: #fff;
    margin-bottom: 15px;
}

.help-link {
    color: var(--accent-gold);
    text-decoration: none;
    font-weight: 500;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.help-link:hover {
    border-bottom-color: var(--accent-gold);
}

/* Back Button */
.back-button {
    text-align: center;
    margin-top: 30px;
}

.btn-back {
    display: inline-block;
    padding: 12px 30px;
    background: transparent;
    color: var(--accent-gold);
    text-decoration: none;
    border: 2px solid var(--primary-brass);
    border-radius: 4px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-back:hover {
    background: var(--primary-brass);
    color: var(--bg-purple);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(181, 166, 66, 0.4);
}

/* Responsive Design */
@media (max-width: 768px) {
    .unsubscribe-container {
        padding: 80px 15px 30px;
    }
    
    .unsubscribe-content {
        padding: 30px 20px;
    }
    
    .unsubscribe-content h1 {
        font-size: 2rem;
    }
    
    .step-card {
        padding: 20px;
    }
    
    .step-number {
        width: 35px;
        height: 35px;
        font-size: 1rem;
        margin-right: 15px;
    }
    
    .step-content h3 {
        font-size: 1.1rem;
    }
    
    .bot-button {
        padding: 10px 20px;
        font-size: 0.95rem;
    }
    
    .command-box {
        padding: 10px 15px;
    }
    
    .command-box code {
        font-size: 1rem;
    }
}